/**
 * LOUIZO Premium E-Commerce — Main Stylesheet
 * Design: Minimalist Luxury | Noir, Blanc, Doré
 */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gray-900: #2d2d2d;
    --color-gray-700: #4a4a4a;
    --color-gray-500: #6b7280;
    --color-gray-300: #d1d5db;
    --color-gray-100: #f3f4f6;
    --color-white: #ffffff;
    --color-gold: #c9a962;
    --color-gold-light: #dfc88a;
    --color-gold-dark: #a88b4a;
    --color-accent: #722f37;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(201,169,98,0.25);

    --header-height: 120px;
    --section-padding: clamp(4rem, 8vw, 8rem);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: clip;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-black);
}

.display-title {
    font-family: var(--font-display);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 0;
    transition: all var(--transition-base);
}

.btn-gold {
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--color-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-outline-dark {
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-dark {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-gray-900);
    color: var(--color-white);
}

/* ─── Section Titles ────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 16px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Top Bar ───────────────────────────────────────────────── */
.top-bar {
    background: var(--color-black);
    color: var(--color-gray-300);
    font-size: 12px;
    padding: 8px 0;
    letter-spacing: 0.03em;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__message { margin: 0; }

.top-bar__links {
    display: flex;
    gap: 1.5rem;
}

.top-bar__links a:hover { color: var(--color-gold); }

@media (max-width: 768px) {
    .top-bar__links { display: none; }
}

/* ─── Header & Navbar ───────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.site-header--transparent {
    background: transparent;
}

.site-header--transparent .main-nav {
    background: transparent;
}

.site-header--transparent .nav-link,
.site-header--transparent .logo__text,
.site-header--transparent .nav-action-btn {
    color: var(--color-white);
}

.site-header--transparent .site-logo__image {
    filter: brightness(0) invert(1);
}

.site-header--solid,
.site-header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .main-nav {
    background: var(--color-white);
}

.site-header.scrolled .nav-link,
.site-header.scrolled .logo__text,
.site-header.scrolled .nav-action-btn {
    color: var(--color-dark);
}

.site-header.scrolled .site-logo__image {
    filter: none;
}

.main-nav {
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.main-nav > .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand.logo {
    position: static;
    transform: none;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    z-index: auto;
    order: 2;
}

.main-nav .navbar-collapse {
    flex: 1 1 auto;
    min-width: 0;
    order: 3;
}

.main-nav .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.15rem;
}

.nav-actions {
    order: 4;
}

.main-nav .navbar-toggler {
    order: 1;
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-dark);
}

.site-logo__image {
    display: block;
    max-height: 48px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.footer-logo .site-logo__image {
    max-height: 32px;
    filter: brightness(0) invert(1);
}

.footer-logo .logo__text {
    color: var(--color-white);
}

/* Nav compacte quand logo image + nombreuses catégories */
.site-header--logo-image .nav-link {
    padding: 0.45rem 0.6rem !important;
    font-size: 11px;
    letter-spacing: 0.05em;
}

@media (min-width: 992px) {
    .site-header--logo-image .main-nav > .container {
        column-gap: 0.75rem;
    }

    .site-header--logo-image .site-logo__image {
        max-height: 46px;
        max-width: 140px;
    }
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link--accent { color: var(--color-gold) !important; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-action-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--color-dark);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.nav-action-btn:hover { color: var(--color-gold); }

.nav-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mega Dropdown */
.mega-dropdown {
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    min-width: 220px;
}

.mega-dropdown .dropdown-item {
    font-size: 13px;
    padding: 0.5rem 1.5rem;
    transition: all var(--transition-fast);
}

.mega-dropdown .dropdown-item:hover {
    background: var(--color-gray-100);
    color: var(--color-gold);
    padding-left: 2rem;
}

/* Mobile Menu */
.mobile-menu {
    background: var(--color-black);
    color: var(--color-white);
    width: 300px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li a {
    display: block;
    padding: 1rem 0;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color var(--transition-fast);
}

.mobile-nav li a:hover { color: var(--color-gold); }

.mobile-menu__footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .main-nav > .container {
        flex-wrap: wrap;
    }

    .navbar-brand.logo {
        flex: 1;
        text-align: center;
        order: 2;
    }

    .main-nav .navbar-toggler {
        order: 1;
    }

    .nav-actions {
        order: 3;
        margin-left: 0;
    }

    .main-nav .navbar-collapse {
        order: 4;
        flex: 1 0 100%;
    }

    .main-nav .site-logo__image {
        max-height: 42px;
        max-width: 125px;
        margin-inline: auto;
    }
}

/* ─── Hero Section ──────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video,
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.5) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 1.5rem;
    max-width: 800px;
}

.hero__subtitle {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero__desc {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-white);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Product Card ──────────────────────────────────────────── */
.product-card {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: transform var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--color-gray-100);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
    transform: scale(1.08);
}

.product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.product-card__actions .product-card__view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    padding: 0;
    flex-shrink: 0;
    text-transform: none;
    letter-spacing: 0;
}

.product-card__view-btn i {
    margin: 0;
    line-height: 1;
    font-size: 1rem;
}

.product-card:hover .product-card__actions {
    transform: translateY(0);
}

.product-card__wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 2;
}

