@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

:root {
    --primary: #d4af37;
    --primary-dark: #b3942f;
    --secondary: #1a1a1a;
    --background: #ffffff;
    --bg-cream: #F9F9FB;
    --charcoal: #1A1A1A;
    --cream: #faf9f6;
    --beige: #f5e6d3;
    --rose-gold: #b76e79;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --text-lighter: #9a9a9a;
    --border: #e8e6e1;
    --border-light: #f0eeea;
    --shadow: rgba(0, 0, 0, 0.06);
    --shadow-md: rgba(0, 0, 0, 0.08);
    --shadow-lg: rgba(0, 0, 0, 0.12);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    --radius-sm: 2px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-elegant: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin: 1rem auto 0;
}

/* Buttons */
button {
    font-family: inherit;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.75rem;
    transition: all var(--transition-smooth);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 0.75rem;
}

.btn-outline:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: white;
}

/* Header spacer */
.header-spacer {
    height: 0;
}

/* Header */
.header {
    background-color: var(--background);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: transparent;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.04);
}

/* ── Row 1: Top Bar ── */
.header-top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 40px 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-instagram {
    display: flex;
    align-items: center;
    color: var(--text-lighter);
    transition: opacity var(--transition-fast);
    line-height: 0;
}

.header-instagram:hover {
    opacity: 0.4;
}

.header-availability {
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    color: var(--text-lighter);
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* ── Logo Block ── */
.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.logo {
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 0.35em;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    text-transform: uppercase;
    transition: color var(--transition-smooth);
}

.logo:hover {
    color: var(--primary);
}

.logo-sub {
    font-family: 'Manrope', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 5px;
    color: var(--text-lighter);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 8px;
}

/* ── Header Right ── */
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.header-icon-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    opacity: 0.6;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
}

.header-icon-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.wishlist-counter,
.cart-counter {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--secondary);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    line-height: 1;
    letter-spacing: 0;
}

/* ── Row 2: Navigation ── */
.header-nav-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    border-top: 1px solid var(--border-light);
}

.nav {
    grid-column: 2;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 16px 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: 6px 4px;
    position: relative;
    opacity: 0.55;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--transition-smooth);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.nav-link.active {
    opacity: 1;
    font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header-nav-location {
    grid-column: 3;
    text-align: right;
    justify-self: end;
    font-family: 'Manrope', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-lighter);
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 10px;
    opacity: 0.65;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Hero Section - Split Layout */
.hero-split {
    display: flex;
    height: 600px;
}

.hero-split-image {
    width: 64%;
    overflow: hidden;
    position: relative;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 8s ease;
}

.hero-split:hover .hero-split-image img {
    transform: scale(1.02);
}

.hero-split-content {
    width: 36%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4.5rem 3rem;
    background-color: var(--cream);
}

.hero-split-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-split-description {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 380px;
}

.btn-hero-shop {
    display: inline-block;
    padding: 16px 52px;
    background-color: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.btn-hero-shop::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-hero-shop:hover {
    background-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-hero-shop:hover::after {
    left: 100%;
}

/* Announcement Bar — Luxury */
.announcement-bar {
    width: 100%;
    overflow: hidden;
    background-color: var(--cream);
    color: #111;
    height: 56px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    white-space: nowrap;
}

.announcement-track {
    display: inline-flex;
    align-items: center;
    animation: marqueeLux 40s linear infinite;
    will-change: transform;
}

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    font-weight: 700;
}

.announcement-sep {
    color: var(--primary);
    font-size: 0.625rem;
    font-weight: 400;
    margin: 0 0.3rem;
}

@keyframes marqueeLux {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Performance: content-visibility for below-fold sections */
.categories-section,
.collection-section,
.featured-section,
.product-card,
.instagram-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* === Scroll-reveal animation === */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal.revealed:nth-child(2) { transition-delay: 0.06s; }
.reveal.revealed:nth-child(3) { transition-delay: 0.12s; }
.reveal.revealed:nth-child(4) { transition-delay: 0.18s; }
.reveal.revealed:nth-child(5) { transition-delay: 0.24s; }
.reveal.revealed:nth-child(6) { transition-delay: 0.30s; }

/* === Icon pulse on add-to-cart / add-to-wishlist === */
@keyframes iconPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}
.icon-pulse {
    animation: iconPulse 0.3s ease;
}

/* Collection Section */
.collection-section {
    padding: 6rem 0;
    background-color: var(--cream);
}

.collections-section {
    padding: 6rem 0;
    background-color: var(--background);
}

.collection-block {
    margin-bottom: 4rem;
}

.collection-block:last-child {
    margin-bottom: 0;
}

.coll-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.coll-name {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.coll-count {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-lighter);
    letter-spacing: 0.05em;
}

.collection-block .scroll-wrapper {
    margin-top: 0;
}

.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.collection-tab {
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0 0 6px;
    position: relative;
    opacity: 0.6;
}

.collection-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-smooth);
}

.collection-tab:hover {
    opacity: 1;
}

.collection-tab:hover::after {
    transform: scaleX(1);
}

.collection-tab.active {
    opacity: 1;
    font-weight: 600;
}

.collection-tab.active::after {
    transform: scaleX(1);
}

/* Horizontal scroll track */
.scroll-wrapper {
    position: relative;
    margin-top: 2rem;
    margin-left: -10px;
    margin-right: -10px;
}

.scroll-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 10px 4px;
    scroll-behavior: smooth;
}

.scroll-track::-webkit-scrollbar {
    display: none;
}

.scroll-track > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 320px;
}

