/* ============================================
   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; }
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: blur(20px);
    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(--muted); text-decoration: none;
    transition: color 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: transform 0.3s ease;
    transform-origin: left;
}
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item a::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--ink); }
.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;
}
.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 select dropdown — style=1 plain select */
select.woocs_selector {
    background: transparent !important;
    border: none !important;
    font-family: var(--sans) !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
    padding: 0 0.3rem !important;
    cursor: pointer !important;
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
    width: auto !important;
    -webkit-tap-highlight-color: transparent !important;
    text-shadow: none !important;
}
select.woocs_selector:focus,
select.woocs_selector:active {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    border: none !important;
}
/* General FOX element overrides */
.woocs_auto_switcher, .woocs-style-1, .woocs-style-2 { display: none !important; }
.gaze-currency-wrap *:focus,
.gaze-currency-wrap *:active,
.gaze-currency-wrap *:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}
.gaze-currency-wrap { -webkit-tap-highlight-color: transparent; }

/* Menu Toggle */
.menu-toggle {
    display: none; flex-direction: column; gap: 4px;
    background: none; border: none; cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); transition: all 0.3s;
    border-radius: 1px;
}

.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;
}

/* ── 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);
}
.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);
}

/* ── 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);
}
.outfit-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.5s ease;
    pointer-events: none;
}
.outfit-slide.active {
    position: relative;
    opacity: 1; pointer-events: auto;
}
.outfit-slide img {
    width: 100%; aspect-ratio: 2/3; 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: 0; transition: opacity 0.3s;
}
.outfit-card:hover .slider-prev,
.outfit-card:hover .slider-next { opacity: 1; }
.slider-prev { left: 0.5rem; }
.slider-next { right: 0.5rem; }
.slider-prev:hover, .slider-next:hover { background: rgba(0,0,0,0.6); }
.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; }
.slider-dot:hover { background: rgba(255,255,255,0.8); }

.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 1.2s cubic-bezier(0.25, 0, 0.15, 1);
}
.collection-card:hover img { transform: scale(1.08); }
.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;
}

/* ── Product Grid ── */
.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.gaze-shop-toolbar {
    display: flex; justify-content: flex-end; margin-bottom: 1.5rem;
}
.gaze-shop-toolbar select {
    background: transparent; 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;
    outline: none;
}
.gaze-shop-toolbar select option { color: var(--ink); background: #fff; }
.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: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.03); }
.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); }

/* ── 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); }
.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: transform 0.6s;
}
.gaze-archive-card:hover .gaze-archive-img img {
    transform: scale(1.03);
}
.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 {
    opacity: 0; transform: translateY(20px);
    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;
}
.gaze-gallery-slide { display: none; }
.gaze-gallery-slide.active { display: block; }
.gaze-gallery-img {
    width: 100%; height: 80vh; object-fit: cover;
    display: block;
}
.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: none; align-items: center; justify-content: center;
    transition: all 0.3s; box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.gaze-gallery-main:hover .gaze-gallery-prev,
.gaze-gallery-main:hover .gaze-gallery-next { display: flex; }
.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;
}
.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; }

/* WooCommerce variations table */
table.variations { width: 100%; margin-bottom: 0.5rem; border: none; }
table.variations td { display: block; padding: 0; border: none; }
table.variations td.label { margin-bottom: 0.3rem; }
table.variations td.label label {
    font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); display: inline;
}
table.variations td.value select {
    width: 100%; padding: 0.7rem 0.8rem; border: 1px solid rgba(0,0,0,0.08);
    background: #fff; font-family: var(--sans); font-size: 0.8rem;
    color: var(--ink); cursor: pointer; border-radius: 0;
    outline: none; margin-bottom: 0.5rem;
}
table.variations .reset_variations { font-size: 0.6rem; color: var(--muted); text-decoration: none; }
.single_variation_wrap { margin-top: 0; }
.single_variation { margin-bottom: 0.5rem; }
.single_variation .price { font-family: var(--serif); font-size: 0.9rem; color: var(--ink); }
.woocommerce-variation-add-to-cart { display: flex; flex-direction: column; gap: 1rem; }
.woocommerce-variation-add-to-cart .quantity { display: none; }
.woocommerce-variation-add-to-cart .single_add_to_cart_button {
    width: 100%; padding: 1rem;
    background: var(--ink); color: #fff; border: none;
    font-family: var(--sans); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: opacity 0.3s;
}
.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover { opacity: 0.85; }
.woocommerce-variation-add-to-cart .single_add_to_cart_button:disabled { opacity: 0.3; cursor: not-allowed; }

/* 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 */
.gaze-size-selector { margin-bottom: 1rem; }
.gaze-size-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.5rem;
}
.gaze-size-label { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.gaze-size-chart {
    font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.gaze-size-chart:hover { color: var(--ink); }
.gaze-attr-select {
    width: 100%; padding: 0.7rem 0.8rem; border: 1px solid rgba(0,0,0,0.08);
    background: #fff; font-family: var(--sans); font-size: 0.8rem;
    color: var(--ink); cursor: pointer; border-radius: 0;
    -webkit-appearance: auto; appearance: auto;
    outline: none; transition: border-color 0.2s;
}
.gaze-attr-select:focus { border-color: var(--muted); }
.gaze-size-options, .gaze-size-pill { display: none; }

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

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

/* 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: 1rem 0;
    background: none; border: none;
    font-family: var(--sans); font-size: 0.65rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; color: var(--ink); transition: opacity 0.3s;
}
.gaze-acc-trigger::after { content: '+'; float: right; font-size: 0.9rem; }
.gaze-acc-trigger.active::after { content: '−'; }
.gaze-acc-body {
    display: none; padding: 0 0 1rem;
    font-size: 0.8rem; line-height: 1.7; color: var(--muted);
}

/* 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: transform 0.5s ease;
}
.gaze-product-thumb:hover img { transform: scale(1.03); }
.gaze-product-thumb a { display: block; }

/* Quick-add overlay */
.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-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; }
.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: 0.7; }
.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; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; margin-left: auto; }
    .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;
    }
}