.product-card:hover .product-card__wishlist {
    opacity: 1;
    transform: translateY(0);
}

.product-card__wishlist.active,
.product-card__wishlist.active i {
    color: var(--color-accent);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
}

.product-badge--new { background: var(--color-black); color: var(--color-white); }
.product-badge--sale { background: var(--color-accent); color: var(--color-white); }
.product-badge--bestseller { background: var(--color-gold); color: var(--color-white); }

.product-card__info {
    padding: 1.25rem 0;
    text-align: center;
}

.product-card__category {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.product-card__title {
    font-size: 15px;
    font-weight: 500;
    margin: 0.25rem 0 0.5rem;
}

.product-card__title a:hover { color: var(--color-gold); }

.product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-card__price-current {
    font-weight: 600;
    color: var(--color-dark);
}

.product-card__price-old {
    text-decoration: line-through;
    color: var(--color-gray-500);
    font-size: 14px;
}

/* Cartes produit sur fond sombre (section promotions, etc.) */
.product-card--on-dark .product-card__category {
    color: rgba(255, 255, 255, 0.55);
}

.product-card--on-dark .product-card__title {
    color: var(--color-white);
}

.product-card--on-dark .product-card__title a {
    color: inherit;
}

.product-card--on-dark .product-card__title a:hover {
    color: var(--color-gold);
}

.product-card--on-dark .product-card__price-current {
    color: var(--color-gold);
}

.product-card--on-dark .product-card__price-old {
    color: rgba(255, 255, 255, 0.45);
}

/* ─── Collection Banner ─────────────────────────────────────── */
.collection-banner {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    cursor: pointer;
}

.collection-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.collection-banner:hover .collection-banner__image {
    transform: scale(1.05);
}

.collection-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
}

.collection-banner__content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    color: var(--color-white);
}

.collection-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.collection-banner__link {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─── Category Grid ─────────────────────────────────────────── */
.category-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
    transform: scale(1.1);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base);
}

.category-card:hover .category-card__overlay {
    background: rgba(0,0,0,0.5);
}

.category-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

/* ─── Features / Advantages ─────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item__icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-item__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item__text {
    font-size: 14px;
    color: var(--color-gray-500);
}

/* ─── Lookbook ──────────────────────────────────────────────── */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.lookbook-item:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.lookbook-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lookbook-item:first-child {
        grid-row: span 1;
        aspect-ratio: 3/4;
    }
}

/* ─── Instagram Feed ────────────────────────────────────────── */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.insta-item:hover img { transform: scale(1.1); }

.insta-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--color-white);
    font-size: 24px;
}

.insta-item:hover .insta-item__overlay { opacity: 1; }

@media (max-width: 768px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Swiper Custom ─────────────────────────────────────────── */
.swiper-products .swiper-slide {
    height: auto;
    min-width: 0;
}

.swiper-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-dark);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-black);
    color: var(--color-gray-300);
}