.collection-empty {
    flex: 0 0 100%;
    text-align: center;
    padding: 3rem 0;
    color: var(--text-lighter);
    font-size: 0.85rem;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
    border-radius: 50%;
    color: var(--secondary);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.scroll-wrapper:hover .scroll-arrow,
.scroll-arrow:focus,
.scroll-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (hover: none) {
    .scroll-arrow {
        opacity: 1;
        pointer-events: auto;
    }
}

.scroll-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scroll-left {
    left: 8px;
}

.scroll-right {
    right: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}

.product-card {
    background: #fff;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: all var(--transition-smooth);
    will-change: transform;
    contain: layout style paint;
    border: 2px solid transparent;
}

@keyframes cartPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55, 0); }
    50% { box-shadow: 0 0 12px 2px rgba(212,175,55, 0.25); }
}

.product-card.in-cart {
    border: 2px solid var(--primary);
    animation: cartPulse 2.5s ease-in-out infinite;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f7f6f3;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.product-image .img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-image .img-secondary {
    opacity: 1;
}

.product-card:hover .product-image .img-primary {
    opacity: 0;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding-bottom: 2.5rem;
    opacity: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    transition: opacity var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-overlay {
    padding: 11px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all var(--transition-smooth);
    min-width: 150px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    transform: translateY(12px);
}

.product-card:hover .btn-overlay {
    transform: translateY(0);
}

.btn-overlay:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.btn-overlay-primary {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.btn-overlay-primary:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.product-ribbons {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
}

.product-ribbon {
    display: block;
    position: absolute;
    top: 22px;
    left: -32px;
    width: 160px;
    padding: 5px 0;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.22);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* Ribbon status colors — bold luxury palette, optimized for white text contrast */
.product-ribbon.ribbon-nouveau     { background: #5C5030; }
.product-ribbon.ribbon-promotion   { background: #7A1E47; }
.product-ribbon.ribbon-best        { background: #2A2A2A; }
.product-ribbon.ribbon-limited     { background: #16305A; }
.product-ribbon.ribbon-unavailable { background: #682E2E; }

.product-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transform: translateY(-6px);
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (hover: none) {
    .product-wishlist {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover .product-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.product-wishlist:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-wishlist svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--secondary);
    transition: all var(--transition-fast);
}

.product-wishlist:hover svg {
    stroke: var(--rose-gold);
}

.product-wishlist.active svg {
    fill: var(--rose-gold);
    stroke: var(--rose-gold);
}

.product-info {
    padding: 1.1rem 1.25rem 1.5rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--secondary);
    line-height: 1.3;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.product-title a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.product-title a:hover {
    color: var(--primary);
}

.product-sizes {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    color: var(--text-lighter);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.product-sizes-grouped {
    margin-bottom: 0.4rem;
}

.product-sizes-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 5px;
}

.product-sizes-grouped .sz-group-taille-boxes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-sizes-grouped .sz-taille-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--cream, #faf9f6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-sizes-grouped .sz-taille-box:hover {
    border-color: var(--primary);
    background: rgba(212,175,55,0.04);
}

.product-sizes-grouped .sz-taille-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
}

.product-sizes-grouped .sz-taille-info {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.stock-indicator {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
.stock-indicator.low {
    color: #d97706;
}
.stock-indicator.out {
    color: #dc2626;
    text-decoration: line-through;
    opacity: 0.7;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price .original-price {
    text-decoration: line-through;
    color: var(--text-lighter);
    font-weight: 400;
    font-size: 0.82rem;
}

.product-price .sale-price {
    color: var(--primary);
}

.product-price .current-price {
    color: var(--secondary);
}

/* Promo Banner */
/* Footer */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-weight: 300;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    line-height: 1.8;
    max-width: 340px;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.footer-social-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: transform var(--transition-fast);
}

.footer-social-icon-wrap svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-social-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 2px;
}

.footer-social-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-smooth);
}

.footer-social-link:hover {
    color: #fff;
}

.footer-social-link:hover .footer-social-icon-wrap {
    transform: translateY(-2px);
}

.footer-social-link:hover .footer-social-label::after {
    width: 100%;
}

@media (max-width: 640px) {
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

/* Modals and Sidebars */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2500;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal.closing {
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 880px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    transform: scale(0.96) translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light, #6b6b6b);
    transition: all var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    background: var(--cream, #faf9f6);
    border: 1px solid var(--border, #e8e6e1);
    z-index: 10;
}

.close-modal:hover {
    color: var(--secondary, #1a1a1a);
    background: #fff;
    border-color: var(--secondary, #1a1a1a);
}

/* Quick-view close toggle button */
.qv-close-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream, #faf9f6);
    border: 1px solid var(--border, #e8e6e1);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.qv-close-toggle:hover {
    color: var(--secondary, #1a1a1a);
    background: #fff;
    border-color: var(--secondary, #1a1a1a);
}

.qv-close-toggle input[type="checkbox"] {
    display: none;
}

.qv-close-toggle .qv-icon-open {
    display: inline;
    font-size: 1.1rem;
    color: var(--text-light, #6b6b6b);
    line-height: 1;
}

.qv-close-toggle .qv-icon-closed {
    display: none;
    font-size: 1.1rem;
    color: var(--secondary, #1a1a1a);
    line-height: 1;
}

.qv-close-toggle input[type="checkbox"]:checked ~ .qv-icon-open {
    display: none;
}

.qv-close-toggle input[type="checkbox"]:checked ~ .qv-icon-closed {
    display: inline;
}

[dir="rtl"] .qv-close-toggle {
    right: auto;
    left: 14px;
}

.search-container {
    display: flex;
    gap: 10px;
    margin: 1.5rem 0;
}

.search-container input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
}

.search-container input:focus {
    outline: none;
    border-color: var(--secondary);
}

.search-container button {
    padding: 14px 28px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.search-container button:hover {
    background-color: #000;
}

.search-results {
    margin-top: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.search-suggestion {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
    margin-bottom: 0.5rem;
}

.search-suggestion:hover {
    background-color: var(--cream);
}

.search-suggestion-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-name {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.search-suggestion-meta {
    font-size: 0.75rem;
    color: var(--text-lighter);
    letter-spacing: 0.02em;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background-color: white;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 1500;
    transition: right var(--transition-smooth);
    padding: 2.5rem;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.close-sidebar {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-lighter);
    transition: color var(--transition-fast);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    flex-shrink: 0;
}

.close-sidebar:hover {
    color: var(--secondary);
    background: var(--cream);
}

.sidebar-content {
    max-height: 55vh;
    overflow-y: auto;
}

.empty-cart, .empty-wishlist {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-lighter);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.cart-item, .wishlist-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.cart-item-price {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.cart-item-subtotal {
    font-size: 0.72rem;
    color: var(--text-lighter);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.quantity-btn:hover {
    border-color: var(--secondary);
    background: var(--cream);
}

.quantity-input {
    width: 40px;
    height: 32px;
    text-align: center;
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    font-size: 0.82rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
    padding: 4px;
}

.remove-item:hover {
    color: #c0392b;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2.5rem;
    background-color: white;
    border-top: 1px solid var(--border-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.continue-shopping {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-lighter);
    cursor: pointer;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.continue-shopping:hover {
    color: var(--secondary);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1400;
}

.overlay.active {
    display: block;
}

/* Quick View Modal */
.quick-view-content {
    max-width: 920px;
    padding: 2.5rem;
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 0.5rem;
}

/* Images side */
.quick-view-images {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-view-main-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.quick-view-main-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* Zoom button on hover */
.qv-zoom-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border, #e8e6e1);
    color: var(--secondary, #1a1a1a);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 5;
}

.quick-view-main-wrap:hover .qv-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.qv-zoom-btn:hover {
    background: var(--secondary, #1a1a1a);
    color: white;
    border-color: var(--secondary, #1a1a1a);
}

[dir="rtl"] .qv-zoom-btn {
    right: auto;
    left: 14px;
}

/* Touch: always show zoom button */
@media (hover: none) {
    .qv-zoom-btn {
        opacity: 1;
        transform: scale(1);
    }
}

/* Zoom overlay */
.qv-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: fadeIn 0.25s ease;
}

.qv-zoom-overlay.active {
    display: flex;
}

.qv-zoom-overlay img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    user-select: none;
    -webkit-user-drag: none;
}

.qv-zoom-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10001;
}

.qv-zoom-close:hover {
    background: rgba(255,255,255,0.3);
}

[dir="rtl"] .qv-zoom-close {
    right: auto;
    left: 16px;
}

.qv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.qv-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.qv-prev { left: 12px; }
.qv-next { right: 12px; }

.quick-view-thumbs {
    display: flex;
    gap: 0.5rem;
}

.qv-thumb {
    width: 64px;
    height: 64px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: 0.6;
}

.qv-thumb:hover {
    opacity: 0.85;
}

.qv-thumb.active {
    border-color: var(--secondary);
    opacity: 1;
}

.qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info side */
.quick-view-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.quick-view-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.qv-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
}

.qv-price .original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.qv-price .sale-price {
    color: var(--primary);
}

.qv-section label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.qv-size-options,
.qv-color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.qv-size-btn {
    padding: 9px 22px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text);
    letter-spacing: 0.04em;
    border-radius: var(--radius-lg);
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.qv-size-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(212,175,55,0.12);
    transform: translateY(-1px);
}

.qv-size-btn.selected {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 2px 10px rgba(26,26,26,0.18);
    transform: translateY(-1px);
}

.qv-size-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.qv-size-wrap.out-of-stock {
    opacity: 0.38;
    pointer-events: none;
}

.qv-size-wrap.out-of-stock .qv-size-btn {
    text-decoration: line-through;
    border-style: dashed;
}

.qv-color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qv-color-btn:hover {
    transform: scale(1.12);
}

.qv-color-btn.selected {
    border-color: var(--secondary);
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(26,26,26,0.15);
}

.qv-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    width: fit-content;
}

.qv-qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition-fast);
}

.qv-qty-btn:hover {
    background: var(--cream);
}

.qv-qty input {
    width: 40px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    outline: none;
}

.qv-btn {
    width: 100%;
    padding: 15px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border-radius: var(--radius-sm);
}

.qv-btn-primary {
    background: var(--primary);
    color: #fff;
}

.qv-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.qv-btn-dark {
    background: var(--secondary);
    color: #fff;
}

.qv-btn-dark:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.qv-btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qv-btn-outline:hover {
    border-color: var(--secondary);
    background: var(--cream);
}

/* Quick View description */
.qv-desc {
    margin: 0.5rem 0;
    padding: 0.65rem 0;
    border-top: 1px solid var(--border-light, #f0eeea);
}

.qv-desc p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem;
    font-style: italic;
    line-height: 1.75;
    color: #555;
    letter-spacing: 0.015em;
}

.qv-desc-box {
    margin: 0.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--cream, #faf9f6);
    border: 1px solid var(--border-light, #f0eeea);
    border-radius: var(--radius-md);
}

.qv-desc-box h4 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.qv-desc-box p {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--secondary);
    letter-spacing: 0.01em;
}

.qv-continue {
    background: var(--cream, #faf9f6);
    border: 1px solid var(--border, #e8e6e1);
    color: var(--text-light, #6b6b6b);
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    text-align: center;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
    border-radius: var(--radius-md, 6px);
    width: 100%;
}

.qv-continue:hover {
    color: var(--secondary, #1a1a1a);
    border-color: var(--secondary, #1a1a1a);
    background: #fff;
}

/* FAQ Accordion */
.faq-section {
    padding: 5rem 0;
    background-color: var(--cream);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: box-shadow var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--cream);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-size: 1.2rem;
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.88rem;
}

/* Single Product Page */
.product-page {
    padding: 5rem 0;
}

.pp-layout {
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: flex-start;
}

.pp-info {
    flex: 1;
    min-width: 0;
}

.pp-gallery {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 6rem;
}

.pp-main-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pp-main-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-sm);
}

.pp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pp-nav:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%) scale(1.08);
}

.pp-nav-prev { left: 10px; }
.pp-nav-next { right: 10px; }

.pp-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.pp-thumb {
    width: 72px;
    height: 72px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    opacity: 0.6;
}

.pp-thumb:hover {
    opacity: 0.85;
}

.pp-thumb.active {
    border-color: var(--secondary);
    opacity: 1;
}

.pp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.pp-price {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    font-family: 'Manrope', sans-serif;
}

.pp-price .original-price {
    text-decoration: line-through;
    color: var(--text-lighter);
    font-weight: 400;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.pp-price .sale-price {
    color: var(--primary);
}

.pp-desc {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.88rem;
    margin-bottom: 2rem;
}

.pp-section {
    margin-bottom: 1.5rem;
}

.pp-section label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.pp-colors {
    display: flex;
    gap: 0.6rem;
}

.pp-color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pp-color-swatch:hover {
    transform: scale(1.12);
}

.pp-color-swatch.selected {
    border-color: var(--secondary);
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(26,26,26,0.15);
}

.pp-sizes {
    display: block;
}

/* Grouped size display (shared: Quick View + Product Page) */
.sz-group {
    margin-bottom: 14px;
    background: var(--cream, #faf9f6);
    border: 1px solid var(--border-light, #f0eeea);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
}
.sz-group:last-child {
    margin-bottom: 0;
}

.sz-group-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary, #d4af37);
    margin-bottom: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Taille group boxes (ABAYA) — distinct clickable boxes per Taille group */
.sz-group-taille-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sz-taille-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg, #fff);
}

.sz-taille-box:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(212,175,55,0.12);
}

.sz-taille-box.selected {
    border-color: var(--primary);
    background: var(--cream, #faf9f6);
    box-shadow: 0 2px 8px rgba(212,175,55,0.15);
}

.sz-taille-box.out-of-stock {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    border-style: dashed;
}

.sz-taille-box.out-of-stock .sz-taille-label {
    text-decoration: line-through;
}

.sz-taille-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sz-taille-label {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--text);
}

.sz-taille-box.selected .sz-taille-label {
    color: var(--primary);
}

.sz-taille-status {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 500;
}

.sz-taille-oos-text {
    font-size: 0.7rem;
    color: var(--text-light);
}

.sz-taille-info {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 4px;
    letter-spacing: 0.03em;
}

.sz-group-sizes,
.pp-sizes .sz-group-sizes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.pp-size-btn {
    min-width: 54px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    transition: all var(--transition-fast);
    color: var(--text);
    letter-spacing: 0.04em;
    border-radius: var(--radius-lg);
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.pp-size-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(212,175,55,0.12);
    transform: translateY(-1px);
}

.pp-size-btn.selected {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 2px 10px rgba(26,26,26,0.18);
    transform: translateY(-1px);
}

.pp-size-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pp-size-wrap.out-of-stock {
    opacity: 0.38;
    pointer-events: none;
}

.pp-size-wrap.out-of-stock .pp-size-btn {
    text-decoration: line-through;
    border-style: dashed;
}

.pp-color-swatch.out-of-stock {
    opacity: 0.3;
    cursor: not-allowed;
}

.stock-badge {
    font-size: 0.52rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.stock-badge.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-badge.low-stock {
    background: #fff8e1;
    color: #f57f17;
}

.stock-badge.out-of-stock {
    background: #fce4ec;
    color: #c62828;
}

.pp-stock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.stock-qty {
    color: var(--text-lighter);
    font-size: 0.78rem;
}

#pp-add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#qv-stock-info {
    margin-bottom: 10px;
    font-size: 0.82rem;
}

.qv-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pp-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    width: fit-content;
}

.pp-qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition-fast);
}

.pp-qty-btn:hover {
    background: var(--cream);
}

.pp-qty input {
    width: 44px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.pp-btn {
    width: 100%;
    padding: 15px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.pp-btn-primary {
    background: var(--secondary);
    color: #fff;
}

.pp-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pp-btn-dark {
    background: #111;
    color: #fff;
    margin-top: 0.5rem;
}

.pp-btn-dark:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.pp-btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.pp-btn-outline:hover {
    border-color: var(--secondary);
    background: var(--cream);
}

.pp-continue {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--text-lighter);
    font-size: 0.78rem;
    text-decoration: underline;
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
}

.pp-continue:hover {
    color: var(--secondary);
}

.related-products {
    margin-top: 4rem;
}

.related-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary);
}



/* Shop Page */
.shop-page {
    padding: 5rem 0;
}

.shop-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text, #1a1a2e);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.shop-filters {
    position: sticky;
    top: 80px;
    z-index: 50;
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.shop-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.shop-filter-row:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-lighter, #888);
    margin-right: 0.25rem;
    min-width: 55px;
}

.filter-chip {
    padding: 0.55rem 1.3rem;
    border: 1px solid var(--border, #e8e6e1);
    border-radius: 100px;
    background: #fff;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text, #555);
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.03em;
    box-shadow: none;
    min-height: 38px;
}

.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212,175,55,0.03);
}

.filter-chip.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12), 0 2px 8px rgba(26,26,26,0.1);
    font-weight: 500;
}

.results-count {
    color: var(--text-lighter);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.pagination-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.82rem;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--cream);
    border-color: var(--secondary);
}

.pagination-btn.active {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .pagination-btn {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }
}

/* Pages */
.page-content {
    padding: 5rem 0;
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form Elements */
input, select, textarea {
    font-family: inherit;
}

input[type="checkbox"] {
    accent-color: var(--primary);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.py-2 {
    padding: 1rem 0;
}

.px-4 {
    padding: 0 2rem;
}

/* Categories grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    overflow: hidden;
    text-align: center;
    padding: 0 0 1.5rem;
    transition: all var(--transition-smooth);
    border-radius: var(--radius-sm);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-image img {
    transform: scale(1.04);
}

.category-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: var(--secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Cart page */
.cart-page {
    padding: 5rem 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--secondary);
    color: #fff;
    border: none;
    font-weight: 500;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-family: 'Manrope', sans-serif;
}

.checkout-btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    
    .hero-split-image {
        width: 100%;
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-split-content {
        width: 100%;
        padding: 2.5rem 2rem 1.5rem;
    }
    
    .hero-split-title {
        font-size: 2.2rem;
    }

    .collection-tabs {
        gap: 30px;
    }

    .collection-tab {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-top-row {
        padding: 12px 16px;
    }
    
    .header-availability {
        display: none;
    }
    
    .logo {
        font-size: 1.7rem;
        letter-spacing: 3px;
    }
    
    .logo-sub {
        font-size: 0.45rem;
        letter-spacing: 2px;
        margin-top: 4px;
    } 
    
    .header-right {
        gap: 0.25rem;
    }
    
    .header-icon-btn {
        min-width: 36px;
        min-height: 36px;
        padding: 6px;
    }
    
    .header-icon-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hamburger {
        display: flex;
        transition: transform 0.3s ease;
    }

    .hamburger.active svg line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        transform-origin: center;
    }

    .hamburger.active svg line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active svg line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        transform-origin: center;
    }
    
    .header-nav-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-top: none;
        max-height: 0;
        overflow: hidden;  
        padding: 0 20px;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        background: #fff;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        margin: 0;
        position: relative;
        z-index: 1001;
    }
    
    #nav-menu {
        display: none;
    }
    
    #nav-menu.active {
        display: flex;
    }
    
    .header-nav-row.nav-open {
        max-height: 300px;
        padding: 12px 20px;
        opacity: 1;
        border-top: none;
    }
    
    .header-nav-location {
        display: none;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 10px 0;
    }

    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 2px;
        padding: 12px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-sm);
        transition: background 0.2s ease;
    }

    .nav-link:active {
        background: var(--cream);
    }
    
    .hero-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
        margin-top: 0;
    }
    
    .hero-split-image {
        width: 100%;
        height: 40vh;
        min-height: 280px;
    }
    
    .hero-split-content {
        width: 100%;
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .hero-split-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .quick-view-body {
        grid-template-columns: 1fr;
    }
    .quick-view-content {
        padding: 1.5rem;
    }
    .quick-view-main-wrap img {
        height: 340px;
        object-fit: contain;
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 100%;
        right: -100%;
        padding: 1.5rem;
    }

    .sidebar-footer { padding: 1.5rem; }

    .page-title {
        font-size: 2rem;
    }
    
    .shop-header {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .scroll-track {
        gap: 1rem;
    }

    .scroll-track > * {
        width: 280px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .pp-layout {
        flex-direction: column;
    }

    .pp-gallery {
        position: static;
    }

    .pp-main-wrap img {
        height: 360px;
    }

    .pp-name {
        font-size: 1.6rem;
    }

    .qv-nav {
        width: 44px;
        height: 44px;
    }

    .pp-nav {
        width: 44px;
        height: 44px;
    }

    .collection-tabs {
        gap: 20px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 10px 8px;
        -webkit-overflow-scrolling: touch;
    }

    .collection-tab {
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-top-row {
        padding: 10px 12px;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .logo-sub {
        font-size: 0.4rem;
        letter-spacing: 1.5px;
        margin-top: 2px;
    }

    .header-right {
        gap: 0.15rem;
    }

    .header-icon-btn {
        min-width: 32px;
        min-height: 32px;
        padding: 4px;
    }

    .header-icon-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-split-image {
        height: 35vh;
        min-height: 220px;
    }
    
    .hero-split-content {
        padding: 2rem 1.25rem 1.5rem;
    }
    
    .hero-split-title {
        font-size: 1.6rem;
    }
    
    .scroll-track > * {
        width: 85vw;
    }

    .btn-overlay {
        padding: 10px 24px;
        min-width: 120px;
        font-size: 0.7rem;
    }
    
    .quick-view-main-wrap img {
        height: 320px;
        object-fit: contain;
        width: 100%;
    }

    .quick-view-content {
        padding: 1.5rem;
    }

    .pp-main-wrap img {
        height: 280px;
    }

    .pp-name {
        font-size: 1.3rem;
    }

    .pp-thumb {
        width: 56px;
        height: 56px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .scroll-wrapper {
        margin-left: -4px;
        margin-right: -4px;
    }

    .category-image {
        height: 120px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

/* Auth Forms */
.auth-form {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-sm);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-lighter);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.auth-form .form-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    transition: border-color var(--transition-fast);
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.auth-form .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-family: 'Manrope', sans-serif;
}

.auth-form .submit-btn:hover {
    background-color: #000;
    transform: translateY(-1px);
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-lighter);
    font-size: 0.82rem;
}

.auth-link a {
    color: var(--secondary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.auth-link a:hover {
    color: var(--primary);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 2rem auto;
}

.legal-content h2 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--text-light);
    font-size: 0.88rem;
}

/* Checkout Page */
/* ====== Checkout / Paiement ====== */
.checkout-page {
    background: var(--bg, #fafaf8);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: start;
}

/* ── Left: Checkout Form ── */
.checkout-form {
    background: white;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.checkout-section {
    margin-bottom: 2rem;
}

.checkout-section:last-of-type {
    margin-bottom: 2.5rem;
}

.checkout-section-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.floating-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-input {
    width: 100%;
    padding: 1.1rem 1rem 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-body, 'Manrope', sans-serif);
    background: white;
    color: var(--text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.floating-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.floating-input.error {
    border-color: #d32f2f;
}

.floating-input.error:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: var(--font-body, 'Manrope', sans-serif);
    pointer-events: none;
    transition: all 0.2s ease;
    background: white;
    padding: 0 0.25rem;
    line-height: 1;
    transform-origin: left center;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: 0.35rem;
    transform: translateY(0) scale(0.8);
    color: var(--text-light);
}

.floating-input:focus ~ .floating-label {
    color: var(--primary);
}

.required-star {
    color: #d32f2f;
    margin-left: 0.15rem;
}

.input-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    padding-left: 0.25rem;
}

.input-error {
    display: block;
    font-size: 0.75rem;
    color: #d32f2f;
    margin-top: 0.2rem;
    padding-left: 0.25rem;
    min-height: 0;
    transition: min-height 0.2s;
}

/* ── Select styling ── */
.select-group {
    margin-bottom: 1.5rem;
}

.select-wrap {
    position: relative;
}

.floating-select {
    cursor: pointer;
    padding-right: 2.2rem;
    background: white;
}

.floating-select:disabled {
    background: #f9f9f9;
    cursor: not-allowed;
    opacity: 0.65;
}

.select-arrow {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.floating-select:focus ~ .select-arrow {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary);
}

.floating-select option {
    padding: 0.5rem;
}

/* ── Submit button ── */
.checkout-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.checkout-submit:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.checkout-submit:active {
    transform: scale(0.98);
}

.checkout-submit svg {
    transition: transform 0.3s ease;
}

.checkout-submit:hover svg {
    transform: translateX(4px);
}

/* ── Order Confirmation Modal ── */
.confirmation-content {
    max-width: 480px;
    text-align: center;
    padding: 3rem 2.5rem 2.5rem;
}
.confirmation-icon-wrap {
    margin-bottom: 1.75rem;
}
.checkmark-svg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}
.checkmark-circle {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: draw-circle 0.6s ease-out forwards;
}
.checkmark-check {
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: draw-check 0.4s 0.6s ease-out forwards;
}
@keyframes draw-circle {
    to { stroke-dashoffset: 0; }
}
@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}
.confirmation-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--secondary);
    margin: 0 0 0.5rem;
    letter-spacing: 0.05em;
}
.confirmation-subtitle {
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}
.confirmation-order-ref {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.confirmation-ref-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.confirmation-ref-number {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.05em;
}
.confirmation-price-breakdown {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}
.conf-pb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.35rem 0;
}
.conf-pb-row + .conf-pb-row {
    border-top: 1px solid var(--border-light);
    margin-top: 0.35rem;
    padding-top: 0.7rem;
}
.conf-pb-total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
}
.conf-pb-total span:last-child {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
}
.confirmation-details {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 2rem;
}
.confirmation-cta {
    display: inline-flex;
    text-decoration: none;
    min-width: 200px;
}

/* ── Right: Sidebar Summary ── */
.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.checkout-sidebar-inner {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
}

.checkout-sidebar-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#checkout-items {
    margin-bottom: 1rem;
}

.checkout-item-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.6rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

.checkout-item-row:last-child {
    border-bottom: none;
}

.checkout-item-info {
    flex: 1 1 100%;
    min-width: 0;
}

.checkout-item-name {
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.3;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.checkout-item-meta {
    font-size: 0.72rem;
    color: var(--text-lighter);
    margin-top: 2px;
    line-height: 1.3;
}

.checkout-item-qty {
    font-size: 0.72rem;
    color: var(--text-lighter);
    margin-top: 2px;
}

.checkout-item-actions {
    display: flex;
    gap: 0.3rem;
}

.checkout-item-actions .modifier-btn,
.checkout-item-actions .remove-btn {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: white;
    color: var(--text-lighter);
    cursor: pointer;
    font-family: var(--font-body, 'Manrope', sans-serif);
    transition: all var(--transition-fast);
    line-height: 1.4;
}

.checkout-item-actions .modifier-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.04);
}

