:root {
    --sh-bg:           #000000;
    --sh-text:         #ffffff;
    --sh-accent:       var(--color-brand-yellow);
    --sh-border:       #000000;
    --sh-radius:       25px;
    --sh-max-width:    1410px;
    --sh-top:          24px;
    --sh-inset:        clamp(15px, 3vw, 40px);
    --sh-font-display: "neue-kabel", "Arial Black", sans-serif;
    --sh-font-script:  "Rock Salt", cursive;
    --sh-font-body:    "futura-pt", "Poppins", system-ui, sans-serif;
}

.site-header {
    position: sticky;
    top: var(--sh-top);
    z-index: 500;
    padding: 0 var(--sh-inset);
    margin-top: var(--sh-top);
    pointer-events: none;
}

/* Checkout — strip the header down to just the logo so the buyer stays
   focused on completing the purchase. Collapsing the bar to a single
   centered column (instead of leaving the default `1fr auto 1fr`) is
   required because grid auto-placement drops the lone logo item into
   track 1, which would sit at ~25% of the bar width. */
body.woocommerce-checkout .site-header__hamburger,
body.woocommerce-checkout .site-header__nav,
body.woocommerce-checkout .site-header__actions,
body.woocommerce-checkout .site-megamenu {
    display: none !important;
}
body.woocommerce-checkout .site-header__bar {
    grid-template-columns: 1fr;
    justify-items: center;
}

.site-header__bar {
    pointer-events: auto;
    background: var(--sh-bg);
    color: var(--sh-text);
    border-radius: var(--sh-radius);
    max-width: var(--sh-max-width);
    margin: 0 auto;
    min-height: 80px;
    
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 1.5rem;
    position: relative;
}

.site-header__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--sh-text);
}

.site-header__logo--image img {
    max-height: 50px;
    width: auto;
    display: block;
}

