/* ============================================
   GAZE OF LUXURY — Quiet Luxury Edition
   ============================================ */

:root {
    --ink: #1a1a1a;
    --paper: #faf8f5;
    --cream: #f0ece6;
    --beige: #e8e0d6;
    --muted: #8a8580;
    --warm: #c4a882;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --max-width: 1280px;
    --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.gaze-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gaze-main {
    flex: 1;
}

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.6; }
/* no card dimming on hover */
a.collection-card:hover,
a.outfit-card:hover,
a.product-card:hover { opacity: 1; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.uppercase { text-transform: uppercase; letter-spacing: 0.15em; }
.small { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── Navigation ── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: flex-start; align-items: center;
    padding: 0 3rem; height: var(--nav-height);
    background: rgba(250,248,245,0.97);
    /* backdrop-filter removed */
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo .site-title {
    font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links {
    display: flex; gap: 2.5rem; align-items: center;
    margin-left: auto;
}
.nav-links a {
    font-family: var(--sans); font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--ink); text-decoration: none;
    font-weight: 400; transition: opacity 0.3s; position: relative; padding: 0.3rem 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--ink);
    transform: scaleX(0); transition: none;
    transform-origin: left;
}
.nav-links a:hover { opacity: 0.7; }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item a::after { transform: scaleX(1); }
.nav-icons { display: flex; gap: 1.2rem; align-items: center; }

/* Currency Selector */
.nav-links .gaze-currency-wrap {
    margin-left: auto; display: flex; align-items: center; padding: 0;
    list-style: none; background: none;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.nav-links .gaze-currency-wrap * {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.nav-links .gaze-currency-wrap a { display: inline; padding: 0; }
.gaze-currency-select {
    background: none; border: none;
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); cursor: pointer; padding: 0.3rem 0.5rem;
}
.gaze-currency-select option { color: var(--ink); background: #fff; }
/* FOX currency switcher styling */
.woocs_auto_switcher { font-family: var(--sans) !important; }
.woocs_auto_switcher > a { font-size: 0.65rem !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; }
.woocs_auto_switcher > a:hover { color: var(--ink) !important; }

/* FOX currency — style=1 custom dropdown override */
.woocs-style-1-dropdown {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    /* v64: transparent pill — no white plugin wrapper, no shadow */
    background: transparent !important;
    box-shadow: none !important;
}
.woocs-style-1-select {
    background: transparent !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 0.35rem 1.2rem !important;
    min-width: auto !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: var(--sans) !important;
    font-size: 0.6rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--ink) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    cursor: pointer !important;
}
.woocs-style-1-select:focus,
.woocs-style-1-select:active,
.woocs-style-1-select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    opacity: 0.85;
}
.woocs-style-1-select span { color: var(--ink) !important; }
.woocs-style-1-select i { filter: brightness(0) !important; }
.woocs-style-1-select i img { filter: brightness(0) !important; }
.woocs-style-1-dropdown-menu {
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    padding: 0.4rem 0 !important;
    min-width: 120px !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    outline: none !important;
}
.woocs-style-1-dropdown-menu li {
    padding: 0.45rem 1rem !important;
    font-family: var(--sans) !important;
    font-size: 0.7rem !important;
    color: var(--ink) !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    transition: background 0.15s !important;
    outline: none !important;
}
.woocs-style-1-dropdown-menu li:hover {
    background: rgba(0,0,0,0.03) !important;
}
.woocs_display_none { display: none !important; }

/* Menu Toggle */
.menu-toggle {
    display: none; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer;
    padding: 8px; margin-left: -8px;
}
.menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); transition: all 0.3s;
    border-radius: 1px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile bag icon (Monsoon-style, v60) — shown only on mobile */
.gaze-mobile-bag {
    display: none; position: relative; color: var(--ink);
    padding: 6px; margin-right: -8px;
}
.gaze-mobile-bag svg { display: block; }
.gaze-mobile-bag .cart-count {
    position: absolute; top: -2px; right: -4px;
    min-width: 16px; height: 16px; padding: 0 3px; border-radius: 50%;
    background: var(--ink); color: #fff;
    font-size: 0.55rem; font-weight: 500; line-height: 16px; text-align: center;
    font-family: var(--sans);
}

.cart-count {
    background: var(--ink); color: var(--paper); font-size: 0.6rem;
    width: 16px; height: 16px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: 3px; font-weight: 600;
}

