/* ============================================
   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;
}
@media (max-width: 768px) {
    .nav-logo .site-title { font-size: 1rem; letter-spacing: 0.12em; }
}
.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 */

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    
}

}

.gaze-mobile-bag svg { display: block; }

/* ── 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: 1.5fr 1fr 1fr 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-share-btn:hover { color: var(--ink); }

/* Accordion */

/* Wishlist */

@media (max-width: 768px) {
    
    
}

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

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    

@media (max-width: 768px) {
    
}

@media (max-width: 768px) {
    
}

}

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

/* ── Account Endpoints (Orders, Addresses, Downloads, etc.) ── */
.gaze-account-content .woocommerce-MyAccount-content {
    font-family: var(--sans);
    color: var(--ink);
}
.gaze-account-content .woocommerce-MyAccount-content p {
    font-size: 0.9rem; line-height: 1.7; color: var(--ink);
    margin-bottom: 1.2rem;
}
.gaze-account-content .woocommerce-MyAccount-content a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}
.gaze-account-content .woocommerce-MyAccount-content a:hover {
    border-bottom-color: var(--ink);
}
.gaze-account-content .woocommerce-Message {
    background: rgba(0,0,0,0.03);
    border-left: 3px solid var(--ink);
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.gaze-account-content .woocommerce-Message a {
    font-weight: 500;
}
/* Orders table */
.gaze-account-content .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.gaze-account-content .woocommerce-orders-table thead th {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.gaze-account-content .woocommerce-orders-table tbody td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    vertical-align: middle;
}
.gaze-account-content .woocommerce-orders-table__cell-order-actions .button {
    display: inline-block;
    padding: 0.45rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--ink);
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.gaze-account-content .woocommerce-orders-table__cell-order-actions .button:hover {
    opacity: 0.85;
}
/* Addresses */
.gaze-account-content .woocommerce-Address {
    margin-bottom: 2rem;
}
.gaze-account-content .woocommerce-Address-title h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 0.75rem;
    color: var(--ink);
}
.gaze-account-content .woocommerce-Address-title .edit {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-left: 0.5rem;
    color: var(--muted);
}
.gaze-account-content address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink);
}
/* Edit Account form */
.gaze-account-content .woocommerce-EditAccountForm fieldset {
    border: none;
    padding: 0;
    margin: 0 0 2rem;
}
.gaze-account-content .woocommerce-EditAccountForm legend {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: var(--ink);
}
.gaze-account-content .woocommerce-EditAccountForm .form-row {
    margin-bottom: 1rem;
}
.gaze-account-content .woocommerce-EditAccountForm .form-row label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.3rem;
}
.gaze-account-content .woocommerce-EditAccountForm .form-row input {
    width: 100%;
    max-width: 400px;
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    box-sizing: border-box;
}
.gaze-account-content .woocommerce-EditAccountForm .form-row input:focus {
    outline: none;
    border-color: var(--ink);
}
.gaze-account-content .woocommerce-EditAccountForm button {
    padding: 0.8rem 2rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--ink);
    color: #fff;
    border: none;
    cursor: pointer;
}
.gaze-account-content .woocommerce-EditAccountForm button:hover {
    opacity: 0.85;
}
/* Downloads */
.gaze-account-content .woocommerce-table--order-downloads {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.gaze-account-content .woocommerce-table--order-downloads th {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.gaze-account-content .woocommerce-table--order-downloads td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.gaze-account-content .woocommerce-pagination {
    margin-top: 1.5rem;
    text-align: center;
}
.gaze-account-content .woocommerce-pagination .page-numbers {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
}
.gaze-account-content .woocommerce-pagination .page-numbers.current {
    color: var(--ink);
    font-weight: 500;
}
/* Payment methods */
.gaze-account-content .woocommerce-MyAccount-paymentMethods .payment-methods {
    list-style: none;
    padding: 0;
}
.gaze-account-content .woocommerce-MyAccount-paymentMethods .payment-method {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.gaze-account-content .woocommerce-MyAccount-paymentMethods .payment-method .button {
    margin-left: auto;
}
/* Empty states */
.gaze-account-content .woocommerce-info {
    background: rgba(0,0,0,0.02);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
}
.gaze-account-content .woocommerce-info a {
    color: var(--ink);
}

/* ── Sale Marquee ── */
.gaze-marquee-sale {
    overflow: hidden; width: 100%;
    padding: 1.25rem 0;
    background: #c41e3a;
}
.gaze-marquee-sale-track {
    display: flex; gap: 0;
    width: fit-content;
    animation: marqueeSaleScroll 20s linear infinite;
}
.gaze-marquee-sale-track span {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 3rem;
    font-weight: 500;
}
@keyframes marqueeSaleScroll {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .gaze-marquee-sale-track { animation: none; }
}

/* ── My Account / Login ── */
.gaze-auth-wrap {
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}
.gaze-auth-card {
    max-width: 500px;
    width: 100%;
}
.gaze-auth-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 2rem;
}
.gaze-auth-radio-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
}
.gaze-auth-radio-card.active {
    border-color: var(--ink);
    background: rgba(0,0,0,0.02);
}
.gaze-auth-radio-card input { display: none; }
.gaze-radio-indicator {
    width: 18px; height: 18px;
    border: 1.5px solid rgba(0,0,0,0.25);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.15rem;
    position: relative;
}
.gaze-auth-radio-card.active .gaze-radio-indicator {
    border-color: var(--ink);
}
.gaze-auth-radio-card.active .gaze-radio-indicator::after {
    content: '';
    position: absolute; inset: 3px;
    border-radius: 50%;
    background: var(--ink);
}
.gaze-auth-radio-card strong {
    display: block;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
}
.gaze-auth-radio-card small {
    display: block;
    font-family: var(--sans);
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
}
.gaze-auth-panel {
    padding: 1.5rem 1.5rem 0.5rem;
    display: none;
}
.gaze-auth-panel.active { display: block; }
.gaze-auth-form .gaze-field { margin-bottom: 1rem; }
.gaze-auth-form .gaze-field label {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.gaze-auth-form .gaze-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.gaze-auth-form .gaze-field input:focus {
    outline: none;
    border-color: var(--ink);
}
.gaze-auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.25rem 0;
    font-family: var(--sans);
    font-size: 0.8rem;
}
.gaze-remember { display: flex; align-items: center; gap: 0.4rem; color: var(--muted); cursor: pointer; }
.gaze-remember input { accent-color: var(--ink); }
.gaze-lost-password { color: var(--muted); text-decoration: none; font-size: 0.8rem; }
.gaze-lost-password:hover { color: var(--ink); }
.gaze-password-hint {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.35rem;
    line-height: 1.4;
}
.gaze-auth-footer {
    text-align: center;
    margin-top: 2rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--muted);
}
.gaze-auth-footer a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
.gaze-auth-footer a:hover { border-bottom-color: var(--ink); }
@media (max-width: 480px) {
    .gaze-auth-radio-card { padding: 1rem; }
    .gaze-auth-panel { padding: 1rem 0.5rem 0; }
}

