/* ================================
   LUXE PERFUME - Elegant Light Theme
   ================================ */

:root {
    --bg: #FEFCF9;
    --bg-alt: #F5F0EB;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --gold: #C9A96E;
    --gold-dark: #8B7355;
    --dark: #2C2C2C;
    --white: #ffffff;
    --border: #e8e0d8;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --radius: 4px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 15px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; }

/* ---- CONTAINER ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn-primary {
    background: var(--dark);
    color: var(--white);
}
.btn-primary:hover { background: var(--gold); box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    box-shadow: none;
}
.btn-outline:hover { background: var(--dark); color: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-sm { padding: 10px 24px; font-size: 11px; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 4px 16px rgba(139, 115, 85, 0.3); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-sub {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}
.section-header h2 em { font-style: italic; color: var(--gold-dark); }
.section-cta { text-align: center; margin-top: 48px; }

/* ================================
   HEADER
   ================================ */
.header-top {
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}
.header-main.scrolled { box-shadow: var(--shadow); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.site-logo { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo-text {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--text);
}
.logo-sub {
    font-size: 9px;
    letter-spacing: 6px;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
}
.nav-list { display: flex; gap: 36px; }
.nav-list li a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}
.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-list li a:hover::after,
.nav-list li.current-menu-item a::after { width: 100%; }
.nav-list li a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions a { color: var(--text); transition: var(--transition); position: relative; }
.header-actions a:hover { color: var(--gold); }
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: var(--transition); }

/* ================================
   HERO
   ================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 50%, #f0e6d6 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-tagline {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid var(--gold);
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}
.hero h1 em { font-style: italic; color: var(--gold-dark); }
.hero p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-decoration { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid var(--border);
    top: -100px;
    right: -150px;
    opacity: 0.4;
}
.hero-circle-2 {
    width: 300px;
    height: 300px;
    top: auto;
    bottom: -50px;
    left: -100px;
    right: auto;
}

/* ================================
   BRANDS SCROLL
   ================================ */
.brands-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.brands-scroll {
    display: flex;
    gap: 60px;
    animation: scrollBrands 30s linear infinite;
    white-space: nowrap;
}
.brand-name {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--text);
    opacity: 0.25;
    flex-shrink: 0;
    transition: var(--transition);
}
.brand-name:hover { opacity: 0.6; }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================================
   CATEGORIES
   ================================ */
.categories-section { padding: 100px 0; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.category-card {
    text-align: center;
    transition: var(--transition);
}
.category-card:hover { transform: translateY(-8px); }
.category-image {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.category-icon {
    font-size: 48px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.category-card:hover .category-icon { transform: scale(1.2); color: rgba(255,255,255,0.9); }
.category-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
}
.category-card p { font-size: 13px; color: var(--text-light); }

/* ================================
   PRODUCTS GRID
   ================================ */
.bestsellers-section { padding: 100px 0; background: var(--bg-alt); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.product-card { transition: var(--transition); }
.product-card:hover { transform: translateY(-4px); }
.product-image {
    position: relative;
    background: var(--white);
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 3/4;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt), #e8ddd0);
}
.product-placeholder span {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--gold);
    opacity: 0.5;
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}
.product-badge.sale { background: var(--dark); color: var(--white); }
.product-badge.new { background: var(--gold); color: var(--white); }
.product-info { padding: 0 4px; }
.product-brand {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.product-info h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0 8px;
    line-height: 1.3;
}
.product-info h3 a { transition: var(--transition); }
.product-info h3 a:hover { color: var(--gold); }
.product-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}
.product-price del { color: var(--text-light); font-weight: 400; font-size: 13px; }
.product-price ins { text-decoration: none; color: var(--gold-dark); }
.no-products { text-align: center; color: var(--text-light); font-style: italic; padding: 40px; }

/* ================================
   ABOUT SECTION
   ================================ */
.about-section { padding: 100px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-alt), #e0d5c7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-placeholder span {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--gold);
    opacity: 0.3;
    text-align: center;
    line-height: 1.3;
}
.about-content h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-content h2 em { font-style: italic; color: var(--gold-dark); }
.about-content > p { color: var(--text-light); margin-bottom: 36px; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.feature strong { display: block; margin-bottom: 2px; font-size: 14px; }
.feature p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-section { padding: 100px 0; background: var(--bg-alt); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 40px;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-card > p {
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ================================
   FOOTER
   ================================ */
.footer-newsletter {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 60px 24px;
}
.footer-newsletter h3 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 8px;
}
.footer-newsletter p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0; }
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px 0 0 50px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    padding: 14px 28px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }

.footer-main { background: #f8f4ef; padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col .footer-logo { margin-bottom: 16px; }
.footer-col p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-light); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.contact-info li { font-size: 13px; color: var(--text-light); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-light);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .header-top { display: none; }
    .header-inner { height: 64px; }
    .logo-text { font-size: 22px; letter-spacing: 5px; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 99;
        padding: 40px 24px;
    }
    .nav-menu.active { display: block; }
    .nav-list { flex-direction: column; gap: 24px; }
    .nav-list li a { font-size: 16px; }
    .mobile-toggle { display: flex; }

    .hero { min-height: 70vh; padding: 100px 24px 60px; }
    .hero h1 { font-size: 42px; }
    .hero-actions { flex-direction: column; align-items: center; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .category-image { height: 220px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Selection */
::selection { background: var(--gold); color: var(--white); }