/* ── Hero ── */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 0 2rem; position: relative; overflow: hidden;
    text-align: center;
}

/* ── Hero Scrolling Image Marquee ── */
.hero-marquee-bg { position: relative; }
.hero-marquee-track {
    display: flex; gap: 0;
    position: absolute; inset: 0;
    width: 200%;
    animation: heroScroll 20s linear infinite;
}
.hero-marquee-track img {
    width: 25%; height: 100%; object-fit: cover;
    display: block; filter: brightness(0.4);
}
@keyframes heroScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-marquee-track { animation: none; }
}

/* ── Hero text above images ── */
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 2rem; }
.hero-tag {
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300;
    color: #fff; line-height: 1.1; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--warm); display: block; font-size: 0.65em; margin-top: 0.4rem; }
.hero-cta {
    display: inline-block; margin-top: 2.5rem; padding: 1rem 3rem;
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: #fff; border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.4s ease;
}
.hero-cta:hover { background: #fff; color: var(--ink); border-color: #fff; opacity: 1; }

/* ── Sections ── */
.section { padding: 5rem 2.5rem; }
.section-label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.5rem;
}
.section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    /* v62: .fade-in keeps a transform (stacking context) that trapped the sort
       menu's z-index below the product grid — elevate the header instead */
    position: relative; z-index: 5;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-header a {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
}

/* Shop header row */
.gaze-shop-header-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 0.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.gaze-shop-count { font-size: 0.75rem; color: var(--muted); }
.gaze-shop-header-row { gap: 1rem; }
.gaze-shop-sort { position: relative; }
/* Sort dropdown — custom, menu matches the FOX currency menu (white card, v58) */
.gaze-sort-dropdown { position: relative; display: inline-block; outline: none; -webkit-tap-highlight-color: transparent; }
.gaze-sort-select {
    background: #fff; border: 1px solid rgba(0,0,0,0.12); border-radius: 100px;
    padding: 0.45rem 2.2rem 0.45rem 1.2rem;
    display: flex; align-items: center; gap: 0.6rem; cursor: pointer;
    font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink); user-select: none; white-space: nowrap;
    transition: border-color 0.3s;
}
.gaze-sort-dropdown:focus .gaze-sort-select, .gaze-sort-select:hover { border-color: var(--ink); }
.gaze-sort-chevron {
    width: 6px; height: 6px; flex: 0 0 6px;
    border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}
.gaze-sort-dropdown.gaze-sort-open .gaze-sort-chevron { transform: rotate(-135deg) translateY(2px); }
.gaze-sort-menu {
    position: absolute; top: calc(100% + 8px); right: 0; z-index: 30;
    background: #fff; border-radius: 8px; border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0.4rem 0; min-width: 220px; list-style: none;
    display: none; margin: 0;
}
.gaze-sort-dropdown.gaze-sort-open .gaze-sort-menu { display: block; }
.gaze-sort-menu li {
    padding: 0.5rem 1.1rem; font-family: var(--sans); font-size: 0.68rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--ink); cursor: pointer; transition: background 0.15s;
    white-space: nowrap;
}
.gaze-sort-menu li:hover { background: rgba(0,0,0,0.04); }
.gaze-sort-menu li.gaze-sort-active { font-weight: 600; }
.gaze-sort-menu li.gaze-sort-active::before { content: '✓ '; font-weight: 600; }

/* ── Collections Grid ── */
.collections-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

/* ── Outfits Grid (slider per outfit) ── */
.outfits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.outfit-card { cursor: pointer; }

