/* ===========================================
   FASHIONSPOWER.COM — LUXURY DARK PREMIUM CSS
   Inspired by Industrie Africa & Ocacia
   =========================================== */

/* --- Variables --- */
:root {
    --gold: #C8A04A;
    --gold-light: #E0C878;
    --gold-dark: #A68536;
    --gold-glow: rgba(200,160,74,0.15);
    --dark: #0D0D0D;
    --dark-2: #141414;
    --dark-3: #1C1C1C;
    --dark-4: #252525;
    --dark-5: #333333;
    --terracotta: #C75B39;
    --ivory: #F8F6F0;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #B0B0B0;
    --gray-500: #777777;
    --gray-700: #444444;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-gold: 0 4px 30px rgba(200,160,74,0.2);
    --shadow-dark: 0 4px 30px rgba(0,0,0,0.4);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.5);
    --radius: 2px;
    --radius-lg: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-200);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

a { color: var(--gray-200); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 30px; }

::selection { background: var(--gold); color: var(--dark); }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,160,74,0.3); }
    50% { box-shadow: 0 0 0 10px rgba(200,160,74,0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* --- Header --- */
.site-header {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,160,74,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(13,13,13,0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* Logo */
.header-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header-logo:hover { color: var(--white); }
.header-logo .logo-img { height: 90px; filter: brightness(1.2); max-width: 280px; object-fit: contain; }
.logo-text { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(200,160,74,0.3);
}
.logo-name {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.5;
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav .nav-list a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray-300);
    position: relative;
    padding: 8px 0;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav .nav-list a:hover {
    color: var(--gold);
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--dark-5);
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--gray-300);
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
}

.lang-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-btn {
    position: relative;
    color: var(--gray-300);
    font-size: 20px;
}

.cart-btn:hover { color: var(--gold); }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

/* Dropdown */
.dropdown-menu {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: var(--radius-lg);
    padding: 8px 0;
}

.dropdown-item {
    color: var(--gray-300);
    padding: 8px 20px;
    font-size: 13px;
}

.dropdown-item:hover, .dropdown-item.active {
    background: var(--dark-4);
    color: var(--gold);
}

/* ===========================================
   HERO — Full-screen immersive
   =========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13,13,13,0.4) 0%,
        rgba(13,13,13,0.2) 40%,
        rgba(13,13,13,0.6) 80%,
        rgba(13,13,13,0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 30px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding: 0 30px;
}

.hero-label::before, .hero-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.hero-label::before { left: 0; }
.hero-label::after { right: 0; }

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.hero .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: fadeIn 2s ease 1s both;
}

.hero .scroll-indicator span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 10px auto 0;
}

/* ===========================================
   BUTTONS — Luxe style
   =========================================== */
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 16px 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover::before { left: 100%; }

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 48px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    background: var(--dark-3);
    color: var(--white);
    border: 1px solid var(--dark-5);
    padding: 15px 48px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-dark:hover {
    background: var(--dark-4);
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-500);
    color: var(--gray-300);
    padding: 14px 45px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===========================================
   SECTION TITLES
   =========================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

/* ===========================================
   CATEGORIES — Dramatic overlays
   =========================================== */
.categories-section {
    padding: 120px 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(200,160,74,0.08);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-3);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25,0.8,0.25,1), filter 0.8s ease;
    filter: brightness(0.7) saturate(0.9);
}

.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9) saturate(1.1);
}

.category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.1) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.category-card:hover .overlay {
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(200,160,74,0.05) 50%);
}

.category-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    margin: 0;
    transition: var(--transition);
}

.category-card:hover h3 { color: var(--gold); }

.category-card .cat-count {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ===========================================
   PRODUCT GRID
   =========================================== */
.products-section {
    padding: 120px 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(200,160,74,0.08);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--dark-3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.product-card:hover {
    border-color: rgba(200,160,74,0.15);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.product-card .product-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--dark-4);
    display: block;
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}

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

.product-card .badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
}

.product-card .badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--terracotta);
    color: var(--white);
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
}

