@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=League+Spartan:wght@700;800;900&display=swap");

/* ── Tokens ── */
:root {
    --shop-pink:       #d42769;
    --shop-dark:       #30373b;
    --shop-purple:     #60286c;
    --shop-teal:       #0facb2;
    --shop-orange:     #fe8f11;
    --shop-gold:       #f7c70c;
    --shop-bg:         #ffffff;
    --shop-white:      #ffffff;
    --shop-text:       #1a1a1a;
    --shop-muted:      #6b6b6b;
    --shop-border:     #e5e5e5;
    --shop-radius:     6px;
    --shop-head:       'League Spartan', 'Figtree', sans-serif;
    --shop-body:       'Figtree', sans-serif;
    --shop-topbar-h:   44px;
    --shop-header-h:   80px;
    --shop-sticky-top: calc(var(--shop-topbar-h) + var(--shop-header-h));
    --shop-search-top: calc(var(--shop-topbar-h) + var(--shop-header-h));
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: var(--shop-body);
    color: var(--shop-text);
    -webkit-font-smoothing: antialiased;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body > * { flex-shrink: 0; }

.shop-footer {
    margin-top: auto;
}

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

/* ────────────────────────────────────────────
   TOPBAR — NTCG network bar (matches ntcg.org.uk)
──────────────────────────────────────────── */
.shop-topbar {
    background: #30373b;
    height: var(--shop-topbar-h);
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 102;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s, border-color 0.3s;
}

.shop-topbar.is-light {
    background: #ffffff;
    border-bottom-color: #e5e7eb;
}

.shop-topbar__nav {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

.shop-topbar__nav::-webkit-scrollbar { display: none; }

.shop-topbar__link,
.shop-topbar__login {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s;
}

.shop-topbar.is-light .shop-topbar__link,
.shop-topbar.is-light .shop-topbar__login {
    color: rgba(48, 55, 59, 0.72);
}

.shop-topbar__link:hover,
.shop-topbar__login:hover {
    color: rgba(255, 255, 255, 0.95);
}

.shop-topbar.is-light .shop-topbar__link:hover,
.shop-topbar.is-light .shop-topbar__login:hover {
    color: #30373b;
}

.shop-topbar__link.is-active {
    color: var(--shop-gold);
}

.shop-topbar.is-light .shop-topbar__link.is-active {
    color: var(--shop-teal);
}

.shop-topbar__login {
    flex-shrink: 0;
    gap: 6px;
}

/* ────────────────────────────────────────────
   SHOP HEADER (Topman-style: white, icon actions)
──────────────────────────────────────────── */
.shop-header {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: var(--shop-topbar-h);
    z-index: 101;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.shop-header.is-transparent {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.shop-header.is-transparent .shop-header__logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.shop-header.is-transparent .shop-header__search-btn,
.shop-header.is-transparent .shop-header__cart,
.shop-header.is-transparent .shop-header__wishlist {
    color: #fff;
}

.shop-header.is-transparent .shop-header__cart-count {
    background: rgba(255, 255, 255, 0.9);
    color: var(--shop-dark);
}

.shop-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left zone: hamburger + logo */
.shop-header__left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.shop-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    color: var(--shop-dark);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.shop-hamburger:hover {
    opacity: 0.6;
}

.shop-header__logo {
    display: flex;
    align-items: center;
}

.shop-header__logo img {
    height: 38px;
    width: auto;
}

/* Right zone: account + search + cart */
.shop-header__right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
}

.shop-header__account {
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    text-decoration: none;
    white-space: nowrap;
}

.shop-header__account:hover {
    opacity: 0.6;
}

.shop-header__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--shop-dark);
    display: flex;
    align-items: center;
}

.shop-header__search-btn:hover {
    opacity: 0.6;
}

.shop-header__cart {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--shop-dark);
    position: relative;
    padding: 4px;
}

.shop-header__cart:hover {
    opacity: 0.6;
}

.shop-header__cart-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--shop-pink);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* Wishlist icon in header */
.shop-header__wishlist {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--shop-dark);
    position: relative;
    padding: 4px;
}

.shop-header__wishlist:hover { opacity: 0.6; }

.shop-header__wishlist-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--shop-pink);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* ── Heart button on product cards ── */
.shop-wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--shop-muted);
    transition: background 0.15s, color 0.15s, transform 0.15s;
    padding: 0;
}

.shop-wishlist-heart:hover {
    background: #fff;
    color: var(--shop-pink);
    transform: scale(1.08);
}

.shop-wishlist-heart.is-active {
    color: var(--shop-pink);
    background: #fff;
}

.shop-wishlist-heart.is-active svg {
    fill: var(--shop-pink);
    stroke: var(--shop-pink);
}

/* Product cards need position relative for heart button */
.shop-products li.product,
.shop-products .shop-product-card {
    position: relative;
}

/* ────────────────────────────────────────────
   WISHLIST PAGE
──────────────────────────────────────────── */
.shop-wishlist-main {
    min-height: 60vh;
}

.shop-wishlist-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.shop-wishlist-hdr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 0 28px;
    border-bottom: 1px solid var(--shop-border);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.shop-wishlist-title {
    font-family: var(--shop-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--shop-dark);
    margin: 0 0 6px;
    text-transform: none;
}

.shop-wishlist-count-label {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
    margin: 0;
}

/* Share section */
.shop-wishlist-share__label {
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--shop-muted);
    margin: 0 0 10px;
}

.shop-wishlist-share__btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.shop-wishlist-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--shop-dark);
    text-decoration: none;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 7px 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
}

.shop-wishlist-share__btn:hover {
    border-color: var(--shop-dark);
    background: var(--shop-dark);
    color: #fff;
}

.shop-wishlist-share__btn--wa { border-color: #25d366; color: #25d366; }
.shop-wishlist-share__btn--wa:hover { background: #25d366; border-color: #25d366; color: #fff; }

.shop-wishlist-share__copied {
    font-family: var(--shop-body);
    font-size: 12px;
    color: #2e7d32;
    margin: 8px 0 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.shop-wishlist-share__copied.is-visible { opacity: 1; }

/* Empty state */
.shop-wishlist-empty {
    padding: 80px 0;
    text-align: center;
    color: var(--shop-muted);
}

.shop-wishlist-empty svg {
    margin-bottom: 20px;
    opacity: 0.4;
}

.shop-wishlist-empty h2 {
    font-family: var(--shop-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--shop-dark);
    margin: 0 0 10px;
}

.shop-wishlist-empty p {
    font-size: 14px;
    margin: 0 0 28px;
}

.shop-wishlist-empty__cta {
    display: inline-block;
    background: var(--shop-dark);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: var(--shop-radius);
    transition: background 0.15s;
}

.shop-wishlist-empty__cta:hover { background: var(--shop-pink); }

/* ────────────────────────────────────────────
   SEARCH DROPDOWN PANEL (light grey)
──────────────────────────────────────────── */
.shop-search-panel {
    position: fixed;
    top: var(--shop-search-top);
    left: 0;
    right: 0;
    background: #f4f4f4;
    border-bottom: 1px solid var(--shop-border);
    z-index: 200;
    padding: 32px 18px 52px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.shop-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shop-search-panel__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.shop-search-panel__field {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid var(--shop-dark);
    padding-bottom: 12px;
    gap: 16px;
}

.shop-search-panel__field input[type="search"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--shop-body);
    font-size: 22px;
    font-weight: 400;
    color: var(--shop-dark);
    padding: 0;
    -webkit-appearance: none;
}

.shop-search-panel__field input[type="search"]::placeholder {
    color: var(--shop-muted);
}

.shop-search-panel__field button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--shop-muted);
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 0;
}

.shop-search-panel__field button:hover {
    color: var(--shop-dark);
}

.shop-search-panel__cats {
    margin-top: 24px;
}

.shop-search-panel__cats-label {
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-muted);
    margin: 0 0 12px;
}

