@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #DAC8B3;
    --secondary-color: #C9E4DE;
    --accent-color: #EBDDCC;
    --gold: #B9985A;
    --cream: #F8F3E9;
    --white: #FFFFFF;
    --dark: #2A2A2A;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

.logo-text {
    margin-left: 15px;
}

.logo-text h1 {
    font-size: 28px;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 14px;
    color: var(--dark);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .social-icon {
    font-size: 18px;
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1610375233918-1e38bd968371?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 90px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    margin: 10px;
}

.btn:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

/* Collections & Products Sections */
.mothers-day, .candles, .soaps {
    background-color: var(--white);
}

.candles {
    background-color: var(--cream);
}

.soaps {
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-carousel {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-info p {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 14px;
}

.product-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
}

.product-badge {
    background-color: var(--gold);
    color: var(--white);
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

.collection-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.collection-category {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: var(--primary-color);
    color: var(--dark);
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.collection-category.active {
    background-color: var(--gold);
    color: var(--white);
}

.collection-category:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background-color: rgba(0,0,0,0.3);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    --swiper-navigation-size: 18px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Fragrances Section */
.fragrances {
    background-color: var(--accent-color);
}

.fragrance-card {
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.fragrance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fragrance-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 30px;
}

.fragrance-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.fragrance-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Lavender Soaps Section */
.lavender {
    background: url('https://images.unsplash.com/photo-1562275211-4b025c2e5557?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    color: var(--white);
    position: relative;
}

.lavender::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.lavender .container {
    position: relative;
    z-index: 1;
}

.lavender-content {
    max-width: 600px;
    text-align: left;
}

.lavender-content h2 {
    color: var(--white);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.lavender-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
}

.lavender-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.lavender-content ul {
    margin-bottom: 30px;
    list-style-type: none;
}

.lavender-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.lavender-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
}

/* Mission Section */
.mission {
    background-color: var(--white);
    padding: 120px 0;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mission-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    bottom: 0;
    left: 0;
}

.mission-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.mission-image {
    flex: 1;
    text-align: center;
}

.video-caption {
    text-align: center;
    font-style: italic;
    color: var(--gold);
    margin-top: 10px;
    font-size: 14px;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
    padding: 100px 0;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    padding: 40px 30px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: var(--primary-color);
    margin: 0 auto 25px;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    margin-bottom: 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--dark);
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.contact-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 80px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    margin: 0 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--dark);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#modalContent {
    margin-top: 20px;
}

.product-detail-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: center;
}

.product-detail-price {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.product-detail-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.product-detail-button {
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-content {
        flex-direction: column;
    }
    
    .mission-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
    }
    
    .hero {
        height: 90vh;
        margin-top: 130px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .collection-categories {
        flex-wrap: wrap;
    }
    
    .collection-category {
        margin-bottom: 10px;
    }

    .modal-content {
        width: 90%;
        padding: 30px;
        margin: 20% auto;
    }
}

@media (max-width: 576px) {
    .nav-links a {
        margin-left: 15px;
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }

    .modal-content {
        padding: 20px;
        margin: 30% auto;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 1s ease-out;
}