/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c1810;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e2d5 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-perfume {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Collections Section */
.collections {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2c1810;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collection-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.collection-info {
    padding: 2rem;
}

.collection-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.collection-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.collection-count {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Best Sellers Section */
.bestsellers {
    padding: 100px 0;
    background: #f8f6f0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.product-brand {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: #2c1810;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #1a0f08;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.feature h4 {
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: #b8941f;
}

/* Footer */
.footer {
    background: #1a0f08;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-icons {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 1rem 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-perfume {
        max-width: 200px;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    /* Collections Mobile */
    .collection-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Sections Mobile */
    .section {
        padding: 60px 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* About Content Mobile */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter Mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 1rem 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-info {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Multi-page Styles */

/* Page Hero Sections */
.page-hero,
.collections-hero,
.about-hero,
.contact-hero {
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e2d5 100%);
    text-align: center;
}

.page-hero h1,
.collections-hero h1,
.about-hero h1,
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

.page-hero p,
.collections-hero p,
.about-hero p,
.contact-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Collections Page Styles */
.collections-main {
    padding: 100px 0;
}

.collection-section {
    margin-bottom: 100px;
}

.collection-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collection-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.collection-header p {
    font-size: 1.1rem;
    color: #666;
}

.collection-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.collection-showcase.reverse {
    grid-template-columns: 2fr 1fr;
}

.collection-image-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection-img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.collection-products {
    display: grid;
    gap: 2rem;
}

.collection-features {
    padding: 100px 0;
    background: #f8f6f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

/* About Page Styles */
.our-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.our-values {
    padding: 100px 0;
    background: #f8f6f0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.the-process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.our-team {
    padding: 100px 0;
    background: #f8f6f0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
    margin-bottom: 1.5rem;
}

.placeholder-avatar {
    width: 80px;
    height: 80px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 1rem;
}

.awards {
    padding: 100px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.award-item h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #d4af37;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-main {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c1810;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.submit-button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #b8941f;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-method-info h3 {
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.contact-hours {
    color: #666;
    font-size: 0.9rem;
}

.business-hours {
    margin-bottom: 3rem;
}

.business-hours h3 {
    color: #2c1810;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.social-contact h3 {
    color: #2c1810;
    margin-bottom: 1rem;
}

.contact-faq {
    padding: 100px 0;
    background: #f8f6f0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.faq-link {
    text-align: center;
    margin-top: 3rem;
}

.faq-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

/* Shipping Page Styles */
.shipping-options,
.shipping-policies,
.international-shipping,
.tracking-info {
    padding: 80px 0;
}

.shipping-methods {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.shipping-method {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d4af37;
}

.shipping-method h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.method-details p {
    margin-bottom: 0.5rem;
}

.method-details strong {
    color: #2c1810;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.policy-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-item h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.international-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.country-list {
    list-style: none;
    padding: 0;
}

.country-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.tracking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tracking-step {
    text-align: center;
}

.tracking-help {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f6f0;
    border-radius: 15px;
}

/* Returns Page Styles */
.return-policy,
.return-process,
.exchange-policy,
.special-circumstances,
.return-restrictions,
.return-contact {
    padding: 80px 0;
}

.policy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #d4af37;
}

.highlight-item h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.exchange-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.exchange-info ul {
    list-style: disc;
    margin-left: 2rem;
}

.exchange-benefits {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h4 {
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.circumstances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.circumstance-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.circumstance-item h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.restrictions-content {
    margin-top: 3rem;
}

.restrictions-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.restrictions-note {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 15px;
}

.restrictions-note h3 {
    color: #2c1810;
    margin-bottom: 1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

/* Size Guide Page Styles */
.size-options,
.usage-guide,
.application-guide,
.value-comparison,
.size-recommendations {
    padding: 80px 0;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.size-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.size-option.popular {
    border: 2px solid #d4af37;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #d4af37;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.size-visual {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bottle-size {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 10px 10px 50% 50%;
    margin: 0 auto;
}

.bottle-size.small {
    width: 30px;
    height: 60px;
}

.bottle-size.medium {
    width: 40px;
    height: 80px;
}

.bottle-size.large {
    width: 50px;
    height: 100px;
}

.bottle-size.extra-large {
    width: 60px;
    height: 120px;
}

.size-option h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
    text-align: center;
}

.size-details {
    margin-bottom: 1.5rem;
}

.size-details p {
    margin-bottom: 0.5rem;
}

.size-details strong {
    color: #2c1810;
}

.size-benefits ul {
    list-style: none;
    padding: 0;
}

.size-benefits li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.size-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.usage-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.scenario {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scenario h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.scenario strong {
    color: #d4af37;
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.application-tips,
.longevity-tips {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.application-tips h3,
.longevity-tips h3,
.longevity-tips h4 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

.application-tips ul,
.longevity-tips ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f8f6f0;
    font-weight: 600;
    color: #2c1810;
}

.comparison-table tr.highlighted {
    background: #fef3c7;
}

.table-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.recommendation-quiz {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.quiz-questions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.question h4 {
    color: #2c1810;
    margin-bottom: 1rem;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.quiz-button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.quiz-button:hover {
    background: #b8941f;
}

.recommendation-result {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f6f0;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

/* FAQ Page Styles */
.faq-categories {
    padding: 50px 0;
    background: #f8f6f0;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}

.faq-content {
    padding: 80px 0;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-category h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f6f0;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.6;
}

.contact-support {
    padding: 80px 0;
    background: #f8f6f0;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support-option h3 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    margin-bottom: 1rem;
}

/* Responsive Design for Multi-page */
@media (max-width: 768px) {
    .collection-showcase,
    .collection-showcase.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-content,
    .contact-content,
    .international-content,
    .exchange-content,
    .application-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .page-hero h1,
    .collections-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}