.shop-search-panel__cats-row {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.shop-search-panel__cat-link {
    font-family: var(--shop-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--shop-dark);
    text-decoration: none;
    padding: 6px 20px 6px 0;
    margin-right: 20px;
    border-right: 1px solid var(--shop-border);
    transition: color 0.15s;
}

.shop-search-panel__cat-link:last-child {
    border-right: none;
}

.shop-search-panel__cat-link:hover {
    color: var(--shop-pink);
}

.shop-search-overlay {
    position: fixed;
    inset: 0;
    top: var(--shop-search-top);
    background: rgba(0, 0, 0, 0.2);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.shop-search-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Catnav hidden */
.shop-catnav {
    display: none;
}
.shop-announce {
    display: none;
}

/* ────────────────────────────────────────────
   SHOP HOME HERO
──────────────────────────────────────────── */
/* ── Hero Carousel wrapper ───────────────────────────────────────────── */
.shop-carousel {
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--shop-header-h) * -1);
}

.shop-carousel__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.shop-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
}

/* Dot indicators */
.shop-carousel__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.shop-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.shop-carousel__dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

/* Arrow controls */
.shop-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.shop-carousel__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.shop-carousel__arrow--prev { left: 20px; }
.shop-carousel__arrow--next { right: 20px; }

@media (max-width: 600px) {
    .shop-carousel__arrow { display: none; }
    .shop-hero--preorder { background-position: center center !important; }
}

/* ── Hero (used as carousel slides) ─────────────────────────────────── */
.shop-hero {
    position: relative;
    height: 660px;
    background: var(--shop-dark) center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    width: 100%;
}

.shop-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.68) 100%
    );
}

.shop-hero__content {
    position: relative;
    z-index: 1;
    padding: 64px 56px;
    max-width: 760px;
}

.shop-hero__eyebrow {
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--shop-gold);
    margin: 0 0 14px;
}

.shop-hero__heading {
    font-family: var(--shop-head);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.shop-hero__sub {
    font-family: var(--shop-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 32px;
    line-height: 1.6;
    max-width: 480px;
}

.shop-hero__cta {
    display: inline-block;
    background: var(--shop-pink);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: var(--shop-radius);
    transition: background 0.2s;
}

.shop-hero__cta:hover {
    background: #b81e58;
}

/* Ghost CTA variant (slide 2) */
.shop-hero__cta--ghost {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.shop-hero__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: #fff;
}

/* Gradient overlay for slide 2 — dark left for text, fades right to reveal image */
.shop-hero__overlay--dark {
    background: linear-gradient(
        to right,
        rgba(20, 20, 20, 0.92) 0%,
        rgba(20, 20, 20, 0.65) 45%,
        rgba(20, 20, 20, 0.02) 100%
    ) !important;
}

/* ────────────────────────────────────────────
   DEPARTMENT HEADER PILLS (Boohoo-style)
──────────────────────────────────────────── */
.shop-dept-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

.shop-dept-pill {
    display: inline-block;
    flex-shrink: 0;
    background: transparent;
    color: var(--shop-dark);
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    padding: 7px 18px;
    text-decoration: none;
    border: 1.5px solid var(--shop-border);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.shop-dept-pill:first-child {
    background: var(--shop-dark);
    color: #fff;
    border-color: var(--shop-dark);
}

.shop-dept-pill:hover {
    background: var(--shop-dark);
    color: #fff;
    border-color: var(--shop-dark);
}

/* ────────────────────────────────────────────
   SECTION WRAPPER
──────────────────────────────────────────── */
.shop-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
}

.shop-section__hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--shop-border);
    padding-bottom: 16px;
}

.shop-section__hdr-left {
    flex: 1 1 auto;
}

.shop-section__title {
    font-family: var(--shop-head);
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 900;
    color: var(--shop-dark);
    margin: 0 0 6px;
    text-transform: none;
    letter-spacing: -0.5px;
}

.shop-section__subtitle {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
    margin: 0;
}

.shop-section__all {
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--shop-dark);
    text-decoration: none;
    border: 1.5px solid var(--shop-dark);
    padding: 8px 18px;
    border-radius: 0;
    transition: background 0.15s, color 0.15s;
}

.shop-section__all:hover {
    background: var(--shop-dark);
    color: #fff;
    text-decoration: none;
}

/* New In white section wrapper */
.shop-section--white {
    background: #fff;
    border-top: 1px solid var(--shop-border);
}

.shop-section--white .shop-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
}

/* ────────────────────────────────────────────
   DEPARTMENT EDITORIAL CARDS
──────────────────────────────────────────── */
.shop-section--depts {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.shop-section--depts .shop-section__hdr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 16px;
    align-items: flex-start;
}

.shop-depts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.shop-dept-card {
    display: grid;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--shop-dark);
    text-decoration: none;
}

.shop-dept-card__img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 0;
    transition: transform 0.6s ease;
}

.shop-dept-card:hover .shop-dept-card__img {
    transform: scale(1.06);
}

.shop-dept-card__overlay {
    grid-area: 1 / 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.68) 100%
    );
    transition: background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.shop-dept-card:hover .shop-dept-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 20%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.shop-dept-card__body {
    grid-area: 1 / 1;
    align-self: end;
    padding: 20px 18px;
    width: 100%;
    z-index: 2;
}

.shop-dept-card__name {
    font-family: var(--shop-head);
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-dept-card__cta {
    display: inline-block;
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    background: var(--shop-pink);
    padding: 10px 18px;
    text-decoration: none;
    border-radius: var(--shop-radius);
}

/* ────────────────────────────────────────────
   PRODUCT CARDS
──────────────────────────────────────────── */
.shop-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.shop-product-card {
    background: transparent;
    border-radius: var(--shop-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.shop-product-card:hover {
    transform: none;
    box-shadow: none;
}

.shop-product-card__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    padding: 10px;
}

.shop-product-card__img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.shop-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.shop-product-card:hover .shop-product-card__img img {
    transform: scale(1.04);
}

.shop-product-card__body {
    padding: 10px 0 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-product-card__dept {
    display: inline-block;
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--shop-pink);
    padding: 0;
    background: none;
    align-self: flex-start;
}

.shop-product-card__name {
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-dark);
    line-height: 1.4;
    margin: 0 0 6px;
    flex: 1;
}

.shop-product-card__name a {
    text-decoration: none;
    color: inherit;
}

.shop-product-card__name a:hover {
    color: var(--shop-pink);
}

.shop-product-card__stars {
    margin-bottom: 6px;
    min-height: 18px;
}

.shop-product-card__stars .star-rating {
    color: var(--shop-gold);
    font-size: 12px;
}

.shop-product-card__stars .plain {
    color: var(--shop-gold);
    font-size: 11px;
    letter-spacing: 1px;
}

.shop-product-card__stars .plain span {
    color: var(--shop-muted);
    font-size: 10px;
    margin-left: 4px;
    letter-spacing: 0;
}

.shop-product-card__price {
    margin-bottom: 6px;
}

.shop-product-card__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 10px;
}

