/* Main Landing Page Styles */
:root {
    --white: #ffffff; 
    --primary: #004d40;
    --primary-light: rgba(0, 77, 64, 0.1);
    --primary-dark: #002d26;
    --accent: #f39c12; /* Gold accent */
    --text-dark: #f8fffe; 
    --text-muted: #a0a8a7;
    --bg-light: #00332c; 
    --shadow: 0 10px 30px rgba(0,0,0,0.3);
    --radius: 12px;
    --font-bn: 'Hind Siliguri', sans-serif;
    --font-en: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-bn);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-en);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-bn);
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

.btn-primary:hover {
    background-color: #e67e22;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white !important;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.w-100 {
    width: 100%;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-wrapper {
    padding: 1rem 0;
    background: #fdfdfd;
}

.hero-swiper {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-swiper {
        width: 98%;
        border-radius: 10px;
    }
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-slide-content h1 {
        font-size: 2.2rem;
    }
    .hero-slide-content {
        padding: 0 1rem;
    }
}

.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(0,0,0,0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Header */
.main-header {
    background: #002d26 !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1.site-title {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    letter-spacing: 0;
    line-height: 1;
}

.logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent) !important;
}



/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #004d40; /* Darker teal for cards */
    color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    background: #f8f8f8;
}
/* Category Tabs */
.cat-tab {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-bn);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    gap: 8px;
}

.cat-tab:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-2px);
}

.cat-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.cat-tab img {
    border-radius: 4px;
}

@media (max-width: 768px) {
    .cat-tab {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

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

.product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-info {
        padding: 0.8rem;
    }
    .product-info h3 {
        font-size: 0.95rem !important;
        height: 2.4em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .product-price {
        font-size: 1rem !important;
        margin: 0.5rem 0 !important;
    }
    .product-actions .btn {
        padding: 8px 5px !important;
        font-size: 0.75rem !important;
    }
}

.product-price {
    margin: 1rem 0;
    font-size: 1.3rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-right: 10px;
}

.product-price .current-price {
    color: var(--accent) !important;
}

/* Reviews */
.review-card {
    background: #004d40;
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 10px;
}

/* Order Form */
.order-section {
    background-color: var(--bg-light);
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    background: #004d40;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    color: white;
}

.order-container label {
    color: white !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.order-container label {
    color: #444 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

/* Footer */
.main-footer {
    background-color: #001a16;
    color: white;
    padding: 4rem 0 2rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}

/* Floating Buttons */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.whatsapp-float, .call-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white !important;
    text-decoration: none !important;
    transition: transform 0.3s;
    border: none !important;
    outline: none !important;
}

.whatsapp-float i, .call-float i {
    text-decoration: none !important;
}

.whatsapp-float { background-color: #25d366; }
.call-float { 
    background-color: #34ace0; /* Nice blue for call */
}

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 15px;
    }
    .whatsapp-float, .call-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Swiper Custom Controls */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: 0.3s;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 25px;
    border-radius: 5px;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
    background: rgba(255,255,255,0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Fix for Delivery Cards and Summary Contrast */
.delivery-card-content .details strong {
    color: #00332c !important;
}
.delivery-card-content .details span {
    color: #444 !important;
}
.order-summary .summary-item span {
    color: #00332c !important;
    font-weight: 600;
}
.order-summary .summary-item.total span {
    color: var(--primary) !important;
    font-weight: 800;
}
