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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;

    /* Color Palette - Velvet Rose & Champagne Gold for Female Target Group 30-80 */
    --color-primary: #801c34;        /* Velvet Burgundy / Deep Rose */
    --color-primary-light: #a3344d;  /* Antique Rose */
    --color-primary-dark: #4f0d1c;   /* Midnight Plum */
    --color-accent: #c99b2e;         /* Gilded Champagne Gold */
    --color-accent-light: #e4bf67;   /* Pale Gold */
    --color-accent-dark: #9e7518;    /* Bronze Gold */
    --color-bg-cream: #fcfaf5;       /* Cashmere Cream */
    --color-bg-white: #ffffff;
    --color-bg-dark: #241819;        /* Deep Wine Charcoal */
    --color-text-main: #2b2021;      /* Dark Plum Espresso */
    --color-text-muted: #6e5d5e;     /* Dusty Mauve / Warm Rose Gray */
    --color-text-light: #fefcfa;     /* Off-White Linen */
    --color-border: #ebdfd5;         /* Warm Linen Border */
    --color-success: #2e7d32;        /* Soft Forest Green */
    --color-error: #c62828;          /* Soft Crimson */

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #e4bf67 0%, #c99b2e 50%, #9e7518 100%);
    --kaiser-gradient: linear-gradient(135deg, #a3344d 0%, #4f0d1c 100%);
    --dark-gradient: linear-gradient(135deg, #2b2021 0%, #241819 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.45) 100%);
    --gold-shimmer: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);

    /* Typography Sizes - Optimized for 30-80 target group */
    --fs-xs: 0.8rem;
    --fs-sm: 0.925rem;
    --fs-md: 1.05rem;
    --fs-lg: 1.18rem;
    --fs-xl: 1.32rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.65rem;
    --fs-4xl: 4.2rem;

    /* Transitions & Shadows */
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-subtle: 0 4px 30px rgba(79, 13, 28, 0.02);
    --shadow-medium: 0 12px 40px rgba(79, 13, 28, 0.05);
    --shadow-hover: 0 25px 60px rgba(79, 13, 28, 0.12);
    
    /* Gilded Shadow for Glow Effects */
    --shadow-gold-glow: 0 0 25px rgba(201, 155, 46, 0.25);
    --shadow-kaiser-glow: 0 0 30px rgba(163, 52, 77, 0.15);

    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    
    /* Layout Widths */
    --max-width: 1200px;
    --header-height: 90px;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-dark);
    border-radius: 5px;
    border: 2px solid var(--color-bg-cream);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    line-height: 1.65;
    color: var(--color-text-main);
    background-color: var(--color-bg-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary-dark);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

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

@keyframes sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-title {
    font-size: var(--fs-3xl);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '👑';
    display: block;
    font-size: 1.25rem;
    color: var(--color-accent);
    text-align: center;
    margin-top: 0.75rem;
}

/* --- BUTTONS & INTERACTIVE ELEMENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: var(--fs-xs);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--kaiser-gradient);
    color: var(--color-bg-white);
    box-shadow: 0 4px 15px rgba(158, 26, 27, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shimmer);
    transition: none;
}

.btn-primary:hover::before {
    animation: sweep 1.5s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-kaiser-glow), 0 8px 25px rgba(158, 26, 27, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold-gradient);
    color: var(--color-bg-dark);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-glow);
}

.btn-text {
    padding: 0;
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    font-size: var(--fs-sm);
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--gold-gradient);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text:hover {
    color: var(--color-accent-dark);
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- HEADER / NAVIGATION --- */
header {
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(227, 216, 206, 0.5);
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 75px;
    background: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow-medium);
    border-bottom-color: var(--color-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-icons a {
    color: var(--color-text-muted);
    font-size: 1.3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icons a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--kaiser-gradient);
    color: var(--color-bg-white);
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(158, 26, 27, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-main);
    cursor: pointer;
}

/* --- FOOTER --- */
footer {
    background: var(--dark-gradient);
    color: var(--color-text-light);
    padding: 6rem 0 3rem 0;
    border-top: 3px solid var(--color-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--color-bg-white);
    font-size: var(--fs-lg);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-col p {
    color: rgba(253, 251, 247, 0.65);
    margin-bottom: 1.5rem;
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: rgba(253, 251, 247, 0.65);
    font-size: var(--fs-sm);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-sm);
    color: var(--color-bg-white);
    flex-grow: 1;
    font-size: var(--fs-sm);
    transition: var(--transition-smooth);
}

.newsletter-form input::placeholder {
    color: rgba(253, 251, 247, 0.35);
}

.newsletter-form input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
    color: rgba(253, 251, 247, 0.4);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* --- PRODUCT CARD COMPONENT (2026 GLASS/WOW CARD) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(227, 216, 206, 0.4);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-gold-glow);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image-container {
    position: relative;
    height: 340px;
    overflow: hidden;
    background-color: var(--color-bg-cream);
}

