/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 25%, #f8f4ff 50%, #f0fdf4 75%, #fff7ed 100%);
    overflow-x: hidden;
}

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

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-emoji {
    position: absolute;
    font-size: 28px;
    opacity: 0.6;
    animation: float 20s infinite linear;
    animation-delay: var(--delay);
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.floating-emoji:nth-child(1) { left: 5%; }
.floating-emoji:nth-child(2) { left: 18%; }
.floating-emoji:nth-child(3) { left: 32%; }
.floating-emoji:nth-child(4) { left: 48%; }
.floating-emoji:nth-child(5) { left: 65%; }
.floating-emoji:nth-child(6) { left: 78%; }
.floating-emoji:nth-child(7) { left: 92%; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    animation: gentle-pulse 3s ease-in-out infinite;
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    background: linear-gradient(45deg, #d4af37, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600;
}

.tagline {
    font-size: 11px;
    color: #8b5a3c;
    font-style: italic;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #d4af37;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #d4af37, #f39c12);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.cart-btn {
    background: linear-gradient(135deg, #d4af37, #f39c12);
    border: none;
    padding: 12px 18px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-size: 14px;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 35px;
    max-width: 550px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 20px;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 1.4rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #d4af37;
}

.empty-cart {
    text-align: center;
    color: #666;
    margin: 40px 0;
    font-style: italic;
}

.cart-total {
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0;
    text-align: center;
    color: #d4af37;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f39c12);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,247,240,0.9), rgba(253,242,248,0.9), rgba(240,253,244,0.9));
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    opacity: 0.15;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><defs><linearGradient id="dress" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8d7da"/><stop offset="50%" style="stop-color:%23ffeaa7"/><stop offset="100%" style="stop-color:%23fab1a0"/></linearGradient></defs><path d="M200 80 C240 80, 280 120, 280 180 L280 420 C280 460, 240 500, 200 500 C160 500, 120 460, 120 420 L120 180 C120 120, 160 80, 200 80 Z" fill="url(%23dress)" stroke="%23d4af37" stroke-width="3"/><circle cx="200" cy="140" r="25" fill="%23ffeaa7" stroke="%23d4af37" stroke-width="2"/><path d="M175 200 Q200 185, 225 200 L225 380 Q200 395, 175 380 Z" fill="%23fab1a0" opacity="0.8"/><path d="M160 250 Q200 230, 240 250" stroke="%23d4af37" stroke-width="2" fill="none"/><path d="M160 300 Q200 280, 240 300" stroke="%23d4af37" stroke-width="2" fill="none"/></svg>') no-repeat center;
    background-size: contain;
    animation: gentle-sway 6s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    background: linear-gradient(45deg, #2c3e50, #8b5a3c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #8b5a3c;
    margin-bottom: 35px;
    font-style: italic;
    opacity: 0.9;
}

.hero-quote {
    font-size: 1.4rem;
    background: linear-gradient(45deg, #d4af37, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin-bottom: 35px;
    padding-left: 25px;
    border-left: 4px solid #d4af37;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.hero-mission {
    margin-bottom: 45px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.hero-mission strong {
    color: #8b5a3c;
    font-size: 1.25rem;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 25px;
    align-items: center;
}

.primary-btn {
    background: linear-gradient(135deg, #d4af37, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-btn::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;
}

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

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.secondary-btn {
    color: #8b5a3c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.secondary-btn:hover {
    border-color: #8b5a3c;
    transform: translateY(-1px);
}

/* Trust Bar */
.trust-bar {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 0;
    margin: 60px 0;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 20px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    background: linear-gradient(45deg, #2c3e50, #8b5a3c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    opacity: 0.9;
}

/* Mood Selector */
.mood-selector {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.mood-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.mood-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(212, 175, 55, 0.1), transparent 30%);
    transition: all 0.4s ease;
    opacity: 0;
}

.mood-card:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.mood-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.mood-card.active {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(243, 156, 18, 0.1));
    transform: scale(1.05);
}

.mood-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: bounce-gentle 2s ease-in-out infinite;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.mood-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Collections */
.collections {
    padding: 100px 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 45px;
    margin-top: 60px;
}

.collection-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-preview {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
    position: relative;
}

.preview-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.collection-card:hover .preview-overlay {
    opacity: 1;
}

.collection-card:hover .card-preview {
    transform: scale(1.08);
}

/* Individual collection previews with unique gradients */
.fashion-fantasy-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.gentle-moments-preview {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #ffecd2 100%);
}

.chic-cities-preview {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
}

.confidence-grace-preview {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #ffd89b 100%);
}

.belles-garden-preview {
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 50%, #ffd3a5 100%);
}

.vintage-glamour-preview {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #d4af37, #f39c12);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.card-subtitle {
    color: #8b5a3c;
    margin-bottom: 18px;
    font-style: italic;
    font-size: 1.05rem;
}

.card-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.benefit {
    font-size: 13px;
    color: #8b5a3c;
    background: rgba(139, 90, 60, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    width: fit-content;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #d4af37, #f39c12);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.product-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 25px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 20px;
}

.product-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
}

.close-product {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
}

.close-product:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

.product-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.product-preview-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.sample-page {
    aspect-ratio: 3/4;
    border-radius: 12px;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.sample-page:hover {
    border-color: #d4af37;
    transform: scale(1.02);
}

.product-details-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-description h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-description p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.product-specs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.product-specs h5 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.product-actions {
    margin-top: 20px;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.product-add-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f39c12);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.product-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Bundles */
.bundles {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.bundle-card.featured {
    border: 3px solid #d4af37;
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.bundle-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.bundle-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.bundle-contents ul {
    list-style: none;
    margin: 20px 0;
}

.bundle-contents li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.bundle-contents li:before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 16px;
}

.bundle-pricing {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.bundle-price {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.savings {
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f39c12);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.bundle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.15);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    font-size: 13px;
    color: #8b5a3c;
    margin-top: 8px;
    font-style: italic;
}

/* Belle Society */
.belle-society {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 90, 60, 0.1));
}

.society-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.society-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    background: linear-gradient(45deg, #2c3e50, #8b5a3c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 600;
}

.society-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    opacity: 0.9;
}

.society-benefits {
    text-align: left;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 28px;
    margin-top: 5px;
}

.benefit-item strong {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
}

.newsletter-form button {
    background: linear-gradient(135deg, #d4af37, #f39c12);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-size: 14px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* About */
.about {
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    background: linear-gradient(45deg, #2c3e50, #8b5a3c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-lead {
    font-size: 1.3rem;
    color: #8b5a3c;
    font-style: italic;
    margin-bottom: 35px;
    opacity: 0.9;
}

.about-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666;
    font-size: 1.05rem;
}

.about-cta {
    margin-top: 50px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #d4af37, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 20px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: #d4af37;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
    color: #bdc3c7;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .collections-grid,
    .bundles-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .product-body {
        grid-template-columns: 1fr;
    }

    .floating-emoji {
        font-size: 20px;
    }
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* Smooth animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37, #f39c12);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b8941f, #d68910);
}