.shop-product-card__size-chip {
    font-size: 10px;
    font-weight: 600;
    color: var(--shop-muted);
    background: #f2f2f2;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.shop-product-card .price,
.shop-product-card__price .price {
    font-family: var(--shop-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-dark);
}

.shop-product-card .price del {
    color: var(--shop-muted);
    font-weight: 400;
    font-size: 12px;
    margin-right: 4px;
}

/* Add to basket */
.shop-product-card .button,
.shop-product-card a.button,
.shop-product-card__atc {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: #30373b !important;
    color: #fff !important;
    font-family: var(--shop-body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 13px 0 !important;
    border-radius: var(--shop-radius) !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    box-shadow: none !important;
    margin-top: auto !important;
}

.shop-product-card .button:hover,
.shop-product-card a.button:hover,
.shop-product-card__atc:hover {
    background: var(--shop-pink) !important;
    color: #fff !important;
}

/* Coming Soon badge — overlaid on card image */
.shop-product-card__coming-soon {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--shop-dark);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    pointer-events: none;
    border-radius: var(--shop-radius);
}

/* Coming Soon ATC replacement */
.shop-product-card__atc--coming-soon {
    background: #888 !important;
}

.shop-product-card__atc--coming-soon:hover {
    background: #888 !important;
}

/* Out of stock — single product page */
.shop-single__oos {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
    border: 1px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 14px 20px;
    margin-top: 8px;
}

/* Coming Soon — single product page */
.shop-single__coming-soon {
    display: inline-block;
    background: #888;
    color: #fff;
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    margin-top: 8px;
    border-radius: var(--shop-radius);
    cursor: default;
}

/* ────────────────────────────────────────────
   BACK IN STOCK NOTIFIER — plugin restyle
──────────────────────────────────────────── */
.cwginstock-subscribe-form {
    margin-top: 20px;
    border-top: 1px solid var(--shop-border);
    padding-top: 20px;
}

/* Strip panel chrome */
.cwginstock-subscribe-form .panel,
.cwginstock-subscribe-form .panel-primary {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.cwginstock-subscribe-form .panel-heading,
.cwginstock-subscribe-form .cwginstock-panel-heading {
    background: transparent !important;
    border: none !important;
    padding: 0 0 10px !important;
}

.cwginstock-subscribe-form h4 {
    font-family: var(--shop-body) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--shop-muted) !important;
    text-align: left !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 !important;
}

.cwginstock-subscribe-form .panel-body,
.cwginstock-subscribe-form .cwginstock-panel-body {
    padding: 0 !important;
}

/* Remove Bootstrap grid wrappers' padding */
.cwginstock-subscribe-form .row,
.cwginstock-subscribe-form .col-md-12 {
    margin: 0 !important;
    padding: 0 !important;
}

/* Inputs */
.cwginstock-subscribe-form input[type="text"].cwgstock_name,
.cwginstock-subscribe-form input[type="email"].cwgstock_email {
    width: 100% !important;
    text-align: left !important;
    font-family: var(--shop-body) !important;
    font-size: 14px !important;
    color: var(--shop-text) !important;
    background: #fff !important;
    border: 1px solid var(--shop-border) !important;
    border-radius: var(--shop-radius) !important;
    padding: 12px 14px !important;
    margin-bottom: 10px !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color 0.2s !important;
    box-sizing: border-box !important;
}

.cwginstock-subscribe-form input[type="text"].cwgstock_name:focus,
.cwginstock-subscribe-form input[type="email"].cwgstock_email:focus {
    border-color: var(--shop-teal) !important;
}

/* Submit button */
.cwginstock-subscribe-form .form-group[style*="text-align:center"] {
    text-align: left !important;
}

.cwginstock-subscribe-form input[type="submit"].cwgstock_button {
    font-family: var(--shop-body) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #fff !important;
    background: var(--shop-dark) !important;
    border: none !important;
    border-radius: var(--shop-radius) !important;
    padding: 13px 28px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    width: auto !important;
}

.cwginstock-subscribe-form input[type="submit"].cwgstock_button:hover {
    background: var(--shop-teal) !important;
}

/* Success/error output */
.cwginstock-subscribe-form .cwgstock_output {
    font-family: var(--shop-body);
    font-size: 13px;
    margin-top: 10px;
    color: var(--shop-teal);
}

/* ────────────────────────────────────────────
   PROMO BANNER
──────────────────────────────────────────── */
.shop-promo {
    background: var(--shop-dark);
    padding: 72px 24px;
    text-align: center;
}

.shop-promo__eyebrow {
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--shop-gold);
    margin: 0 0 12px;
}