.site-header__wordmark {
    font-family: var(--sh-font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.site-header__wordmark strong {
    font-weight: 800;
}

.site-header__nav {
    display: flex;
    align-items: center;
}

.site-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-header__nav-item {
    display: flex;
    align-items: center;
}

.site-header__nav-link {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-family: var(--sh-font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
    opacity: 0.8;
    outline: none;
}

.site-header__nav-link--megamenu svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.site-header__nav-link--megamenu[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.site-header__action {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.site-header__account {
    width:  34px;
    height: 34px;
    border: none;
    border-radius: 0;
}

.site-header__account svg {
    width:  34px;
    height: 34px;
    flex-shrink: 0;
}

.site-header__cart svg {
    width:  22px;
    height: 30px;
    flex-shrink: 0;
}

.site-header__cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--color-brand-yellow);
    color: #000000;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--sh-font-display);
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
}

.site-header__cart-count.is-visible {
    display: inline-flex;
}

.site-header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.site-header__hamburger svg {
    width: 24px;
    height: 24px;
}

body.megamenu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 400;
    pointer-events: none;
}

.site-megamenu {
    position: absolute;
    top: 100%;
    /* Horizontal inset from the header's padding edge — matches the bar's
       internal breathing room so the megamenu doesn't extend past the
       visible black bar. Override via the `--sh-megamenu-inset` var. */
    left:  var(--sh-megamenu-inset, 1.5rem);
    right: var(--sh-megamenu-inset, 1.5rem);
    max-width: var(--sh-max-width);
    margin: 12px auto 0;
    background: #ffffff;
    border: 8px solid #000000;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    z-index: 490;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow: hidden;
   
}
.site-megamenu__inner {
    display: grid;
    grid-template-columns: 9fr 5.5fr 5.5fr;
    gap: 0.75rem;
    padding: 0;
    max-width: var(--sh-max-width);
    margin: 0 auto;
    max-height: 630px;
    overflow-y: auto;
}

/* Narrower desktop — at 1025-1350px the category column gets squeezed and
   the promo card / brand teaser start to lose breathing room. Re-balance
   the track ratio so categories shrink a bit and the two right cards grow. */
@media (min-width: 1025px) and (max-width: 1350px) {
    .site-megamenu__inner {
        grid-template-columns: 7.5fr 6.5fr 6.5fr;
    }
}


.site-megamenu[hidden] {
    display: none;
}

.site-megamenu.is-open {
    opacity: 1;
    transform: translateY(0);
}



.site-megamenu__col--categories {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.5rem 2rem 2.5rem;
}

.site-megamenu__heading {
    font-family: var(--sh-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    margin: 0 0 0.75rem 0;
    padding: 0;
    border: none;
}

.site-megamenu__categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-megamenu__category-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #000000;
    padding: 0.65rem 0;
    border-radius: 0;
    transition: opacity 0.15s ease;
}

.site-megamenu__category-link:hover {
    opacity: 0.7;
}

.site-megamenu__category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d9d9d9;
    border-radius: 14px;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
}

.site-megamenu__category-icon--empty {
    background: #d9d9d9;
}

.site-megamenu__category-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.site-megamenu__category-label {
    font-family: var(--sh-font-display);
    font-size: 16px;
    font-weight: 800;
    color: #000000;
    flex: 1;
    min-width: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-megamenu__category-arrow {
    width: 28px;
    height: 28px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.site-megamenu__category-link:hover .site-megamenu__category-arrow {
    background: #333333;
}

.site-megamenu__category-arrow svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
}

.site-megamenu__col--yellow {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0 0.75rem 0;
}

.site-megamenu__yellow-card {
    background: var(--color-brand-yellow-loud);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    flex: 1;
    overflow: hidden;
}

.site-megamenu__yellow-images {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
}

.site-megamenu__yellow-img {
    max-height: 300px;
    object-fit: contain;
    width: auto;
    flex: 0 1 48%;
}

.site-megamenu__yellow-script {
    font-family: var(--sh-font-script);
    font-size: 17px;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 70%;
}

.site-megamenu__yellow-heading {
    font-family: var(--sh-font-display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    color: #000000;
    margin: 0;
}

.site-megamenu__yellow-cta {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    font-family: var(--sh-font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    align-self: center;
    transition: background 0.15s ease;
    letter-spacing: 0.03em;
}

.site-megamenu__yellow-cta:hover {
    background: #f0f0f0;
    color: #000000;
    text-decoration: none;
}

.site-megamenu__col--dark {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.75rem 0.75rem 0;
}

.site-megamenu__dark-card {
    background: #0a0e17;
    border-radius: 18px;
    padding: 2.25rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 0.4rem 0.75rem;
    flex: 1;
    background-size: cover;
    background-position: center bottom;
    position: relative;
    overflow: hidden;
}
.site-megamenu__dark-card .col-1 {

    display: flex;
    flex-direction: column;
gap: 1rem;
}

.site-megamenu__dark-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.site-megamenu__dark-card > * {
    position: relative;
    z-index: 1;
}

.site-megamenu__dark-label {
    font-family: var(--sh-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
}

.site-megamenu__dark-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    grid-column: 1;
    grid-row: 2;
}

.site-megamenu__dark-body {
    font-family: var(--sh-font-body);
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.45;
    margin: 0;
    grid-column: 1;
    grid-row: 3;
}

.site-megamenu__dark-product-img {
    display: block;
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    grid-column: 2;
    grid-row: 1 / 5;
    justify-self: center;
    align-self: end;
}

.site-megamenu__dark-cta {
    display: flex;
    background: #ffffff;
    color: #000000;
    font-family: var(--sh-font-display);
    font-size: 16px;
    font-weight: 800;
  justify-content: center;
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
  text-align: center;
  
    transition: background 0.15s ease;
}

.site-megamenu__dark-cta:hover {
    background: #e8e8e8;
    color: #000000;
    text-decoration: none;
}

.site-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.site-mobile-menu[hidden] {
    display: none;
}

.site-mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: pointer;
}

.site-mobile-menu.is-open .site-mobile-menu__backdrop {
    opacity: 1;
}

.site-mobile-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #000000;
    color: #ffffff;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-mobile-menu.is-open .site-mobile-menu__panel {
    transform: translateX(0);
}

.site-mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 44px;
    min-height: 44px;
    align-self: flex-end;
    padding: 0;
    margin-bottom: 0.5rem;
}

.site-mobile-menu__close svg {
    width: 24px;
    height: 24px;
}

.site-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Variant used for simple top-level links rendered *after* the products
   section (About Us, etc.). A faint top rule separates it from the
   category sublist above. */
.site-mobile-menu__list--after {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-mobile-menu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-mobile-menu__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--sh-font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.75rem 0;
    transition: opacity 0.15s ease;
}

.site-mobile-menu__link:hover {
    opacity: 0.75;
}

.site-mobile-menu__section-heading {
    font-family: var(--sh-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 1.25rem 0 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-mobile-menu__sublist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.site-mobile-menu__subitem {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-mobile-menu__sublink {
    display: flex;
    align-items: center;
    min-height: 48px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--sh-font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 0.625rem 0 0.625rem 0.5rem;
    transition: color 0.15s ease;
}

.site-mobile-menu__sublink:hover {
    color: #ffffff;
}

.site-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
}

.site-cart-drawer[hidden] {
    display: none;
}

.site-cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: pointer;
}

.site-cart-drawer.is-open .site-cart-drawer__backdrop {
    opacity: 1;
}

.site-cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(400px, 100vw);
    background: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.site-cart-drawer.is-open .site-cart-drawer__panel {
    transform: translateX(0);
}

.site-cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eeeeee;
    flex-shrink: 0;
}

.site-cart-drawer__heading {
    font-family: var(--sh-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.site-cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    transition: background 0.15s ease;
}

.site-cart-drawer__close:hover {
    background: #f4f4f4;
}

.site-cart-drawer__close svg {
    width: 20px;
    height: 20px;
}

.site-cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.site-cart-drawer .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.site-cart-drawer .widget_shopping_cart_content .cart_list {
    list-style: none;
    padding: 0 1.5rem;
    margin: 0;
    flex: 1;
}

.site-cart-drawer .widget_shopping_cart_content .mini_cart_item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eeeeee;
    align-items: flex-start;
}

.site-cart-drawer .widget_shopping_cart_content .mini_cart_item a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.site-cart-drawer .widget_shopping_cart_content .mini_cart_item a:first-child {
    display: block;
    flex-shrink: 0;
}

.site-cart-drawer .widget_shopping_cart_content .mini_cart_item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

.site-cart-drawer .widget_shopping_cart_content .mini_cart_item .remove {
    font-size: 18px;
    color: #999999;
    text-decoration: none;
    margin-left: auto;
    line-height: 1;
    flex-shrink: 0;
}

.site-cart-drawer .widget_shopping_cart_content .mini_cart_item .remove:hover {
    color: #000000;
}

.site-cart-drawer .widget_shopping_cart_content .quantity {
    font-size: 13px;
    color: #666666;
    margin-top: 4px;
    display: block;
}

.site-cart-drawer .widget_shopping_cart_content .total {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eeeeee;
    font-family: var(--sh-font-display);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.site-cart-drawer .widget_shopping_cart_content .buttons {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.site-cart-drawer .widget_shopping_cart_content .buttons .button {
    flex: 1;
    text-align: center;
    background: #000000;
    color: #ffffff;
    padding: 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--sh-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: opacity 0.15s ease;
    display: block;
}

.site-cart-drawer .widget_shopping_cart_content .buttons .button:hover {
    opacity: 0.8;
}

.site-cart-drawer .widget_shopping_cart_content .buttons .checkout {
    background: var(--color-brand-yellow);
    color: #000000;
}

.site-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #666666;
    font-size: 15px;
    font-family: var(--sh-font-body);
}

body.has-menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    
    .site-header__nav {
        display: none;
    }

    .site-header__hamburger {
        display: inline-flex;
    }

    
    .site-header__bar {
        grid-template-columns: auto auto 1fr;
    }

    .site-header__logo-wrap {
        justify-content: flex-start;
    }

    
    .site-megamenu {
        display: none !important;
    }

    
    .site-cart-drawer__panel {
        width: 100vw;
    }
}

@media (max-width: 640px) {
    .site-header {
        --sh-top: 12px;
        --sh-inset: 10px;
    }

    .site-header__bar {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
        min-height: 64px;
    }

    .site-header__wordmark {
        font-size: 22px;
    }

    .site-header__account {
        width: 38px;
        height: 38px;
    }

    .site-header__account svg {
        width: 38px;
        height: 38px;
    }

    .site-header__cart svg {
        width: 18px;
        height: 29px;
    }

    
    .site-header__action,
    .site-header__hamburger {
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 360px) {
    .site-header__wordmark {
        font-size: 19px;
    }

    .site-header__actions {
        gap: 0.25rem;
    }
}

.site-header__dine-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 999px;
    font-family: "neue-kabel", "futura-pt", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    margin-right: 8px;
    transition: background 150ms ease;
}
.site-header__dine-cta:hover { background: #ffb800; }

@media (max-width: 900px) {
    .site-header__dine-cta { display: none; }
}
