/*
 * Happy Gallery — Styles principaux du thème
 * Contient : variables CSS, typographie, layout, nav, footer, ticker, sections générales
 * NE PAS ajouter de surcharges WooCommerce ici → woocommerce.css
 */

/* ─── VARIABLES ─────────────────────────────────────────────────────────── */
:root {
    --hg-orange:    #E8521A;
    --hg-black:     #111111;
    --hg-white:     #ffffff;
    --hg-gray-bg:   #f5f5f5;
    --hg-gray-mid:  #888888;
    --hg-gray-dark: #0d0d0d;
    --hg-green:     #3B6D11;
    --hg-border:    2px solid #111111;
    --hg-border3:   3px solid #111111;
}

/* ─── RESET DE BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--hg-white);
    color: var(--hg-black);
    margin: 0;
}

img { max-width: 100%; height: auto; }

/* ─── TYPOGRAPHIE ────────────────────────────────────────────────────────── */
.hg-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--hg-black);
}

.hg-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
}

/* ─── BOUTONS ────────────────────────────────────────────────────────────── */
.hg-btn-blk,
.hg-btn-org,
.hg-btn-out {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 13px 26px;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    transition: background .15s, border-color .15s;
}

.hg-btn-blk {
    background: var(--hg-black);
    color: var(--hg-white);
    border: var(--hg-border);
}
.hg-btn-blk:hover { background: #333; color: var(--hg-white); }

.hg-btn-org {
    background: var(--hg-orange);
    color: var(--hg-white);
    border: 2px solid var(--hg-orange);
}
.hg-btn-org:hover { background: #cc4415; border-color: #cc4415; color: var(--hg-white); }

.hg-btn-out {
    background: var(--hg-white);
    color: var(--hg-black);
    border: var(--hg-border);
}
.hg-btn-out:hover { background: var(--hg-gray-bg); color: var(--hg-black); }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
#masthead.hg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: var(--hg-white);
    border-bottom: var(--hg-border3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding .25s ease;
}

#masthead.hg-header.hg-header--scrolled {
    padding: 8px 40px;
}

/* Logo */
.hg-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.hg-logo-img {
    display: block;
    width: 70px;
    height: auto;
    object-fit: contain;
    transition: width .25s ease;
}

.hg-header--scrolled .hg-logo-img {
    width: 44px;
}

/* Menu principal (wp_nav_menu) */
#hg-primary-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#hg-primary-nav li { position: relative; }

#hg-primary-nav a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--hg-black);
    text-decoration: none;
    white-space: nowrap;
}

#hg-primary-nav a:hover,
#hg-primary-nav .current-menu-item > a,
#hg-primary-nav .current-menu-ancestor > a {
    color: var(--hg-orange);
}

#hg-primary-nav .current-menu-item > a {
    border-bottom: 2px solid var(--hg-orange);
}

/* Dropdown sous-menus */
#hg-primary-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--hg-white);
    border: var(--hg-border);
    min-width: 180px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 200;
}

#hg-primary-nav li:hover > ul { display: block; }

#hg-primary-nav ul a {
    display: block;
    padding: 8px 16px;
    font-size: 12px;
}

/* Côté droit nav : search + account + panier */
.hg-nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.hg-nav-icon {
    width: 34px;
    height: 34px;
    border: var(--hg-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    color: var(--hg-black);
    background: transparent;
    flex-shrink: 0;
    /* reset <button> UA styles */
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    outline: none;
    box-shadow: none;
}

.hg-nav-icon:hover { background: var(--hg-gray-bg); }

.hg-nav-cart {
    background: var(--hg-black);
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 9px 20px;
    border: var(--hg-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background .15s, border-color .15s;
}

.hg-nav-cart:hover,
.hg-nav-cart:focus {
    background: var(--hg-orange);
    border-color: var(--hg-orange);
    color: var(--hg-white);
}

/* Burger menu mobile */
.hg-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hg-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hg-black);
}

/* ─── TICKER ─────────────────────────────────────────────────────────────── */
.hg-ticker {
    background: var(--hg-orange);
    padding: 12px 0;
    border-top: var(--hg-border);
    border-bottom: var(--hg-border);
    overflow: hidden;
    white-space: nowrap;
}

.hg-ticker-track {
    display: inline-flex;
    gap: 48px;
    animation: hg-ticker-scroll 30s linear infinite;
}

.hg-ticker-track:hover { animation-play-state: paused; }

@keyframes hg-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hg-ticker-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hg-white);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hg-ticker-sep { color: rgba(255, 255, 255, .5); margin: 0 4px; }

/* ─── BREADCRUMB ─────────────────────────────────────────────────────────── */
.hg-breadcrumb {
    padding: 13px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    border-bottom: var(--hg-border);
    background: var(--hg-gray-bg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hg-breadcrumb a { color: var(--hg-black); text-decoration: none; }
.hg-breadcrumb a:hover { color: var(--hg-orange); }
.hg-breadcrumb-sep { color: #ccc; }

/* ─── SECTION HEADER ─────────────────────────────────────────────────────── */
.hg-sec-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.hg-sec-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    line-height: 1;
}

.hg-sec-h::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
}

.hg-sec-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--hg-black);
    text-decoration: none;
}

.hg-sec-link::after { content: ' →'; }
.hg-sec-link:hover { color: var(--hg-orange); }

/* ─── GRILLES PRODUITS ───────────────────────────────────────────────────── */
.hg-product-grid {
    display: grid;
    border: var(--hg-border);
}

.hg-product-grid .hg-card {
    border-right: var(--hg-border);
    border-bottom: var(--hg-border);
    margin: -1px 0 0 -1px;
    overflow: hidden;
    background: var(--hg-white);
    transition: transform .15s;
}

.hg-product-grid .hg-card:hover {
    transform: translateY(-2px);
    z-index: 2;
    position: relative;
}

.hg-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hg-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hg-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ─── WORK CARD ──────────────────────────────────────────────────────────── */
.hg-wcard {
    cursor: pointer;
    border: var(--hg-border);
    margin: -1px 0 0 -1px;
    background: var(--hg-white);
    overflow: hidden;
    transition: transform .15s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.hg-wcard:hover { z-index: 2; position: relative; box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.hg-wcard-img { position: relative; overflow: hidden; }
.hg-wcard-img img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hg-wcard-img-link { display: block; text-decoration: none; }
.hg-wcard-title-link { display: block; text-decoration: none; color: inherit; }
.hg-wcard-title-link:hover .hg-wcard-title { color: var(--hg-orange); }

.hg-wbadge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 10px;
    border: var(--hg-border);
}

.hg-b-orig { background: var(--hg-white); color: var(--hg-black); }
.hg-b-ed   { background: var(--hg-orange); color: var(--hg-white); border-color: var(--hg-orange); }
.hg-b-toy  { background: var(--hg-black); color: var(--hg-white); }
.hg-b-new  { background: var(--hg-white); color: var(--hg-black); }
.hg-b-ltd  { background: var(--hg-black); color: var(--hg-orange); }
.hg-b-sold { background: #999; color: var(--hg-white); border-color: #999; }

.hg-wcard-body {
    padding: 13px 15px;
    border-top: var(--hg-border);
}

.hg-wcard-artist {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--hg-orange);
    margin-bottom: 3px;
}

.hg-wcard-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 2px;
}

.hg-wcard-sub {
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
}

.hg-wcard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hg-wprice {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 900;
    color: var(--hg-black);
}

.hg-wadd {
    background: var(--hg-orange);
    color: var(--hg-white);
    border: var(--hg-border);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 13px;
    cursor: pointer;
    letter-spacing: .05em;
    text-decoration: none;
    display: inline-block;
}

.hg-wadd:hover { background: #cc4415; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
#colophon.hg-footer {
    background: var(--hg-black);
    padding: 48px 40px 28px;
    border-bottom: 2px solid #333;
}

.hg-footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}

/* Logo footer */
.hg-ft-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    text-decoration: none;
}

.hg-ft-logo-img {
    display: block;
    width: 100px;
    height: auto;
    object-fit: contain;
}

.hg-ft-tagline {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* Colonnes de liens footer */
.hg-ft-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white);
    letter-spacing: .06em;
    margin: 0 0 14px;
    display: block;
}

/* Menus footer — wp_nav_menu */
.hg-footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hg-footer-nav ul li { margin-bottom: 8px; }

.hg-footer-nav ul li a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color .15s;
}

.hg-footer-nav ul li a:hover { color: var(--hg-orange); }

/* Barre bottom footer */
.hg-ft-bottom {
    background: var(--hg-gray-dark);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #555;
}

.hg-ft-bottom a { color: #666; text-decoration: none; }
.hg-ft-bottom a:hover { color: var(--hg-white); }

/* ─── LAYOUT PAGE ────────────────────────────────────────────────────────── */
.hg-page-main { min-height: 60vh; }

/* ─── ARCHIVE CATALOGUE ─────────────────────────────────────────────────── */

/* Hero catégorie */
.hg-cat-hero {
    background: var(--hg-black);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    border-bottom: var(--hg-border3);
    gap: 32px;
}

.hg-cat-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hg-cat-eline {
    width: 28px;
    height: 2px;
    background: var(--hg-orange);
}

.hg-cat-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 82px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white);
    line-height: .88;
    margin: 0 0 16px;
}

.hg-cat-sub {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
    max-width: 500px;
    margin: 0;
}

.hg-cat-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--hg-orange);
    line-height: 1;
    opacity: .6;
    white-space: nowrap;
    text-align: right;
}

.hg-cat-count-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #666;
    text-align: right;
}

/* Onglets catégories */
.hg-cat-nav {
    display: flex;
    border-bottom: var(--hg-border3);
    background: var(--hg-white);
    overflow-x: auto;
    scrollbar-width: none;
}

.hg-cat-nav::-webkit-scrollbar { display: none; }

.hg-cat-nav-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 15px 24px;
    border-right: var(--hg-border);
    cursor: pointer;
    white-space: nowrap;
    color: #999;
    text-decoration: none;
    transition: background .1s, color .1s;
}

.hg-cat-nav-item:hover {
    background: var(--hg-gray-bg);
    color: var(--hg-black);
}

.hg-cat-nav-item.on {
    background: var(--hg-black);
    color: var(--hg-white);
}

.hg-cat-nav-count { font-weight: 400; font-size: .9em; }

/* Toolbar */
.hg-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    border-bottom: var(--hg-border);
    background: var(--hg-gray-bg);
    gap: 12px;
}

.hg-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Boutons de tri custom */
.hg-sort-btns {
    display: flex;
    border: var(--hg-border);
}

.hg-sort-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 9px 17px;
    border-right: var(--hg-border);
    background: var(--hg-white);
    color: #999;
    text-decoration: none;
    white-space: nowrap;
    transition: background .12s, color .12s;
}
.hg-sort-btn:last-child { border-right: none; }
.hg-sort-btn.on { background: var(--hg-black); color: var(--hg-white); }
.hg-sort-btn:hover:not(.on) { background: var(--hg-gray-bg); color: var(--hg-black); }

/* Corps catalogue */
.hg-cat-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    border-bottom: var(--hg-border3);
}

.hg-cat-body--no-sidebar {
    grid-template-columns: 1fr;
}

/* Sidebar filtres */
.hg-cat-sidebar {
    border-right: var(--hg-border3);
    background: var(--hg-white);
}

/* Groupes de filtres */
.hg-sf-group {
    border-bottom: var(--hg-border);
}

.hg-sf-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 14px 22px;
    color: var(--hg-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.hg-sf-arrow { font-size: 13px; color: #999; font-weight: 400; }

.hg-sf-options { padding: 4px 0 12px; }

.hg-sf-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 22px;
    text-decoration: none;
    color: var(--hg-black);
    transition: background .1s;
}
.hg-sf-opt:hover { background: var(--hg-gray-bg); }

.hg-sf-opt-left {
    display: flex;
    align-items: center;
    gap: 11px;
}

.hg-sf-check {
    width: 16px;
    height: 16px;
    border: 2px solid var(--hg-black);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hg-sf-check.on { background: var(--hg-black); }
.hg-sf-check.on::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--hg-orange);
}

.hg-sf-opt-name { font-size: 13px; font-weight: 500; color: var(--hg-black); }
.hg-sf-opt-n { font-size: 11px; font-weight: 700; color: #999; }

/* Prix */
.hg-sf-price { padding: 14px 22px 18px; }

.hg-sf-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    border: var(--hg-border);
}

.hg-sf-price-input {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    color: var(--hg-black);
    border: none;
    outline: none;
    background: transparent;
    -moz-appearance: textfield;
}
.hg-sf-price-input::-webkit-outer-spin-button,
.hg-sf-price-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.hg-sf-price-sep { font-size: 12px; color: #999; flex-shrink: 0; }

.hg-sf-price-ok {
    padding: 8px 12px;
    background: var(--hg-black);
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    border-left: var(--hg-border);
    cursor: pointer;
    flex-shrink: 0;
}
.hg-sf-price-ok:hover { background: #222; }

/* Bouton reset */
.hg-sf-reset {
    display: block;
    width: calc(100% - 44px);
    margin: 14px 22px 18px;
    background: var(--hg-white);
    border: var(--hg-border);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 10px;
    cursor: pointer;
    color: var(--hg-black);
    text-decoration: none;
    text-align: center;
    transition: background .1s;
}
.hg-sf-reset:hover { background: var(--hg-gray-bg); }

/* Compatibilité anciens widgets si jamais configurés */
.hg-cat-sidebar .widget { border-bottom: var(--hg-border); }
.hg-cat-sidebar .widget-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 15px 22px;
    color: var(--hg-black);
    margin: 0;
}

/* Zone produits */
.hg-prod-area { padding: 26px; }

.hg-prod-area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: var(--hg-border);
}