.footer-newsletter {
    padding: var(--section-padding) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-newsletter__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer-newsletter__text {
    font-size: 15px;
    opacity: 0.8;
}

.newsletter-form__wrap {
    display: flex;
    gap: 0;
}

.newsletter-form__input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--color-white);
    font-size: 14px;
}

.newsletter-form__input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form__input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.newsletter-form__note {
    font-size: 12px;
    opacity: 0.5;
    margin-top: 0.75rem;
}

.footer-main {
    padding: 4rem 0;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    font-size: 14px;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i { color: var(--color-gold); margin-top: 3px; }

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 13px;
    opacity: 0.6;
}

.footer-bottom__links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom__links a:hover { opacity: 1; color: var(--color-gold); }

.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.footer-payments__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ─── Flash Messages ────────────────────────────────────────── */
.flash-message {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0;
    animation: slideDown 0.4s ease;
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-message--success { background: #059669; color: white; }
.flash-message--error { background: #dc2626; color: white; }
.flash-message--warning { background: var(--color-gold); color: white; }
.flash-message--info { background: var(--color-dark); color: white; }

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ─── Search Modal ──────────────────────────────────────────── */
.search-modal {
    background: var(--color-white);
    border: none;
    border-radius: 0;
}

.search-form__wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--color-dark);
    padding-bottom: 0.5rem;
}

.search-form__wrap i { font-size: 24px; color: var(--color-gray-500); }

.search-form__input {
    flex: 1;
    border: none;
    font-size: 24px;
    font-family: var(--font-display);
    padding: 0.5rem 0;
    outline: none;
}

.search-suggestions { margin-top: 2rem; }

.search-suggestions__label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-tag {
    padding: 6px 16px;
    border: 1px solid var(--color-gray-300);
    font-size: 13px;
    transition: all var(--transition-fast);
}

.search-tag:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ─── Page Header ───────────────────────────────────────────── */
.page-header {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    background: var(--color-gray-100);
    text-align: center;
}

.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb-nav {
    margin-bottom: 1rem;
}

.breadcrumb {
    justify-content: center;
    background: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.breadcrumb-item a { color: var(--color-gray-500); }
.breadcrumb-item a:hover { color: var(--color-gold); }
.breadcrumb-item.active { color: var(--color-dark); }

/* ─── Shop / Filters ────────────────────────────────────────── */
.shop-layout {
    padding: 3rem 0 var(--section-padding);
}

.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-300);
}

.filter-group__title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list label {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-list input[type="checkbox"] {
    accent-color: var(--color-gold);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-300);
}

.shop-count {
    font-size: 14px;
    color: var(--color-gray-500);
}

.shop-sort select {
    border: 1px solid var(--color-gray-300);
    padding: 8px 16px;
    font-size: 13px;
    background: var(--color-white);
    cursor: pointer;
}

.shop-toolbar__start {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    min-width: 0;
}

.shop-filters-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 13px;
    padding: 0.45rem 0.85rem;
    white-space: nowrap;
}

.shop-filters-toggle__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
}

.shop-filters-bar {
    margin-bottom: 1.5rem;
    padding: 1rem 1.15rem;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
}

.shop-filters-bar__form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.85rem 1.25rem;
}

.shop-filters-bar__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 160px;
}

.shop-filters-bar__field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin: 0;
}

.shop-filters-bar__reset {
    align-self: flex-end;
}

.shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: -0.75rem 0 1rem;
}

.shop-active-filters__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
    color: var(--color-dark);
}

.shop-filters-offcanvas {
    width: min(100%, 320px);
}

.shop-filters-offcanvas .filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shop-filters-form--search-mobile .form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.75rem, 3vw, 2rem);
}

@media (min-width: 768px) {
    .products-grid:not(.products-grid--4) {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
        gap: clamp(1rem, 3vw, 2rem);
    }
}