.shop-promo__heading {
    font-family: var(--shop-head);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.shop-promo__sub {
    font-family: var(--shop-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.shop-promo__cta {
    display: inline-block;
    background: var(--shop-pink);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 0;
    transition: background 0.2s;
}

.shop-promo__cta:hover {
    background: #b81e58;
}

/* ────────────────────────────────────────────
   COUPON BANNER
──────────────────────────────────────────── */
/* ── Pre-order Hero Banner ───────────────────────────────────────────── */
.shop-preorder-hero {
    position: relative;
    background-image: url('/app/uploads/sites/26/2026/03/BG.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
}

.shop-preorder-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.92);
    pointer-events: none;
}

.shop-preorder-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.shop-preorder-hero__content {
    flex: 1;
    min-width: 0;
}

.shop-preorder-hero__heading {
    font-family: var(--shop-head);
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.shop-preorder-hero__sub {
    font-family: var(--shop-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.shop-preorder-hero__cta {
    flex-shrink: 0;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 28px;
    text-decoration: none;
    border-radius: var(--shop-radius);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.shop-preorder-hero__cta:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 600px) {
    .shop-preorder-hero { padding: 40px 20px; }
    .shop-preorder-hero__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .shop-preorder-hero__cta { width: 100%; text-align: center; }
}

/* ── Newsletter CTA ──────────────────────────────────────────────────── */
.shop-newsletter {
    background: #f4f4f2;
    padding: 52px 24px;
}

.shop-newsletter__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.shop-newsletter__content {
    flex: 0 0 auto;
    max-width: 380px;
}

.shop-newsletter__heading {
    font-family: var(--shop-head);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--shop-dark);
    margin: 0 0 8px;
}

.shop-newsletter__sub {
    font-family: var(--shop-body);
    font-size: 14px;
    color: rgba(48, 55, 59, 0.7);
    margin: 0;
    line-height: 1.6;
}

.shop-newsletter__form {
    flex: 1;
    min-width: 0;
}

.shop-newsletter__field {
    display: flex;
    gap: 0;
    height: 52px;
}

.shop-newsletter__field input[type="email"] {
    flex: 1;
    height: 100%;
    padding: 0 18px;
    border: 1.5px solid var(--shop-border);
    border-right: none;
    border-radius: var(--shop-radius) 0 0 var(--shop-radius);
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    background: #fff;
    outline: none;
    min-width: 0;
}

.shop-newsletter__field input[type="email"]:focus {
    border-color: var(--shop-dark);
}

.shop-newsletter__field button {
    flex-shrink: 0;
    height: 100%;
    padding: 0 28px;
    background: var(--shop-dark);
    color: #fff;
    border: none;
    border-radius: 0 var(--shop-radius) var(--shop-radius) 0;
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.shop-newsletter__field button:hover {
    background: var(--shop-pink);
}

.shop-newsletter__legal {
    font-family: var(--shop-body);
    font-size: 11px;
    color: rgba(48, 55, 59, 0.5);
    margin: 10px 0 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .shop-newsletter__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .shop-newsletter__content { max-width: 100%; }
    .shop-newsletter__form { width: 100%; }
}

/* ────────────────────────────────────────────
   HORIZONTAL SCROLL — NEW IN
──────────────────────────────────────────── */
.shop-scroll-section {
    padding: 48px 0 48px 24px;
    border-top: 1px solid var(--shop-border);
    overflow: hidden;
}

.shop-scroll-section__hdr {
    max-width: calc(1200px - 24px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-right: 24px;
}

.shop-scroll-section__title {
    font-family: var(--shop-head);
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 900;
    color: var(--shop-dark);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.shop-scroll-section__sub {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
    margin: 0;
}

.shop-scroll-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-right: 24px;
    padding-bottom: 4px;
    cursor: grab;
}

.shop-scroll-row:active {
    cursor: grabbing;
}

.shop-scroll-row::-webkit-scrollbar {
    display: none;
}

.shop-scroll-card {
    flex: 0 0 200px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.shop-scroll-card__img {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 10px;
}

.shop-scroll-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.shop-scroll-card:hover .shop-scroll-card__img img {
    transform: scale(1.04);
}

.shop-scroll-card__body {
    padding: 0;
}

.shop-scroll-card__dept {
    display: block;
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--shop-pink);
    margin-bottom: 4px;
}

.shop-scroll-card__name {
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--shop-dark);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-scroll-card__price .price {
    font-family: var(--shop-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-dark);
}

.shop-scroll-card__price .price del {
    color: var(--shop-muted);
    font-weight: 400;
    font-size: 12px;
    margin-right: 4px;
}

.shop-scroll-card__price {
    margin: 0;
}

/* ────────────────────────────────────────────
   MORE TO EXPLORE (contained card scroll)
──────────────────────────────────────────── */
.shop-explore-section {
    padding: 48px 0;
    border-top: 1px solid var(--shop-border);
    background: #faf9f7;
}

.shop-explore-section__hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.shop-explore-section__title {
    font-family: var(--shop-body);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--shop-dark);
    margin: 0;
    text-transform: none;
    letter-spacing: -0.3px;
}

.shop-explore-section__arrows {
    display: flex;
    gap: 8px;
}

.shop-explore-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #d8d8d8;
    background: #f0eeeb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    border-radius: 50%;
    padding: 0;
}

.shop-explore-arrow:hover {
    background: var(--shop-dark);
    border-color: var(--shop-dark);
}

.shop-explore-arrow:hover svg {
    stroke: #fff;
}

.shop-explore-arrow svg {
    stroke: var(--shop-dark);
    pointer-events: none;
}

.shop-explore-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
    box-sizing: border-box;
}

.shop-explore-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    cursor: grab;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.shop-explore-row:active { cursor: grabbing; }
.shop-explore-row::-webkit-scrollbar { display: none; }

.shop-explore-tile {
    flex: 0 0 220px;
    text-decoration: none;
    color: inherit;
    display: block;
    scroll-snap-align: start;
}

.shop-explore-tile__img-wrap {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.shop-explore-tile__img {
    width: 100%;
    height: 100%;
    background: #e8e6e2 center / cover no-repeat;
    transition: transform 0.5s ease;
    transform-origin: center center;
}

.shop-explore-tile:hover .shop-explore-tile__img {
    transform: scale(1.06);
}

.shop-explore-tile--events .shop-explore-tile__img {
    background-color: #f5f5f5;
}

.shop-explore-tile__name {
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-dark);
    margin: 0;
    text-align: left;
}

/* ────────────────────────────────────────────
   BACK TO TOP
──────────────────────────────────────────── */
.shop-back-to-top {
    background: #30373b;
}

.shop-back-to-top__btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
}

.shop-back-to-top__btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Light variant on all pages except the shop homepage */
body:not(.woocommerce-shop) .shop-back-to-top {
    background: #f9f9f9;
}

body:not(.woocommerce-shop) .shop-back-to-top__btn {
    color: #30373b;
}

body:not(.woocommerce-shop) .shop-back-to-top__btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #30373b;
}

/* ────────────────────────────────────────────
   MISSION CTA BLOCK
──────────────────────────────────────────── */
.shop-mission-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    border-top: 1px solid var(--shop-border);
}

.shop-mission-block__content {
    background: #f5f5f5;
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-mission-block__eyebrow {
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--shop-pink);
    margin: 0 0 16px;
}

.shop-mission-block__heading {
    font-family: var(--shop-head);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--shop-dark);
    line-height: 1.05;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.shop-mission-block__sub {
    font-family: var(--shop-body);
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 380px;
}

.shop-mission-block__cta {
    display: inline-block;
    background: var(--shop-dark);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--shop-radius);
    align-self: flex-start;
    transition: background 0.2s;
}

.shop-mission-block__cta:hover {
    background: var(--shop-pink);
    color: #fff;
}

.shop-mission-block__image {
    background: var(--shop-dark) center / cover no-repeat;
    background-image: url('/app/uploads/sites/2/2026/03/Untitled-design.zip-25.png');
    min-height: 420px;
}

/* ────────────────────────────────────────────
   BROWSE LAYOUT
──────────────────────────────────────────── */
.shop-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 0;
    font-family: var(--shop-body);
    font-size: 12px;
    color: var(--shop-muted);
}

.shop-breadcrumb a {
    color: var(--shop-muted);
    text-decoration: none;
}

.shop-breadcrumb a:hover {
    color: var(--shop-dark);
}

.shop-breadcrumb span[aria-current="page"] {
    color: var(--shop-teal);
}

.shop-breadcrumb span {
    margin: 0 6px;
    color: var(--shop-border);
}

.shop-browse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 56px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: calc(var(--shop-sticky-top) + 40px + 16px);
}

.shop-filter-group {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--shop-border);
}

.shop-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shop-filter-group__title {
    font-family: var(--shop-head);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--shop-dark);
    margin: 0 0 14px;
}

.shop-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.shop-filter-list a {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    text-decoration: none;
    transition: background 0.15s;
}

.shop-filter-list a:hover {
    background: rgba(0, 0, 0, 0.04);
}

.shop-filter-list a.is-active {
    background: rgba(212, 39, 105, 0.08);
    color: var(--shop-pink);
    font-weight: 600;
}

.shop-filter-group__sublabel {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--shop-muted);
    margin: 12px 0 6px;
}

.shop-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-filter-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--shop-radius);
    border: 1.5px solid var(--shop-border);
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--shop-dark);
    text-decoration: none;
    background: #fff;
    transition: all 0.15s;
}

.shop-filter-pill:hover,
.shop-filter-pill.is-active {
    background: var(--shop-dark);
    border-color: var(--shop-dark);
    color: #fff;
}

/* ── Availability filter pills ──────────────────────────────────────────── */
.shop-avail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.shop-avail-row__label {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
}

.shop-avail-pills {
    display: flex;
}

.shop-avail-pill {
    display: inline-block;
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--shop-dark);
    background: #fff;
    border: 1.5px solid #ccc;
    padding: 5px 14px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.shop-avail-pill:first-child {
    border-right: none;
    border-radius: 20px 0 0 20px;
}

.shop-avail-pill:last-child {
    border-radius: 0 20px 20px 0;
}

.shop-avail-pill.is-active {
    background: var(--shop-dark);
    color: #fff;
    border-color: var(--shop-dark);
}

.shop-browse__heading {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.shop-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--shop-border);
}

.shop-results-bar__count {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
}

.shop-results-bar__sort {
    font-family: var(--shop-body);
    font-size: 12px;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 6px 10px;
    color: var(--shop-dark);
    background: #fff;
    cursor: pointer;
    outline: none;
}

.shop-main-content .shop-products {
    grid-template-columns: repeat(3, 1fr);
}