/* Quick-view overlay */
.product-card .quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-card .product-info {
    padding: 18px 20px 12px;
}

.product-card .product-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0 0 8px;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
}

.product-card .product-price .old-price {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-right: 10px;
}

.product-card .add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--gold);
    border: none;
    border-top: 1px solid var(--dark-5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.product-card .add-to-cart-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ===========================================
   BRAND STORY SECTION
   =========================================== */
.brand-story {
    padding: 140px 0;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(200,160,74,0.08);
}

.brand-story::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.brand-story .row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.brand-story-img {
    flex: 1;
    position: relative;
}

.brand-story-img img {
    border-radius: var(--radius);
    filter: brightness(0.9);
}

.brand-story-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

.brand-story-text {
    flex: 1;
}

.brand-story-text .subtitle {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.brand-story-text h2 {
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
}

.brand-story-text p {
    color: var(--gray-300);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
}

/* ===========================================
   NEWSLETTER
   =========================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-top: 1px solid rgba(200,160,74,0.1);
    border-bottom: 1px solid rgba(200,160,74,0.1);
}

.newsletter-section h2 {
    color: var(--white);
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
}

.newsletter-section p { color: var(--gray-500); margin-bottom: 35px; }

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid var(--dark-5);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.newsletter-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder { color: var(--gray-500); }

.newsletter-form button {
    padding: 16px 30px;
    background: var(--gold);
    border: none;
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover { background: var(--gold-light); }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    background: var(--dark);
    color: var(--gray-500);
    padding: 80px 0 40px;
    border-top: 1px solid var(--dark-4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.footer-logo .logo-name {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-tagline { font-size: 14px; color: var(--gray-500); line-height: 1.8; }

.footer-social { display: flex; gap: 18px; margin-top: 25px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--dark-5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,160,74,0.05);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
    color: var(--gray-500);
    font-size: 14px;
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }

.footer-col .newsletter-form { margin: 0; }

.footer-bottom {
    border-top: 1px solid var(--dark-4);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    color: var(--gray-700);
    letter-spacing: 1px;
}

/* ===========================================
   PAGE HERO (inner pages)
   =========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(200,160,74,0.1);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 400;
}

.page-hero p { color: var(--gray-300); margin-top: 15px; }

.page-content {
    padding: 80px 0;
    background: var(--dark);
}

.page-content .form-control {
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    color: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
}

.page-content .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
    background: var(--dark-3);
    color: var(--white);
}

.page-content .form-label { color: var(--gray-300); font-size: 13px; letter-spacing: 0.5px; }

/* --- Utilities --- */
.text-gold { color: var(--gold) !important; }
.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }

/* ===========================================
   RESPONSIVE
   =========================================== */
/* Brand Story — product showcase grid */
.brand-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-radius: var(--radius);
    overflow: hidden;
}

.brand-showcase img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.85);
    transition: var(--transition);
}

.brand-showcase img:hover {
    filter: brightness(1);
}

.brand-showcase img:first-child {
    grid-row: 1 / 3;
    height: 100%;
}

/* Trust badges / features bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 0;
    border-top: 1px solid rgba(200,160,74,0.08);
    border-bottom: 1px solid rgba(200,160,74,0.08);
    background: var(--dark-2);
}

.trust-item {
    text-align: center;
    color: var(--gray-300);
}

.trust-item i {
    color: var(--gold);
    font-size: 24px;
    display: block;
    margin-bottom: 12px;
}

.trust-item span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===========================================
   RESPONSIVE — Tablet
   =========================================== */
@media (max-width: 1200px) {
    .category-card { height: 350px; }
}

@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
    .brand-story .row { flex-direction: column; gap: 40px; }
    .categories-section, .products-section, .brand-story { padding: 80px 0; }
}

