@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #064E3B; /* Deep Emerald */
    --accent: #F59E0B; /* Mango Gold */
    --bg-light: #F9FAF5;
    --text-dark: #1F2937;
    --glass: rgba(255, 255, 255, 0.7);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Hind Siliguri', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Section Styles */
#hero {
    position: relative;
    background: url('hero.png') no-repeat center center/cover;
    height: 100vh;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 78, 59, 0.6), rgba(6, 78, 59, 0.2));
}

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

/* Custom Gradients */
.mesh-gradient {
    background-color: #f9faf5;
    background-image: 
        radial-gradient(at 0% 0%, hsla(41,100%,70%,0.3) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(160,86%,16%,0.1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(41,100%,70%,0.3) 0, transparent 50%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Product Card Styling */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-image-container {
    overflow: hidden;
}

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

.product-image {
    transition: transform 0.5s ease;
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--accent), #D97706);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.4);
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.6);
}

/* Floating Cart Trigger (Optional visual) */
.cart-pill {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

/* Premium Navigation Tabs */
.nav-tabs-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    display: flex;
    justify-content: flex-start;
}

@media (min-width: 1024px) {
    .nav-tabs-wrapper {
        justify-content: center;
    }
}

/* Hide scrollbar */
.nav-tabs-wrapper::-webkit-scrollbar {
    display: none;
}
.nav-tabs-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nav-tabs-container {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 100px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.nav-tab-item {
    position: relative;
    z-index: 2;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    items: center;
    gap: 8px;
}

.nav-tab-item.active {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-tab-active-pill {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--primary), #065F46);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    box-shadow: 0 4px 15px -2px rgba(6, 78, 59, 0.4);
}

.nav-tab-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(6, 78, 59, 0.2);
}

/* Category Badges */
.badge-premium {
    background: var(--accent);
    color: white !important;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

/* Review Carousel */
.reviews-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.review-slide {
    flex: 0 0 100%; /* Default mobile */
    min-width: 0;
}

@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(6, 78, 59, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    background: var(--primary);
}