/* ── My Account Dashboard ── */
.gaze-account-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 60vh;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    gap: 3rem;
}
.gaze-account-nav {
    border-right: 1px solid rgba(0,0,0,0.06);
    padding-right: 1.5rem;
}
.gaze-account-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.gaze-account-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
}
.gaze-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.gaze-account-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 0.15rem;
}
.gaze-account-logout {
    font-family: var(--sans);
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.gaze-account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gaze-account-menu li {
    margin-bottom: 0.15rem;
}
.gaze-account-menu a {
    display: block;
    padding: 0.65rem 0.75rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s;
}
.gaze-account-menu a:hover {
    color: var(--ink);
    background: rgba(0,0,0,0.03);
}
.gaze-account-menu .is-active a {
    color: var(--ink);
    font-weight: 500;
    background: rgba(0,0,0,0.04);
}
.gaze-account-content {
    min-width: 0;
}
.gaze-dashboard-greeting {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ink);
    margin: 0 0 0.75rem;
}
.gaze-dashboard-desc {
    font-family: var(--sans);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 2rem;
}
.gaze-dashboard-desc a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

/* Override WooCommerce account tables/forms */
.gaze-account-content table {
    width: 100%;
    font-family: var(--sans);
    font-size: 0.85rem;
    border-collapse: collapse;
}
.gaze-account-content table th {
    text-align: left;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-weight: 400;
}
.gaze-account-content table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--ink);
}
.gaze-account-content .woocommerce-orders-table__cell-order-actions .button,
.gaze-account-content .woocommerce-button {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
}
.gaze-account-content .woocommerce-orders-table__cell-order-actions .button:hover,
.gaze-account-content .woocommerce-button:hover {
    opacity: 0.85;
}
.gaze-account-content legend,
.gaze-account-content h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 1.5rem;
}
.gaze-account-content .form-row {
    margin-bottom: 1rem;
}
.gaze-account-content .form-row label {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.3rem;
}
.gaze-account-content .form-row input[type="text"],
.gaze-account-content .form-row input[type="email"],
.gaze-account-content .form-row input[type="password"],
.gaze-account-content .form-row input[type="tel"] {
    width: 100%;
    padding: 0.75rem 0.8rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: var(--ink);
    box-sizing: border-box;
}
.gaze-account-content .form-row input:focus {
    outline: none;
    border-color: var(--ink);
}
.gaze-account-content .woocommerce-address-fields__field-wrapper {
    margin-bottom: 1.5rem;
}
.gaze-account-content .woocommerce-MyAccount-content p {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .gaze-account-wrap {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        gap: 1.5rem;
    }
    .gaze-account-nav {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        padding-right: 0;
        padding-bottom: 1rem;
    }
    .gaze-account-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }
    .gaze-account-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