/* ── Outfit Slider ── */
.outfit-slider {
    position: relative; overflow: hidden; width: 100%;
    margin-bottom: 1rem; background: var(--cream);
    aspect-ratio: 2/3;
}
.outfit-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.45s ease-in-out;
    pointer-events: none;
}
.outfit-slide.active {
    position: absolute; inset: 0;
    opacity: 1; pointer-events: auto;
}
.outfit-slide img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.slider-prev, .slider-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.15); color: #fff; border: none;
    width: 36px; height: 36px; font-size: 1.3rem;
    cursor: pointer; transition: background 0.3s;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; opacity: 1;
}
.slider-prev { left: 0.5rem; }
.slider-next { right: 0.5rem; }
.slider-dots {
    position: absolute; bottom: 0.75rem; left: 50%;
    transform: translateX(-50%); display: flex; gap: 0.4rem;
    z-index: 2;
}
.slider-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: background 0.3s;
}
.slider-dot.active { background: #fff; }

.outfit-info { text-align: center; }
.outfit-info h3 {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
    margin-bottom: 0.2rem;
}
.outfit-info .price { font-size: 0.9rem; color: var(--muted); }

@media (max-width: 1024px) {
    .outfits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .outfits-grid { grid-template-columns: 1fr; }
}

.collection-card {
    position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4;
    display: block; text-decoration: none;
}
.collection-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1s cubic-bezier(0.25, 0, 0.15, 1);
}
.collection-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 2rem;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.75));
    z-index: 2; color: #fff;
}
.collection-overlay .col-year {
    font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
    opacity: 0.5; margin-bottom: 0.15rem;
}
.collection-overlay h3 {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
    margin: 0 0 0.4rem; line-height: 1.15;
    color: var(--gold); letter-spacing: 0.02em;
    transition: transform 0.6s ease;
}
/* Collection hover animation (user-requested, v51+) — slow zoom + title lift, no blur */
@media (hover: hover) {
    .collection-card:hover img { transform: scale(1.06); }
    .collection-card:hover .collection-overlay h3 { transform: translateY(-5px); }
}

/* ── Product Grid ── */
.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.product-card { cursor: pointer; }
.product-img {
    position: relative; overflow: hidden; aspect-ratio: 3/4;
    background: var(--cream); margin-bottom: 0.8rem;
}
.product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: none;
}
/* removed */
.product-tag {
    position: absolute; top: 0.8rem; left: 0.8rem;
    font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.25rem 0.7rem; background: var(--ink); color: #fff;
}
.product-info h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; margin-bottom: 0.2rem; }
.product-info .price { font-size: 0.85rem; color: var(--muted); }

/* ── Newsletter ── */
.newsletter {
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; padding: 4rem 2.5rem;
    background: var(--cream);
}
.newsletter-text h3 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.newsletter-text p { font-size: 0.85rem; color: var(--muted); }
.newsletter-form { display: flex; }
.newsletter-form input {
    padding: 0.9rem 1.2rem; width: 280px; font-family: var(--sans); font-size: 0.85rem;
    border: 1px solid rgba(0,0,0,0.1); border-right: none; background: transparent; outline: none;
}
.newsletter-form input:focus { border-color: var(--ink); }
.newsletter-form button {
    padding: 0.9rem 1.8rem; font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    background: var(--ink); color: #fff; border: 1px solid var(--ink); cursor: pointer;
    transition: all 0.3s;
}
.newsletter-form button:hover { background: transparent; color: var(--ink); }

/* Load More (v67) — Monsoon-style counter + full-width button */
.gaze-load-more-wrap {
    margin-top: 3rem; text-align: center;
}
.gaze-products-shown {
    font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1.25rem;
}
.gaze-load-more {
    padding: 0.9rem 3.5rem;
    border: 1px solid var(--ink); border-radius: 100px;
    background: transparent; color: var(--ink);
    font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}
.gaze-load-more:hover:not(:disabled) { background: var(--ink); color: #fff; }
.gaze-load-more:disabled { opacity: 0.5; cursor: default; }

/* ── Footer ── */
.site-footer {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem; padding: 4rem 2.5rem 2.5rem;
}
.footer-brand .site-title {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 280px; line-height: 1.6; }
.footer-col h5 {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 1.2rem; color: var(--muted);
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: var(--muted); }
/* Follow Us — black-and-white social icons (v66) */
.footer-social-icons { display: flex; gap: 0.7rem; align-items: center; }
.gaze-social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--ink); color: #fff;
    transition: opacity 0.25s;
}
.gaze-social-icon:hover { opacity: 0.75; }
.gaze-social-icon svg { width: 15px; height: 15px; }
.gaze-social-icon.gaze-social-outline {
    background: none; color: var(--ink);
    border: 1.5px solid var(--ink);
}
.gaze-social-icon.gaze-social-outline svg { width: 17px; height: 17px; }
.footer-bottom {
    grid-column: 1 / -1; display: flex; justify-content: space-between;
    padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em;
}