.product-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--kaiser-gradient);
    color: var(--color-bg-white);
    padding: 0.35rem 0.9rem;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-info {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 10px;
    color: var(--color-accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(227, 216, 206, 0.3);
}

.product-price {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-primary);
}

/* --- BANNER / HERO COMPONENT --- */
.hero {
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--color-text-light);
    border-bottom: 4px solid var(--color-accent);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18, 13, 13, 0.9) 0%, rgba(18, 13, 13, 0.5) 50%, rgba(18, 13, 13, 0.2) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(250,247,242,0) 0%, var(--color-bg-cream) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 {
    color: var(--color-text-light);
    font-size: var(--fs-4xl);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
}

.hero-content h1 strong {
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: var(--fs-lg);
    margin-bottom: 2.75rem;
    color: rgba(253, 251, 247, 0.85);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

/* --- FORMS & INPUTS --- */
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.55rem;
    color: var(--color-primary-dark);
}

.form-control {
    width: 100%;
    background-color: var(--color-bg-white);
    border: 1.5px solid var(--color-border);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-size: var(--fs-md);
    transition: var(--transition-smooth);
    color: var(--color-text-main);
}

.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold-glow);
    background: var(--color-bg-white);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* --- SPECIAL SECTIONS --- */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: var(--fs-3xl);
    margin-bottom: 1.75rem;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 520px;
    position: relative;
    border: 4px solid var(--color-bg-white);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: calc(var(--border-radius-lg) - 4px);
    pointer-events: none;
    box-sizing: border-box;
}

.about-img img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.about-img:hover img {
    transform: scale(1.04);
}

/* --- TESTIMONIALS / REVIEW CARDS --- */
.testimonial-card {
    background: var(--color-bg-white); 
    padding: 3rem; 
    border-radius: var(--border-radius-md); 
    box-shadow: var(--shadow-medium); 
    border: 1px solid rgba(227, 216, 206, 0.4);
    border-top: 4px solid var(--color-accent);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.15);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-primary);
}

/* --- RESPONSIVITY MEDIA QUERIES --- */
@media (max-width: 992px) {
    :root {
        --fs-4xl: 3rem;
        --fs-3xl: 2.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    header {
        background: rgba(250, 247, 242, 0.95);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 4rem 0;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-medium);
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: var(--fs-3xl);
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* --- SEO LONG-FORM RICH TEXT STYLING --- */
.seo-rich-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.85;
}

.seo-rich-text h2 {
    font-size: var(--fs-3xl);
    margin-top: 4.5rem;
    margin-bottom: 1.75rem;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
}

.seo-rich-text h3 {
    font-size: var(--fs-xl);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.seo-rich-text p {
    margin-bottom: 1.75rem;
    text-align: justify;
}

.seo-rich-text ul, .seo-rich-text ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.seo-rich-text ul {
    list-style: none;
}

.seo-rich-text ul li {
    position: relative;
    padding-left: 1.5rem;
}

.seo-rich-text ul li::before {
    content: '👑';
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.75rem;
    color: var(--color-accent);
}

.seo-rich-text ol {
    list-style: decimal;
}

.seo-rich-text li {
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}

.seo-rich-text .lead {
    font-size: var(--fs-lg);
    color: var(--color-text-main);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-style: normal;
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
    font-weight: 300;
}

.seo-rich-text strong {
    color: var(--color-text-main);
    font-weight: 600;
}

/* --- TOAST BENCHMARK --- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark-gradient);
    color: var(--color-text-light);
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--color-accent);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* --- FAQ ACCORDION --- */
.faq-layout {
    max-width: 850px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item.open {
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px -5px rgba(158, 26, 27, 0.08), 0 8px 10px -6px rgba(212, 175, 55, 0.15);
    background: linear-gradient(to bottom, var(--color-bg-white), rgba(212, 175, 55, 0.04));
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    text-align: left;
    outline: none;
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-primary-dark);
    transition: color 0.3s ease;
}

.faq-trigger:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4) inset;
}

.faq-trigger span:first-child {
    padding-right: 1.5rem;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    color: var(--color-text-main);
    font-size: var(--fs-md);
    line-height: 1.7;
    background: transparent;
}

.faq-item.open .faq-content {
    max-height: 1000px; /* High enough to contain lists and descriptions */
}

.faq-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--color-text-muted);
}

.faq-content ul {
    padding: 0 1.5rem 1.5rem 2.5rem;
    margin: 0;
    color: var(--color-text-muted);
}

.faq-content li {
    margin-bottom: 0.5rem;
}


/* --- CONTACT & CHECKOUT STYLES --- */
.contact-layout, .checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-card, .checkout-card {
    background: var(--color-bg-white);
    padding: 2.5rem 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(227, 216, 206, 0.4);
    margin-bottom: 2rem;
}