.gaze-wishlist-single:hover {
    border-color: var(--ink);
}
.gaze-wishlist-single.in-wishlist svg {
    fill: var(--ink);
    stroke: var(--ink);
}
/* ── Wishlist Buttons ── */
/* Product page wishlist */
.gaze-product-wishlist {
    margin: 0.5rem 0 1rem;
}
.gaze-product-wishlist .yith-wcwl-add-to-wishlist-button, .add_to_wishlist {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.gaze-product-wishlist .yith-wcwl-add-to-wishlist-button, .add_to_wishlist:hover {
    color: var(--ink);
}
/* Nav wishlist count */

    .footer-bottom .gaze-payment-icons { margin-left: 0; }
}
/* YITH Wishlist overrides */

.gaze-mobile-icons {
    display: none;
}
.gaze-mobile-wishlist,
.gaze-mobile-account,
.gaze-mobile-bag {
    display: none;
    position: relative;
    color: var(--ink);
    padding: 4px;
}
.gaze-mobile-bag 
@media (max-width: 768px) {
    .gaze-mobile-icons {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }
    .gaze-mobile-wishlist,
    .gaze-mobile-account,
    .gaze-mobile-bag {
        display: flex;
        align-items: center;
    }
    .gaze-mobile-bag { margin-right: 0; }
    .gaze-mobile-bag 
}

/* ── Payment Icons (footer bottom) ── */
.footer-bottom .gaze-payment-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    margin-left: auto;
    flex-shrink: 0;
}
.footer-bottom .gaze-pay-icon {
    height: 18px;
    width: auto;
}
@media (max-width: 768px) {
    .footer-bottom { flex-wrap: wrap; gap: 0.75rem; }
    .footer-bottom .gaze-payment-icons { margin-left: 0; }
}

/* ── Wishlist on Product Cards ── */
/* ── Wishlist inline with Add to Bag (single product) ── */
.gaze-wishlist-inline {
    display: flex;
    align-items: center;
    margin-left: 0;
}
.gaze-wishlist-inline .yith-wcwl-add-to-wishlist {
    margin: 0;
}
.gaze-wishlist-inline .add_to_wishlist {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    background: none;
    border: 1px solid rgba(0,0,0,0.12);
    padding: 0 1rem;
    height: 44px;
    cursor: pointer;
    transition: all 0.2s;
}
.gaze-wishlist-inline .add_to_wishlist:hover {
    border-color: var(--ink);
    color: var(--ink);
}
.gaze-wishlist-inline .add_to_wishlist::before {
    content: '';
    width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") center/contain no-repeat;
    display: inline-block;
}
.gaze-wishlist-inline .yith-wcwl-wishlistaddedbrowse a::before,
.gaze-wishlist-inline .yith-wcwl-wishlistexistsbrowse a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%231a1a1a' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") !important;
}
.gaze-wishlist-inline .feedback { display: none !important; }
@media (max-width: 768px) {
    .gaze-wishlist-inline { display: none; }
}