.hg-prod-area-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hg-prod-area-grid .hg-wcard {
    border-right: var(--hg-border);
    border-bottom: var(--hg-border);
    margin: -1px 0 0 -1px;
}

.hg-pagination-wrap {
    padding: 36px 0 0;
    display: flex;
    justify-content: center;
}

/* ─── SINGLE PRODUCT ─────────────────────────────────────────────────────── */

/* Layout 2 colonnes */
.hg-product-container {
    display: grid;
    grid-template-columns: 1fr 440px;
    border-bottom: var(--hg-border3);
    min-height: 640px;
}

/* La galerie WC occupe la colonne gauche via CSS */
.hg-product-container .woocommerce-product-gallery {
    background: var(--hg-gray-bg);
    border-right: var(--hg-border3);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 40px;
    gap: 16px;
    overflow: hidden;
}

/* Trigger zoom */
.hg-product-container .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: var(--hg-white);
    border: var(--hg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Wrapper Flexslider / Flickity */
.hg-product-container .woocommerce-product-gallery__wrapper,
.hg-product-container .woocommerce-product-gallery .flex-viewport {
    flex: 1;
    width: 100% !important;
    max-height: 540px;
}

.hg-product-container .woocommerce-product-gallery .slides,
.hg-product-container .woocommerce-product-gallery .flickity-slider { width: 100%; }

/* Image principale */
.hg-product-container .woocommerce-product-gallery__image,
.hg-product-container .woocommerce-product-gallery li.woocommerce-product-gallery__image {
    width: 100% !important;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hg-product-container .woocommerce-product-gallery__image a { display: block; width: 100%; }

.hg-product-container .woocommerce-product-gallery__image img,
.hg-product-container .woocommerce-product-gallery__image a > img {
    width: 100% !important;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
}

/* Miniatures */
.hg-product-container .flex-control-thumbs {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.hg-product-container .flex-control-thumbs li { margin: 0; }

.hg-product-container .flex-control-thumbs img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: var(--hg-border);
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s;
}

.hg-product-container .flex-control-thumbs img.flex-active,
.hg-product-container .flex-control-thumbs img:hover { opacity: 1; border-color: var(--hg-orange); }

/* Colonne info (droite) */
.hg-prod-info {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    background: var(--hg-white);
}

/* Tags produit */
.hg-prod-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hg-prod-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 5px 13px;
    border: var(--hg-border);
}

.hg-pt-tech {
    background: var(--hg-orange);
    color: var(--hg-white);
    border-color: var(--hg-orange);
}

/* Titre */
.hg-prod-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: .88;
    color: var(--hg-black);
    margin: 0 0 14px;
}

/* Artiste */
.hg-prod-artist {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: var(--hg-border);
    text-decoration: none;
}

.hg-prod-avatar {
    width: 38px;
    height: 38px;
    background: var(--hg-orange);
    border-radius: 50%;
    border: var(--hg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: var(--hg-white);
    flex-shrink: 0;
}

.hg-prod-artist-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-orange);
}

.hg-prod-artist-loc {
    font-size: 12px;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Prix */
.hg-prod-price .price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: var(--hg-black);
    line-height: 1;
    margin: 0;
    display: block;
}

.hg-prod-price-note {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: .06em;
    margin: 4px 0 8px;
}

/* Stock */
.hg-stock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hg-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hg-stock-dot.in-stock  { background: var(--hg-green); }
.hg-stock-dot.out-of-stock { background: #999; }

.hg-stock-txt {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.hg-stock-txt.in-stock  { color: var(--hg-green); }
.hg-stock-txt.out-of-stock { color: #999; }

/* CTA add-to-cart + wishlist */
.hg-prod-cta {
    display: flex;
    gap: 0;
    margin-bottom: 26px;
    border: var(--hg-border);
}

/* WooCommerce wraps qty + button dans form.cart */
.hg-prod-cta .cart {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 0;
    margin: 0;
}

.hg-prod-cta .quantity {
    display: flex;
    align-items: center;
    border-right: var(--hg-border);
    padding: 0 14px;
    flex-shrink: 0;
    background: transparent;
}

.hg-prod-cta .qty {
    width: 48px;
    border: none;
    outline: none;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--hg-black);
    background: transparent;
    -moz-appearance: textfield;
    padding: 0;
}

.hg-prod-cta .qty::-webkit-outer-spin-button,
.hg-prod-cta .qty::-webkit-inner-spin-button { -webkit-appearance: none; }

.hg-prod-cta .single_add_to_cart_button {
    flex: 1;
    margin: 0 !important;
    border: none !important;
    background: var(--hg-black);
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    padding: 16px 24px;
    transition: background .15s;
}

.hg-prod-cta .single_add_to_cart_button:hover { background: var(--hg-orange); }

/* Grille détails */
.hg-prod-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: var(--hg-border);
    margin-bottom: 22px;
}

.hg-det-row {
    display: flex;
    flex-direction: column;
    padding: 13px 16px;
    border-right: var(--hg-border);
    border-bottom: var(--hg-border);
}

.hg-det-row:nth-child(2n)   { border-right: none; }
.hg-det-row:nth-last-child(-n+2) { border-bottom: none; }

.hg-det-lbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #999;
    margin-bottom: 3px;
}

.hg-det-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
}

/* Bloc authenticité */
.hg-cert-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--hg-black);
    padding: 16px 18px;
    margin-top: auto;
}

.hg-cert-icon {
    width: 34px;
    height: 34px;
    background: var(--hg-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    color: var(--hg-white);
    font-weight: 900;
}

.hg-cert-txt {
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
}

.hg-cert-txt strong {
    color: var(--hg-white);
    font-weight: 700;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 3px;
}

/* Onglets produit */
.hg-product-tabs {
    padding: 0 40px 40px;
    background: var(--hg-white);
    border-bottom: var(--hg-border3);
}

.hg-product-tabs .wc-tabs {
    display: flex;
    list-style: none;
    margin: 0 0 0;
    padding: 0;
    border-bottom: var(--hg-border3);
    gap: 0;
}

.hg-product-tabs .wc-tabs li { margin: 0; }

.hg-product-tabs .wc-tabs li a {
    display: block;
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #999;
    text-decoration: none;
    border-right: 2px solid transparent;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color .15s;
}

.hg-product-tabs .wc-tabs li.active a {
    color: var(--hg-black);
    border-bottom-color: var(--hg-black);
}

.hg-product-tabs .wc-tabs li a:hover { color: var(--hg-black); }

.hg-product-tabs .woocommerce-Tabs-panel {
    padding: 32px 0 0;
}

.hg-product-tabs .woocommerce-Tabs-panel h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 16px;
}

.hg-product-tabs .woocommerce-Tabs-panel p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    max-width: 640px;
    margin-bottom: 12px;
}

/* Tableau attributs dans onglet */
.hg-product-tabs .woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
    border: var(--hg-border);
}

.hg-product-tabs .woocommerce-product-attributes-item {
    border-bottom: var(--hg-border);
}

.hg-product-tabs .woocommerce-product-attributes-item:last-child { border-bottom: none; }

.hg-product-tabs .woocommerce-product-attributes-item__label,
.hg-product-tabs .woocommerce-product-attributes-item__value {
    padding: 11px 16px;
    vertical-align: middle;
}

.hg-product-tabs .woocommerce-product-attributes-item__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    border-right: var(--hg-border);
    width: 200px;
    background: var(--hg-gray-bg);
}

.hg-product-tabs .woocommerce-product-attributes-item__value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
}

/* Avis */
.hg-product-tabs #reviews .comment-respond { margin-top: 24px; }
.hg-product-tabs #reviews .comment-respond h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 16px;
}

/* Produits liés */
.hg-related {
    padding: 56px 40px;
    background: var(--hg-white);
    border-bottom: var(--hg-border3);
}

.hg-rel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: var(--hg-border);
}

.hg-rel-card {
    cursor: pointer;
    border-right: var(--hg-border);
    overflow: hidden;
    background: var(--hg-white);
    text-decoration: none;
    display: block;
    transition: background .1s;
}

.hg-rel-card:last-child { border-right: none; }
.hg-rel-card:hover { background: var(--hg-gray-bg); }

.hg-rel-img {
    height: 190px;
    overflow: hidden;
}

.hg-rel-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hg-rel-body {
    padding: 13px 15px;
    border-top: var(--hg-border);
}

.hg-rel-artist {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--hg-orange);
    margin-bottom: 2px;
}

.hg-rel-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 2px;
}

.hg-rel-sub {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
}

.hg-rel-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--hg-black);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .hg-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hg-footer-inner { grid-template-columns: 1fr 1fr; }
    .hg-product-container { grid-template-columns: 1fr; }
    .hg-cat-h { font-size: 60px; }
    .hg-cat-count { font-size: 70px; }
    .hg-cat-body { grid-template-columns: 200px 1fr; }
    .hg-rel-grid { grid-template-columns: repeat(2, 1fr); }
    .hg-prod-area-grid,
    .hg-prod-area-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media screen and (max-width: 768px) {
    #masthead.hg-header { padding: 12px 20px; }

    #hg-primary-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--hg-white);
        border-bottom: var(--hg-border3);
        padding: 20px;
        gap: 16px;
    }

    #hg-primary-nav.hg-nav-open { display: flex; }

    .hg-menu-toggle { display: flex; }

    .hg-grid-4,
    .hg-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .hg-grid-2 { grid-template-columns: 1fr; }

    .hg-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }

    .hg-ft-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 14px 20px;
    }

    /* Boutique : sidebar repasse en colonne unique */
    .hg-cat-body { grid-template-columns: 1fr; }
    .hg-cat-sidebar { border-right: none; border-bottom: var(--hg-border3); }
    .hg-prod-area-grid,
    .hg-prod-area-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hg-sort-btns { flex-wrap: wrap; }
}

@media screen and (max-width: 480px) {
    .hg-footer-inner { grid-template-columns: 1fr; }
    #masthead.hg-header { padding: 10px 16px; }
    .hg-breadcrumb { padding: 10px 16px; }
    .hg-prod-area { padding: 12px; }
    .hg-prod-area-grid,
    .hg-prod-area-grid--wide { grid-template-columns: 1fr; }
    .hg-toolbar { padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =============================================================================
   STEPS BAR — Panier / Checkout / Confirmation
   ============================================================================= */

.hg-steps {
    background: var(--hg-black);
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    border-bottom: var(--hg-border3);
}

.hg-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-right: 2px solid #333;
}

.hg-step:last-of-type { border-right: none; }

.hg-step-fill { flex: 1; }

.hg-step-n {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 900;
    flex-shrink: 0;
}

.hg-step-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.hg-step--done .hg-step-n  { background: var(--hg-green); color: var(--hg-white); border: 2px solid var(--hg-green); }
.hg-step--done .hg-step-label { color: var(--hg-green); }

.hg-step--on .hg-step-n    { background: var(--hg-orange); color: var(--hg-white); border: 2px solid var(--hg-orange); }
.hg-step--on .hg-step-label { color: var(--hg-white); }

.hg-step--off .hg-step-n   { background: transparent; color: #666; border: 2px solid #444; }
.hg-step--off .hg-step-label { color: #555; }

/* =============================================================================
   PANIER + CHECKOUT — Layout général
   ============================================================================= */

.hg-checkout-body {
    display: grid;
    grid-template-columns: 1fr 420px;
    border-bottom: var(--hg-border3);
    min-height: 600px;
}

.hg-checkout-left { border-right: var(--hg-border3); }

.hg-sect-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 26px;
}

.hg-sect-h::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 5px;
}

/* =============================================================================
   PANIER — Articles
   ============================================================================= */

.hg-cart-section {
    padding: 36px 40px 0;
    border-bottom: var(--hg-border);
}

.hg-cart-items { padding: 0 40px; }

.hg-ci {
    display: grid;
    grid-template-columns: 86px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: var(--hg-border);
}

.hg-ci:last-child { border-bottom: none; }

.hg-ci-img {
    width: 86px;
    height: 86px;
    border: var(--hg-border);
    overflow: hidden;
    flex-shrink: 0;
}

.hg-ci-img img,
.hg-ci-img a { display: block; width: 100%; height: 100%; }
.hg-ci-img img { object-fit: cover; }

.hg-ci-artist {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--hg-orange);
    margin-bottom: 3px;
}

.hg-ci-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 3px;
}

.hg-ci-title a { color: inherit; text-decoration: none; }
.hg-ci-title a:hover { color: var(--hg-orange); }

.hg-ci-detail { font-size: 12px; color: #888; }

.hg-ci-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hg-ci-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--hg-black);
}

/* Quantité panier — WC quantity input remplacé par +/- via JS */
.hg-ci-qty {
    display: flex;
    align-items: center;
    border: var(--hg-border);
}