/* ── Page/Single Content ── */
.gaze-page, .gaze-single, .gaze-archive {
    padding: 130px 2.5rem 5rem !important;
}
.gaze-page-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.15;
}
.gaze-page-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink);
}
.gaze-page-content p {
    margin-bottom: 1.5rem;
}
.gaze-page-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}
.gaze-post-date {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}
.gaze-post-image {
    margin-bottom: 3rem;
}
.gaze-post-image img {
    width: 100%;
    height: auto;
}

/* ── Archive Grid ── */
.gaze-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.gaze-archive-card {
    cursor: pointer;
}
.gaze-archive-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
    margin-bottom: 1rem;
}
.gaze-archive-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}
/* removed */
    transform: none;
}
.gaze-archive-date {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.3rem;
}
.gaze-archive-info h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}
.gaze-archive-info h3 a { color: var(--ink); }
.gaze-archive-excerpt {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}
.gaze-pagination {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
}
.gaze-pagination a, .gaze-pagination span {
    padding: 0.3rem 0.8rem;
    color: var(--muted);
}
.gaze-pagination .current {
    color: var(--ink);
    font-weight: 500;
}

/* ── Animations ── */
.fade-in {
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Marquee (moving text) ── */
.gaze-marquee {
    overflow: hidden; width: 100%;
    padding: 2rem 0;
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.gaze-marquee-track {
    display: flex; gap: 0;
    width: fit-content;
    animation: marqueeScroll 35s linear infinite;
}
.gaze-marquee-track span {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 3rem;
    font-weight: 400;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .gaze-marquee-track { animation: none; }
}

/* ── Trust Bar ── */
.trust-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    padding: 3.5rem 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.trust-icon {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream); color: var(--ink);
}
.trust-title {
    font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); font-weight: 400;
}
@media (max-width: 768px) {
    .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
    .trust-bar { grid-template-columns: 1fr; }
}

/* ── Elementor Full-Width ── */
.gaze-front-main { padding-top: var(--nav-height); }
.elementor-fullwidth .elementor-section-wrap > .elementor-section { margin-top: 0; }

/* ── WooCommerce Single Product (Monsoon-inspired) ── */
.gaze-single-product {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
    padding: 120px 3rem 5rem; min-height: 100vh;
}
.gaze-product-gallery { position: relative; }
.gaze-gallery-main {
    position: relative; overflow: hidden;
    background: #f9f9f9;
    user-select: none; -webkit-user-select: none;
}
.gaze-gallery-slide { display: none; }
.gaze-gallery-slide.active { display: block; }
.gaze-gallery-img {
    width: 100%; height: 80vh; object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}
.gaze-gallery-img.gaze-pinned { cursor: zoom-out; }
/* Click-to-zoom pill (Monsoon-style, v52) — appears on hover, zoom happens on click */
.gaze-zoom-pill {
    position: absolute; bottom: 12%; left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff; color: #111; border: none;
    font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.08em;
    padding: 9px 22px; border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.14);
    z-index: 3; pointer-events: none; white-space: nowrap;
    opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) {
    .gaze-gallery-main:hover .gaze-zoom-pill {
        opacity: 1; transform: translateX(-50%) translateY(0);
    }
    .gaze-gallery-main:hover .gaze-zoom-pill.gaze-pinned-hidden { opacity: 0; }
}
.gaze-gallery-prev, .gaze-gallery-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.85); color: #000; border: none;
    width: 44px; height: 44px; font-size: 1.5rem;
    cursor: pointer; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.gaze-gallery-prev { left: 1rem; }
.gaze-gallery-next { right: 1rem; }
.gaze-gallery-prev:hover, .gaze-gallery-next:hover { background: #fff; }
.gaze-gallery-dots {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.5rem; z-index: 2;
}
.gaze-gallery-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(0,0,0,0.12); cursor: pointer;
    transition: background 0.3s;
}
.gaze-gallery-dot.active { background: rgba(0,0,0,0.4); }