/* Pagination */
.shop-pagination {
    margin-top: 40px;
    text-align: center;
}

.shop-pagination .woocommerce-pagination ul {
    display: inline-flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--shop-radius);
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-dark);
    text-decoration: none;
    border: 1.5px solid var(--shop-border);
    background: #fff;
    transition: all 0.15s;
}

.shop-pagination .page-numbers.current,
.shop-pagination .page-numbers:hover {
    background: var(--shop-dark);
    border-color: var(--shop-dark);
    color: #fff;
}

/* ────────────────────────────────────────────
   SINGLE PRODUCT
──────────────────────────────────────────── */
.shop-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 56px;
}

.shop-single__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.shop-single__gallery {
    position: sticky;
    top: 80px;
}

.shop-single__main-img {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    margin-bottom: 12px;
    position: relative;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-single__main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shop-single__thumbs {
    display: flex;
    gap: 4px;
}

.shop-single__thumb {
    width: 68px;
    height: 68px;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.15s;
}

.shop-single__thumb.is-active {
    border-color: var(--shop-dark);
}

.shop-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shop-single__info {
    padding-top: 4px;
}

.shop-single__dept {
    display: inline-block;
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--shop-pink);
    margin-bottom: 12px;
    text-decoration: none;
    background: none;
    padding: 0;
}

.shop-single__title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 12px;
}

.shop-single__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-top: 4px;
    margin-left: auto;
}

.shop-interest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 50%;
    color: var(--shop-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.shop-interest-btn:hover {
    color: var(--shop-teal);
    border-color: var(--shop-teal);
}

.shop-interest-btn.is-active {
    color: var(--shop-teal);
    border-color: var(--shop-teal);
    background: rgba(15, 172, 178, 0.08);
}

.shop-interest-btn.is-active svg {
    fill: var(--shop-teal);
    stroke: var(--shop-teal);
}

.shop-interest-btn:disabled {
    cursor: default;
}

.shop-interest-note {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
    margin: 12px 0 0;
    line-height: 1.6;
}

.shop-single__title {
    font-family: var(--shop-head);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 900;
    color: var(--shop-dark);
    margin: 0;
    line-height: 1.05;
    text-transform: uppercase;
    flex: 1;
}

.shop-wishlist-heart--single {
    position: static;
    flex-shrink: 0;
    margin-top: 0;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.shop-single__stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.shop-single__stars .stars {
    color: var(--shop-gold);
    font-size: 15px;
    letter-spacing: 1px;
}

.shop-single__stars .count {
    font-family: var(--shop-body);
    font-size: 12px;
    color: var(--shop-muted);
}

.shop-single .price {
    font-family: var(--shop-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--shop-dark);
    margin-bottom: 24px;
    display: block;
}

.shop-single .price del {
    font-size: 16px;
    font-weight: 400;
    color: var(--shop-muted);
    margin-right: 8px;
}

.shop-single__desc {
    font-family: var(--shop-body);
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 24px;
    border-top: 1px solid var(--shop-border);
    padding-top: 20px;
}

.shop-single__desc p {
    margin: 0 0 10px;
}

.shop-single__meta-row {
    margin-bottom: 24px;
}

.shop-single__meta-label {
    font-family: var(--shop-head);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--shop-dark);
    margin: 0 0 10px;
}

.shop-single__sizes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.shop-single__size {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--shop-dark);
    cursor: pointer;
    background: #fff;
    transition: all 0.15s;
}

.shop-single__size:hover,
.shop-single__size.is-active {
    border-color: var(--shop-dark);
    background: var(--shop-dark);
    color: #fff;
}

.shop-single__size-prompt {
    font-size: 12px;
    color: var(--shop-accent, #d42769);
    margin: 6px 0 0;
}

.single_add_to_cart_button.ntcg-atc-size-required,
.single_add_to_cart_button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* WC add-to-cart on single */
.shop-single .woocommerce-product-gallery {
    display: none;
}

.shop-single form.cart {
    display: contents;
}

.shop-single form.cart .quantity {
    margin-bottom: 12px;
}

.shop-single form.cart .qty {
    font-family: var(--shop-body);
    font-size: 14px;
    border: 1.5px solid var(--shop-border);
    border-radius: 0;
    padding: 8px 12px;
    width: 80px;
    outline: none;
}

.shop-single form.cart .single_add_to_cart_button {
    display: block !important;
    width: 100% !important;
    background: #30373b !important;
    color: #fff !important;
    font-family: var(--shop-body) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 18px !important;
    border-radius: var(--shop-radius) !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    text-align: center !important;
    box-shadow: none !important;
}

.shop-single form.cart .single_add_to_cart_button:hover {
    background: var(--shop-pink) !important;
}

/* ────────────────────────────────────────────
   PRE-ORDER NOTICE (single product)
──────────────────────────────────────────── */
.ntcg-preorder-notice {
    background: #fffbea;
    border: 1.5px solid var(--shop-gold);
    border-radius: var(--shop-radius);
    padding: 14px 16px;
    margin-bottom: 20px;
}

.ntcg-preorder-notice__badge {
    display: inline-block;
    background: var(--shop-gold);
    color: var(--shop-dark);
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.ntcg-preorder-notice__dispatch {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    margin: 0 0 6px;
}

.ntcg-preorder-notice__info {
    font-family: var(--shop-body);
    font-size: 12px;
    color: var(--shop-muted);
    margin: 0;
    line-height: 1.6;
}

/* ────────────────────────────────────────────
   POPULAR ITEMS (browse view)
──────────────────────────────────────────── */
.shop-popular-section {
    border-top: 1px solid var(--shop-border);
    padding: 48px 0 0;
    background: #fff;
}

.shop-popular-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 56px;
}

.shop-popular__title {
    font-family: var(--shop-head);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 900;
    color: var(--shop-dark);
    margin: 0 0 28px;
    text-transform: none;
    letter-spacing: -0.3px;
}

.shop-popular__grid {
    grid-template-columns: repeat(4, 1fr);
}

.shop-popular__grid .shop-product-card__img {
    aspect-ratio: 1 / 1;
    width: 220px;
}

.shop-popular__grid .shop-product-card__atc,
.shop-popular__grid .shop-product-card .button,
.shop-popular__grid .shop-product-card a.button {
    padding: 8px 0 !important;
    font-size: 10px !important;
}

@media (max-width: 767px) {
    .shop-popular__grid .shop-product-card__img {
        width: 100%;
    }
}

/* ────────────────────────────────────────────
   SHOP FOOTER
──────────────────────────────────────────── */
.shop-footer {
    background: #f4f4f4;
    color: #4a4a4a;
    padding: 56px 24px 0;
    font-family: var(--shop-body);
    font-size: 14px;
    border-top: 1px solid var(--shop-border);
}

.shop-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 40px;
    align-items: start;
}

.shop-footer__logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
    display: block;
    filter: brightness(0);
    opacity: 0.75;
}

.shop-footer__copy-text {
    line-height: 1.8;
    margin: 0;
    color: #5a5a5a;
    font-size: 14px;
}

.shop-footer__col-title {
    font-family: var(--shop-head);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    margin: 0 0 16px;
}

.shop-footer__col a {
    display: block;
    color: #5a5a5a;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.15s;
}

.shop-footer__col a:hover {
    color: var(--shop-dark);
}