.page-shop-search .products-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199px) {
    .page-shop-search .products-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .page-shop-search .products-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ─── Product Detail ────────────────────────────────────────── */
.product-detail {
    padding: calc(var(--header-height) + 2rem) 0 var(--section-padding);
}

.product-gallery__main {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-gray-100);
    margin-bottom: 1rem;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.product-gallery__zoom {
    display: block;
    width: 100%;
    height: 100%;
}

.product-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
}

.product-gallery__thumb {
    width: 80px;
    height: 100px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
    border-color: var(--color-gold);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info__brand {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.product-info__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.product-info__price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-info__price-old {
    text-decoration: line-through;
    color: var(--color-gray-500);
    font-size: 18px;
    font-weight: 400;
}

.product-info__desc {
    color: var(--color-gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-option {
    margin-bottom: 1.5rem;
}

.product-option__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.color-swatches {
    display: flex;
    gap: 0.5rem;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.color-swatch.active,
.color-swatch:hover:not(.disabled) {
    border-color: var(--color-dark);
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-dark);
}

.color-swatch.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-option {
    min-width: 48px;
    height: 48px;
    border: 1px solid var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-white);
}

.size-option.active,
.size-option:hover {
    border-color: var(--color-dark);
    background: var(--color-dark);
    color: var(--color-white);
}

.size-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-gray-300);
}

.quantity-selector button {
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.quantity-selector button:hover { background: var(--color-gray-100); }

.quantity-selector input {
    width: 50px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--color-gray-300);
    border-right: 1px solid var(--color-gray-300);
    text-align: center;
    font-size: 15px;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.product-actions__buy {
    display: flex;
    flex: 1;
    gap: 0.75rem;
    flex-wrap: wrap;
    min-width: min(100%, 280px);
}

.product-actions__buy .btn {
    flex: 1;
    min-width: 180px;
}

.product-actions__wishlist {
    flex: 0 0 auto;
    width: 52px;
    min-width: 52px;
    padding-left: 0;
    padding-right: 0;
}

.product-actions .btn { min-width: 0; }

.product-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-300);
    font-size: 13px;
    color: var(--color-gray-500);
}

.product-meta span { margin-right: 1.5rem; }

.product-tabs {
    margin-top: 4rem;
}

.product-tabs .nav-link {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 1rem 1.5rem;
}

.product-tabs .nav-link.active {
    color: var(--color-dark);
    border-bottom-color: var(--color-gold);
    background: none;
}

/* ─── Cart ──────────────────────────────────────────────────── */
.cart-page {
    padding: calc(var(--header-height) + 2rem) 0 var(--section-padding);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem;
    border-bottom: 2px solid var(--color-dark);
    text-align: left;
}

.cart-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--color-gray-300);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product__image {
    width: 100px;
    height: 120px;
    object-fit: cover;
}

.cart-product__name {
    font-weight: 500;
}

.cart-product__variant {
    font-size: 13px;
    color: var(--color-gray-500);
}

.cart-summary {
    background: var(--color-gray-100);
    padding: 2rem;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.cart-summary__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-300);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 14px;
}

.cart-summary__total {
    font-size: 20px;
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--color-dark);
}

.coupon-form {
    display: flex;
    gap: 0;
    margin: 1.5rem 0;
}

.coupon-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--color-gray-300);
    font-size: 13px;
}

.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--color-gray-300);
    margin-bottom: 1rem;
}

/* ─── Checkout ──────────────────────────────────────────────── */
.checkout-page {
    padding: calc(var(--header-height) + 2rem) 0 var(--section-padding);
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.checkout-step.active { color: var(--color-dark); font-weight: 600; }

.checkout-step__num {
    width: 32px;
    height: 32px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.checkout-step.active .checkout-step__num {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.checkout-step.done {
    color: var(--color-dark);
    font-weight: 600;
}

.checkout-step.done .checkout-step__num {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

.checkout-step.done.active .checkout-step__num {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}

.checkout-steps--complete {
    margin-bottom: 2rem;
}

.order-validated-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: left;
    background: linear-gradient(135deg, #ecfdf5 0%, #fff 55%);
    border: 2px solid #059669;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.order-validated-banner__icon {
    font-size: 4rem;
    color: #059669;
    line-height: 1;
    flex-shrink: 0;
}

.order-validated-banner__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #059669;
}

.order-validated-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 0.5rem;
    color: var(--color-dark);
}

.order-validated-banner__text {
    margin: 0;
    font-size: 15px;
    color: var(--color-gray-500);
    max-width: 640px;
}

.order-success-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.order-success-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--color-gray-300);
    font-size: 14px;
}

