@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: url("../images/banner_bg.png"), linear-gradient(135deg, var(--beige) 0%, var(--soft-white) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    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;
    display: flex;
    align-items: baseline;
}

.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-section {
    background: linear-gradient(to right, #ffffff90, #ffffff90 ), url("../images/banner_bgsm.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
    .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;
}
.navbar:has(.main_logo){
    padding: 0 0 0 0;
}
.main_logo{
    height: 80px;
}
.top-mini-slider {
    /* background: #000; */
    background: linear-gradient(90deg, #a78928, #c9a875, #a78928);
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    height: 35px;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-track {
    display: flex;
    width: 200%;
    animation: slideText 6s infinite;
}

.slide {
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes slideText {
    0% { transform: translateX(0); }
    40% { transform: translateX(0); }
    50% { transform: translateX(-100%); }
    90% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}
.gold-marquee {
    background: linear-gradient(90deg, #a78928, #c9a875, #a78928);
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: scrollMarquee 20s linear infinite;
}

.marquee-track span {
    display: inline-block;
    padding-right: 50px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.product-accordion {
    /* max-width: 800px; */
    margin: 30px auto;
    font-family: inherit;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    background: #fff;
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header .icon {
    font-size: 20px;
    transition: 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.accordion-content .note {
    font-size: 13px;
    margin-top: 10px;
    color: #777;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 10px 20px 20px;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}
    .product-detail-section {
        padding: 60px 0;
    }
    .main-media-display {
        width: 100%;
        height: 600px;
        border-radius: 10px;
        margin-bottom: 20px;
        object-fit: cover;
        background: #f8f9fa;
    }
    .media-thumbnail {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }
    .media-thumbnail:hover,
    .media-thumbnail.active {
        border-color: var(--accent-gold);
    }
    .video-thumbnail::after {
        content: '\f144';
        font-family: 'bootstrap-icons';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .product-info {
        padding: 0 2rem;
    }
    .product-detail-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Size Selector Styles */
    .size-selector {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .size-option {
        min-width: 50px;
        padding: 10px 20px;
        border: 2px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        font-weight: 600;
        background: white;
    }
    .size-option:hover {
        border-color: #c9a961;
        background: #faf8f5;
        transform: translateY(-2px);
    }
    .size-option.active {
        border-color: #c9a961;
        background: #c9a961;
        color: white;
    }
    
    /* Color Selector Styles */
    .color-selector {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .color-option {
        padding: 10px 20px;
        /* padding-left: 35px; */
        border: 2px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        font-weight: 600;
        background: white;
    }
    .color-option:hover {
        border-color: #c9a961;
        background: #faf8f5;
        transform: translateY(-2px);
    }
    .color-option.active {
        border-color: #c9a961;
        background: #c9a961;
        color: white;
    }
    .color-preview {
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border: 1px solid #ddd;
        border-radius: 3px;
    }
    
    /* Quantity Selector Styles */
    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .quantity-btn {
        width: 40px;
        height: 40px;
        border: 2px solid #ddd;
        background: white;
        cursor: pointer;
        font-size: 1.2rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .quantity-btn:hover {
        border-color: #c9a961;
        background: #faf8f5;
    }
    .quantity-input {
        width: 60px;
        text-align: center;
        border: 2px solid #ddd;
        padding: 8px;
        border-radius: 5px;
        font-weight: 600;
    }