.gaze-gallery-thumbs {
    display: flex; gap: 0.5rem; margin-top: 0.5rem;
    overflow-x: auto; padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.gaze-thumb {
    width: 60px; height: 76px; overflow: hidden; cursor: pointer;
    opacity: 0.35; transition: opacity 0.3s;
    flex-shrink: 0; background: #f9f9f9;
}
.gaze-thumb.active { opacity: 1; }
.gaze-thumb:hover { opacity: 0.65; }
.gaze-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Product Details */
.gaze-product-details { padding: 2rem 0 2rem 2rem; max-width: 480px; }
.gaze-badge-new {
    display: inline-block; font-size: 0.6rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: #c94a4a;
    margin-bottom: 0.75rem;
}
.gaze-product-title {
    font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 300; margin-bottom: 0.5rem; line-height: 1.2;
    text-transform: uppercase; letter-spacing: 0.02em;
}
.gaze-product-price { font-size: 1.1rem; color: var(--ink); margin-bottom: 1.5rem; }

/* Colour selector */
.gaze-color-selector { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.gaze-color-label { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.5rem; }
.gaze-color-label strong { color: var(--ink); font-weight: 400; }
.gaze-swatches { display: flex; gap: 0.5rem; }
.gaze-swatch {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.5rem; text-transform: uppercase;
    transition: all 0.2s;
}
.gaze-swatch.active { border-color: var(--ink); outline: 2px solid var(--ink); outline-offset: 2px; }
.gaze-swatch:hover { border-color: var(--ink); }

/* Size Selector Pills */
.gaze-size-selector { margin-bottom: 1.25rem; }
.gaze-size-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.6rem;
}
.gaze-size-label { font-size: 0.7rem; font-weight: 500; color: var(--ink); }
.gaze-size-chart {
    font-size: 0.6rem; color: var(--muted); text-decoration: underline;
    letter-spacing: 0.05em; cursor: pointer;
}
.gaze-size-chart:hover { color: var(--ink); }
.gaze-size-options { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gaze-size-pill { cursor: pointer; }
.gaze-size-pill input { position: absolute; opacity: 0; pointer-events: none; }
.gaze-size-pill span {
    display: flex; align-items: center; justify-content: center;
    min-width: 42px; padding: 0.55rem 0.8rem;
    border: 1px solid rgba(0,0,0,0.12);
    font-family: var(--sans); font-size: 0.7rem; color: var(--muted);
    cursor: pointer; transition: all 0.2s;
}
.gaze-size-pill input:checked + span {
    border-color: var(--ink); color: var(--ink); background: rgba(0,0,0,0.03);
}
.gaze-size-pill span:hover { border-color: var(--ink); }

/* Model info */
.gaze-model-info { font-size: 0.65rem; color: var(--muted); margin: 0.8rem 0 1.5rem; font-style: italic; }

/* Add to Cart */
.gaze-cart-form { margin-bottom: 0.75rem; }
.gaze-add-btn {
    width: 100%; padding: 1rem;
    background: var(--ink); color: var(--paper); border: none;
    font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: opacity 0.3s;
}
.gaze-add-btn:hover { opacity: 0.85; }
.gaze-add-btn:disabled { opacity: 0.25; cursor: not-allowed; }

/* Wishlist + Share */
.gaze-wishlist-btn {
    display: block; width: 100%; padding: 0.85rem;
    background: transparent; border: 1px solid rgba(0,0,0,0.1);
    font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); cursor: pointer; margin-bottom: 0.6rem;
    transition: all 0.2s;
}
.gaze-wishlist-btn:hover { border-color: var(--ink); color: var(--ink); }
.gaze-share-btn {
    background: none; border: none;
    font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); cursor: pointer; padding: 0; margin-bottom: 1.5rem;
}
.gaze-share-btn:hover { color: var(--ink); }

/* Accordion */

/* Wishlist */
.gaze-wishlist-btn {
    width: 100%; padding: 0.75rem;
    background: none; border: 1px solid rgba(0,0,0,0.08);
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.1em; cursor: pointer; transition: all 0.3s;
    margin-bottom: 2rem;
}
.gaze-wishlist-btn:hover { border-color: var(--ink); }

/* Accordion */
.gaze-accordion { border-top: 1px solid rgba(0,0,0,0.06); }
.gaze-acc-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.gaze-acc-trigger {
    width: 100%; text-align: left; padding: 1.1rem 0;
    background: none; border: none;
    font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; color: var(--ink); transition: opacity 0.3s;
}
.gaze-acc-trigger::after { content: '+'; float: right; font-size: 0.95rem; font-weight: 400; }
.gaze-acc-trigger.active::after { content: '−'; }
.gaze-acc-body {
    display: none; padding: 0 0 1.1rem;
    font-size: 0.8rem; line-height: 1.7; color: var(--muted);
}
@media (max-width: 768px) {
    .gaze-acc-trigger { font-size: 0.8rem; padding: 1rem 0; }
    .gaze-acc-body { font-size: 0.8rem; }
}