.order-success-card__row:last-child {
    border-bottom: none;
}

.order-success-card__label {
    color: var(--color-gray-500);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.order-success-next {
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
    padding: 1.5rem;
    margin-bottom: 0.5rem;
}

.order-success-next__title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.order-success-next__steps {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 14px;
    line-height: 1.7;
}

.order-success-next__steps li {
    margin-bottom: 0.65rem;
}

.order-success-next__steps li:last-child {
    margin-bottom: 0;
}

.order-success-detail__title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    text-align: center;
}

.order-success__icon {
    font-size: 4rem;
    color: var(--color-gold);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-gray-300);
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.form-control {
    border-radius: 0;
    border: 1px solid var(--color-gray-300);
    padding: 12px 16px;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201,169,98,0.15);
}

.shipping-option,
.payment-option {
    border: 1px solid var(--color-gray-300);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shipping-option:hover,
.payment-option:hover,
.shipping-option.selected,
.payment-option.selected {
    border-color: var(--color-gold);
    background: rgba(201,169,98,0.05);
}

.shipping-option input,
.payment-option input {
    accent-color: var(--color-gold);
}

.payment-option--single {
    cursor: default;
}

.payment-option--single i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.payment-option--single strong {
    display: block;
    margin-bottom: 0.15rem;
}

/* ─── Auth Pages ────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 0 3rem;
    background: var(--color-gray-100);
}

.auth-card {
    background: var(--color-white);
    padding: 3rem;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.auth-card__title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-card__subtitle {
    text-align: center;
    color: var(--color-gray-500);
    margin-bottom: 2rem;
    font-size: 14px;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    font-size: 13px;
    color: var(--color-gray-500);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--color-gray-300);
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ─── Account ───────────────────────────────────────────────── */
.account-page {
    padding: calc(var(--header-height) + 2rem) 0 var(--section-padding);
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.account-sidebar {
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.account-profile-card {
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--color-gray-300);
    background: var(--color-white);
}

.account-profile-card__avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.account-profile-card__avatar--lg {
    width: 96px;
    height: 96px;
    font-size: 1.5rem;
    margin: 0;
    flex-shrink: 0;
}

.account-profile-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-profile-card__info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.account-profile-card__info span {
    display: block;
    font-size: 13px;
    color: var(--color-gray-500);
    word-break: break-word;
}

.account-profile-card__info small {
    display: block;
    margin-top: 0.5rem;
    font-size: 12px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.account-nav {
    padding: 1rem 0;
}

.account-nav__section {
    padding: 0.75rem 1.5rem 0.35rem;
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.account-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}

.account-nav li a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.5rem;
    font-size: 14px;
    color: var(--color-dark);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.account-nav li a i {
    width: 18px;
    opacity: 0.7;
}

.account-nav li a:hover,
.account-nav li a.active {
    color: var(--color-gold);
    background: rgba(0,0,0,0.03);
    border-left-color: var(--color-gold);
    padding-left: calc(1.5rem - 3px);
}

.account-nav__footer {
    border-top: 1px solid var(--color-gray-300);
    margin-top: 0.5rem !important;
    padding-top: 0.5rem;
}

.account-nav__logout {
    color: #991b1b !important;
}

.account-content {
    min-width: 0;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.account-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.35rem;
}

.account-header__subtitle {
    color: var(--color-gray-500);
    margin: 0;
    font-size: 14px;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.account-stat {
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    padding: 1.25rem;
    text-align: center;
}

.account-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.account-stat__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-500);
}

.account-panel {
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    padding: 1.5rem;
}

.account-panel--muted {
    background: var(--color-gray-100);
}

.account-panel--empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.account-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.account-panel__header h2,
.account-panel h2,
.account-panel__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.account-panel__header a {
    font-size: 13px;
    color: var(--color-gold);
}

.account-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.account-quick-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-gray-300);
    transition: color var(--transition-fast);
}

