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

:root {
    --primary-black: #0a0a0a;
    --soft-white: #fafafa;
    --beige: #d4c5b9;
    --accent-gold: #c9a875;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navbar */
.navbar {
    background: var(--soft-white) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-black) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--beige) 0%, var(--soft-white) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 300px;
    opacity: 0.3;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.btn-custom {
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-dark-custom {
    background: var(--primary-black);
    color: var(--soft-white);
    border-color: var(--primary-black);
}

.btn-dark-custom:hover {
    background: transparent;
    color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline-custom:hover {
    background: var(--primary-black);
    color: var(--soft-white);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

/* Product Cards */
.product-card {
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-body {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.price-selling {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.price-mrp {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--accent-gold);
    color: white;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
}

.btn-buy {
    width: 100%;
    padding: 12px;
    background: var(--primary-black);
    color: white;
    border: 2px solid var(--primary-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: transparent;
    color: var(--primary-black);
}

/* Featured Section */
.featured-section {
    background: white;
    padding: 80px 0;
}

.featured-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-content {
    padding: 3rem;
}

.featured-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.featured-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Why Section */
.why-section {
    background: var(--beige);
    padding: 80px 0;
}

.why-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.why-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.why-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Instagram Section */
.instagram-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.instagram-handle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Contact Section */
.contact-section {
    background: var(--soft-white);
    padding: 80px 0;
}

.contact-card {
    background: white;
    padding: 3rem;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Footer */
footer {
    background: var(--primary-black);
    color: var(--soft-white);
    padding: 50px 0 20px;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--soft-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .product-image {
        height: 280px;
    }
    
    .featured-image {
        height: 400px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}