.contact-card h2, .checkout-card h2 {
    font-size: var(--fs-xl);
    margin-bottom: 1.75rem;
    color: var(--color-primary-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-card h2::after, .checkout-card h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.sample-checkbox-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-bg-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
    font-size: var(--fs-sm);
    font-weight: 500;
}

.sample-checkbox-card input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.sample-checkbox-card:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-white);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.sample-checkbox-card input:checked + span,
.sample-checkbox-card:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(158, 26, 27, 0.03);
    box-shadow: 0 4px 15px rgba(158, 26, 27, 0.05);
}

.info-block {
    margin-bottom: 2rem;
    background: var(--color-bg-white);
    padding: 1.75rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(227, 216, 206, 0.3);
    border-left: 3px solid var(--color-accent);
}

.info-block h3 {
    font-size: var(--fs-md);
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.info-block p {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.map-mockup {
    height: 250px;
    background: radial-gradient(circle at 50% 50%, #f5eedf 0%, #eadaa2 100%);
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    border: 1.5px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
    margin-top: 1.5rem;
}

.map-pin {
    background: var(--color-bg-white);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-border);
    font-weight: 600;
    font-size: var(--fs-xs);
    animation: float 3s ease-in-out infinite;
}

.map-pin-icon {
    font-size: 1.2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: var(--fs-sm);
}

.payment-option input[type="radio"] {
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-white);
}

.payment-option:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(158, 26, 27, 0.03);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.summary-total {
    border-top: 1.5px solid var(--color-border);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-primary-dark);
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(227, 216, 206, 0.3);
    font-size: var(--fs-sm);
}

.summary-item-name {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.summary-item-qty {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.success-box {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
    background: var(--color-bg-white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(227, 216, 206, 0.5);
    border-top: 4px solid var(--color-success);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 992px) {
    .contact-layout, .checkout-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- CATALOG PAGE STYLES --- */
.catalog-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.sidebar {
    background: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(227, 216, 206, 0.4);
}

.filter-section {
    margin-bottom: 2.5rem;
}

.filter-section h3 {
    font-size: var(--fs-md);
    margin-bottom: 1.25rem;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.filter-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box .form-control {
    padding-right: 3rem;
}

.search-icon {
    position: absolute;
    right: 1.25rem;
    color: var(--color-accent-dark);
    font-size: 1rem;
    pointer-events: none;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-btn::after {
    content: '👑';
    font-size: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--color-primary);
    background: rgba(158, 26, 27, 0.03);
    padding-left: 1.25rem;
}

.filter-btn.active {
    color: var(--color-primary-dark);
    background: var(--gold-gradient);
    font-weight: 700;
    box-shadow: var(--shadow-gold-glow);
}

.filter-btn.active::after {
    opacity: 1;
    color: var(--color-primary-dark);
}

.sort-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aa8010' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
    padding-right: 3rem !important;
    cursor: pointer;
}

@media (max-width: 992px) {
    .catalog-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: rgba(18, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid var(--color-accent);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--shadow-hover);
    color: var(--color-text-light);
    transform: translateY(150px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: start;
}

.cookie-content p {
    font-size: var(--fs-xs);
    line-height: 1.6;
    color: rgba(253, 251, 247, 0.85);
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* --- ACCESSIBILITY PANEL --- */
.accessibility-toggle-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--color-bg-dark);
    border-radius: 50%;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.accessibility-toggle-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-gold-glow);
}

.accessibility-panel {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 250px;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid var(--color-accent);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.accessibility-panel.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Accessibility Body classes toggled by JS */
body.a11y-high-contrast {
    --color-bg-cream: #000000 !important;
    --color-bg-white: #000000 !important;
    --color-text-main: #ffffff !important;
    --color-text-muted: #e0e0e0 !important;
    --color-border: #ffffff !important;
    --color-primary: #ffeb3b !important;
    --color-primary-dark: #ffeb3b !important;
    --color-accent: #ffffff !important;
    background-color: #000000 !important;
    color: #ffffff !important;
}

body.a11y-large-text {
    font-size: 1.2rem !important;
}

body.a11y-large-text .btn,
body.a11y-large-text p,
body.a11y-large-text a,
body.a11y-large-text li,
body.a11y-large-text select,
body.a11y-large-text textarea,
body.a11y-large-text input {
    font-size: 1.15rem !important;
}

body.a11y-dyslexic-font {
    --font-heading: 'Arial', sans-serif !important;
    --font-body: 'Arial', sans-serif !important;
    font-family: Arial, sans-serif !important;
    font-weight: 700 !important;
}

/* Focus Indicator styling for keyboard users */
*:focus-visible {
    outline: 3px solid var(--color-primary-light) !important;
    outline-offset: 3px !important;
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .accessibility-toggle-btn {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .accessibility-panel {
        bottom: 4.5rem;
        right: 1rem;
        width: calc(100% - 2rem);
    }
}