/* Product card wishlist — subtle Monsoon-style */
.gaze-wishlist-btn {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 5;
}
.gaze-wishlist-btn .add_to_wishlist,
.gaze-wishlist-btn .yith-wcwl-add-to-wishlist-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(2px);
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.gaze-wishlist-btn .add_to_wishlist::before,
.gaze-wishlist-btn .yith-wcwl-add-to-wishlist-button::before {
    content: '';
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") center/contain no-repeat;
    display: block;
    opacity: 0.6;
}
.gaze-wishlist-btn .add_to_wishlist:hover,
.gaze-wishlist-btn .yith-wcwl-add-to-wishlist-button:hover {
    background: rgba(255,255,255,0.95);
    transform: scale(1.08);
}
.gaze-wishlist-btn .add_to_wishlist:hover::before {
    opacity: 1;
}
.gaze-wishlist-btn .yith-wcwl-wishlistaddedbrowse a::before,
.gaze-wishlist-btn .yith-wcwl-wishlistexistsbrowse a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%231a1a1a' stroke='%231a1a1a' stroke-width='1.8'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") !important;
    opacity: 1 !important;
}
.gaze-wishlist-btn .feedback,
.gaze-wishlist-btn .yith-wcwl-add-button .separator,
.gaze-wishlist-btn .yith-wcwl-wishlistaddedbrowse .feedback,
.gaze-wishlist-btn .yith-wcwl-wishlistexistsbrowse .feedback {
    display: none !important;
}

.yith-wcwl-add-button .add_to_wishlist.loading,
.yith-wcwl-add-button .add_to_wishlist[disabled] {
    cursor: pointer !important;
}

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

/* Add to Bag row — button + wishlist inline */
.gaze-add-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.gaze-add-row .gaze-add-btn {
    flex: 1;
}
.gaze-add-row .gaze-wishlist-inline {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}
.gaze-add-row .gaze-wishlist-inline .add_to_wishlist {
    width: 44px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gaze-add-row .gaze-wishlist-inline .add_to_wishlist::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") center/contain no-repeat;
    display: block;
}
.gaze-add-row .gaze-wishlist-inline .feedback { display: none !important; }

.gaze-add-row .yith-wcwl-add-to-wishlist .separator,
.gaze-add-row .yith-wcwl-add-to-wishlist .yith-wcwl-icon,
.gaze-wishlist-inline .yith-wcwl-add-to-wishlist a:not(.add_to_wishlist),
.gaze-add-row .yith-wcwl-wishlistaddedbrowse,
.gaze-add-row .yith-wcwl-wishlistexistsbrowse,
.gaze-add-row .yith-wcwl-add-button .view-wishlist,
.gaze-add-row .yith-wcwl-add-button .browse-wishlist,
.gaze-wishlist-inline .feedback,
.gaze-wishlist-inline .yith-wcwl-add-to-wishlist .ajax-loading,
.gaze-wishlist-inline .view-wishlist,
.gaze-wishlist-inline .browse-wishlist,
.gaze-wishlist-inline a.view-wishlist,
.gaze-wishlist-inline a.browse-wishlist { display: none !important; }

.gaze-add-row .yith-wcwl-add-button a.add_to_wishlist,
.gaze-add-row .yith-wcwl-wishlistaddedbrowse a,
.gaze-add-row .yith-wcwl-wishlistexistsbrowse a {
    font-size: 0 !important;
    color: transparent !important;
}

.cart-count, .wishlist-count {
    display: inline;
    font-family: var(--sans);
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    background: none;
    border-radius: 0;
    min-width: auto;
    height: auto;
    padding: 0;
    line-height: inherit;
    vertical-align: baseline;
}