.shop-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0 40px;
    border-top: 1px solid var(--shop-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.shop-footer__copy {
    color: #6b6b6b;
    font-size: 13px;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.shop-footer__built {
    color: #8a8a8a;
    font-size: 12px;
    margin: 0;
    text-align: center;
}

/* ────────────────────────────────────────────
   WC NOTICES
──────────────────────────────────────────── */
.woocommerce-notices-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    font-family: var(--shop-body);
    font-size: 13px;
    padding: 12px 16px;
    border-radius: var(--shop-radius);
    list-style: none;
    margin: 0 0 12px;
    line-height: 1.5;
}

.woocommerce-message { background: #e8f5e9; color: #2e7d32; border-left: 3px solid #4caf50; }
.woocommerce-error   { background: #fce4ec; color: #c62828; border-left: 3px solid #ef5350; }
.woocommerce-info    { background: #e3f2fd; color: #1565c0; border-left: 3px solid #2196f3; }

.woocommerce-breadcrumb { display: none; }

/* ────────────────────────────────────────────
   MOBILE
──────────────────────────────────────────── */
@media (max-width: 767px) {
    .shop-header__inner {
        padding: 0 16px;
        height: 64px;
    }

    .shop-header__right { gap: 16px; }

    .shop-topbar { font-size: 10px; height: auto; }

    .shop-search-panel { padding: 24px 18px 28px; }
    .shop-search-panel__field input[type="search"] { font-size: 18px; }

    .shop-hero { height: 380px; }
    .shop-hero__content { padding: 28px 24px; }
    .shop-hero__heading { font-size: clamp(28px, 8vw, 48px); }

    .shop-dept-pills { display: none; }
    .shop-section__subtitle { display: none; }

    .shop-coupon-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .shop-coupon-banner__cta { width: 100%; text-align: center; }

    .shop-explore-section { padding: 32px 0; }
    .shop-explore-wrap { padding: 0 16px; }
    .shop-explore-section__hdr { padding-left: 16px; padding-right: 16px; }
    .shop-explore-tile { flex: 0 0 160px; }
    .shop-explore-tile__img-wrap { width: 160px; height: 160px; }

    .shop-mission-block { grid-template-columns: 1fr; }
    .shop-mission-block__content { padding: 48px 24px; }
    .shop-mission-block__image { min-height: 280px; }

    .shop-depts {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .shop-dept-card { aspect-ratio: 3 / 4; }

    .shop-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .shop-section { padding: 40px 16px; }
    .shop-section--white .shop-section__inner { padding: 40px 16px; }

    .shop-browse {
        grid-template-columns: 1fr;
        padding: 16px 16px 40px;
        gap: 24px;
    }

    .shop-sidebar { position: static; order: -1; }
    .shop-main-content .shop-products { grid-template-columns: repeat(2, 1fr); }

    .shop-single { padding: 16px 16px 40px; }
    .shop-single__inner { grid-template-columns: 1fr; gap: 24px; }
    .shop-single__gallery { position: static; }

    .shop-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .shop-footer__logo { margin: 0 auto 16px; }
    .shop-footer__copy-text { font-size: 14px; }
    .shop-footer__bottom { text-align: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .shop-depts { grid-template-columns: repeat(4, 1fr); }
    .shop-products { grid-template-columns: repeat(3, 1fr); }
    .shop-browse { grid-template-columns: 200px 1fr; gap: 28px; }
    .shop-main-content .shop-products { grid-template-columns: repeat(2, 1fr); }
    .shop-single__inner { gap: 36px; }

    .shop-footer__inner { gap: 16px; }
}

/* ────────────────────────────────────────────
   TOAST NOTIFICATIONS
──────────────────────────────────────────── */
#shop-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 340px;
    width: calc(100vw - 48px);
}

.shop-toast {
    background: var(--shop-dark);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 13px;
    padding: 14px 40px 14px 16px;
    border-radius: var(--shop-radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    position: relative;
    pointer-events: all;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.shop-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.shop-toast--error {
    background: #c0392b;
}

.shop-toast__close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.shop-toast__close:hover {
    color: #fff;
}

/* ────────────────────────────────────────────
   PAGE TEMPLATE (cart, checkout, etc.)
──────────────────────────────────────────── */
.shop-page-content {
    padding: 40px 0 80px;
}

.shop-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.shop-page-wrap .woocommerce {
    width: 100%;
}

/* ── Single product — gallery arrows ────────────────────────────────────── */
.shop-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.92);
    border: 1.5px solid var(--shop-border);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    padding: 0;
}

.shop-gallery-arrow:hover { background: #fff; }
.shop-gallery-arrow--prev { left: 8px; border-radius: 50%; }
.shop-gallery-arrow--next { right: 8px; border-radius: 50%; }

/* ── Quantity stepper ─────────────────────────────────────────────────── */
form.cart .shop-qty-stepper {
    display: flex !important;
    align-items: stretch;
    border: 1.5px solid var(--shop-border);
    width: fit-content;
    margin-bottom: 16px;
}

form.cart .shop-qty-stepper input.qty {
    border: none !important;
    border-left: 1.5px solid var(--shop-border) !important;
    border-right: 1.5px solid var(--shop-border) !important;
    border-radius: 0 !important;
    width: 52px !important;
    text-align: center;
    padding: 10px 8px !important;
    font-family: var(--shop-body);
    font-size: 14px;
    -moz-appearance: textfield;
    appearance: textfield;
}

form.cart .shop-qty-stepper input.qty::-webkit-inner-spin-button,
form.cart .shop-qty-stepper input.qty::-webkit-outer-spin-button { -webkit-appearance: none; }

.shop-qty-btn {
    background: #fff;
    border: none;
    border-radius: var(--shop-radius);
    width: 42px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    font-family: var(--shop-body);
    color: var(--shop-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    padding: 0;
}

.shop-qty-btn:hover { background: #f5f5f5; }

/* ── Collapsible description ─────────────────────────────────────────── */
.shop-single__details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.shop-single__details-inner {
    max-width: 720px;
    border-top: 1px solid var(--shop-border);
}

.shop-single__details-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid var(--shop-border);
    padding: 18px 0;
    font-family: var(--shop-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-single__details-chevron {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.shop-single__details-body {
    padding: 20px 0 32px;
    font-family: var(--shop-body);
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.shop-single__details-body p { margin: 0 0 12px; }
.shop-single__details-body[hidden] { display: none; }

/* ── Cart Drawer ──────────────────────────────────────────────────────── */
.ntcg-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.ntcg-cart-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.ntcg-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
    border-radius: var(--shop-radius) 0 0 var(--shop-radius);
}

.ntcg-cart-drawer[aria-hidden="false"] {
    transform: translateX(0);
}

.ntcg-cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--shop-border);
    flex-shrink: 0;
}

.ntcg-cart-drawer__logo {
    display: block;
    height: 22px;
    width: auto;
}

.ntcg-cart-drawer__title {
    font-family: var(--shop-head);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: var(--shop-dark);
}

.ntcg-cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--shop-dark);
    display: flex;
    align-items: center;
}

.ntcg-cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ntcg-cart-drawer__loading,
.ntcg-cart-drawer__empty {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
    text-align: center;
    padding: 40px 0;
}

.ntcg-drawer-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--shop-border);
}

.ntcg-drawer-item__img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntcg-drawer-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ntcg-drawer-item__body {
    flex: 1;
    min-width: 0;
}

.ntcg-drawer-item__name {
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-dark);
    margin: 0 0 2px;
    line-height: 1.4;
}

.ntcg-drawer-item__variant {
    font-size: 11px;
    color: var(--shop-muted);
    margin: 0 0 8px;
}

.ntcg-drawer-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.ntcg-drawer-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    overflow: hidden;
}

.ntcg-drawer-qty__btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    font-family: var(--shop-body);
    color: var(--shop-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.12s;
}

.ntcg-drawer-qty__btn:hover { background: #f5f5f5; }

.ntcg-drawer-qty__val {
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 600;
    width: 30px;
    text-align: center;
    border-left: 1.5px solid var(--shop-border);
    border-right: 1.5px solid var(--shop-border);
    line-height: 28px;
}

.ntcg-drawer-item__price {
    font-family: var(--shop-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--shop-dark);
}

.ntcg-drawer-item__remove {
    font-size: 11px;
    color: var(--shop-muted);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--shop-body);
}

.ntcg-drawer-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 4px;
    font-family: var(--shop-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-dark);
    border-top: 2px solid var(--shop-dark);
    margin-top: 4px;
}

.ntcg-drawer-event {
    background: var(--shop-dark);
    border-radius: var(--shop-radius);
    overflow: hidden;
    margin-top: 16px;
}

.ntcg-drawer-event__eyebrow {
    font-family: var(--shop-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-gold);
    margin: 0;
    padding: 14px 16px 10px;
}

.ntcg-drawer-event__img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center top;
}