.hg-ci-qty .qty-minus,
.hg-ci-qty .qty-plus {
    width: 30px;
    height: 30px;
    background: var(--hg-white);
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hg-ci-qty .qty-minus:hover,
.hg-ci-qty .qty-plus:hover { background: var(--hg-gray-bg); }

.hg-ci-qty input[type="number"] {
    width: 36px;
    height: 30px;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    border: none;
    border-left: var(--hg-border);
    border-right: var(--hg-border);
    outline: none;
    -moz-appearance: textfield;
}

.hg-ci-qty input[type="number"]::-webkit-outer-spin-button,
.hg-ci-qty input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

.hg-ci-del {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #bbb;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
}

.hg-ci-del:hover { color: var(--hg-black); }

.hg-cart-actions {
    padding: 16px 40px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: var(--hg-border);
}

.hg-btn-update {
    background: var(--hg-white);
    color: var(--hg-black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 10px 20px;
    border: var(--hg-border);
    cursor: pointer;
}

.hg-btn-update:hover { background: var(--hg-gray-bg); }

/* =============================================================================
   PANIER + CHECKOUT — Colonne récapitulatif droite
   ============================================================================= */

.hg-order-summary {
    background: var(--hg-gray-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.hg-os-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 0;
    border-bottom: 2px solid #ddd;
}

.hg-os-item:last-of-type { border-bottom: none; }

.hg-osi-img {
    width: 58px;
    height: 58px;
    border: var(--hg-border);
    overflow: hidden;
    flex-shrink: 0;
}

.hg-osi-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hg-osi-info { flex: 1; min-width: 0; }

.hg-osi-artist {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hg-orange);
    letter-spacing: .07em;
}

.hg-osi-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hg-osi-detail { font-size: 11px; color: #888; }

.hg-osi-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: var(--hg-black);
    white-space: nowrap;
    margin-left: auto;
}

.hg-os-sep { border: none; border-top: var(--hg-border); margin: 22px 0; }

.hg-os-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.hg-os-row .lbl { color: #888; font-weight: 500; }
.hg-os-row .val { font-weight: 700; color: var(--hg-black); }
.hg-os-free { color: var(--hg-green); font-weight: 700; }

.hg-os-row--free .val { color: var(--hg-green); }

.hg-os-row--total .lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
}

.hg-os-row--total .val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 900;
}

/* Code promo */
.hg-promo-wrap {
    display: flex;
    margin: 20px 0;
    border: var(--hg-border);
}

.hg-promo-input {
    flex: 1;
    padding: 13px 15px;
    font-size: 13px;
    border: none;
    outline: none;
    background: var(--hg-white);
    font-family: 'Barlow', sans-serif;
}

.hg-promo-btn {
    background: var(--hg-black);
    color: var(--hg-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
}

.hg-promo-btn:hover { background: #333; }

/* Boutons récap */
.hg-btn-checkout {
    display: block;
    width: 100%;
    background: var(--hg-orange);
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 19px;
    border: var(--hg-border);
    cursor: pointer;
    margin-bottom: 12px;
    text-align: center;
    text-decoration: none;
}

.hg-btn-checkout:hover { background: #cc4415; color: var(--hg-white); }

.hg-btn-continue {
    display: block;
    width: 100%;
    background: var(--hg-white);
    color: var(--hg-black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 13px;
    border: var(--hg-border);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.hg-btn-continue:hover { background: var(--hg-gray-bg); }

/* Réassurance */
.hg-reassure {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 2px solid #ddd;
}

.hg-re-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.hg-re-dot {
    width: 8px;
    height: 8px;
    background: var(--hg-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =============================================================================
   CHECKOUT — Section formulaire (form-checkout.php)
   ============================================================================= */

.hg-form-section { padding: 34px 40px; }

/* Le WC "col2-set" en grid HG */
.hg-form-section #customer_details { display: block; }

/* Override des form-row WooCommerce pour ressembler aux .ff du mockup */
.hg-checkout-left .form-row {
    border: var(--hg-border);
    margin-bottom: -2px;
    margin-left: 0;
    padding: 14px 17px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.hg-checkout-left .form-row:focus-within {
    border-color: var(--hg-orange);
    z-index: 1;
}

.hg-checkout-left .form-row label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #999;
    margin: 0;
}

.hg-checkout-left .form-row .required { color: var(--hg-orange); }

.hg-checkout-left .form-row input.input-text,
.hg-checkout-left .form-row select {
    font-size: 14px;
    font-weight: 500;
    color: var(--hg-black);
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Barlow', sans-serif;
    width: 100%;
    padding: 0;
    -webkit-appearance: none;
}

/* Grille 2 cols pour les champs WC */
.hg-checkout-left #billing_fields .form-row-first,
.hg-checkout-left #billing_fields .form-row-last,
.hg-checkout-left #shipping_fields .form-row-first,
.hg-checkout-left #shipping_fields .form-row-last {
    display: inline-flex;
    width: calc(50% + 1px);
}

.hg-checkout-left #billing_fields .form-row-first,
.hg-checkout-left #shipping_fields .form-row-first { margin-left: 0; margin-right: -2px; }

/* Titre de section WC */
.hg-checkout-left h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin: 24px 0 14px;
    padding-bottom: 8px;
    border-bottom: var(--hg-border);
}

/* Le récap WC dans la colonne droite */
.hg-order-summary .woocommerce-checkout-review-order { width: 100%; }
.hg-order-summary .shop_table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hg-order-summary .shop_table td,
.hg-order-summary .shop_table th { padding: 8px 0; border-bottom: var(--hg-border); }
.hg-order-summary .shop_table tfoot td,
.hg-order-summary .shop_table tfoot th { font-weight: 700; }
.hg-order-summary .shop_table tfoot .order-total td { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; }

/* Méthodes de paiement dans la colonne droite */
.hg-order-summary #payment { margin-top: 20px; }
.hg-order-summary #payment .payment_methods { list-style: none; padding: 0; margin: 0; }
.hg-order-summary #payment .payment_methods li { border: var(--hg-border); padding: 12px; margin-bottom: -2px; }
.hg-order-summary #payment .payment_methods li input[type="radio"] { margin-right: 8px; accent-color: var(--hg-orange); }
.hg-order-summary #payment .payment_methods li label { font-weight: 700; font-size: 14px; cursor: pointer; }
.hg-order-summary #payment .payment_methods li .payment_box { padding: 12px 0 4px; font-size: 13px; color: #666; }
.hg-order-summary #payment .place-order { margin-top: 16px; }
.hg-order-summary #payment #place_order {
    display: block;
    width: 100%;
    background: var(--hg-orange);
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 19px;
    border: var(--hg-border);
    cursor: pointer;
    text-align: center;
}
.hg-order-summary #payment #place_order:hover { background: #cc4415; }

/* =============================================================================
   CONFIRMATION — Hero
   ============================================================================= */

.hg-confirm-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--hg-border3);
    min-height: 420px;
}

.hg-ch-left {
    background: var(--hg-black);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hg-ch-left .hg-ch-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .06;
    pointer-events: none;
}

.hg-ch-check {
    width: 72px;
    height: 72px;
    background: var(--hg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    border: 3px solid #4a8a1e;
}

.hg-ch-check-inner { font-size: 32px; color: var(--hg-white); font-weight: 900; }

.hg-ch-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hg-ch-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .9;
    color: var(--hg-white);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.hg-ch-sub {
    font-size: 14px;
    line-height: 1.75;
    color: #888;
    max-width: 380px;
    position: relative;
    z-index: 1;
}

.hg-ch-order-n {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: #1a1a1a;
    border: var(--hg-border);
    padding: 12px 20px;
    position: relative;
    z-index: 1;
}

.hg-ch-order-n span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #666; }
.hg-ch-order-n strong { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; color: var(--hg-orange); }

/* Timeline */
.hg-ch-right {
    background: var(--hg-white);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: var(--hg-border3);
}

.hg-ch-right-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 6px;
}

.hg-ch-right-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 5px;
    margin-bottom: 24px;
}

.hg-timeline { display: flex; flex-direction: column; }

.hg-tl-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: var(--hg-border);
}

.hg-tl-item:last-child { border-bottom: none; }

.hg-tl-icon {
    width: 42px;
    height: 42px;
    border: var(--hg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.hg-tl-icon--done { background: var(--hg-green); border-color: var(--hg-green); color: var(--hg-white); }
.hg-tl-icon--on   { background: var(--hg-orange); border-color: var(--hg-orange); color: var(--hg-white); }
.hg-tl-icon--off  { background: var(--hg-white); color: #ccc; }

.hg-tl-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 2px;
}

.hg-tl-title--off { color: #ccc; }
.hg-tl-detail { font-size: 12px; color: #888; line-height: 1.5; }
.hg-tl-date { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--hg-orange); margin-top: 3px; }
.hg-tl-date--off { color: #ccc; }

/* =============================================================================
   CONFIRMATION — Récap commande
   ============================================================================= */

.hg-order-recap {
    display: grid;
    grid-template-columns: 1fr 380px;
    border-bottom: var(--hg-border3);
}

.hg-recap-items {
    padding: 48px 40px;
    border-right: var(--hg-border3);
}

.hg-recap-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 6px;
}

.hg-recap-h::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 5px;
    margin-bottom: 28px;
}

.hg-recap-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: var(--hg-border);
}

.hg-recap-item:last-child { border-bottom: none; }

.hg-ri-img {
    width: 72px;
    height: 72px;
    border: var(--hg-border);
    overflow: hidden;
    flex-shrink: 0;
}

.hg-ri-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hg-ri-artist { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--hg-orange); letter-spacing: .08em; margin-bottom: 2px; }
.hg-ri-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; text-transform: uppercase; color: var(--hg-black); margin-bottom: 2px; }
.hg-ri-detail { font-size: 12px; color: #888; }
.hg-ri-price { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--hg-black); margin-left: auto; white-space: nowrap; }

/* Récap summary droite (confirmation) */
.hg-recap-summary {
    background: var(--hg-gray-bg);
    padding: 48px 36px;
}

.hg-rs-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 6px;
}

.hg-rs-h::after { content: ''; display: block; width: 36px; height: 4px; background: var(--hg-orange); margin-top: 5px; margin-bottom: 24px; }

.hg-rs-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; }
.hg-rs-row .lbl { color: #888; font-weight: 500; }
.hg-rs-row .val { font-weight: 700; color: var(--hg-black); }
.hg-rs-row--free .val { color: var(--hg-green); }
.hg-rs-sep { border: none; border-top: var(--hg-border); margin: 12px 0; }
.hg-rs-row--total .lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; text-transform: uppercase; }
.hg-rs-row--total .val { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; }

.hg-rs-delivery { margin-top: 24px; padding-top: 24px; border-top: var(--hg-border); }
.hg-rs-delivery-h { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; color: var(--hg-black); margin-bottom: 10px; }
.hg-rs-delivery-info { font-size: 13px; color: #555; line-height: 1.7; }

.hg-rs-cert { margin-top: 24px; background: var(--hg-black); padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; }
.hg-rs-cert-icon { width: 30px; height: 30px; background: var(--hg-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; color: var(--hg-white); }
.hg-rs-cert-txt { font-size: 12px; color: #aaa; line-height: 1.6; }
.hg-rs-cert-txt strong { color: var(--hg-white); display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }

/* =============================================================================
   CONFIRMATION — CTA Section orange
   ============================================================================= */

.hg-cta-band {
    background: var(--hg-orange);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-bottom: var(--hg-border3);
}

.hg-cta-band-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); margin-bottom: 10px; }

.hg-cta-band-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white);
    line-height: .92;
    margin-bottom: 16px;
}

.hg-cta-band-p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.65; }
.hg-cta-band-btns { display: flex; flex-direction: column; gap: 12px; }

.hg-btn-wt {
    background: var(--hg-white);
    color: var(--hg-black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 16px 28px;
    border: 2px solid var(--hg-white);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hg-btn-wt:hover { background: var(--hg-gray-bg); color: var(--hg-black); }

.hg-btn-blk-alt {
    background: var(--hg-black);
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 16px 28px;
    border: 2px solid var(--hg-black);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hg-btn-blk-alt:hover { background: #333; color: var(--hg-white); }

/* WooCommerce quantity wrapper inside cart — flatten into flex row */
.hg-ci-qty .quantity {
    display: contents;
}
.hg-ci-qty .quantity label {
    display: none;
}
/* WC adds a default border/background on woocommerce-page — reset */
.hg-cart-items .quantity { margin: 0; }

/* Hide WC default "Update cart" / proceed buttons already replaced */
.hg-cart-items .woocommerce-cart-form__cart-item td { display: none; }

/* woocommerce notices above cart */
.hg-checkout-left .woocommerce-notices-wrapper,
.hg-checkout-left .woocommerce-message,
.hg-checkout-left .woocommerce-error,
.hg-checkout-left .woocommerce-info {
    padding: 12px 40px;
    font-size: 13px;
}

/* =============================================================================
   RESPONSIVE — Panier / Checkout / Confirmation
   ============================================================================= */

@media screen and (max-width: 1024px) {
    .hg-checkout-body { grid-template-columns: 1fr; }
    .hg-checkout-left { border-right: none; border-bottom: var(--hg-border3); }
    .hg-confirm-hero { grid-template-columns: 1fr; min-height: auto; }
    .hg-ch-right { border-left: none; border-top: var(--hg-border3); }
    .hg-order-recap { grid-template-columns: 1fr; }
    .hg-recap-items { border-right: none; border-bottom: var(--hg-border3); }
    .hg-cta-band { grid-template-columns: 1fr; gap: 24px; }
    .hg-ch-h { font-size: 48px; }
}

@media screen and (max-width: 768px) {
    .hg-steps { padding: 0 20px; }
    .hg-step { padding: 14px 16px; gap: 8px; }
    .hg-step-label { font-size: 12px; }
    .hg-cart-section { padding: 24px 20px 0; }
    .hg-cart-items { padding: 0 20px; }
    .hg-cart-actions { padding: 12px 20px; }
    .hg-ci { grid-template-columns: 70px 1fr; }
    .hg-ci-right { display: none; }
    .hg-order-summary { padding: 24px 20px; }
    .hg-form-section { padding: 24px 20px; }
    .hg-ch-left { padding: 40px 24px; }
    .hg-ch-right { padding: 36px 24px; }
    .hg-ch-h { font-size: 40px; }
    .hg-recap-items { padding: 32px 20px; }
    .hg-recap-summary { padding: 32px 20px; }
    .hg-cta-band { padding: 36px 20px; }
    .hg-cta-band-h { font-size: 36px; }
}

/* =============================================================================
   ARTISTE — Archive hg_artiste
   ============================================================================= */

.hg-artists-archive {
    padding: 48px 40px;
    background: var(--hg-white);
}

.hg-artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--hg-border);
    margin-bottom: 48px;
}

/* Card artiste — utilisée dans archive ET shortcode [hg_artist_card] */
.hg-artist-card {
    border-right: var(--hg-border);
    border-bottom: var(--hg-border);
    overflow: hidden;
    background: var(--hg-white);
    transition: transform .15s;
}

.hg-artist-card:hover { transform: translateY(-2px); z-index: 2; position: relative; }

.hg-artist-card:nth-child(3n) { border-right: none; }

.hg-artist-card-link { display: block; text-decoration: none; color: inherit; }

.hg-artist-card-photo {
    position: relative;
    background: var(--hg-black);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hg-artist-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.hg-artist-card:hover .hg-artist-card-img { transform: scale(1.04); }

.hg-artist-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 60%, #E8521A 100%);
}

.hg-artist-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--hg-orange);
    border: var(--hg-border);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--hg-white);
    padding: 4px 12px;
}