.checkout-item-actions .remove-btn:hover {
    border-color: #d32f2f;
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.04);
}

.checkout-item-total {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--secondary);
    white-space: nowrap;
    margin-left: auto;
}

.checkout-totals {
    border-top: 1px solid var(--border-light);
    padding-top: 0.85rem;
    margin-top: 0.5rem;
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.checkout-line-total {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    padding-top: 0.6rem;
    margin-top: 0.3rem;
    border-top: 1px solid var(--border-light);
    font-family: var(--font-heading);
}

/* ── Shared cart styles (used by cart page too) ── */
.cart-item-variant {
    font-size: 0.75rem;
    color: var(--text-lighter);
    margin-bottom: 3px;
}

.cart-item-total {
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

.modifier-btn,
.remove-btn {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    min-height: 36px;
    min-width: 36px;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-lighter);
}

.cart-empty p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .checkout-sidebar {
        position: static;
    }
    .checkout-form {
        padding: 1.5rem;
    }
    .checkout-sidebar-inner {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-slogan {
        max-width: 100%;
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* About Page Values */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.88rem;
}

.about-image {
    margin-top: 2rem;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary);
}

.about-page .about-text p {
    text-align: left;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* ── Shop Search & Filters ── */
.shop-search-bar {
    margin-bottom: 1.5rem;
}

.shop-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 480px;
}

.shop-search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-lighter);
    pointer-events: none;
}