.account-quick-links a:last-child {
    border-bottom: none;
}

.account-quick-links a:hover {
    color: var(--color-gold);
}

.account-avatar-upload {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.account-meta {
    border-top: 1px solid var(--color-gray-300);
}

.account-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.account-address-card {
    border: 1px solid var(--color-gray-300);
    padding: 1.25rem;
    background: var(--color-white);
    position: relative;
}

.account-address-card.is-default {
    border-color: var(--color-gold);
}

.account-address-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
}

.account-address-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.account-address-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.account-address-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.account-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.account-filter {
    padding: 0.5rem 1rem;
    font-size: 13px;
    border: 1px solid var(--color-gray-300);
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.account-filter:hover,
.account-filter.active {
    border-color: var(--color-dark);
    background: var(--color-dark);
    color: #fff;
}

.account-preference {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.account-preference__switch .form-check-input {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.account-preference__switch .form-check-input:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.account-reviews {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-review-card {
    border: 1px solid var(--color-gray-300);
    padding: 1.25rem;
    background: var(--color-white);
}

.account-review-card__product {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.account-review-card__product img {
    width: 56px;
    height: 70px;
    object-fit: cover;
}

.account-review-card__name {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.account-review-card__stars {
    color: var(--color-gold);
    font-size: 13px;
}

.account-alert {
    margin-bottom: 1.5rem;
}

.order-card--compact {
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.order-card {
    border: 1px solid var(--color-gray-300);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-status {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 12px;
}

.order-status--pending { background: #fef3c7; color: #92400e; }
.order-status--confirmed { background: #dbeafe; color: #1e40af; }
.order-status--processing { background: #fce7f3; color: #9d174d; }
.order-status--shipped { background: #e0e7ff; color: #3730a3; }
.order-status--delivered { background: #d1fae5; color: #065f46; }
.order-status--cancelled { background: #fee2e2; color: #991b1b; }
.order-status--refunded { background: #f3f4f6; color: #374151; }

.order-success__number {
    font-family: var(--font-heading, inherit);
    letter-spacing: 0.04em;
}

.order-timeline {
    margin: 1.5rem 0;
}

.order-timeline__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.order-timeline__step {
    text-align: center;
    position: relative;
    opacity: 0.45;
}

.order-timeline__step.is-done,
.order-timeline__step.is-current {
    opacity: 1;
}

.order-timeline__step.is-current .order-timeline__icon {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.order-timeline__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gray-300);
    border-radius: 50%;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.order-timeline__step.is-done .order-timeline__icon {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
}

.order-timeline__label {
    display: block;
    font-size: 12px;
    line-height: 1.3;
}

.order-timeline--terminal .order-timeline__notice {
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    margin: 0;
    font-size: 14px;
}

.order-tracking-card,
.order-tracking-help {
    border: 1px solid var(--color-gray-300);
    padding: 1.5rem;
    background: #fff;
}

.order-tracking-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.order-tracking-card__number {
    font-size: 1.1rem;
    font-weight: 600;
}

.order-tracking-card__section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-300);
}

.order-tracking-card__section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.order-tracking-card__items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-tracking-card__items li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-gray-300);
}

.order-tracking-card__items li:last-child {
    border-bottom: none;
}

.order-tracking-card__totals {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-300);
    font-size: 14px;
}

.order-tracking-card__totals > div {
    margin-bottom: 0.35rem;
}

.order-tracking-card__total {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-gray-300);
}

.order-tracking-help h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .order-timeline__steps {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── About / Contact ───────────────────────────────────────── */
.about-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    margin-top: var(--header-height);
}

.about-content {
    padding: var(--section-padding) 0;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
    background: var(--color-gray-100);
    text-align: center;
    height: 100%;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ─── Pagination ────────────────────────────────────────────── */
.pagination .page-link {
    border-radius: 0;
    border: 1px solid var(--color-gray-300);
    color: var(--color-dark);
    padding: 10px 16px;
    font-size: 14px;
}

.pagination .page-item.active .page-link {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.pagination .page-link:hover {
    background: var(--color-gray-100);
    color: var(--color-gold);
}

/* ─── Reviews ───────────────────────────────────────────────── */
.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-gray-300);
}

.review-stars {
    color: var(--color-gold);
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 12px;
    color: var(--color-gray-500);
}

/* ─── Utilities ─────────────────────────────────────────────── */
.section-padding { padding: var(--section-padding) 0; }
.bg-dark-section { background: var(--color-dark); color: var(--color-white); }
.bg-light-section { background: var(--color-gray-100); }
.text-gold { color: var(--color-gold); }

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 1rem auto;
}

/* ─── Toast Notifications ───────────────────────────────────── */
.toast-notification {
    position: fixed;
    top: calc(var(--header-height) + 0.75rem);
    right: 1rem;
    left: auto;
    z-index: 9999;
    padding: 0.875rem 1.25rem;
    background: #1a1a1a;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: min(360px, calc(100vw - 2rem));
}

.toast-notification--success { background: #059669; }
.toast-notification--error { background: #dc2626; }

.toast-notification button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0;
}

/* ─── Responsive ────────────────────────────────────────────── */

/* Touch / mobile : actions produit toujours visibles (pas de hover) */
@media (hover: none), (max-width: 991px) {
    .product-card:hover {
        transform: none;
    }

    .product-card__actions {
        transform: translateY(0);
        padding: 0.5rem;
        background: linear-gradient(transparent, rgba(0,0,0,0.75));
    }

    .product-card__wishlist {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card:hover .product-card__image {
        transform: none;
    }

    .insta-item__overlay {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 76px;
        --section-padding: clamp(2.5rem, 6vw, 4rem);
    }

    .main-nav {
        padding: 0.65rem 0;
    }

    .nav-action-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .nav-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .shop-toolbar__start {
        justify-content: space-between;
        width: 100%;
    }

    .shop-filters-toggle {
        flex-shrink: 0;
    }

    .shop-sort,
    .shop-sort form {
        width: 100%;
    }

    .shop-sidebar {
        margin-bottom: 2rem;
        position: static;
    }

    .cart-table thead { display: none; }
    .cart-table td { display: block; padding: 0.75rem 0; border: none; }
    .cart-table tr { display: block; padding: 1.5rem 0; border-bottom: 1px solid var(--color-gray-300); }

    .shop-sort select {
        width: 100%;
    }

    .product-detail .row.g-5 {
        --bs-gutter-y: 2rem;
    }

    .product-info__price {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions__buy {
        width: 100%;
        flex-direction: column;
    }

    .product-actions__buy .btn,
    .product-actions__wishlist {
        width: 100%;
        min-width: 0;
    }

    .product-actions__wishlist {
        width: 100%;
    }

    .product-gallery__thumbs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .product-gallery__thumb {
        flex-shrink: 0;
    }

    .collection-banner {
        height: 55vh;
        min-height: 280px;
    }

    .collection-banner__content {
        padding: 1.5rem;
    }

    .collection-banner__title {
        font-size: 1.5rem;
    }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .lookbook-item:first-child {
        grid-column: span 2;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-newsletter .row {
        text-align: center;
    }

    .footer-desc {
        max-width: none;
        margin-inline: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.25rem;
    }

    .newsletter-form__wrap {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form__input {
        width: 100%;
        font-size: 16px;
    }

    .newsletter-form__wrap .btn {
        width: 100%;
    }

    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-header {
        padding: calc(var(--header-height) + 1.5rem) 0 2rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding-top: calc(var(--header-height) + 1rem);
        padding-bottom: 3rem;
    }

    .hero__content {
        padding: 0 1rem;
    }

    .hero__desc {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }

    .hero__scroll {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .product-card__info {
        padding: 0.5rem 0;
    }

    .product-card__category {
        font-size: 10px;
    }

    .product-card__title {
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 0.35rem;
    }

    .product-card__price {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .product-card__price-current {
        font-size: 13px;
    }

    .product-card__price-old {
        font-size: 11px;
    }

    .product-card__actions .btn {
        font-size: 11px;
        padding: 0.35rem 0.5rem;
    }

    .product-card__actions .btn i {
        margin-right: 0.15rem;
    }

    .product-card__view-btn i {
        margin-right: 0;
    }

    .product-card__actions .product-card__view-btn {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        padding: 0;
    }

    .product-badge {
        font-size: 9px;
        padding: 3px 7px;
        top: 0.5rem;
        left: 0.5rem;
    }

    .product-card__wishlist {
        width: 32px;
        height: 32px;
        top: 0.5rem;
        right: 0.5rem;
        font-size: 14px;
    }

    .swiper-nav {
        margin-top: 1.25rem;
    }

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 40px;
        height: 40px;
    }

    /* Modale recherche */
    #searchModal .modal-dialog {
        margin: 0.75rem;
        max-width: calc(100% - 1.5rem);
    }

    #searchModal .modal-body {
        padding: 1.25rem;
    }

    .search-form__wrap {
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: stretch;
    }

    .search-form__wrap i {
        display: none;
    }

    .search-form__input {
        flex: 1 0 100%;
        font-size: 16px;
        padding: 0.35rem 0;
    }

    .search-form__wrap .btn {
        width: 100%;
    }

    .search-suggestions {
        margin-top: 1.25rem;
    }

    .search-tags {
        gap: 0.35rem;
    }

    .search-tag {
        font-size: 12px;
        padding: 5px 12px;
    }

    /* Menu mobile pleine largeur */
    .mobile-menu {
        width: min(320px, 88vw);
    }

    .flash-message {
        padding: 0.75rem 0;
    }

    .flash-message .container {
        font-size: 13px;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .toast-notification {
        right: 0.75rem;
        left: 0.75rem;
        max-width: none;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card__title {
        font-size: 1.15rem;
    }

    .cart-summary,
    .checkout-summary {
        position: static !important;
        margin-top: 2rem;
    }

    .cart-table td[data-label]::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-gray-500);
        display: block;
        margin-bottom: 0.25rem;
    }

    .cart-product {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cart-product__image {
        width: 80px;
        height: 100px;
    }

    .product-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 12px;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .account-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 1rem;
    }

    .account-nav__section {
        width: 100%;
        padding: 0.5rem 0 0;
    }

    .account-nav ul {
        display: contents;
    }

    .account-nav li a {
        padding: 0.5rem 0.85rem;
        border: 1px solid var(--color-gray-300);
        border-left: 1px solid var(--color-gray-300);
        font-size: 13px;
        background: var(--color-white);
    }

    .account-nav li a.active {
        border-color: var(--color-gold);
    }

    .account-nav__footer {
        display: contents;
        border: none;
    }

    .account-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-header {
        flex-direction: column;
    }

    .account-header .btn {
        width: 100%;
    }

    .order-validated-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .order-validated-banner__text {
        max-width: none;
    }

    .order-success-card__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

@media (max-width: 576px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .auth-card {
        padding: 2rem 1.25rem;
    }

    .top-bar__message {
        font-size: 11px;
        text-align: center;
        width: 100%;
    }

    .top-bar__inner {
        justify-content: center;
    }

    .product-card__actions {
        gap: 0.35rem;
    }

    .product-card__actions .btn-sm {
        padding: 0.3rem 0.4rem;
    }

    .product-card__actions .product-card__view-btn {
        padding: 0;
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
    }

    /* Texte bouton masqué sur très petit écran, icône seule */
    .product-card__actions .add-to-cart-btn {
        font-size: 0;
    }

    .product-card__actions .add-to-cart-btn i {
        font-size: 14px;
        margin: 0;
    }
}

@media (max-width: 380px) {
    .products-grid {
        gap: 0.5rem;
    }

    .nav-actions {
        gap: 0;
    }
}

/* Contenu visible avant init AOS ou si la lib ne charge pas */
body:not(.aos-initialized) [data-aos] {
    opacity: 1;
    transform: none;
}