.hg-artist-card-count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-orange);
    letter-spacing: .06em;
    background: var(--hg-black);
    padding: 5px 12px;
    border: 2px solid var(--hg-orange);
}

.hg-artist-card-body { padding: 24px 22px 22px; }

.hg-artist-card-city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    margin-bottom: 8px;
}

.hg-artist-city-line { width: 20px; height: 2px; background: var(--hg-orange); flex-shrink: 0; }

.hg-artist-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .9;
    color: var(--hg-black);
    margin: 0 0 6px;
}

.hg-artist-card-spec {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.hg-artist-card-excerpt { font-size: 13px; line-height: 1.7; color: #666; margin-bottom: 14px; }

.hg-artist-card-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--hg-orange);
    border-top: var(--hg-border);
    padding-top: 12px;
    margin-top: 4px;
}

/* Shortcode [hg_section_title] */
.hg-section-title-wrap { margin-bottom: 32px; }
.hg-section-title-wrap.hg-align-center { text-align: center; }
.hg-section-title-wrap.hg-align-right { text-align: right; }

.hg-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--hg-black);
    display: inline-block;
}

.hg-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
}

.hg-section-title-link {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--hg-orange);
    text-decoration: none;
    margin-left: 16px;
    vertical-align: middle;
}

/* Boutons utilitaires (pour CTA band, etc.) */
.hg-btn-blk {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 13px 26px;
    background: var(--hg-black);
    color: var(--hg-white);
    border: var(--hg-border);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.hg-btn-blk:hover { background: #333; color: var(--hg-white); }

.hg-btn-org {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 13px 26px;
    background: var(--hg-orange);
    color: var(--hg-white);
    border: 2px solid var(--hg-orange);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.hg-btn-org:hover { background: #cc4415; color: var(--hg-white); }

.hg-btn-out {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 13px 26px;
    background: var(--hg-white);
    color: var(--hg-black);
    border: var(--hg-border);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.hg-btn-out:hover { background: var(--hg-gray-bg); color: var(--hg-black); }

/* CTA band — variante noire */
.hg-cta-band--black { background: var(--hg-black); }
.hg-cta-band--black .hg-cta-band-label { color: rgba(255,255,255,.5); }
.hg-cta-band--black .hg-cta-band-h,
.hg-cta-band--black .hg-cta-band-p { color: var(--hg-white); }
.hg-cta-band--black .hg-cta-band-p { color: rgba(255,255,255,.75); }

/* =============================================================================
   RESPONSIVE — Archive artistes
   ============================================================================= */

@media screen and (max-width: 1024px) {
    .hg-artists-grid { grid-template-columns: repeat(2, 1fr); }
    .hg-artist-card:nth-child(3n) { border-right: var(--hg-border); }
    .hg-artist-card:nth-child(2n) { border-right: none; }
}

@media screen and (max-width: 768px) {
    .hg-artists-archive { padding: 32px 20px; }
    .hg-artist-card-name { font-size: 28px; }
}

@media screen and (max-width: 480px) {
    .hg-artists-grid { grid-template-columns: 1fr; }
    .hg-artist-card:nth-child(n) { border-right: none; }
}

/* =============================================================================
   CATALOGUE ARTISTES — archive-hg_artiste.php  (.hg-al-* + .hg-ac-*)
   ============================================================================= */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hg-al-hero {
    background: var(--hg-black);
    padding: 52px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    border-bottom: var(--hg-border3);
    gap: 32px;
}

.hg-al-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    margin-bottom: 12px;
}

.hg-al-hero-eline { width: 28px; height: 2px; background: var(--hg-orange); flex-shrink: 0; }

.hg-al-hero-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white);
    line-height: .88;
    margin-bottom: 16px;
}

.hg-al-hero-sub { font-size: 14px; color: #888; line-height: 1.65; max-width: 520px; }

.hg-al-hero-count { text-align: right; }

.hg-al-hero-count-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 100px;
    font-weight: 900;
    color: var(--hg-orange);
    line-height: 1;
    opacity: .6;
}

.hg-al-hero-count-l {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #666;
    text-align: right;
}

/* ── Barre de recherche ───────────────────────────────────────────────────── */
.hg-al-search { border-bottom: var(--hg-border3); }

.hg-al-search-form {
    display: flex;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
}

.hg-al-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border-right: var(--hg-border3);
    background: var(--hg-white);
}

.hg-al-search-icon { padding: 0 20px; display: flex; align-items: center; color: #999; flex-shrink: 0; }

.hg-al-search-input {
    flex: 1;
    padding: 18px 0;
    font-size: 15px;
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    color: var(--hg-black);
    background: transparent;
}

.hg-al-search-input::placeholder { color: #ccc; }

.hg-al-search-clear {
    padding: 0 18px;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    flex-shrink: 0;
}

.hg-al-search-btn {
    background: var(--hg-orange);
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 0 36px;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.hg-al-search-btn:hover { background: #cc4415; }

/* ── Ticker villes ────────────────────────────────────────────────────────── */
.hg-al-ticker {
    background: var(--hg-orange);
    padding: 10px 0;
    border-bottom: 2px solid var(--hg-black);
    overflow: hidden;
    white-space: nowrap;
}

/* Utilise .hg-ticker-track (animation prouvée) avec overrides spécifiques */
.hg-al-ticker .hg-ticker-track { gap: 40px; }
.hg-al-ticker .hg-ticker-item  { font-size: 14px; }

/* ── Toolbar ──────────────────────────────────────────────────────────────── */
.hg-al-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    border-bottom: 2px solid var(--hg-black);
    background: var(--hg-gray-bg);
    flex-wrap: wrap;
    gap: 12px;
}

.hg-al-toolbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hg-al-tb-count {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: var(--hg-black);
}

.hg-al-active-filters { display: flex; gap: 6px; flex-wrap: wrap; }

.hg-al-af-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hg-black);
    color: var(--hg-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    text-decoration: none;
}

.hg-al-af-tag span { color: var(--hg-orange); font-size: 14px; font-weight: 900; }
.hg-al-af-tag:hover { background: #333; color: var(--hg-white); }

.hg-al-sort-btns { display: flex; gap: 0; border: 2px solid var(--hg-black); }

.hg-al-sort-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 9px 16px;
    border-right: 2px solid var(--hg-black);
    background: var(--hg-white);
    color: #999;
    text-decoration: none;
    display: inline-block;
}

.hg-al-sort-btn:last-child { border-right: none; }
.hg-al-sort-btn.on { background: var(--hg-black); color: var(--hg-white); }
.hg-al-sort-btn:hover:not(.on) { background: #f0f0f0; color: var(--hg-black); }

/* ── Corps : sidebar + zone ──────────────────────────────────────────────── */
.hg-al-body {
    display: grid;
    grid-template-columns: 240px 1fr;
    border-bottom: var(--hg-border3);
    align-items: start;
}

.hg-al-sidebar {
    border-right: var(--hg-border3);
    background: var(--hg-white);
    position: sticky;
    top: 60px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.hg-al-area { padding: 28px; }

/* ── Grille cards artiste ─────────────────────────────────────────────────── */
.hg-al-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 2px solid var(--hg-black);
}

/* ── Card artiste (.hg-ac) ────────────────────────────────────────────────── */
.hg-ac {
    border-right: 2px solid var(--hg-black);
    border-bottom: 2px solid var(--hg-black);
    overflow: hidden;
    background: var(--hg-white);
    text-decoration: none;
    display: block;
    transition: box-shadow .15s;
}

.hg-ac:nth-child(3n) { border-right: none; }
.hg-ac:nth-last-child(-n+3):nth-child(3n+1),
.hg-ac:nth-last-child(-n+3):nth-child(3n+2),
.hg-ac:nth-last-child(-n+3) { border-bottom: none; }
.hg-ac:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); z-index: 2; position: relative; }

.hg-ac--soldout { opacity: .7; }

.hg-ac-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.hg-ac-img-inner { width: 100%; height: 100%; transition: transform .35s; }
.hg-ac:hover .hg-ac-img-inner { transform: scale(1.04); }

.hg-ac-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hg-ac-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 60%, #E8521A 100%);
}

/* Badge disponibilité */
.hg-ac-dispo {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    border: 2px solid transparent;
}

.hg-ac-dispo--green  { background: #3B6D11; color: var(--hg-white); border-color: #3B6D11; }
.hg-ac-dispo--orange { background: var(--hg-orange); color: var(--hg-white); border-color: var(--hg-orange); }
.hg-ac-dispo--gray   { background: #999; color: var(--hg-white); border-color: #999; }

/* Badge featured / profil */
.hg-ac-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--hg-white);
    border: 2px solid var(--hg-black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 3px 8px;
    color: var(--hg-black);
}

/* Body carte */
.hg-ac-body { padding: 14px 16px; border-top: 2px solid var(--hg-black); }

.hg-ac-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 2px;
}

.hg-ac:hover .hg-ac-name { color: var(--hg-orange); }

.hg-ac-origin {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--hg-orange);
    margin-bottom: 8px;
}

.hg-ac-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }

.hg-ac-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 3px 8px;
    border: 1.5px solid #ddd;
    color: #888;
}

.hg-ac-tag--orange { border-color: var(--hg-orange); color: var(--hg-orange); }

.hg-ac-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 2px solid var(--hg-black);
}

.hg-ac-works { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #999; }

.hg-ac-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--hg-black);
}

.hg-ac-price--soldout { color: #999; }

.hg-ac-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 12px;
    background: var(--hg-black);
    color: var(--hg-white);
    border: none;
    flex-shrink: 0;
}

.hg-ac:hover .hg-ac-btn { background: var(--hg-orange); }

/* Dispo dot dans sidebar artiste */
.hg-sf-dispo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hg-sf-dispo-dot--green  { background: #3B6D11; }
.hg-sf-dispo-dot--orange { background: var(--hg-orange); }
.hg-sf-dispo-dot--gray   { background: #bbb; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.hg-al-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 28px;
    border-top: 2px solid var(--hg-black);
    flex-wrap: wrap;
}

.hg-al-pg-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 18px;
    border: 2px solid var(--hg-black);
    background: var(--hg-white);
    color: #999;
    text-decoration: none;
    margin-left: -2px;
    display: inline-block;
}

.hg-al-pg-btn.on { background: var(--hg-black); color: var(--hg-white); }
.hg-al-pg-btn:hover:not(.on) { background: var(--hg-gray-bg); color: var(--hg-black); }
.hg-al-pg-btn--ellipsis { cursor: default; }

/* ── Empty state ──────────────────────────────────────────────────────────── */
.hg-al-empty {
    padding: 64px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ── CTA Rejoindre le roster ──────────────────────────────────────────────── */
.hg-al-cta {
    background: var(--hg-black);
    padding: 52px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-bottom: 3px solid var(--hg-orange);
}

.hg-al-cta-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    margin-bottom: 10px;
}

.hg-al-cta-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white);
    line-height: .92;
    margin-bottom: 14px;
}

.hg-al-cta-p { font-size: 14px; color: #888; line-height: 1.65; }

.hg-al-cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hg-al-cta-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 16px 28px;
    text-align: center;
    text-decoration: none;
    display: block;
}