.shop-search-input {
    width: 100%;
    padding: 12px 40px 12px 42px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.shop-search-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(26,26,26,0.06);
}

.shop-search-input::placeholder {
    color: var(--text-lighter);
}

.shop-search-clear {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-lighter);
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color var(--transition-fast);
}

.shop-search-clear:hover {
    color: var(--text);
}

.shop-filter-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.shop-filter-row:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-lighter);
    min-width: 50px;
    flex-shrink: 0;
}

.filter-chip {
    padding: 0.55rem 1.3rem;
    border: 1px solid var(--border, #e8e6e1);
    border-radius: 100px;
    background: #fff;
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-light, #555);
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.03em;
    box-shadow: none;
    min-height: 38px;
}

.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212,175,55,0.03);
}

.filter-chip.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12), 0 2px 8px rgba(26,26,26,0.1);
    font-weight: 500;
}

.shop-active-filters {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
}

.active-filters-list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    flex: 1;
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.72rem;
    color: var(--text-light);
    cursor: default;
}

.active-filter-chip button {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0;
    margin-left: 2px;
}

.active-filter-chip button:hover {
    color: var(--text);
}

.active-filters-clear {
    background: none;
    border: none;
    color: var(--rose-gold);
    font-size: 0.72rem;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.active-filters-clear:hover {
    text-decoration: underline;
}

.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-sort-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-lighter);
    font-weight: 500;
    white-space: nowrap;
}