.ntcg-drawer-event__name {
    font-family: var(--shop-head);
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 16px 6px;
    line-height: 1.2;
}

.ntcg-drawer-event__link {
    display: block;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--shop-dark);
    background: var(--shop-gold);
    text-decoration: none;
    margin: 10px 16px 16px;
    padding: 11px 16px;
    border-radius: var(--shop-radius);
    text-align: center;
    transition: background 0.2s;
}

.ntcg-drawer-event__link:hover {
    background: #e6b800;
    color: var(--shop-dark);
}

.ntcg-drawer-checkout {
    display: block;
    background: var(--shop-dark);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 16px;
    margin-top: 16px;
    border-radius: var(--shop-radius);
    transition: background 0.2s;
    flex-shrink: 0;
}

.ntcg-drawer-checkout:hover { background: var(--shop-pink); color: #fff; }

body.ntcg-drawer-open { overflow: hidden; }

@media (max-width: 480px) {
    .ntcg-cart-drawer { width: 100vw; }
}

/* ── Checkout page ────────────────────────────────────────────────────── */
.woocommerce-checkout .shop-page-wrap {
    max-width: 1100px;
}

.woocommerce-checkout .woocommerce {
    padding: 0;
}

/* Two-column grid via explicit wrapper divs in the template override */
.ntcg-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.ntcg-checkout-left {
    min-width: 0;
}

.ntcg-checkout-right {
    position: sticky;
    top: calc(var(--shop-sticky-top) + 16px);
}

/* Stack billing + shipping vertically in the left column */
.woocommerce-checkout .col2-set {
    display: block;
    width: 100%;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 32px;
}

#order_review_heading { display: none; }

.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
    font-family: var(--shop-head);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--shop-dark);
}

.woocommerce-checkout .form-row {
    margin-bottom: 14px;
}

.woocommerce-checkout .form-row label {
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--shop-dark);
    display: block;
    margin-bottom: 6px;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 0 14px;
    height: 46px;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

.woocommerce-checkout .form-row textarea {
    height: auto;
    padding: 12px 14px;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus { border-color: var(--shop-dark); }

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: calc(50% - 8px);
    display: inline-block;
    vertical-align: top;
}

.woocommerce-checkout .form-row-first { margin-right: 16px; }

#order_review {
    background: #faf9f7;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 24px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    margin-bottom: 16px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--shop-border);
    vertical-align: top;
}

.woocommerce-checkout-review-order-table .product-total { text-align: right; font-weight: 700; }

.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    font-weight: 700;
    font-size: 15px;
    border-bottom: none;
    padding-top: 14px;
}

#payment { margin-top: 20px; }

#payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
}

#payment ul.payment_methods li {
    padding: 14px 16px;
    border-bottom: 1px solid var(--shop-border);
    font-family: var(--shop-body);
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#payment ul.payment_methods li:last-child { border-bottom: none; }

#payment #place_order {
    display: block !important;
    width: 100% !important;
    background: var(--shop-dark) !important;
    color: #fff !important;
    font-family: var(--shop-body) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 18px !important;
    border: none !important;
    border-radius: var(--shop-radius) !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

#payment #place_order:hover { background: var(--shop-pink) !important; }

@media (max-width: 768px) {
    .ntcg-checkout-grid { grid-template-columns: 1fr; }
    .ntcg-checkout-right { position: static; }
    .shop-topbar { display: none; }
}

/* ── Checkout: shipping row — hide when only local pickup ─────────────── */
.woocommerce-checkout-review-order-table .woocommerce-shipping-totals {
    display: none !important;
}

/* ── Checkout: coupon form (lives inside order review panel) ──────────── */

/* Flex row — overrides WC floats; no inline display:none (template override handles that) */
.checkout_coupon {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 8px !important;
    border-top: 1px solid var(--shop-border) !important;
    padding: 14px 0 0 !important;
    margin: 0 0 16px !important;
    background: transparent !important;
}

.checkout_coupon .form-row {
    float: none !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    clear: none !important;
}

.checkout_coupon .form-row.form-row-first {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.checkout_coupon .form-row.form-row-last {
    flex: 0 0 auto !important;
}

.checkout_coupon .form-row label {
    display: none !important;
}

.checkout_coupon .form-row input[type="text"] {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    padding: 0 12px !important;
    border: 1.5px solid var(--shop-border) !important;
    font-family: var(--shop-body) !important;
    font-size: 13px !important;
    color: var(--shop-dark) !important;
    background: #fff !important;
    border-radius: var(--shop-radius) !important;
    outline: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.checkout_coupon .form-row input[type="text"]:focus {
    border-color: var(--shop-dark) !important;
}

.checkout_coupon .form-row button {
    display: block !important;
    height: 48px !important;
    padding: 0 18px !important;
    background: var(--shop-dark) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--shop-radius) !important;
    font-family: var(--shop-body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.checkout_coupon .form-row button:hover {
    background: var(--shop-pink) !important;
}

.checkout_coupon .form-row button:disabled {
    opacity: 0.6 !important;
    cursor: wait !important;
}

/* ── Order-pay page (CreatePay hosted form) ───────────────────────────── */

.woocommerce-order-pay .shop-page-wrap {
    max-width: 1100px;
}

.woocommerce-order-pay .woocommerce {
    padding: 0;
}

/* Order details summary (rendered by WC before the form) */
.woocommerce-order-pay .woocommerce-thankyou-order-details,
.woocommerce-order-pay ul.order_details {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    border-bottom: 1px solid var(--shop-border);
    padding-bottom: 24px;
}

.woocommerce-order-pay .woocommerce-thankyou-order-details li,
.woocommerce-order-pay ul.order_details li {
    margin: 0;
}

.woocommerce-order-pay .woocommerce-thankyou-order-details li strong,
.woocommerce-order-pay ul.order_details li strong {
    font-weight: 700;
}

/* Payment gateway iframe */
#paymentgatewayframe {
    width: 430px;
    max-width: 100%;
    height: 1100px;
    display: block;
    margin: 0 auto;
}

/* ── Order received / thank you page ─────────────────────────────────────── */

.woocommerce-order-received .shop-page-wrap,
.woocommerce-checkout .shop-page-wrap {
    max-width: 1100px;
}

/* Success / failed banner */
.ntcg-thankyou__banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--shop-radius);
    margin-bottom: 28px;
}

.ntcg-thankyou__banner--success {
    background: #f0faf4;
    border: 1.5px solid #a8d5b5;
    color: #1a5c32;
}