/* ===========================================
   RESPONSIVE — Mobile
   =========================================== */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header-inner { padding: 12px 0; }
    .header-logo .logo-img { height: 55px; max-width: 150px; }
    .logo-icon { font-size: 32px; }
    .logo-name { font-size: 10px; letter-spacing: 2px; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--dark);
        border-left: 1px solid var(--dark-5);
        z-index: 2000;
        padding: 100px 30px 40px;
        transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
        overflow-y: auto;
    }

    .main-nav.open { right: 0; }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .main-nav .nav-list a {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid var(--dark-4);
        font-size: 15px;
        color: var(--white);
        letter-spacing: 1px;
    }

    .main-nav .nav-list a::after { display: none; }

    .burger-btn { display: flex; }

    .lang-btn { padding: 5px 10px; font-size: 11px; }

    /* Overlay quand le menu est ouvert */
    .main-nav.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }

    /* Hero */
    .hero { height: 75vh; min-height: 400px; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 0.95rem; }
    .hero-label { font-size: 10px; letter-spacing: 3px; }
    .btn-gold { padding: 14px 35px; font-size: 11px; }

    /* Announcement bar */
    .announcement-bar { font-size: 10px; padding: 7px 10px; letter-spacing: 1.5px; }

    /* Sections */
    .categories-section, .products-section, .brand-story { padding: 60px 0; }
    .section-title { margin-bottom: 35px; }
    .section-title h2 { font-size: 1.6rem; }

    /* Categories */
    .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .category-card { height: 220px; }
    .category-card h3 { font-size: 1rem; }
    .category-card .cat-count { font-size: 10px; }

    /* Products */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card .product-info { padding: 12px 14px 8px; }
    .product-card .product-name { font-size: 0.85rem; }
    .product-card .product-price { font-size: 0.9rem; }
    .product-card .add-to-cart-btn { padding: 11px; font-size: 10px; letter-spacing: 1px; }

    /* Brand story */
    .brand-story .row { flex-direction: column; gap: 30px; }
    .brand-showcase { grid-template-columns: 1fr 1fr; }
    .brand-showcase img { height: 180px; }
    .brand-showcase img:first-child { grid-row: auto; height: 180px; }
    .brand-story-text h2 { font-size: 1.5rem; }

    /* Trust bar */
    .trust-bar { flex-wrap: wrap; gap: 20px; padding: 30px 15px; }
    .trust-item i { font-size: 20px; }
    .trust-item span { font-size: 10px; letter-spacing: 1px; }

    /* Newsletter */
    .newsletter-section { padding: 50px 0; }
    .newsletter-section h2 { font-size: 1.4rem; }
    .newsletter-form { flex-direction: column; border: none; gap: 10px; }
    .newsletter-form input { border: 1px solid var(--dark-5); border-radius: var(--radius); padding: 14px 18px; }
    .newsletter-form button { border-radius: var(--radius); padding: 14px; }

    /* Footer */
    .site-footer { padding: 50px 0 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-col h4 { margin-bottom: 12px; }
    .footer-col .newsletter-form { flex-direction: column; }

    /* Page hero */
    .page-hero { padding: 45px 0; }
    .page-hero h1 { font-size: 1.6rem; }

    /* Page content */
    .page-content { padding: 40px 0; }

    /* Cart */
    .page-content .row.g-5 { gap: 25px !important; }

    /* Cookie consent */
    #cookieConsent > div { flex-direction: column; text-align: center; gap: 12px; }
}

/* ===========================================
   RESPONSIVE — Small Mobile
   =========================================== */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero { height: 65vh; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.85rem; margin-bottom: 25px; }
    .btn-gold { padding: 12px 28px; font-size: 11px; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card { height: 200px; }

    .brand-showcase { grid-template-columns: 1fr; }
    .brand-showcase img { height: 200px; }

    .section-title h2 { font-size: 1.4rem; }
    .announcement-bar { font-size: 9px; }

    /* Product detail page */
    .product-title { font-size: 1.4rem !important; }
    .product-current-price { font-size: 1.4rem !important; }
    .gallery-main img { height: 300px !important; }
    .gallery-thumb { width: 60px !important; height: 60px !important; }
    .option-group { margin-bottom: 18px; }

    /* Checkout */
    .col-lg-7, .col-lg-5 { padding: 0 !important; }
}