.shop-sort-select {
    padding: 8px 28px 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239a9a9a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.shop-sort-select:focus {
    border-color: var(--secondary);
}

.shop-color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.shop-color-swatch:hover {
    transform: scale(1.15);
}

.shop-color-swatch.active {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px var(--secondary);
}

.stock-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    user-select: none;
}

.stock-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.stock-toggle-slider {
    width: 38px;
    height: 22px;
    background: var(--border);
    border-radius: 11px;
    position: relative;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.stock-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.stock-toggle input:checked + .stock-toggle-slider {
    background: var(--secondary);
}

.stock-toggle input:checked + .stock-toggle-slider::after {
    transform: translateX(16px);
}

.stock-toggle-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.shop-filter-row-toggle {
    margin-top: 0.2rem;
}

.shop-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.shop-spinner {
    width: 32px;
    height: 32px;
    border: 2.5px solid var(--border);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: shopSpin 0.7s linear infinite;
}

@keyframes shopSpin {
    to { transform: rotate(360deg); }
}

.shop-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.shop-empty-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.shop-empty-text {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.shop-empty-clear {
    padding: 10px 24px;
    font-size: 0.78rem;
}

/* ── Mobile Experience Fixes ── */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    input, textarea, select, button {
        font-size: 16px !important;
    }

    .floating-input {
        font-size: 16px !important;
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .filter-chip {
        font-size: 0.78rem;
        padding: 0.5rem 1.1rem;
        min-height: 40px;
        border-radius: 100px;
    }

    .shop-search-wrap {
        max-width: 100%;
    }

    .shop-search-input {
        font-size: 16px;
        padding: 14px 40px 14px 42px;
    }

    .shop-filter-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.4rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .shop-filter-row .filter-chip {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .shop-filter-row .filter-label {
        flex-shrink: 0;
    }

    .shop-active-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .results-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }

    .shop-sort-wrap {
        justify-content: flex-end;
    }

    .collection-tab {
        font-size: 15px;
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .collection-tabs {
        gap: 16px;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .product-sizes {
        gap: 0.35rem;
    }

    .size-btn {
        min-width: 40px;
        min-height: 40px;
        font-size: 0.75rem;
    }

    .color-swatch {
        min-width: 36px;
        min-height: 36px;
    }

    .modal-overlay {
        z-index: 2500;
    }

    .modal-content {
        max-height: 90vh;
        margin: 5vh auto;
    }

    .qv-close,
    .pp-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        padding: 12px 24px;
    }

    .add-to-cart,
    .btn-primary {
        min-height: 48px;
        font-size: 0.85rem;
    }

    .hero-split-content h1 {
        font-size: 1.6rem;
    }

    .hero-split-content p {
        font-size: 0.85rem;
    }

    .footer-section h4 {
        font-size: 0.8rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
    }

    .cart-sidebar-item-name {
        font-size: 0.85rem;
    }

    .cart-sidebar-item-price {
        font-size: 0.82rem;
    }

    .sidebar {
        z-index: 1500;
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    input, textarea, select, button {
        font-size: 16px !important;
    }

    .floating-input {
        font-size: 16px !important;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 0.82rem;
    }

    .btn {
        min-height: 44px;
        padding: 10px 18px;
        font-size: 0.78rem;
    }
}

.qv-nav.hidden,
.pp-nav.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@media (max-width: 768px) {
    .qv-nav {
        min-width: 44px;
        min-height: 44px;
    }
    .pp-nav {
        min-width: 44px;
        min-height: 44px;
    }
    .product-overlay .btn-overlay {
        min-height: 44px;
    }
    .product-wishlist {
        width: 44px;
        height: 44px;
    }

    .auth-form {
        margin: 1rem auto;
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .pp-thumbs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .pp-thumbs::-webkit-scrollbar {
        display: none;
    }

    .quick-view-thumbs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .quick-view-thumbs::-webkit-scrollbar {
        display: none;
    }

    .modal-content {
        border-radius: var(--radius-md);
    }

    .quick-view-content {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .quick-view-body {
        overflow-y: auto;
        flex: 1;
        min-height: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

body {
    animation: fadeIn 0.35s ease-out;
}

.hero-split {
    animation: fadeIn 0.5s ease-out;
}

.product-card {
    animation: fadeInUp 0.4s ease-out both;
}

.products-grid .product-card:nth-child(1) { animation-delay: 0s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.06s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.12s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.18s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.24s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.30s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.36s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.42s; }

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.modal.active .modal-content {
    animation: slideUp 0.35s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.product-wishlist.active svg {
    animation: heartPulse 0.35s ease;
}

.category-card {
    animation: fadeInUp 0.4s ease-out both;
}

.categories-grid .category-card:nth-child(1) { animation-delay: 0s; }
.categories-grid .category-card:nth-child(2) { animation-delay: 0.06s; }
.categories-grid .category-card:nth-child(3) { animation-delay: 0.12s; }
.categories-grid .category-card:nth-child(4) { animation-delay: 0.18s; }
.categories-grid .category-card:nth-child(5) { animation-delay: 0.24s; }
.categories-grid .category-card:nth-child(6) { animation-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
    body,
    .hero-split,
    .product-card,
    .category-card,
    .modal.active .modal-content {
        animation: none;
    }
    .product-wishlist.active svg {
        animation: none;
    }
}

/* ══════════════════════════════════════
   LUXURY SCROLL REVEALS
   ══════════════════════════════════════ */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.reveal-fade.revealed {
    opacity: 1;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }
.stagger-5 { transition-delay: 0.30s; }
.stagger-6 { transition-delay: 0.36s; }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2.5s infinite;
    z-index: -1;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
.whatsapp-tooltip {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 999;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-family: var(--font-body);
    color: #333;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s;
}
.whatsapp-tooltip.hidden { opacity: 0; pointer-events: none; }
[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }
[dir="rtl"] .whatsapp-tooltip { right: auto; left: 24px; }
@media (max-width: 768px) {
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .whatsapp-tooltip { bottom: 76px; right: 16px; font-size: 0.72rem; }
}

.lang-toggle {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
}

[dir="rtl"] .sidebar {
    right: auto;
    left: -420px;
}
[dir="rtl"] .sidebar.active {
    left: 0;
}
[dir="rtl"] .product-grid {
    direction: rtl;
}
[dir="rtl"] .scroll-arrow.scroll-left {
    left: auto;
    right: 10px;
}
[dir="rtl"] .scroll-arrow.scroll-right {
    right: auto;
    left: 10px;
}
[dir="rtl"] .header-left {
    flex-direction: row-reverse;
}
[dir="rtl"] .header-right {
    flex-direction: row-reverse;
}
[dir="rtl"] .nav-list {
    flex-direction: row-reverse;
}
[dir="rtl"] .footer-inner {
    direction: rtl;
}
[dir="rtl"] .filter-chips {
    flex-direction: row-reverse;
}
[dir="rtl"] .hero-split {
    flex-direction: row-reverse;
}
[dir="rtl"] .quick-view-body {
    flex-direction: row-reverse;
}
[dir="rtl"] .cart-item {
    flex-direction: row-reverse;
}
[dir="rtl"] .sidebar-header {
    flex-direction: row-reverse;
}
[dir="rtl"] .sidebar-footer {
    direction: rtl;
}
[dir="rtl"] .announcement-track {
    direction: rtl;
}
[dir="rtl"] body {
    text-align: right;
}
[dir="rtl"] .container {
    text-align: right;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-cream, #f4f3f0);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3px;
    cursor: pointer;
    position: relative;
    height: 32px;
    min-width: 72px;
    user-select: none;
}

.lang-switch .lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    z-index: 2;
    position: relative;
    flex: 1;
    text-align: center;
    color: var(--text-light);
    transition: color 0.3s ease;
    padding: 0 2px;
    height: 100%;
    line-height: 1;
}

.lang-switch .lang-option.active {
    color: #fff;
}

.lang-switch .lang-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--charcoal, #1A1A1A);
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.lang-switch.arabic-active .lang-slider {
    transform: translateX(calc(100% + 0px));
}

@media (max-width: 768px) {
    .lang-switch {
        min-width: 64px;
        height: 28px;
        padding: 2px;
    }
    .lang-switch .lang-option {
        font-size: 0.68rem;
    }
}


.wishlist-page-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wishlist-page-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.wishlist-page-item:hover {
    background: var(--cream);
}

.wpi-img-wrap {
    flex-shrink: 0;
    width: 90px;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.wpi-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpi-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.wpi-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.wpi-name:hover {
    text-decoration: underline;
}

.wpi-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.wpi-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.btn-sm {
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
}

.wishlist-page-share {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.btn-share-wa {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: var(--radius-sm);
    background: #25D366;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-share-wa:hover {
    background: #20bd5a;
}

@media (max-width: 480px) {
    .wishlist-page-item {
        padding: 0.75rem;
    }

    .wpi-img-wrap {
        width: 72px;
        height: 96px;
    }

    .wpi-name {
        font-size: 0.9rem;
    }

    .wpi-actions {
        flex-direction: column;
        gap: 0.3rem;
    }

    .wpi-actions .btn-sm {
        width: 100%;
        text-align: center;
    }
}