.ntcg-thankyou__banner--failed {
    background: #fef6f8;
    border: 1.5px solid #e8507a;
    color: #8b1a3a;
}

.ntcg-thankyou__banner svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.ntcg-thankyou__banner-title {
    font-family: var(--shop-head);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.ntcg-thankyou__banner-sub {
    font-family: var(--shop-body);
    font-size: 13px;
    margin: 0;
    opacity: 0.85;
}

/* Order meta row */
.ntcg-thankyou__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    overflow: hidden;
}

.ntcg-thankyou__meta li {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    border-right: 1px solid var(--shop-border);
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    min-width: 120px;
}

.ntcg-thankyou__meta li:last-child {
    border-right: none;
}

.ntcg-thankyou__meta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--shop-muted);
    margin-bottom: 4px;
}

.ntcg-thankyou__meta strong {
    font-weight: 700;
    font-size: 14px;
}

/* Two-column grid */
.ntcg-thankyou__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.ntcg-thankyou__right {
    position: sticky;
    top: calc(var(--shop-sticky-top) + 16px);
}

/* Section heading */
.ntcg-thankyou__section-head {
    font-family: var(--shop-head);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--shop-dark);
}

/* Order details table (rendered by woocommerce_thankyou hook) */
.ntcg-thankyou__left .woocommerce-table--order-details {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    margin: 0;
}

.ntcg-thankyou__left .woocommerce-table--order-details thead th {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--shop-muted);
    padding: 0 0 12px;
    border-bottom: 1px solid var(--shop-border);
    text-align: left;
}

.ntcg-thankyou__left .woocommerce-table--order-details thead th.product-total {
    text-align: right;
}

.ntcg-thankyou__left .woocommerce-table--order-details tbody td,
.ntcg-thankyou__left .woocommerce-table--order-details tfoot th,
.ntcg-thankyou__left .woocommerce-table--order-details tfoot td {
    padding: 12px 0;
    border-bottom: 1px solid var(--shop-border);
    vertical-align: top;
}

.ntcg-thankyou__left .woocommerce-table--order-details tbody td.product-total,
.ntcg-thankyou__left .woocommerce-table--order-details tfoot td {
    text-align: right;
    font-weight: 700;
}

.ntcg-thankyou__left .woocommerce-table--order-details tfoot tr:last-child th,
.ntcg-thankyou__left .woocommerce-table--order-details tfoot tr:last-child td {
    font-size: 15px;
    font-weight: 700;
    border-bottom: none;
    padding-top: 16px;
}

.ntcg-thankyou__left .woocommerce-table--order-details tfoot th {
    text-align: left;
    font-weight: 400;
    color: var(--shop-muted);
}

/* Product name link */
.ntcg-thankyou__left .woocommerce-table--order-details a {
    color: var(--shop-dark);
    text-decoration: none;
    font-weight: 600;
}

.ntcg-thankyou__left .woocommerce-table--order-details a:hover {
    text-decoration: underline;
}

/* Item meta (size, colour etc.) */
.ntcg-thankyou__left .wc-item-meta,
.ntcg-thankyou__left .woocommerce-table--order-details .wc-item-meta {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--shop-muted);
}

/* Right column: address card */
.ntcg-thankyou__card {
    background: #faf9f7;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 20px 24px;
}

.ntcg-thankyou__card-head {
    font-family: var(--shop-head);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid var(--shop-border);
}

.ntcg-thankyou__address {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
    line-height: 1.6;
    font-style: normal;
}

.ntcg-thankyou__email {
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-muted);
    margin: 10px 0 0;
}

/* Continue shopping button */
.ntcg-thankyou__continue {
    display: block;
    width: 100%;
    margin-top: 16px;
    text-align: center;
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 14px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.ntcg-thankyou__continue:hover {
    border-color: var(--shop-dark);
    background: var(--shop-dark);
    color: #fff;
}

/* Failed order actions */
.ntcg-thankyou__failed-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.ntcg-thankyou__btn {
    display: inline-block;
    font-family: var(--shop-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: var(--shop-radius);
    text-decoration: none;
    background: var(--shop-dark);
    color: #fff;
    border: 1.5px solid var(--shop-dark);
    transition: background 0.15s;
}

.ntcg-thankyou__btn:hover { background: var(--shop-pink); border-color: var(--shop-pink); }

.ntcg-thankyou__btn--ghost {
    background: transparent;
    color: var(--shop-dark);
}

.ntcg-thankyou__btn--ghost:hover { background: var(--shop-dark); color: #fff; }

@media (max-width: 768px) {
    .ntcg-thankyou__meta { flex-direction: column; }
    .ntcg-thankyou__meta li { border-right: none; border-bottom: 1px solid var(--shop-border); }
    .ntcg-thankyou__meta li:last-child { border-bottom: none; }
    .ntcg-thankyou__grid { grid-template-columns: 1fr; }
    .ntcg-thankyou__right { position: static; }
}

/* ── Order-pay grid ───────────────────────────────────────────────────────── */

.ntcg-pay-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.ntcg-pay-left {
    min-width: 0;
}

/* Clean up the default WC payment method list */
.ntcg-pay-left .wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Hide the radio + label row that WC wraps around the gateway */
.ntcg-pay-left .wc_payment_methods li label[for] {
    display: none;
}

/* Strip the default WC payment box border/bg */
.ntcg-pay-left #payment {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

/* Submit button */
.ntcg-pay-left #payment .ntcg-pay-submit-row {
    margin-top: 20px;
}

.ntcg-pay-left #payment #place_order {
    display: block;
    width: 100%;
    background: var(--shop-dark);
    color: #fff;
    font-family: var(--shop-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 18px;
    border: none;
    border-radius: var(--shop-radius);
    cursor: pointer;
    transition: background 0.2s;
}

.ntcg-pay-left #payment #place_order:hover {
    background: var(--shop-pink);
}

/* Right column: sticky order summary card */
.ntcg-pay-right {
    position: sticky;
    top: calc(var(--shop-sticky-top) + 16px);
}

.ntcg-pay-summary {
    background: #faf9f7;
    border: 1.5px solid var(--shop-border);
    border-radius: var(--shop-radius);
    padding: 24px;
}

.ntcg-pay-summary__heading {
    font-family: var(--shop-head);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--shop-dark);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--shop-dark);
}

.ntcg-pay-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--shop-body);
    font-size: 13px;
    color: var(--shop-dark);
}

.ntcg-pay-table thead th {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--shop-muted);
    padding: 0 0 10px;
    border-bottom: 1px solid var(--shop-border);
    text-align: left;
}

.ntcg-pay-table thead th.product-total,
.ntcg-pay-table tbody td.product-total,
.ntcg-pay-table tfoot td.product-total {
    text-align: right;
    font-weight: 700;
}

.ntcg-pay-table tbody td,
.ntcg-pay-table tfoot th,
.ntcg-pay-table tfoot td {
    padding: 10px 0;
    border-bottom: 1px solid var(--shop-border);
    vertical-align: top;
}

.ntcg-pay-table td.product-quantity {
    text-align: center;
    color: var(--shop-muted);
    font-size: 12px;
}

.ntcg-pay-table tfoot tr:last-child th,
.ntcg-pay-table tfoot tr:last-child td {
    font-weight: 700;
    font-size: 15px;
    border-bottom: none;
    padding-top: 14px;
}

@media (max-width: 768px) {
    .ntcg-pay-grid {
        grid-template-columns: 1fr;
    }
    .ntcg-pay-right {
        position: static;
        order: -1; /* summary above payment on mobile */
    }
}