/* ===== Wishlist Table — Modern ===== */
.woocommerce-wishlist .wishlist_table {
    border: none !important;
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-wishlist .wishlist_table thead {
    display: none;
}
.woocommerce-wishlist .wishlist_table tbody tr {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.woocommerce-wishlist .wishlist_table td {
    border: none !important;
    padding: 0;
    background: none !important;
    text-align: left !important;
}

/* Flex order: image → name → remove → price → stock → cart */
.woocommerce-wishlist .wishlist_table .product-thumbnail { order: 1; }
.woocommerce-wishlist .wishlist_table .product-name { order: 2; }
.woocommerce-wishlist .wishlist_table .product-remove { order: 3; }
.woocommerce-wishlist .wishlist_table .product-price { order: 4; }
.woocommerce-wishlist .wishlist_table .product-stock-status { order: 5; }
.woocommerce-wishlist .wishlist_table .product-add-to-cart { order: 6; }

/* Thumbnail — bigger */
.woocommerce-wishlist .wishlist_table .product-thumbnail {
    margin-bottom: 0.8rem;
}
.woocommerce-wishlist .wishlist_table .product-thumbnail a {
    display: block;
}
.woocommerce-wishlist .wishlist_table .product-thumbnail img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

/* Product name */
.woocommerce-wishlist .wishlist_table .product-name {
    margin-bottom: 0.3rem;
}
.woocommerce-wishlist .wishlist_table .product-name a {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 400;
    line-height: 1.3;
}

/* Remove — styled text link under name */
.woocommerce-wishlist .wishlist_table .product-remove {
    margin-bottom: 0.8rem;
}
.woocommerce-wishlist .wishlist_table .product-remove div {
    display: inline;
}
.woocommerce-wishlist .wishlist_table .product-remove a {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 400;
    border: none;
    background: none;
    padding: 0;
    width: auto;
    height: auto;
    line-height: 1;
}
.woocommerce-wishlist .wishlist_table .product-remove a::before {
    content: "Remove";
}
.woocommerce-wishlist .wishlist_table .product-remove a:hover {
    color: #c41e3a;
}

/* Price */
.woocommerce-wishlist .wishlist_table .product-price {
    margin-bottom: 0.5rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
}
.woocommerce-wishlist .wishlist_table .product-price .amount {
    font-weight: 400;
}
.woocommerce-wishlist .wishlist_table .product-price ins {
    text-decoration: none;
}
.woocommerce-wishlist .wishlist_table .product-price del {
    color: var(--muted);
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

/* Stock status */
.woocommerce-wishlist .wishlist_table .product-stock-status {
    margin-bottom: 0.8rem;
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.woocommerce-wishlist .wishlist_table .product-stock-status .wishlist-in-stock {
    color: #4a8;
}

/* Add to cart button */
.woocommerce-wishlist .wishlist_table .product-add-to-cart a {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
    border: none;
}
.woocommerce-wishlist .wishlist_table .product-add-to-cart a:hover {
    opacity: 0.85;
}

/* Wishlist page title */
.woocommerce-wishlist .wishlist-title h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ink);
    text-align: center;
    margin-bottom: 2rem;
}

/* Share section */
.woocommerce-wishlist .wishlist_table + h4,
.woocommerce-wishlist .wishlist_table ~ h4 {
    display: none;
}
.woocommerce-wishlist .wishlist_table ~ ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    justify-content: center;
    padding: 0;
    margin-top: 2rem;
}
.woocommerce-wishlist .wishlist_table ~ ul a {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    font-family: var(--sans);
}

/* Desktop: horizontal layout */
@media (min-width: 769px) {
    .woocommerce-wishlist .wishlist_table tbody tr {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0 2rem;
        padding: 2rem 0;
    }
    .woocommerce-wishlist .wishlist_table .product-thumbnail {
        flex: 0 0 200px;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
    .woocommerce-wishlist .wishlist_table .product-thumbnail img {
        max-width: 200px;
    }
    .woocommerce-wishlist .wishlist_table .product-name {
        flex: 1 1 auto;
        min-width: 0;
        margin-bottom: 0;
    }
    .woocommerce-wishlist .wishlist_table .product-remove {
        width: 100%;
        order: 3;
        margin-top: 0.2rem;
        margin-bottom: 0;
    }
    .woocommerce-wishlist .wishlist_table .product-name {
        order: 2;
    }
    .woocommerce-wishlist .wishlist_table .product-price {
        flex: 0 0 auto;
        margin-bottom: 0;
        white-space: nowrap;
    }
    .woocommerce-wishlist .wishlist_table .product-stock-status {
        flex: 0 0 auto;
        margin-bottom: 0;
    }
    .woocommerce-wishlist .wishlist_table .product-add-to-cart {
        flex: 0 0 auto;
    }
}

/* Empty state */
.woocommerce-wishlist .wishlist-empty {
    text-align: center;
    padding: 4rem 0;
    font-family: var(--sans);
    color: var(--muted);
    font-size: 0.85rem;
}