.hg-al-cta-btn--primary { background: var(--hg-orange); color: var(--hg-white); border: 2px solid var(--hg-orange); }
.hg-al-cta-btn--primary:hover { background: #cc4415; color: var(--hg-white); border-color: #cc4415; }
.hg-al-cta-btn--outline { background: transparent; color: var(--hg-white); border: 2px solid #555; }
.hg-al-cta-btn--outline:hover { border-color: var(--hg-white); color: var(--hg-white); }

/* ── Responsive catalogue artistes ───────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .hg-al-hero { padding: 40px 24px; }
    .hg-al-hero-h { font-size: 60px; }
    .hg-al-hero-count-n { font-size: 70px; }
    .hg-al-body { grid-template-columns: 200px 1fr; }
    .hg-al-toolbar { padding: 14px 24px; }
    .hg-al-area { padding: 20px; }
    .hg-al-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hg-ac:nth-child(3n) { border-right: 2px solid var(--hg-black); }
    .hg-ac:nth-child(2n) { border-right: none; }
}

@media screen and (max-width: 768px) {
    .hg-al-hero { grid-template-columns: 1fr; padding: 32px 20px; }
    .hg-al-hero-count { display: none; }
    .hg-al-hero-h { font-size: 48px; }
    .hg-al-body { grid-template-columns: 1fr; }
    .hg-al-sidebar { position: static; max-height: none; border-right: none; border-bottom: var(--hg-border3); }
    .hg-al-toolbar { padding: 12px 16px; flex-direction: column; align-items: flex-start; }
    .hg-al-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hg-al-area { padding: 16px; }
    .hg-al-cta { grid-template-columns: 1fr; padding: 40px 20px; gap: 28px; }
    .hg-al-cta-h { font-size: 44px; }
}

@media screen and (max-width: 480px) {
    .hg-al-grid { grid-template-columns: 1fr; }
    .hg-ac:nth-child(n) { border-right: none; }
    .hg-al-hero { padding: 24px 16px; }
    .hg-al-hero-h { font-size: 40px; }
    .hg-al-search-btn { padding: 0 18px; font-size: 13px; }
    .hg-al-sort-btns { flex-wrap: wrap; }
}

/* =============================================================
   LATEST WORKS — [hg_latest_works]
   ============================================================= */

.hg-latest-works {
    padding: 56px 40px;
    background: #f5f5f5;
    border-top: 3px solid var(--hg-black, #111);
    border-bottom: 3px solid var(--hg-black, #111);
}

.hg-lw-grid {
    display: grid;
    gap: 0;
    border: 3px solid var(--hg-black, #111);
}

.hg-grid-4 { grid-template-columns: repeat(4, 1fr); }
.hg-grid-3 { grid-template-columns: repeat(3, 1fr); }
.hg-grid-2 { grid-template-columns: repeat(2, 1fr); }

.hg-lw-grid .hg-wcard { border-right: 3px solid var(--hg-black, #111); border-bottom: none; }
.hg-grid-4 .hg-wcard:nth-child(4n),
.hg-grid-3 .hg-wcard:nth-child(3n),
.hg-grid-2 .hg-wcard:nth-child(2n) { border-right: none; }

@media screen and (max-width: 1024px) {
    .hg-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hg-grid-4 .hg-wcard:nth-child(4n) { border-right: 3px solid var(--hg-black, #111); }
    .hg-grid-4 .hg-wcard:nth-child(2n) { border-right: none; }
    .hg-lw-grid .hg-wcard:nth-child(n+3) { border-top: 3px solid var(--hg-black, #111); }
    .hg-latest-works { padding: 40px 24px; }
}

@media screen and (max-width: 768px) {
    .hg-grid-4,
    .hg-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hg-grid-3 .hg-wcard:nth-child(3n) { border-right: 3px solid var(--hg-black, #111); }
    .hg-grid-3 .hg-wcard:nth-child(2n),
    .hg-grid-4 .hg-wcard:nth-child(2n) { border-right: none; }
}

@media screen and (max-width: 480px) {
    .hg-grid-4,
    .hg-grid-3,
    .hg-grid-2 { grid-template-columns: 1fr; }
    .hg-lw-grid .hg-wcard { border-right: none !important; border-top: 3px solid var(--hg-black, #111); }
    .hg-lw-grid .hg-wcard:first-child { border-top: none; }
}

/* =============================================================
   SEE ART IN REAL LIFE — [hg_real_life]
   ============================================================= */

.hg-real-life {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    border-bottom: 3px solid var(--hg-black, #111);
}

.hg-rl-txt {
    padding: 56px 48px;
    background: var(--hg-white, #fff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 3px solid var(--hg-black, #111);
}

.hg-rl-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 58px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .93;
    color: var(--hg-black, #111);
    margin: 0 0 16px;
}

.hg-rl-orange { color: var(--hg-orange, #E8521A); }

.hg-rl-p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 290px;
}

.hg-rl-right {
    position: relative;
    overflow: hidden;
    background: #e0dbd5;
}

.hg-rl-img-wrap {
    position: absolute;
    inset: 0;
}

.hg-rl-img-wrap .hg-rl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hg-rl-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #e8e0d5 50%, #d4c8b8 100%);
}

@media screen and (max-width: 1024px) {
    .hg-rl-h { font-size: 46px; }
    .hg-rl-txt { padding: 40px 32px; }
}

@media screen and (max-width: 768px) {
    .hg-real-life { grid-template-columns: 1fr; }
    .hg-rl-txt { border-right: none; border-bottom: 3px solid var(--hg-black, #111); padding: 40px 24px; }
    .hg-rl-right { min-height: 240px; }
}

@media screen and (max-width: 480px) {
    .hg-rl-h { font-size: 36px; }
}

/* =============================================================
   CURRENT DROP — [hg_current_drop]
   ============================================================= */

.hg-current-drop {
    background: var(--hg-black, #111);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-bottom: 3px solid var(--hg-orange, #E8521A);
}

.hg-drop-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hg-drop-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange, #E8521A);
    margin-bottom: 8px;
}

.hg-drop-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 68px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white, #fff);
    line-height: .9;
    margin: 0 0 18px;
}

.hg-drop-p {
    font-size: 14px;
    color: #888;
    margin: 0 0 28px;
    line-height: 1.6;
}

.hg-drop-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hg-drop-item {
    background: #1a1a1a;
    border: 1.5px solid #333;
    padding: 14px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: border-color .15s;
}

.hg-drop-item:hover { border-color: var(--hg-orange, #E8521A); }

.hg-drop-item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    margin-bottom: 10px;
    background: #111;
}

.hg-drop-mini-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hg-drop-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #222 60%, #E8521A 100%);
    opacity: .5;
}

.hg-drop-item-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white, #fff);
    margin-bottom: 2px;
}

.hg-drop-item-price {
    font-size: 12px;
    color: var(--hg-orange, #E8521A);
    font-weight: 700;
}

/* Prix WooCommerce dans le drop */
.hg-drop-item-price .woocommerce-Price-amount { color: var(--hg-orange, #E8521A); }

@media screen and (max-width: 1024px) {
    .hg-drop-h { font-size: 52px; }
    .hg-current-drop { padding: 40px 32px; gap: 28px; }
}

@media screen and (max-width: 768px) {
    .hg-current-drop { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
    .hg-drop-h { font-size: 58px; }
    .hg-drop-right { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}

@media screen and (max-width: 480px) {
    .hg-drop-h { font-size: 46px; }
    .hg-drop-right { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   ABOUT — [hg_about]
   ============================================================= */

.hg-about {
    text-align: center;
    padding: 64px 80px;
    border-bottom: 3px solid var(--hg-black, #111);
    background: var(--hg-white, #fff);
}

.hg-about-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange, #E8521A);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hg-about-line {
    width: 28px;
    height: 2px;
    background: var(--hg-orange, #E8521A);
    flex-shrink: 0;
}

.hg-about-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black, #111);
    margin: 0 0 16px;
}

.hg-about-p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    max-width: 560px;
    margin: 0 auto 10px;
}

.hg-about-bold {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--hg-black, #111);
    margin-top: 14px;
}

.hg-about-smile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    width: 42px;
    height: 42px;
}

.hg-about-smile img { display: block; width: 42px; height: 42px; object-fit: contain; }

.hg-about-smile-inner { display: none; }

@media screen and (max-width: 768px) {
    .hg-about { padding: 48px 32px; }
    .hg-about-h { font-size: 36px; }
}

@media screen and (max-width: 480px) {
    .hg-about { padding: 40px 20px; }
    .hg-about-h { font-size: 30px; }
    .hg-about-p { font-size: 14px; }
}

/* =============================================================
   NEWSLETTER — [hg_newsletter]
   ============================================================= */

.hg-newsletter {
    background: var(--hg-orange, #E8521A);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    border-top: 3px solid var(--hg-black, #111);
    border-bottom: 3px solid var(--hg-black, #111);
}

.hg-nl-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white, #fff);
    line-height: 1;
    margin: 0 0 6px;
}

.hg-nl-p {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin: 0;
}

.hg-nl-form {
    display: flex;
}

.hg-nl-input {
    flex: 1;
    padding: 14px 16px;
    font-size: 13px;
    border: 2px solid var(--hg-black, #111);
    background: var(--hg-white, #fff);
    outline: none;
    font-family: 'Barlow', sans-serif;
    min-width: 0;
}

.hg-nl-btn {
    background: var(--hg-black, #111);
    color: var(--hg-white, #fff);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 14px 22px;
    border: 2px solid var(--hg-black, #111);
    cursor: pointer;
    white-space: nowrap;
}

.hg-nl-btn:hover { background: #333; }

/* CF7 dans la newsletter */
.hg-newsletter .wpcf7-form { display: flex; gap: 0; }
.hg-newsletter .wpcf7-form input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    font-size: 13px;
    border: 2px solid var(--hg-black, #111);
    background: var(--hg-white, #fff);
    outline: none;
}
.hg-newsletter .wpcf7-form input[type="submit"] {
    background: var(--hg-black, #111);
    color: var(--hg-white, #fff);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 22px;
    border: 2px solid var(--hg-black, #111);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .hg-newsletter { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px; }
    .hg-nl-h { font-size: 32px; }
}

@media screen and (max-width: 480px) {
    .hg-nl-form { flex-direction: column; gap: 8px; }
    .hg-nl-btn { width: 100%; }
}

/* =============================================================
   FEATURED ARTISTS — [hg_featured_artists]
   Section homepage : grille N colonnes avec cartes bordées
   ============================================================= */

.hg-featured-artists {
    padding: 56px 40px;
    background: var(--hg-white, #fff);
    border-bottom: 3px solid var(--hg-black, #111);
}

/* En-tête de section */
.hg-sec-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
}

.hg-sec-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black, #111);
    margin: 0;
}

.hg-sec-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--hg-orange, #E8521A);
    text-decoration: none;
    white-space: nowrap;
}

.hg-sec-link:hover { text-decoration: underline; }

/* Grille */
.hg-feat-artists-grid {
    display: grid;
    gap: 0;
    border: 3px solid var(--hg-black, #111);
}

.hg-feat-cols-4 { grid-template-columns: repeat(4, 1fr); }
.hg-feat-cols-3 { grid-template-columns: repeat(3, 1fr); }
.hg-feat-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Carte artiste homepage */
.hg-feat-artist-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-right: 3px solid var(--hg-black, #111);
}

.hg-feat-cols-4 .hg-feat-artist-card:nth-child(4n),
.hg-feat-cols-3 .hg-feat-artist-card:nth-child(3n),
.hg-feat-cols-2 .hg-feat-artist-card:nth-child(2n) { border-right: none; }

.hg-feat-artist-photo {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.hg-feat-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.hg-feat-artist-card:hover .hg-feat-artist-img { transform: scale(1.04); }

.hg-feat-artist-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 55%, #E8521A 100%);
}

.hg-feat-artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%);
}

.hg-feat-artist-body {
    padding: 17px 16px;
    background: var(--hg-white, #fff);
    border-top: 3px solid var(--hg-black, #111);
}

.hg-feat-artist-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black, #111);
    margin: 0 0 8px;
}

.hg-feat-artist-btn {
    display: block;
    width: 100%;
    background: var(--hg-black, #111);
    color: var(--hg-white, #fff);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 10px 0;
    text-align: center;
    transition: background .15s;
}

.hg-feat-artist-card:hover .hg-feat-artist-btn {
    background: var(--hg-orange, #E8521A);
}

/* =============================================================
   RESPONSIVE — Featured Artists
   ============================================================= */

@media screen and (max-width: 1024px) {
    .hg-feat-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .hg-feat-cols-4 .hg-feat-artist-card:nth-child(4n) { border-right: 3px solid var(--hg-black, #111); }
    .hg-feat-cols-4 .hg-feat-artist-card:nth-child(2n) { border-right: none; }
    .hg-featured-artists { padding: 40px 24px; }
}

@media screen and (max-width: 768px) {
    .hg-feat-cols-4,
    .hg-feat-cols-3 { grid-template-columns: repeat(2, 1fr); }
    .hg-feat-cols-3 .hg-feat-artist-card:nth-child(3n) { border-right: 3px solid var(--hg-black, #111); }
    .hg-feat-cols-3 .hg-feat-artist-card:nth-child(2n),
    .hg-feat-cols-4 .hg-feat-artist-card:nth-child(2n) { border-right: none; }
}

@media screen and (max-width: 480px) {
    .hg-feat-cols-4,
    .hg-feat-cols-3,
    .hg-feat-cols-2 { grid-template-columns: 1fr; }
    .hg-feat-artist-card { border-right: none !important; }
    .hg-feat-artist-photo { height: 200px; }
    .hg-sec-header { flex-direction: column; gap: 8px; }
}

/* =============================================================
   BANDE PROJET — [hg_project_band]
   ============================================================= */

.hg-project-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 3px solid var(--hg-black, #111);
}

/* ── Colonne gauche (fond noir) ── */
.hg-proj-txt {
    background: var(--hg-black, #111);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hg-proj-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange, #E8521A);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hg-proj-line {
    width: 28px;
    height: 2px;
    background: var(--hg-orange, #E8521A);
    flex-shrink: 0;
}

.hg-proj-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--hg-white, #fff);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 16px;
}

.hg-proj-p {
    font-size: 14px;
    line-height: 1.75;
    color: #aaa;
    margin: 0 0 24px;
    max-width: 360px;
}

.hg-proj-sig {
    font-size: 22px;
    color: var(--hg-orange, #E8521A);
    font-style: italic;
    font-family: Georgia, serif;
    margin: 0;
}

/* ── Colonne droite (image) ── */
.hg-proj-right {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-left: 3px solid var(--hg-black, #111);
    background: #1e1e1e;
}

.hg-proj-img-wrap {
    position: absolute;
    inset: 0;
}

.hg-proj-img-wrap .hg-proj-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hg-proj-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e1e1e 60%, #2a2a2a 100%);
}

/* =============================================================
   RESPONSIVE — Bande projet
   ============================================================= */

@media screen and (max-width: 1024px) {
    .hg-proj-txt { padding: 40px 32px; }
    .hg-proj-h { font-size: 32px; }
}

@media screen and (max-width: 768px) {
    .hg-project-band {
        grid-template-columns: 1fr;
    }

    .hg-proj-right {
        border-left: none;
        border-top: 3px solid var(--hg-black, #111);
        min-height: 240px;
    }

    .hg-proj-txt { padding: 40px 24px; }
}

@media screen and (max-width: 480px) {
    .hg-proj-h { font-size: 28px; }
    .hg-proj-sig { font-size: 18px; }
}

/* =============================================================
   HERO ACCUEIL — [hg_hero]
   ============================================================= */

.hg-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    border-bottom: 3px solid var(--hg-black, #111);
}

/* ── Colonne gauche ── */
.hg-hero-left {
    padding: 56px 44px;
    background: var(--hg-white, #fff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 3px solid var(--hg-black, #111);
}

.hg-hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 90px;
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
    color: var(--hg-black, #111);
    margin: 0 0 18px;
}

.hg-hero-orange {
    color: var(--hg-orange, #E8521A);
}

.hg-hero-sub {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 30px;
    max-width: 320px;
}

.hg-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Colonne droite ── */
.hg-hero-right {
    background: var(--hg-black, #111);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.hg-hero-img-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hg-hero-img-wrap .hg-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder SVG quand aucune image n'est choisie */
.hg-hero-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 55% 48%, var(--hg-orange, #E8521A) 38%, transparent 38.1%),
        #111;
}

/* ── Badge ── */
.hg-hero-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: var(--hg-orange, #E8521A);
    border: 3px solid var(--hg-black, #111);
    border-radius: 50%;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    z-index: 2;
}

.hg-hero-badge-t {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: var(--hg-white, #fff);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

/* =============================================================
   RESPONSIVE — Hero
   ============================================================= */

/* Tablette paysage */
@media screen and (max-width: 1024px) {
    .hg-hero-h1 { font-size: 72px; }
    .hg-hero-left { padding: 40px 32px; }
}

/* Tablette portrait : colonnes empilées */
@media screen and (max-width: 768px) {
    .hg-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hg-hero-left {
        border-right: none;
        border-bottom: 3px solid var(--hg-black, #111);
        padding: 40px 24px;
    }

    .hg-hero-right {
        min-height: 300px;
    }

    .hg-hero-h1 { font-size: 64px; }

    .hg-hero-badge {
        width: 76px;
        height: 76px;
        top: 16px;
        right: 16px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .hg-hero-h1 { font-size: 52px; }
    .hg-hero-sub { font-size: 14px; }
    .hg-hero-btns { flex-direction: column; }
    .hg-hero-btns .hg-btn-blk,
    .hg-hero-btns .hg-btn-out { text-align: center; }
    .hg-hero-right { min-height: 240px; }
}

/* =============================================================
   PAGE 404 — Sad Gallery
   ============================================================= */

.hg-404-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 3px solid #222;
    background: #111;
    min-height: 580px;
}

/* ── Visuel gauche ────────────────────────────────────────────────────────── */
.hg-404-left {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 3px solid #222;
    background: #111;
    order: 2;
}

/* ── Bloc texte droite ────────────────────────────────────────────────────── */
.hg-404-right {
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #111;
    order: 1;
}

.hg-404-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    margin-bottom: 14px;
}

.hg-404-eline { width: 28px; height: 2px; background: var(--hg-orange); flex-shrink: 0; }

.hg-404-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .9;
    color: var(--hg-white);
    margin-bottom: 10px;
}

.hg-404-title span { color: var(--hg-orange); }

.hg-404-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 24px;
}

.hg-404-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #777;
    margin-bottom: 36px;
    max-width: 360px;
}

/* ── Recherche ────────────────────────────────────────────────────────────── */
.hg-404-search {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border: 2px solid #333;
}

.hg-404-search:focus-within { border-color: var(--hg-orange); }

.hg-404-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 13px 18px;
    font-size: 14px;
    color: var(--hg-white);
    font-family: 'Barlow', sans-serif;
}

.hg-404-search-input::placeholder { color: #444; }

.hg-404-search-btn {
    background: var(--hg-orange);
    border: none;
    color: var(--hg-white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 13px 22px;
    cursor: pointer;
    flex-shrink: 0;
}

.hg-404-search-btn:hover { background: #cc4415; }

/* ── Liens rapides ────────────────────────────────────────────────────────── */
.hg-404-ql-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #555;
    margin-bottom: 12px;
}

.hg-404-ql-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 2px solid #222;
    margin-bottom: 36px;
}

.hg-404-ql-item {
    padding: 12px 16px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    transition: background .15s;
}

.hg-404-ql-item:nth-child(2n) { border-right: none; }
.hg-404-ql-item:nth-last-child(-n+2) { border-bottom: none; }
.hg-404-ql-item:hover { background: #1a1a1a; color: var(--hg-white); }
.hg-404-ql-item:hover .hg-404-ql-arrow { color: var(--hg-orange); }

.hg-404-ql-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: .6; display: flex; align-items: center; }
.hg-404-ql-icon svg { width: 18px; height: 18px; }
.hg-404-ql-item:hover .hg-404-ql-icon { opacity: 1; }

.hg-404-ql-arrow {
    color: #333;
    margin-left: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
}

/* ── Boutons ──────────────────────────────────────────────────────────────── */
.hg-404-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hg-404-btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 13px 26px;
    background: transparent;
    color: #666;
    border: 2px solid #333;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.hg-404-btn-ghost:hover { border-color: #666; color: var(--hg-white); }

/* ── Ticker ───────────────────────────────────────────────────────────────── */
.hg-404-ticker {
    background: var(--hg-orange);
    padding: 11px 0;
    border-bottom: 2px solid #111;
    overflow: hidden;
    white-space: nowrap;
}

.hg-404-ticker-inner {
    display: inline-flex;
    gap: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hg-white);
    text-transform: uppercase;
    letter-spacing: .08em;
    animation: hg-ticker-scroll 30s linear infinite;
}

.hg-404-ticker-sep { color: rgba(255,255,255,.5); }

/* ── Suggestions produits ─────────────────────────────────────────────────── */
.hg-404-suggestions {
    background: #111;
    padding: 48px 40px;
    border-bottom: 3px solid var(--hg-orange);
}

.hg-404-sug-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white);
    margin-bottom: 5px;
}

.hg-404-sug-h::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 5px;
    margin-bottom: 28px;
}

.hg-404-sug-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 2px solid #222;
}

.hg-404-sc {
    border-right: 2px solid #222;
    overflow: hidden;
    background: #111;
    text-decoration: none;
    display: block;
    transition: background .15s;
}

.hg-404-sc:last-child { border-right: none; }
.hg-404-sc:hover { background: #1a1a1a; }

.hg-404-sc-img {
    height: 160px;
    overflow: hidden;
    background: #1a1a1a;
}

.hg-404-sc-photo,
.hg-404-sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

.hg-404-sc:hover .hg-404-sc-photo,
.hg-404-sc:hover .hg-404-sc-img img { transform: scale(1.04); }

.hg-404-sc-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 60%, var(--hg-orange) 100%);
    opacity: .3;
}

.hg-404-sc-body { padding: 12px 14px; border-top: 2px solid #222; }

.hg-404-sc-artist {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--hg-orange);
    margin-bottom: 2px;
}

.hg-404-sc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-white);
    margin-bottom: 6px;
}

.hg-404-sc-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #666;
}

/* ── Responsive 404 ──────────────────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .hg-404-title { font-size: 52px; }
    .hg-404-right { padding: 48px 36px; }
    .hg-404-sug-grid { grid-template-columns: repeat(2, 1fr); }
    .hg-404-sc:nth-child(2) { border-right: none; }
    .hg-404-sc:nth-child(3) { border-right: 2px solid #222; border-top: 2px solid #222; }
    .hg-404-sc:nth-child(4) { border-right: none; border-top: 2px solid #222; }
}

@media screen and (max-width: 768px) {
    .hg-404-main { grid-template-columns: 1fr; }
    .hg-404-left { display: none; }
    .hg-404-right { order: 1; padding: 40px 24px; }
    .hg-404-title { font-size: 48px; }
    .hg-404-suggestions { padding: 36px 20px; }
}

@media screen and (max-width: 480px) {
    .hg-404-title { font-size: 40px; }
    .hg-404-sug-grid { grid-template-columns: 1fr; }
    .hg-404-sc { border-right: none; border-bottom: 2px solid #222; }
    .hg-404-sc:last-child { border-bottom: none; }
    .hg-404-right { padding: 32px 16px; }
}

/* =============================================================
   ARTIST SINGLE — single-hg_artiste.php
   ============================================================= */

/* ── Wrapper page ── */
.hg-artist-single {
    background: var(--hg-white, #fff);
}

/* ── Artist Hero ── */
.hg-ah {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    border-bottom: var(--hg-border);
}

/* Visuel gauche */
.hg-ah-visual {
    position: relative;
    background: var(--hg-gray-bg, #f5f5f5);
    border-right: var(--hg-border);
    overflow: hidden;
}

.hg-ah-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hg-ah-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: var(--hg-gray-bg, #f5f5f5);
}

.hg-ah-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--hg-orange, #E8521A);
    color: var(--hg-white, #fff);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 2px solid var(--hg-white, #fff);
}

.hg-ah-num {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--hg-black, #111);
    color: var(--hg-white, #fff);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 2px solid var(--hg-white, #fff);
}

/* Infos droite */
.hg-ah-info {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hg-ah-city {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hg-gray-mid, #888);
}

.hg-ah-city-line {
    width: 32px;
    height: 2px;
    background: var(--hg-orange, #E8521A);
    flex-shrink: 0;
}

.hg-ah-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .9;
    letter-spacing: -.01em;
    color: var(--hg-black, #111);
    margin: 0;
}

.hg-ah-spec {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--hg-orange, #E8521A);
}

.hg-ah-bio {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    max-width: 520px;
}

/* Stats */
.hg-ah-stats {
    display: flex;
    gap: 0;
    border: var(--hg-border);
    width: fit-content;
    margin-top: 8px;
}

.hg-ah-stat {
    padding: 16px 28px;
    text-align: center;
    border-right: var(--hg-border);
}

.hg-ah-stat:last-child {
    border-right: none;
}

.hg-ah-stat-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--hg-black, #111);
    line-height: 1;
}

.hg-ah-stat-l {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    margin-top: 4px;
}

/* Actions */
.hg-ah-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ── Works section ── */
.hg-artiste-works {
    border-bottom: var(--hg-border);
}

.hg-artiste-works .hg-sec-header {
    padding: 40px 40px 32px;
    border-bottom: var(--hg-border);
}

/* ── Press section ── */
.hg-artiste-press {
    background: var(--hg-black, #111);
    border-bottom: var(--hg-border);
}

.hg-artiste-press .hg-sec-header {
    border-bottom: 2px solid rgba(255,255,255,.12);
}

.hg-artiste-press .hg-sec-h {
    color: var(--hg-white, #fff);
}

.hg-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    gap: 0;
}

.hg-press-item {
    padding: 40px;
    border-right: 2px solid rgba(255,255,255,.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hg-press-item:last-child {
    border-right: none;
}

.hg-press-source {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange, #E8521A);
}

.hg-press-quote {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--hg-white, #fff);
    font-style: italic;
    flex: 1;
}

.hg-press-dash {
    width: 32px;
    height: 2px;
    background: var(--hg-orange, #E8521A);
    margin-top: 8px;
}

/* ── Responsive 1024px ── */
@media screen and (max-width: 1024px) {
    .hg-ah { min-height: auto; }

    .hg-ah-name { font-size: 56px; }

    .hg-ah-info { padding: 40px 36px; }

    .hg-press-grid { grid-template-columns: 1fr 1fr; }
    .hg-press-item:nth-child(2) { border-right: none; }
    .hg-press-item:nth-child(3) { border-top: 2px solid rgba(255,255,255,.12); border-right: none; }
}

/* ── Responsive 768px ── */
@media screen and (max-width: 768px) {
    .hg-ah {
        grid-template-columns: 1fr;
    }

    .hg-ah-visual {
        border-right: none;
        border-bottom: var(--hg-border);
        min-height: 55vw;
    }

    .hg-ah-placeholder { min-height: 55vw; }

    .hg-ah-info {
        padding: 32px 24px;
        gap: 16px;
    }

    .hg-ah-name { font-size: 48px; }

    .hg-ah-stats { width: 100%; }
    .hg-ah-stat { flex: 1; padding: 12px 16px; }

    .hg-press-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .hg-press-item {
        border-right: none;
        border-bottom: 2px solid rgba(255,255,255,.12);
        padding: 24px 0;
    }

    .hg-press-item:last-child { border-bottom: none; }
}

/* ── Responsive 480px ── */
@media screen and (max-width: 480px) {
    .hg-ah-name { font-size: 36px; }
    .hg-ah-info { padding: 24px 16px; }
    .hg-ah-actions { flex-direction: column; }
    .hg-ah-actions .hg-btn-blk,
    .hg-ah-actions .hg-btn-out { text-align: center; }
    .hg-press-grid { padding: 16px; }
}

/* =============================================================
   PAGE ABOUT
   ============================================================= */

/* ── About Hero ── */
.hg-about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 3px solid var(--hg-black);
    min-height: 460px;
}
.hg-ah-hero-left {
    background: var(--hg-black);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hg-ah-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(232,82,26,.15) 0%, transparent 70%);
    pointer-events: none;
}
.hg-ah-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.hg-ah-hero-eline { width: 28px; height: 2px; background: var(--hg-orange); }
.hg-ah-hero-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 76px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .88;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.hg-ah-hero-sub {
    font-size: 15px;
    line-height: 1.75;
    color: #888;
    max-width: 380px;
    position: relative;
    z-index: 1;
}
.hg-ah-hero-right {
    background: var(--hg-orange);
    border-left: 3px solid var(--hg-black);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hg-ah-hero-qlabel {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
}
.hg-ah-hero-quote {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
    font-style: normal;
}
.hg-ah-hero-author {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    font-style: italic;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 2px solid rgba(255,255,255,.3);
    margin-bottom: 0;
}
.hg-ah-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 2px solid rgba(255,255,255,.3);
    margin-top: 32px;
}
.hg-ah-hstat {
    padding: 16px 18px;
    text-align: center;
    border-right: 2px solid rgba(255,255,255,.3);
}
.hg-ah-hstat:last-child { border-right: none; }
.hg-ah-hstat-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.hg-ah-hstat-l {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,.7);
    margin-top: 3px;
}

/* ── Manifesto ── */
.hg-manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 3px solid var(--hg-black);
}
.hg-mf-left {
    padding: 64px 48px;
    background: var(--hg-gray-bg);
    border-right: 3px solid var(--hg-black);
}
.hg-mf-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.hg-mf-line { width: 28px; height: 2px; background: var(--hg-orange); }
.hg-mf-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--hg-black);
    margin-bottom: 0;
}
.hg-mf-h::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
    margin-bottom: 28px;
}
.hg-mf-p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}
.hg-mf-right {
    padding: 64px 48px;
    background: #fff;
}
.hg-mf-value {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 2px solid var(--hg-black);
}
.hg-mf-value--last { border-bottom: none; }
.hg-mf-vn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--hg-orange);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
}
.hg-mf-vtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 5px;
}
.hg-mf-vp { font-size: 13px; line-height: 1.7; color: #777; }

/* ── Team grid ── */
.hg-team {
    padding: 64px 40px;
    border-bottom: 3px solid var(--hg-black);
    background: #fff;
}
.hg-team-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--hg-black);
}
.hg-team-h::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
    margin-bottom: 32px;
}
.hg-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 2px solid var(--hg-black);
}
.hg-team-card {
    border-right: 2px solid var(--hg-black);
    overflow: hidden;
}
.hg-team-card:last-child { border-right: none; }
.hg-team-img {
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
}
.hg-team-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.hg-team-body {
    padding: 16px;
    border-top: 2px solid var(--hg-black);
}
.hg-team-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 3px;
}
.hg-team-role {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--hg-orange);
    margin-bottom: 8px;
}
.hg-team-bio { font-size: 12px; color: #888; line-height: 1.55; }

/* ── Ticker dark ── */
.hg-ticker-dark {
    background: var(--hg-black);
    padding: 11px 0;
    border-top: 2px solid var(--hg-black);
    border-bottom: 2px solid var(--hg-orange);
    overflow: hidden;
    white-space: nowrap;
}
.hg-ticker-dark-in {
    display: inline-flex;
    gap: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hg-orange);
    text-transform: uppercase;
    letter-spacing: .08em;
    animation: hgTickerScroll 22s linear infinite;
}
.hg-ticker-dark-sep { color: #333; }

/* ── Numbers ── */
.hg-numbers {
    background: var(--hg-black);
    padding: 64px 40px;
    border-bottom: 3px solid var(--hg-black);
}
.hg-numbers-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}
.hg-numbers-h::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
    margin-bottom: 32px;
}
.hg-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 2px solid #333;
}
.hg-num-item {
    padding: 32px 24px;
    border-right: 2px solid #333;
    text-align: center;
}
.hg-num-item:last-child { border-right: none; }
.hg-num-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--hg-orange);
    line-height: 1;
    margin-bottom: 6px;
}
.hg-num-l {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
}

/* ── Partners ── */
.hg-partners {
    padding: 56px 40px;
    border-bottom: 3px solid var(--hg-black);
    background: var(--hg-gray-bg);
}
.hg-partners-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--hg-black);
}
.hg-partners-h::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
    margin-bottom: 28px;
}
.hg-partners-row {
    display: flex;
    border: 2px solid var(--hg-black);
    flex-wrap: wrap;
}
.hg-partner {
    flex: 1;
    min-width: 120px;
    padding: 24px 28px;
    border-right: 2px solid var(--hg-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}
.hg-partner:last-child { border-right: none; }
.hg-partner-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    text-decoration: none;
}
a.hg-partner-name:hover { color: var(--hg-orange); }
.hg-partner-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
}

/* ── About CTA ── */
.hg-about-cta {
    background: var(--hg-orange);
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-bottom: 3px solid var(--hg-black);
}
.hg-about-cta-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: .92;
    margin-bottom: 14px;
}
.hg-about-cta-p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.65; }
.hg-about-cta-btns { display: flex; flex-direction: column; gap: 12px; }
.hg-about-cta-btn-wt,
.hg-about-cta-btn-blk {
    display: block;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 16px 28px;
    text-decoration: none;
    border: 2px solid var(--hg-black);
}
.hg-about-cta-btn-wt { background: #fff; color: var(--hg-black); }
.hg-about-cta-btn-wt:hover { background: #f0f0f0; }
.hg-about-cta-btn-blk { background: var(--hg-black); color: #fff; }
.hg-about-cta-btn-blk:hover { background: #222; }

/* =============================================================
   PAGE CONTACT
   ============================================================= */

/* ── Contact Hero ── */
.hg-contact-hero {
    background: var(--hg-black);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 3px solid var(--hg-black);
    min-height: 280px;
    align-items: center;
}
.hg-ch-left {
    border-right: 3px solid #333;
    padding-right: 48px;
}
.hg-ch-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--hg-orange);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.hg-ch-eline { width: 28px; height: 2px; background: var(--hg-orange); }
.hg-ch-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 76px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .88;
    color: #fff;
    margin-bottom: 18px;
}
.hg-ch-sub { font-size: 14px; line-height: 1.7; color: #888; max-width: 360px; }
.hg-ch-right {
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: transparent;
}
.hg-ch-icon svg { display: block; }
.hg-ch-info { display: flex; align-items: flex-start; gap: 16px; }
.hg-ch-icon {
    width: 48px;
    height: 48px;
    background: var(--hg-orange);
    border: 2px solid var(--hg-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    color: #fff;
    flex-shrink: 0;
}
.hg-ch-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #666;
    margin-bottom: 3px;
}
.hg-ch-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}
.hg-ch-val a { color: var(--hg-orange); text-decoration: none; }
.hg-ch-val a:hover { text-decoration: underline; }
.hg-ch-note { font-size: 12px; color: #888; margin-top: 2px; }

/* ── Contact main : form + aside ── */
.hg-contact-main {
    display: grid;
    grid-template-columns: 1fr 380px;
    border-bottom: 3px solid var(--hg-black);
}
.hg-cf-col {
    padding: 56px 48px;
    border-right: 3px solid var(--hg-black);
}
.hg-cf-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    line-height: 1;
}
.hg-cf-h::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--hg-orange);
    margin-top: 6px;
    margin-bottom: 32px;
}
/* Sujets */
.hg-cf-subjects {
    display: flex;
    border: 2px solid var(--hg-black);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hg-cf-subj {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 11px 18px;
    border-right: 2px solid var(--hg-black);
    cursor: pointer;
    color: #999;
    background: #fff;
    user-select: none;
    transition: background .15s, color .15s;
}
.hg-cf-subj:last-child { border-right: none; }
.hg-cf-subj.is-on { background: var(--hg-black); color: #fff; }
.hg-cf-subj:hover:not(.is-on) { background: var(--hg-gray-bg); color: var(--hg-black); }
/* Grille champs */
.hg-cf-grid { display: grid; grid-template-columns: 1fr 1fr; }
.hg-cf-field {
    border: 2px solid var(--hg-black);
    margin-top: -2px;
    margin-left: -2px;
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hg-cf-full { grid-column: 1 / -1; }
.hg-cf-field:focus-within { border-color: var(--hg-orange); position: relative; z-index: 1; }
.hg-cf-field label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #999;
}
.hg-cf-field input,
.hg-cf-field textarea {
    font-size: 14px;
    font-weight: 500;
    color: var(--hg-black);
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Barlow', sans-serif;
    width: 100%;
}
.hg-cf-field input::placeholder,
.hg-cf-field textarea::placeholder { color: #ccc; }
.hg-cf-field textarea { resize: vertical; min-height: 120px; }
/* Note artiste */
.hg-cf-artist-note {
    margin-top: 24px;
    background: var(--hg-gray-bg);
    border: 2px solid var(--hg-black);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.hg-cf-note-icon {
    width: 32px;
    height: 32px;
    background: var(--hg-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    font-weight: 900;
    flex-shrink: 0;
}
.hg-cf-note-txt { font-size: 12px; color: #666; line-height: 1.6; }
.hg-cf-note-txt strong {
    display: block;
    color: var(--hg-black);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
/* Bouton submit */
.hg-cf-submit {
    display: block;
    width: 100%;
    margin-top: 24px;
    background: var(--hg-orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 18px;
    border: 2px solid var(--hg-black);
    cursor: pointer;
    transition: background .15s;
}
.hg-cf-submit:hover { background: #cc4415; }
.hg-cf-legal {
    font-size: 11px;
    color: #bbb;
    margin-top: 12px;
    line-height: 1.6;
    text-align: center;
}
.hg-cf-legal a { color: var(--hg-orange); }
/* Sidebar */
.hg-cf-aside {
    background: var(--hg-gray-bg);
    padding: 56px 36px;
}
.hg-cf-info-block {
    padding: 24px 0;
    border-bottom: 2px solid #ddd;
}
.hg-cf-info-block:first-child { padding-top: 0; }
.hg-cf-info-block:last-child { border-bottom: none; }
.hg-cf-info-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hg-cf-info-h::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--hg-orange);
    flex-shrink: 0;
}
.hg-cf-info-line {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}
.hg-cf-info-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #999;
}
.hg-cf-info-val { font-size: 13px; font-weight: 500; color: var(--hg-black); }
.hg-cf-info-val a { color: var(--hg-orange); text-decoration: none; font-weight: 700; }
.hg-cf-info-val a:hover { text-decoration: underline; }
/* Réseaux */
.hg-cf-socials {
    display: flex;
    border: 2px solid var(--hg-black);
    margin-top: 4px;
}
.hg-cf-soc {
    flex: 1;
    padding: 10px;
    background: #fff;
    border-right: 2px solid var(--hg-black);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--hg-black);
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.hg-cf-soc:last-child { border-right: none; }
a.hg-cf-soc:hover { background: var(--hg-orange); color: #fff; }

/* ── Map ── */
.hg-map-wrap {
    border-bottom: 3px solid var(--hg-black);
    position: relative;
}
.hg-map-placeholder {
    height: 280px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hg-map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hg-map-pin-dot {
    width: 16px;
    height: 16px;
    background: var(--hg-orange);
    border: 2px solid #fff;
    border-radius: 50%;
}
.hg-map-pin-line {
    width: 2px;
    height: 24px;
    background: var(--hg-orange);
}
.hg-map-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--hg-orange);
    border: 2px solid var(--hg-black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    padding: 5px 13px;
    z-index: 1;
}
.hg-map-address {
    background: #fff;
    border: 2px solid var(--hg-black);
    border-top: none;
    padding: 10px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--hg-black);
    text-align: center;
}

/* =============================================================
   ABOUT + CONTACT — Responsive
   ============================================================= */

@media screen and (max-width: 1024px) {
    /* About Hero */
    .hg-ah-hero-h { font-size: 56px; }
    /* Manifesto */
    .hg-manifesto { grid-template-columns: 1fr; }
    .hg-mf-left { border-right: none; border-bottom: 3px solid var(--hg-black); }
    /* Team */
    .hg-team-grid { grid-template-columns: 1fr 1fr; }
    .hg-team-card:nth-child(2) { border-right: none; }
    /* Numbers */
    .hg-numbers-grid { grid-template-columns: 1fr 1fr; }
    .hg-num-item:nth-child(2) { border-right: none; }
    /* Contact hero */
    .hg-contact-hero { grid-template-columns: 1fr; min-height: auto; }
    .hg-ch-left { border-right: none; border-bottom: 3px solid #333; padding-right: 0; padding-bottom: 40px; }
    .hg-ch-right { padding-left: 0; padding-top: 40px; }
    /* Contact form */
    .hg-contact-main { grid-template-columns: 1fr; }
    .hg-cf-col { border-right: none; border-bottom: 3px solid var(--hg-black); }
}

@media screen and (max-width: 768px) {
    /* About Hero */
    .hg-about-hero { grid-template-columns: 1fr; }
    .hg-ah-hero-right { border-left: none; border-top: 3px solid var(--hg-black); }
    .hg-ah-hero-h { font-size: 48px; }
    /* Team */
    .hg-team-grid { grid-template-columns: 1fr 1fr; }
    /* Numbers */
    .hg-numbers-grid { grid-template-columns: 1fr 1fr; }
    /* About CTA */
    .hg-about-cta { grid-template-columns: 1fr; gap: 28px; }
    .hg-about-cta-h { font-size: 40px; }
    /* Partners */
    .hg-partners-row { flex-wrap: wrap; }
    .hg-partner { flex: 0 0 50%; border-bottom: 2px solid var(--hg-black); }
    /* Contact subjects */
    .hg-cf-subjects { flex-wrap: wrap; }
    .hg-cf-subj { border-bottom: 2px solid var(--hg-black); }
}

@media screen and (max-width: 480px) {
    .hg-ah-hero-h, .hg-ch-h { font-size: 36px; }
    .hg-ah-hero-left, .hg-ah-hero-right,
    .hg-ch-left, .hg-ch-right,
    .hg-cf-col, .hg-cf-aside,
    .hg-mf-left, .hg-mf-right { padding: 32px 20px; }
    .hg-about-cta { padding: 40px 20px; }
    .hg-numbers-grid { grid-template-columns: 1fr 1fr; }
    .hg-team-grid { grid-template-columns: 1fr; }
    .hg-team-card { border-right: none; border-bottom: 2px solid var(--hg-black); }
    .hg-cf-grid { grid-template-columns: 1fr; }
    .hg-ah-hero-stats { grid-template-columns: 1fr; }
    .hg-ah-hstat { border-right: none; border-bottom: 2px solid rgba(255,255,255,.3); }
}

/* ═══════════════════════════════════════════════════════════════════════
   SEARCH OVERLAY
   ═══════════════════════════════════════════════════════════════════════ */
.hg-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,.96);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
}
.hg-search-overlay.is-open { visibility: visible; opacity: 1; }
.hg-so-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #666;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}
.hg-so-close:hover { color: var(--hg-white); }
.hg-so-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #555;
    margin-bottom: 20px;
}
.hg-so-form {
    display: flex;
    border: 2px solid #333;
    width: min(700px, 90vw);
}
.hg-so-form:focus-within { border-color: var(--hg-orange); }
.hg-so-form input[type="search"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 18px 24px;
    font-size: 20px;
    color: var(--hg-white);
    font-family: 'Barlow', sans-serif;
}
.hg-so-form input[type="search"]::placeholder { color: #444; }
.hg-so-form button[type="submit"] {
    background: var(--hg-orange);
    border: none;
    color: var(--hg-white);
    padding: 18px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hg-so-form button[type="submit"]:hover { background: #cc4415; }
.hg-so-hint {
    margin-top: 14px;
    font-size: 12px;
    color: #444;
}

/* ═══════════════════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE — .hg-sr-*
   ═══════════════════════════════════════════════════════════════════════ */

/* HERO */
.hg-sr-hero { background: var(--hg-black); padding: 48px 40px; border-bottom: var(--hg-border3); }
.hg-sr-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--hg-orange); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.hg-sr-eline { width: 24px; height: 2px; background: var(--hg-orange); flex-shrink: 0; }
.hg-sr-title { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; text-transform: uppercase; color: var(--hg-white); line-height: .95; margin-bottom: 6px; }
.hg-sr-title .hg-orange { color: var(--hg-orange); }
.hg-sr-count { font-size: 13px; color: #666; margin-bottom: 28px; }
.hg-sr-count strong { color: var(--hg-orange); font-weight: 700; }
.hg-sr-bar { display: flex; border: 2px solid #333; max-width: 700px; }
.hg-sr-bar:focus-within { border-color: var(--hg-orange); }
.hg-sr-bar input[type="search"] { flex: 1; background: transparent; border: none; outline: none; padding: 14px 20px; font-size: 15px; color: var(--hg-white); font-family: 'Barlow', sans-serif; }
.hg-sr-bar input[type="search"]::placeholder { color: #555; }
.hg-sr-bar button[type="submit"] { background: var(--hg-orange); border: none; color: var(--hg-white); padding: 14px 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.hg-sr-bar button[type="submit"]:hover { background: #cc4415; }

/* TABS */
.hg-sr-tabs { display: flex; border-bottom: var(--hg-border3); background: var(--hg-gray-bg); }
.hg-sr-tab { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; padding: 14px 28px; border-right: 2px solid var(--hg-black); cursor: pointer; color: #999; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.hg-sr-tab:last-child { border-right: none; }
.hg-sr-tab:hover { background: #ececec; color: var(--hg-black); }
.hg-sr-tab--on,
.hg-sr-tab--on:hover { background: var(--hg-black); color: var(--hg-white); }
.hg-sr-tab-badge { font-size: 11px; font-weight: 900; padding: 2px 8px; border-radius: 2px; }
.hg-sr-tab--on .hg-sr-tab-badge { background: var(--hg-orange); color: var(--hg-white); }
.hg-sr-tab:not(.hg-sr-tab--on) .hg-sr-tab-badge { background: #ddd; color: #999; }

/* TOOLBAR */
.hg-sr-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; border-bottom: 2px solid var(--hg-black); background: var(--hg-white); }
.hg-sr-tb-left { font-size: 13px; color: #888; }
.hg-sr-tb-left strong { color: var(--hg-black); font-weight: 700; }
.hg-sr-tb-right { display: flex; border: 2px solid var(--hg-black); }
.hg-sr-sort { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 8px 16px; border-right: 2px solid var(--hg-black); cursor: pointer; background: var(--hg-white); color: #999; text-decoration: none; }
.hg-sr-sort:last-child { border-right: none; }
.hg-sr-sort--on { background: var(--hg-black); color: var(--hg-white); }

/* BODY */
.hg-sr-body { border-bottom: var(--hg-border3); }
.hg-sr-section { padding: 40px 40px 0; }
.hg-sr-section--products { padding-bottom: 40px; }
.hg-sr-sec-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; }
.hg-sr-sec-h { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; text-transform: uppercase; color: var(--hg-black); line-height: 1; }
.hg-sr-sec-h::after { content: ''; display: block; width: 36px; height: 4px; background: var(--hg-orange); margin-top: 5px; }
.hg-sr-sec-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--hg-orange); text-decoration: none; }
.hg-sr-sec-link::after { content: ' →'; }
.hg-sr-divider { border: none; border-top: var(--hg-border3); margin: 0 40px; }

/* ARTIST GRID */
.hg-sr-artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--hg-black); margin-bottom: 40px; }
.hg-sr-arc { display: flex; align-items: center; border-right: 2px solid var(--hg-black); overflow: hidden; text-decoration: none; cursor: pointer; background: var(--hg-white); }
.hg-sr-arc:last-child { border-right: none; }
.hg-sr-arc:hover { background: var(--hg-gray-bg); }
.hg-sr-arc-img { width: 100px; height: 100px; flex-shrink: 0; overflow: hidden; border-right: 2px solid var(--hg-black); }
.hg-sr-arc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-sr-arc-img-ph { width: 100%; height: 100%; background: var(--hg-gray-bg); }
.hg-sr-arc-body { padding: 14px 18px; flex: 1; }
.hg-sr-arc-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; text-transform: uppercase; color: var(--hg-black); margin-bottom: 2px; }
.hg-sr-arc-origin { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--hg-orange); margin-bottom: 6px; }
.hg-sr-arc-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; }
.hg-sr-arc-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 2px 7px; border: 1.5px solid #ddd; color: #999; }
.hg-sr-arc-stat { font-size: 12px; color: #bbb; font-weight: 500; }
.hg-sr-arc-stat strong { color: var(--hg-black); font-weight: 700; }
.hg-sr-arc-arrow { padding: 0 18px; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: #ddd; flex-shrink: 0; }
.hg-sr-arc:hover .hg-sr-arc-arrow { color: var(--hg-orange); }
.hg-sr-arc--more { justify-content: center; background: #f9f9f9; cursor: pointer; border-right: none; }
.hg-sr-arc--more:hover { background: #f0f0f0; }
.hg-sr-arc-more-inner { flex: 1; padding: 20px 24px; text-align: center; }
.hg-sr-arc-more-n { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; color: #bbb; line-height: 1; }
.hg-sr-arc-more-lbl { font-size: 12px; text-transform: uppercase; font-weight: 700; color: #ccc; margin-top: 4px; }
.hg-sr-arc-more-link { font-size: 12px; color: var(--hg-orange); margin-top: 8px; text-decoration: underline; }

/* PRODUCT GRID */
.hg-sr-prod-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 2px solid var(--hg-black); }
.hg-sr-prc { border-right: 2px solid var(--hg-black); border-bottom: 2px solid var(--hg-black); overflow: hidden; background: var(--hg-white); text-decoration: none; display: block; }
.hg-sr-prc:nth-child(4n) { border-right: none; }
.hg-sr-prc:nth-last-child(-n+4) { border-bottom: none; }
.hg-sr-prc:hover { background: #fafafa; }
.hg-sr-prc--oos { opacity: .75; }
.hg-sr-prc-img { height: 200px; overflow: hidden; position: relative; background: var(--hg-gray-bg); }
.hg-sr-prc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-sr-prc-match { display: flex; align-items: center; gap: 5px; padding: 5px 13px; background: var(--hg-gray-bg); border-top: 1px solid #eee; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #999; }
.hg-sr-prc-match-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hg-orange); flex-shrink: 0; }
.hg-sr-prc-body { padding: 11px 13px; border-top: 2px solid var(--hg-black); }
.hg-sr-prc-artist { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--hg-orange); margin-bottom: 2px; }
.hg-sr-prc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--hg-black); margin-bottom: 2px; }
.hg-sr-prc-sub { font-size: 11px; color: #888; margin-bottom: 8px; }
.hg-sr-prc-foot { display: flex; align-items: center; justify-content: space-between; }
.hg-sr-prc-price { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: var(--hg-black); }
.hg-sr-prc-price--oos { font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; color: #999; }
.hg-sr-prc-add { background: var(--hg-orange); color: var(--hg-white); border: 2px solid var(--hg-black); font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 6px 12px; cursor: pointer; font-family: 'Barlow', sans-serif; }

/* VIEW ALL BAR */
.hg-sr-viewall { background: var(--hg-black); padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; border-bottom: var(--hg-border3); }
.hg-sr-va-txt { font-size: 13px; color: #666; }
.hg-sr-va-txt strong { color: var(--hg-white); }
.hg-sr-va-btn { background: var(--hg-orange); color: var(--hg-white); font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; padding: 12px 28px; border: 2px solid var(--hg-orange); cursor: pointer; text-decoration: none; display: inline-block; }
.hg-sr-va-btn:hover { background: #cc4415; border-color: #cc4415; }

/* NO RESULTS */
.hg-sr-none { padding: 64px 40px; text-align: center; border-bottom: var(--hg-border3); }
.hg-sr-none-icon { margin: 0 auto 24px; display: block; }
.hg-sr-none-h { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; text-transform: uppercase; color: var(--hg-black); margin-bottom: 10px; line-height: 1; }
.hg-sr-none-h span { color: var(--hg-orange); }
.hg-sr-none-sub { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; }
.hg-sr-none-sugs { display: flex; justify-content: center; border: 2px solid var(--hg-black); max-width: 600px; margin: 0 auto 32px; }
.hg-sr-none-sug { flex: 1; padding: 12px 16px; border-right: 2px solid var(--hg-black); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #999; text-align: center; text-decoration: none; }
.hg-sr-none-sug:last-child { border-right: none; }
.hg-sr-none-sug:hover { background: var(--hg-black); color: var(--hg-white); }

/* RESPONSIVE SEARCH RESULTS */
@media screen and (max-width: 1024px) {
    .hg-sr-hero { padding: 36px 24px; }
    .hg-sr-title { font-size: 40px; }
    .hg-sr-toolbar { padding: 12px 24px; }
    .hg-sr-section { padding: 32px 24px 0; }
    .hg-sr-section--products { padding-bottom: 32px; }
    .hg-sr-divider { margin: 0 24px; }
    .hg-sr-artist-grid { grid-template-columns: repeat(2, 1fr); }
    .hg-sr-prod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hg-sr-prc:nth-child(4n) { border-right: 2px solid var(--hg-black); }
    .hg-sr-prc:nth-child(3n) { border-right: none; }
    .hg-sr-prc:nth-last-child(-n+4) { border-bottom: 2px solid var(--hg-black); }
    .hg-sr-prc:nth-last-child(-n+3) { border-bottom: none; }
    .hg-sr-viewall { padding: 20px 24px; }
}
@media screen and (max-width: 768px) {
    .hg-sr-title { font-size: 32px; }
    .hg-sr-tabs { flex-wrap: wrap; }
    .hg-sr-tab { padding: 10px 16px; font-size: 13px; }
    .hg-sr-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hg-sr-artist-grid { grid-template-columns: 1fr; }
    .hg-sr-arc { border-right: none; }
    .hg-sr-prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hg-sr-prc:nth-child(3n) { border-right: 2px solid var(--hg-black); }
    .hg-sr-prc:nth-child(4n) { border-right: 2px solid var(--hg-black); }
    .hg-sr-prc:nth-child(2n) { border-right: none; }
    .hg-sr-prc:nth-last-child(-n+3) { border-bottom: 2px solid var(--hg-black); }
    .hg-sr-prc:nth-last-child(-n+2) { border-bottom: none; }
    .hg-sr-viewall { flex-direction: column; gap: 14px; align-items: flex-start; }
    .hg-sr-none { padding: 48px 24px; }
    .hg-sr-none-h { font-size: 36px; }
    .hg-sr-none-sugs { flex-wrap: wrap; }
    .hg-sr-none-sug { border-bottom: 2px solid var(--hg-black); }
}
@media screen and (max-width: 480px) {
    .hg-sr-hero { padding: 28px 20px; }
    .hg-sr-title { font-size: 28px; }
    .hg-sr-prod-grid { grid-template-columns: 1fr; }
    .hg-sr-prc { border-right: none !important; }
    .hg-sr-prc:nth-last-child(-n+2) { border-bottom: 2px solid var(--hg-black); }
    .hg-sr-prc:last-child { border-bottom: none; }
    .hg-sr-section { padding: 24px 20px 0; }
    .hg-sr-section--products { padding-bottom: 24px; }
}
