/* ============================================
   RESET AND BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C8A27A;
    --secondary-color: #F5EFE6;
    --accent-color: #D4AF37;
    --text-dark: #3E2C23;
    --text-light: #F5EFE6;
    --shadow: 0 10px 40px rgba(62, 44, 35, 0.15);
    --shadow-light: 0 5px 20px rgba(62, 44, 35, 0.1);
    
    /* Light Mode Colors */
    --bg-primary: #F5EFE6;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #EDE5D8;
    --text-primary: #3E2C23;
    --text-secondary: #666666;
    --navbar-bg: rgba(245, 239, 230, 0.95);
    --card-bg: #FFFFFF;
    --input-bg: #FFFFFF;
}

body.dark-mode {
    /* Dark Mode Colors */
    --bg-primary: #0f0a07;
    --bg-secondary: #1a1510;
    --bg-tertiary: #2a1f1a;
    --text-primary: #f5f5f5;
    --text-secondary: #cccccc;
    --navbar-bg: rgba(26, 21, 16, 0.95);
    --card-bg: #1a1510;
    --input-bg: #2a1f1a;
    --secondary-color: #1a1510;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.8;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: background 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    padding: 8px 14px;
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

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

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--accent-color);
}

.lang-divider {
    color: var(--primary-color);
    font-weight: 300;
}

.theme-switcher {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
}

.theme-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 162, 122, 0.2);
}

.theme-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(200, 162, 122, 0.4);
}

.theme-btn i {
    transition: transform 0.3s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(200, 162, 122, 0.55) 0%, rgba(78, 52, 42, 0.65) 100%),
        url('assets/images/hero/paris-couple.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    filter: sepia(0.15);
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 162, 122, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    color: #F5EFE6;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(62, 44, 35, 0.5), 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #F5EFE6;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    font-style: italic;
    color: #F5EFE6;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.cta-button {
    padding: 18px 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(200, 162, 122, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 162, 122, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.about-slogan {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-style: italic;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.about-story {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.8px;
}

.about-story em {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.about-story strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    flex: 1;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

.placeholder-image {
    display: none;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-tertiary));
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   FILTER SECTION
   ============================================ */
.filter-section {
    padding: 60px 0 40px 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.filter-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--accent-color);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: 40px 0 100px 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-color), #EDE5D8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

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

.placeholder-product {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    font-family: 'Cormorant Garamond', serif;
    opacity: 0.7;
}

.product-card:hover .placeholder-product {
    transform: scale(1.1);
}

.featured-icon {
    color: var(--accent-color);
    font-size: 2rem;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.product-type {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.product-button {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-button:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Featured Product */
.featured-product {
    grid-column: span 1;
    position: relative;
}

.featured-product::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 15px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

.featured-product:hover {
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

@media (min-width: 768px) {
    .featured-product {
        grid-column: span 1;
        scale: 1;
    }
}

/* Product Reveal Animation */
.product-card {
    animation: slideUp 0.6s ease-out both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-tertiary));
    transition: background 0.3s ease;
}

.testimonials-carousel {
    position: relative;
    height: 350px;
    margin-top: 3rem;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    transition: color 0.3s ease;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.social-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.social-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(200, 162, 122, 0.2);
}

.social-icon:hover {
    transform: translateY(-8px) rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(200, 162, 122, 0.4);
}

.tiktok-btn {
    cursor: pointer;
    border: none;
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* ============================================
   TIKTOK MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideInUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.tiktok-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tiktok-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tiktok-option:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.option-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiktok-option:hover .option-icon {
    transform: scale(1.2);
}

.option-content {
    flex: 1;
}

.option-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.option-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Product Modal Styles */
.product-modal-content {
    max-width: 450px;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.product-option-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 2px solid transparent;
    border-radius: 15px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.product-option-btn i {
    font-size: 1.8rem;
    color: var(--primary-color);
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-option-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.product-option-btn:hover i {
    color: white;
    transform: scale(1.2);
}

.product-option-btn.shop-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--accent-color);
}

.product-option-btn.shop-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 10px 30px rgba(200, 162, 122, 0.3);
}

/* Story Content View */
.story-content-view {
    animation: fadeIn 0.3s ease;
}

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

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-5px);
}

.story-content-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.story-content-container::-webkit-scrollbar {
    width: 8px;
}

.story-content-container::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.story-content-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.story-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.story-text {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: justify;
}

.story-paragraph {
    margin-bottom: 1rem;
}

/* Shop Options View */
.shop-options-view {
    animation: fadeIn 0.3s ease;
}

.shop-options-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 1.5rem 0 2rem 0;
    font-weight: 700;
    text-align: center;
}

.shop-options-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.shop-option-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.shop-option-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateX(10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(200, 162, 122, 0.3);
}

.shop-option-link i:first-child {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.shop-option-link:hover i:first-child {
    transform: scale(1.2);
}

.shop-option-link i:last-child {
    margin-left: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.shop-option-link:hover i:last-child {
    opacity: 1;
    transform: translateX(5px);
}

.shop-option-content {
    flex: 1;
}

.shop-option-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.shop-option-content p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
}

.shop-option-link.whatsapp-link {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    border-color: #20BA5A;
}

.shop-option-link.whatsapp-link:hover {
    background: linear-gradient(135deg, #20BA5A, #25D366);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #2a1f1a);
    color: var(--text-light);
    padding: 60px 0 20px 0;
    transition: background 0.3s ease;
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #0f0a07, #1a1510);
    color: #f5f5f5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
}

.footer-section h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #999;
}

/* ============================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 1rem 0;
        list-style: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .language-switcher {
        margin-left: 1rem;
        gap: 0.3rem;
    }

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

    .theme-switcher {
        margin-left: 0.8rem;
    }

    .theme-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 60px;
        padding: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .placeholder-image {
        height: 300px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .featured-product {
        grid-column: span 1;
        scale: 1;
    }

    .testimonials {
        padding: 60px 0 80px 0;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        height: auto;
    }

    .testimonials-carousel {
        height: auto;
        margin-top: 2rem;
    }

    .carousel-controls {
        margin-top: 2.5rem;
    }

    .social-section {
        padding: 80px 0;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer {
        padding: 80px 0 30px 0;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .filter-buttons {
        gap: 0.8rem;
    }

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

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

    .product-image {
        height: 200px;
    }

    .testimonials {
        padding: 50px 0 70px 0;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonials-carousel {
        margin-top: 1.5rem;
    }

    .carousel-controls {
        margin-top: 2rem;
    }

    .social-section {
        padding: 70px 0;
    }

    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .footer {
        padding: 70px 0 25px 0;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .modal-content {
        padding: 2rem;
        max-width: 90%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .tiktok-option {
        padding: 1rem;
        gap: 1rem;
    }

    .option-icon {
        font-size: 2rem;
        min-width: 50px;
    }

    .option-content h4 {
        font-size: 1.1rem;
    }

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

/* ============================================
   DARK MODE VARIABLE OVERRIDES
   ============================================ */
/* Dark mode is handled by body.dark-mode class defined at :root */

/* Optional: System preference dark mode fallback */
@media (prefers-color-scheme: dark) {
    /* System prefers dark mode but user hasn't toggled yet */
    body:not(.light-mode) {
        --bg-primary: #0f0a07;
        --bg-secondary: #1a1510;
        --bg-tertiary: #2a1f1a;
        --text-primary: #f5f5f5;
        --text-secondary: #cccccc;
        --navbar-bg: rgba(26, 21, 16, 0.95);
        --card-bg: #1a1510;
        --input-bg: #2a1f1a;
    }
}