/* Share */
.gaze-share { margin-top: 0.5rem; }
.gaze-share-btn {
    background: none; border: none;
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.08em; cursor: pointer; color: var(--muted);
    padding: 0;
}
.gaze-share-btn:hover { color: var(--ink); }

/* Size Guide Modal */
.gaze-modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,0.4);
    align-items: center; justify-content: center;
    padding: 2rem;
}
.gaze-modal {
    background: #fff; max-width: 600px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    padding: 2.5rem; position: relative;
}
.gaze-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; font-size: 1.5rem;
    cursor: pointer; color: var(--muted); line-height: 1;
}
.gaze-size-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.gaze-size-table th {
    text-align: left; padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); font-weight: 400;
}
.gaze-size-table td {
    padding: 0.5rem; border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--ink);
}

@media (max-width: 768px) {
    .gaze-single-product { grid-template-columns: 1fr; padding: 100px 1.5rem 3rem; gap: 1.5rem; }
    .gaze-gallery-img { height: 60vh; }
    .gaze-product-details { padding: 0; }
}

/* ── WooCommerce ── */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
.woocommerce ul.products li.product { margin: 0; width: auto; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--serif); font-weight: 400; font-size: 1rem;
}
.woocommerce ul.products li.product .price { color: var(--muted); font-size: 0.85rem; }
.woocommerce .button.alt, .woocommerce button.button.alt {
    background: var(--ink); color: #fff; border-radius: 0;
    font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.8rem 2rem;
    transition: all 0.3s;
}
.woocommerce .button.alt:hover, .woocommerce button.button.alt:hover {
    background: var(--warm); color: #fff;
}

/* ── Product Cards (Shop) ── */
.gaze-product-card { list-style: none; }
.gaze-product-thumb {
    position: relative; overflow: hidden; margin-bottom: 1rem;
    background: var(--cream);
}
.gaze-product-thumb img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    display: block; transition: none;
}
.gaze-product-thumb:hover img { transform: none; }
.gaze-product-thumb a { display: block; }
/* no dimming on shop product cards */
.gaze-product-thumb a:hover { opacity: 1; }

/* Quick-add — pops up on hover (no blur) */
.gaze-quick-add {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.gaze-product-thumb:hover .gaze-quick-add {
    transform: translateY(0);
}
.gaze-qsizes {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    justify-content: center;
}
.gaze-qsize {
    display: inline-block; padding: 0.3rem 0.6rem;
    font-size: 0.65rem; font-family: var(--sans);
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer; transition: all 0.2s;
    min-width: 32px; text-align: center;
}
.gaze-qsize:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.gaze-qsize.selected { border-color: var(--ink); background: var(--ink); color: #fff; }
/* Quick Add without a size — warm pulse on the size row (v57) */
.gaze-qsizes.gaze-qsize-hint .gaze-qsize {
    border-color: var(--warm) !important; color: var(--warm);
    animation: gaze-hint-pulse 0.7s ease-in-out 2;
}
@keyframes gaze-hint-pulse {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.4); }
}
.gaze-qadd {
    display: block; width: 100%; padding: 0.6rem;
    background: var(--ink); color: #fff; text-align: center;
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: background 0.3s;
}
.gaze-qadd:hover { background: var(--warm); color: #fff; opacity: 1; }
.gaze-soldout { background: #ccc; cursor: not-allowed; }
.gaze-soldout:hover { background: #ccc; }

/* Product info below card */
.gaze-product-info { text-align: center; padding: 0 0.5rem; }
.gaze-pcat {
    font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.3rem;
}
.gaze-pname {
    font-family: var(--serif); font-size: 0.95rem; font-weight: 400;
    margin-bottom: 0.2rem;
}
.gaze-pname a { color: var(--ink); text-decoration: none; }
.gaze-pname a:hover { opacity: 1; }
.gaze-pprice { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 768px) {
    .woocommerce ul.products, .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .gaze-quick-add { transform: translateY(0); position: relative; background: var(--cream); }
}
@media (max-width: 480px) {
    .woocommerce ul.products, .products-grid { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
    .site-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .site-nav { padding: 0 1.5rem; }
    .menu-toggle { display: flex; }
    /* v63: brand name aligns LEFT on mobile (next to the hamburger), bag stays right */
    .nav-logo { position: static; transform: none; }
    .gaze-mobile-bag { display: flex; margin-left: auto; }
    .gaze-mobile-bag .cart-count { margin-left: 0; }
    .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--paper); border-bottom: 1px solid rgba(0,0,0,0.06);
        padding: 0.5rem 1.5rem 1.3rem;
        box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    }
    .nav-links.open { display: flex; }
    .nav-links li { margin: 0; }
    .nav-links a { display: block; padding: 0.75rem 0; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid rgba(0,0,0,0.04); }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links .gaze-currency-wrap { padding: 0.9rem 0; }
    /* Mobile cards: tap Quick Add expands the card full-width with BIG sizes
       (Monsoon-style, v69) — sizes hidden until expanded */
    .gaze-qsizes { display: none; }
    .gaze-product-card.gaze-expanded { grid-column: 1 / -1; }
    .gaze-product-card.gaze-expanded .gaze-qsizes { display: flex; }
    .gaze-product-card.gaze-expanded .gaze-quick-add {
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    .gaze-product-card.gaze-expanded .gaze-qsize {
        width: 46px; height: 46px; min-width: 46px; padding: 0;
        display: inline-flex; align-items: center; justify-content: center;
        border-radius: 50%; border: 1px solid rgba(0,0,0,0.25);
        font-size: 0.8rem;
    }
    .gaze-product-card.gaze-expanded .gaze-qadd {
        padding: 0.9rem; font-size: 0.72rem;
    }
    .gaze-expand-close {
        position: absolute; top: 6px; right: 10px; z-index: 2;
        font-size: 0.85rem; color: var(--muted); cursor: pointer;
        padding: 6px 8px; line-height: 1;
    }
    .section { padding: 3rem 1.5rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .collections-grid { grid-template-columns: 1fr; }
    .products-grid, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .newsletter { flex-direction: column; gap: 1.5rem; padding: 3rem 1.5rem; }
    .newsletter-form { width: 100%; }
    .newsletter-form input { width: auto; flex: 1; }
    .site-footer { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 2rem; }
    .hero h1 { font-size: 2.5rem; }
}

/* ── Menu Toggle (Hamburger) ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Cart Page (v53, Monsoon-inspired) ── */
.gaze-cart-wrap { max-width: var(--max-width); margin: 0 auto; padding: 140px 3rem 6rem; }
.gaze-cart-title {
    font-family: var(--serif); font-size: 2.3rem; font-weight: 400;
    margin-bottom: 1.6rem; letter-spacing: 0.01em;
}
.gaze-cart-grid { display: grid; grid-template-columns: 1fr 370px; gap: 4rem; align-items: start; }

.gaze-cart-head {
    display: grid; grid-template-columns: 1fr 130px 120px 140px; gap: 1.2rem;
    padding-bottom: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.gaze-cart-head span:nth-child(2), .gaze-cart-head span:nth-child(3) { text-align: center; }
.gaze-cart-head span:nth-child(4) { text-align: right; }

.gaze-cart-item {
    display: grid; grid-template-columns: 1fr 130px 120px 140px; gap: 1.2rem;
    align-items: center; padding: 1.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.gaze-cart-item-details { display: flex; gap: 1.2rem; align-items: center; }
.gaze-cart-item-thumb { width: 90px; flex: 0 0 90px; }
.gaze-cart-item-thumb img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.gaze-cart-item-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.3; margin-bottom: 0.15rem; }
.gaze-cart-item-name a:hover { opacity: 0.6; }
.gaze-cart-item dl.variation { margin: 0.1rem 0 0; font-size: 0.78rem; color: var(--muted); }
.gaze-cart-item dl.variation dt, .gaze-cart-item dl.variation dd { display: inline; margin: 0; }
.gaze-cart-item dl.variation dd p { display: inline; margin: 0; }
.gaze-cart-item-links { margin-top: 0.5rem; font-size: 0.72rem; }
.gaze-cart-remove { text-decoration: underline; color: var(--muted); }
.gaze-cart-remove:hover { opacity: 0.6; }
.gaze-cart-item-price, .gaze-cart-item-total { font-size: 0.85rem; }
.gaze-cart-item-price { color: var(--muted); }
.gaze-cart-item-price, .gaze-cart-item-qty { text-align: center; }
.gaze-cart-item-total { text-align: right; font-weight: 500; }
.gaze-cart-item-total del { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 300; }
.gaze-cart-item-total ins { display: block; text-decoration: none; }

.gaze-qty { display: inline-flex; align-items: center; border: 1px solid rgba(0,0,0,0.18); }
.gaze-qty-btn {
    width: 34px; height: 34px; background: none; border: none;
    font-size: 1.05rem; line-height: 1; cursor: pointer; color: var(--ink);
}
.gaze-qty-btn:hover { opacity: 0.6; }
.gaze-qty-input {
    width: 38px; border: none; text-align: center; font-size: 0.85rem;
    font-family: var(--sans); color: var(--ink); background: none;
    -moz-appearance: textfield; appearance: textfield;
}
.gaze-qty-input::-webkit-outer-spin-button, .gaze-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.gaze-cart-summary {
    border: 1px solid rgba(0,0,0,0.12); background: #fff;
    padding: 1.9rem; position: sticky; top: 110px;
}
.gaze-cart-summary-title {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.gaze-cart-summary-count { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.gaze-cart-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.75rem 0; font-size: 0.85rem; color: var(--muted);
}
.gaze-cart-row .woocommerce-Price-amount { color: var(--ink); }
.gaze-cart-total {
    border-top: 1px solid rgba(0,0,0,0.1); margin-top: 0.5rem; padding-top: 1.1rem;
    color: var(--ink); font-size: 1rem; font-weight: 500;
}
.gaze-cart-total .woocommerce-Price-amount { font-size: 1.1rem; }

.gaze-cart-coupon { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(0,0,0,0.1); }
.gaze-cart-coupon-label {
    display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.7rem;
}
.gaze-coupon-row { display: flex; gap: 0.5rem; }
.gaze-coupon-input {
    flex: 1; min-width: 0; padding: 0.7rem 0.8rem; border: 1px solid rgba(0,0,0,0.15);
    background: #fff; font-family: var(--sans); font-size: 0.8rem; color: var(--ink);
}
.gaze-coupon-input:focus { outline: none; border-color: var(--ink); }
.gaze-btn-outline {
    padding: 0.7rem 1.2rem; background: none; border: 1px solid var(--ink);
    font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink); cursor: pointer; white-space: nowrap;
}
.gaze-btn-outline:hover { background: var(--ink); color: #fff; }

.gaze-cart-buttons { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(0,0,0,0.1); }
.gaze-pay-buttons { margin-bottom: 1rem; }
.gaze-pay-buttons .wc-proceed-to-checkout .checkout-button,
.gaze-pay-buttons .checkout-button { display: none; }
.gaze-cart-or {
    display: flex; align-items: center; gap: 0.8rem; margin: 0.9rem 0;
    color: var(--muted); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.gaze-cart-or::before, .gaze-cart-or::after { content: ""; flex: 1; height: 1px; background: rgba(0,0,0,0.1); }
.gaze-btn-checkout {
    display: block; width: 100%; padding: 1.05rem; background: var(--ink); color: #fff;
    border: none; text-align: center; font-family: var(--sans);
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
}
.gaze-btn-checkout:hover { opacity: 0.85; }
.gaze-btn-dark {
    display: inline-block; padding: 0.95rem 2.4rem; background: var(--ink); color: #fff;
    border: none; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer;
}
.gaze-btn-dark:hover { opacity: 0.85; }

.gaze-cart-empty { padding: 3rem 0; }
.gaze-cart-empty p { color: var(--muted); margin-bottom: 1.8rem; }

/* cart form: hide WC's default update-cart button (stepper auto-updates) */
.gaze-cart-form button[name="update_cart"] { display: none; }

@media (max-width: 1024px) {
    .gaze-cart-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .gaze-cart-summary { position: static; }
}
@media (max-width: 768px) {
    .gaze-cart-wrap { padding: 110px 1.5rem 4rem; }
    .gaze-cart-head { display: none; }
    .gaze-cart-item {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: "details details details" "price qty total";
        gap: 0.9rem 1rem; padding: 1.4rem 0;
    }
    .gaze-cart-item-details { grid-area: details; }
    .gaze-cart-item-price { grid-area: price; text-align: left; }
    .gaze-cart-item-qty { grid-area: qty; text-align: center; }
    .gaze-cart-item-total { grid-area: total; text-align: right; }
    .gaze-cart-title { font-size: 1.9rem; }
}
