/* Variables Definition */
:root {
    --brand-red: #800c19;
    --brand-red-dark: #610711;
    --brand-red-light: #a61727;
    --light-cream: #faf6ee;
    --dark-charcoal: #2c2520;
    --text-muted: #6c757d;
    --gold-orange: #d97706;
    --white: #ffffff;
    --font-primary: 'Outfit', 'Hind Siliguri', sans-serif;
    --font-accent: 'Galada', cursive;
}
/*
Source - https://stackoverflow.com/a/27947434
Posted by Syntax, modified by community. See post 'Timeline' for change history
Retrieved 2026-07-18, License - CC BY-SA 3.0
*/

body > .skiptranslate {
    display: none;
}

/* Global Styles */
body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-charcoal);
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 0; /* Allow hero slide background to cover the absolute top */
}

/* Typography Custom Rules */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-charcoal);
}

.brand-bengali, .brand-logo-bengali {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--brand-red);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.brand-english, .brand-logo-english {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-charcoal);
    margin-top: -5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Custom Dividers */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.title-divider::before,
.title-divider::after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: var(--brand-red);
    opacity: 0.5;
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background-color: var(--brand-red);
    transform: rotate(45deg);
    margin: 0 12px;
    position: relative;
}

.divider-diamond::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--gold-orange);
    top: 2px;
    left: 2px;
}

/* Header & Navbar Section Styling */
.navbar {
    background-color: rgba(250, 246, 238, 0.98) !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.navbar-brand {
    padding: 0;
}

.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--dark-charcoal) !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    position: relative;
    padding: 0.5rem 0.2rem;
    text-shadow: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-red) !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-red) !important;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .brand-bengali {
    color: var(--brand-red) !important;
    text-shadow: none !important;
}

.navbar .brand-english {
    color: var(--dark-charcoal) !important;
    text-shadow: none !important;
}

.navbar .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.15) !important;
    background-color: transparent !important;
}

.navbar .navbar-toggler-icon {
    filter: none !important;
}

.btn-order {
    background-color: var(--brand-red);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--brand-red);
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: transparent;
    color: var(--brand-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(128, 12, 25, 0.15);
}

/* Hero Section & Bootstrap Carousel */
.hero-section {
    position: relative;
    background-color: #000;
    margin-top: 76px;
}

.hero-slide-item {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide-item.active .hero-banner-img {
    transform: scale(1.05);
}

/* Premium Top Tagline */
.hero-top-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2.5px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.trending-section {
    padding-top: 40px !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.hero-slide-item .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 3;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-text-container {
    position: relative;
    z-index: 3;
}

.hero-bengali-title {
    font-family: var(--font-primary);
    font-size: 3.8rem;
    line-height: 1.25;
    color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide-item.active .hero-bengali-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-bengali-title .highlight-text {
    color: var(--gold-orange);
    font-family: var(--font-primary);
    font-weight: 800;
}

.hero-bengali-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 580px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
    line-height: 1.6;
}

.hero-slide-item.active .hero-bengali-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.hero-slide-item.active .hero-cta-buttons {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore {
    background-color: var(--brand-red);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2.2rem;
    border: 2px solid var(--brand-red);
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-be-distributor {
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2.2rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-be-distributor:hover {
    background-color: var(--brand-red);
    color: var(--white);
    border-color: var(--brand-red);
}

/* Animations */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Swiper navigation custom look */
.hero-swiper-btn-next,
.hero-swiper-btn-prev {
    background-color: var(--brand-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper-btn-next::after,
.hero-swiper-btn-prev::after {
    display: none;
}

.hero-swiper-btn-next i,
.hero-swiper-btn-prev i {
    color: var(--white);
    font-size: 1.2rem;
}

.hero-swiper-btn-next:hover,
.hero-swiper-btn-prev:hover {
    background-color: var(--brand-red-dark);
    transform: scale(1.1);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--brand-red);
    width: 25px;
    border-radius: 5px;
}

/* Product Cards General styling */
.product-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(128, 12, 25, 0.08) !important;
}

.product-image-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fdfbf7;
    transition: transform 0.5s ease;
}

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

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--brand-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.quantity-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--dark-charcoal);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(44, 37, 32, 0.25);
}

.product-name {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating-stars {
    font-size: 0.8rem;
}

.rating-val {
    font-weight: 600;
    color: var(--dark-charcoal);
}
.price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-red);
}

.price-badge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--brand-red);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(128, 12, 25, 0.25);
}

.product-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-add-to-cart {
    background-color: var(--brand-red);
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-add-to-cart:hover {
    background-color: var(--brand-red-dark);
    transform: scale(1.05);
}

.btn-premium-cart {
    background-color: var(--brand-red);
    border: 2px solid var(--brand-red);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.btn-premium-cart:hover {
    background-color: transparent;
    color: var(--brand-red) !important;
}

/* Our Delicious Products Sections */
.bg-light-cream {
    background-color: var(--light-cream);
}

.btn-filter {
    background-color: var(--white);
    color: var(--dark-charcoal);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: var(--brand-red);
    color: var(--white);
    border-color: var(--brand-red);
    box-shadow: 0 4px 10px rgba(128, 12, 25, 0.15);
}

.product-category {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-category.momo { color: var(--gold-orange); }
.product-category.fish { color: #2196f3; }
.product-category.snacks { color: #e91e63; }
.product-category.veg { color: #4caf50; }
.product-category.ready { color: #9c27b0; }
.product-category.frozen { color: #00bcd4; }
.product-category.special { color: #ff5722; }

.btn-view-details {
    background-color: transparent;
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-view-details:hover {
    background-color: var(--brand-red);
    color: var(--white);
}

/* Swiper Navigations for Top Trending & Veg items */
.trending-swiper-prev,
.trending-swiper-next,
.veg-swiper-prev,
.veg-swiper-next,
.video-swiper-prev,
.video-swiper-next {
    background-color: var(--brand-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.trending-swiper-prev, .veg-swiper-prev, .video-swiper-prev { left: -10px; }
.trending-swiper-next, .veg-swiper-next, .video-swiper-next { right: -10px; }

.trending-swiper-prev::after,
.trending-swiper-next::after,
.veg-swiper-prev::after,
.veg-swiper-next::after,
.video-swiper-prev::after,
.video-swiper-next::after {
    display: none;
}

.trending-swiper-prev:hover,
.trending-swiper-next:hover,
.veg-swiper-prev:hover,
.veg-swiper-next:hover,
.video-swiper-prev:hover,
.video-swiper-next:hover {
    background-color: var(--brand-red-dark);
    transform: translateY(-50%) scale(1.1);
}

/* About Us Section Styles */
.video-preview-wrapper {
    position: relative;
    border: 5px solid var(--white);
    background-color: var(--white);
}

.video-overlay {
    transition: background-color 0.3s ease;
}

.video-preview-wrapper:hover .video-overlay {
    background-color: rgba(128, 12, 25, 0.45) !important;
}

.play-btn-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--brand-red);
    box-shadow: 0 0 0 0 rgba(128, 12, 25, 0.6);
    animation: pulsePlay 2s infinite;
    transition: transform 0.3s ease;
}

.video-preview-wrapper:hover .play-btn-circle {
    transform: scale(1.1);
}

@keyframes pulsePlay {
    0% { box-shadow: 0 0 0 0 rgba(128, 12, 25, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(128, 12, 25, 0); }
    100% { box-shadow: 0 0 0 0 rgba(128, 12, 25, 0); }
}

.about-icon-wrapper {
    font-size: 1.5rem;
    background-color: var(--light-cream);
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.02);
}

.btn-about {
    background-color: var(--brand-red);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--brand-red);
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: transparent;
    color: var(--brand-red);
}

/* About Us Social Media Buttons */
.about-social-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 22px;
}

.about-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    color: var(--dark-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    text-decoration: none !important;
}

.about-social-btn:hover {
    color: var(--white) !important;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 15px rgba(128, 12, 25, 0.15);
}

.about-social-btn.facebook:hover {
    background-color: #3b5998;
    border-color: #3b5998;
}

.about-social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
}

.about-social-btn.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.about-social-btn.google:hover {
    background-color: #4285f4;
    border-color: #4285f4;
}

.about-social-btn.whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
}

.tracking-wider {
    letter-spacing: 1.2px;
}

/* Category cards styling */
.category-card {
    height: 320px;
    position: relative;
    cursor: pointer;
    border: 3px solid var(--white);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.category-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.category-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.85;
}

/* Hover effects */
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(128, 12, 25, 0.15) !important;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(128, 12, 25, 0.22) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.category-card:hover .category-name {
    transform: translateY(-4px);
    color: var(--gold-orange) !important;
}

.category-card:hover .category-desc {
    opacity: 1;
    transform: translateY(-2px);
}

/* Why Choose Us styling */
.why-choose-us {
    background-color: var(--white);
}

.choose-icon-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.choose-item:hover .choose-icon-wrapper {
    background-color: var(--brand-red) !important;
    transform: rotate(360deg);
}

.choose-item:hover .choose-icon-wrapper i {
    color: var(--white) !important;
}

.color-brand-red {
    color: var(--brand-red);
}

.choose-center-img-wrapper img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    animation: rotateSlow 60s linear infinite;
}

/* Stats Counter Section styling */
.stats-counter-section {
    background: linear-gradient(135deg, #1b110f 0%, #0d0605 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon i {
    text-shadow: 0 4px 8px rgba(255, 193, 7, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    letter-spacing: -1px;
}

.stat-label {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

/* Videos section (Facebook Reels style) */
.reel-card {
    position: relative;
    border: 3px solid var(--white);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.reel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(128, 12, 25, 0.12) !important;
}

.reel-video-container {
    aspect-ratio: 9/16;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border: 2.5px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.reel-play-btn i {
    margin-left: 3px;
}

.reel-card:hover .reel-play-btn {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 15px rgba(128, 12, 25, 0.6);
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.reel-profile {
    border: 1.5px solid var(--white);
    object-fit: cover;
}

.reel-author {
    font-size: 0.82rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
}

.reel-title {
    font-size: 0.92rem;
    line-height: 1.45;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-actions {
    position: absolute;
    right: 12px;
    top: 40%;
    z-index: 2;
}

.reel-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.92;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
}

.reel-action-item i {
    margin-bottom: 3px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.reel-action-item i:hover {
    transform: scale(1.2);
}

/* Become Partner styles */
.partner-gradient-card {
    background: linear-gradient(135deg, var(--brand-red-light) 0%, var(--brand-red) 50%, var(--brand-red-dark) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(128, 12, 25, 0.22) !important;
}

.partner-title {
    font-size: 2.4rem;
    color: var(--white) !important;
}

.partner-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 580px;
}

.partner-benefits-list {
    margin-top: 25px;
}

.partner-benefits-list .benefit-text span {
    font-size: 1.02rem;
}

.partner-benefits-list .benefit-text small {
    font-size: 0.85rem;
}

.btn-partner-apply {
    background-color: var(--white);
    color: var(--brand-red);
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-partner-apply:hover {
    background-color: transparent;
    color: var(--white) !important;
}

.btn-partner-contact {
    background-color: transparent;
    color: var(--white);
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-partner-contact:hover {
    background-color: var(--white);
    color: var(--brand-red) !important;
}

/* 3D Package Overlapping Mockups */
.mockup-display-container {
    width: 340px;
    height: 250px;
    position: relative;
}

.mockup-package {
    position: absolute;
    width: 125px;
    height: 185px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 8px;
    border: 3px solid var(--white);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mockup-package img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: 8px;
}

.mockup-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-charcoal);
    margin-top: 6px;
}

.mockup-1 {
    left: 10px;
    top: 30px;
    transform: rotate(-10deg) scale(0.92);
    z-index: 1;
}

.mockup-2 {
    left: 105px;
    top: 10px;
    transform: scale(1.05);
    z-index: 3;
}

.mockup-3 {
    left: 200px;
    top: 35px;
    transform: rotate(12deg) scale(0.92);
    z-index: 2;
}

.mockup-package:hover {
    transform: translateY(-15px) scale(1.15) rotate(0deg) !important;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
}

/* Bottom Sections (FAQ, Testimonials, Contact) */
.col-header {
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
}

.col-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--brand-red);
    border-radius: 2px;
}

/* FAQ accordion custom look */
.faq-section .accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    background-color: transparent !important;
}

.faq-section .accordion-button {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--brand-red);
    box-shadow: none;
    font-weight: 700;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonial styles */
.testimonial-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--brand-red);
    width: 20px;
    border-radius: 5px;
}

.profile-img {
    border: 2px solid var(--brand-red);
    object-fit: cover;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Founder Card Styles */
.founder-card {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}
.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(128, 12, 25, 0.08) !important;
}
.founder-img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.founder-card:hover .founder-img {
    transform: scale(1.06);
}

/* Document Card Styles */
.doc-image-wrapper {
    position: relative;
    overflow: hidden;
}
.doc-image-wrapper:hover .doc-hover-overlay {
    opacity: 1 !important;
}
.doc-image-wrapper:hover .doc-thumbnail {
    transform: scale(1.05);
}
.doc-card {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}
.doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(128, 12, 25, 0.08) !important;
}

.testimonials-swiper-prev,
.testimonials-swiper-next {
    width: 42px;
    height: 42px;
    background-color: var(--brand-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonials-swiper-prev {
    left: -15px;
}

.testimonials-swiper-next {
    right: -15px;
}

.testimonials-swiper-prev::after,
.testimonials-swiper-next::after {
    display: none;
}

.testimonials-swiper-prev:hover,
.testimonials-swiper-next:hover {
    background-color: var(--brand-red-dark);
    transform: translateY(-50%) scale(1.08);
}

/* Contact layout customization */
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(128, 12, 25, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.d-flex:hover .contact-icon {
    background-color: var(--brand-red);
    color: var(--white);
}

.contact-form-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 35px rgba(0,0,0,0.03);
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    transition: all 0.2s ease;
}

.contact-form .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(128, 12, 25, 0.15);
}

.btn-send-message {
    background-color: var(--brand-red);
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    background-color: var(--brand-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(128, 12, 25, 0.2);
}

/* Footer elements */
.footer {
    background-color: var(--light-cream);
    border-top: 1px solid rgba(0,0,0,0.04);
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--dark-charcoal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--brand-red);
    color: var(--white);
    transform: translateY(-3px);
}

.hover-red:hover {
    color: var(--brand-red) !important;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: none;
}

.btn-newsletter {
    background-color: var(--brand-red);
    border-radius: 0 50px 50px 0;
    border: none;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background-color: var(--brand-red-dark);
}

/* View All CTA Buttons styling */
.btn-view-all {
    background-color: var(--brand-red);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.65rem 2.2rem;
    border: 2px solid var(--brand-red);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(128, 12, 25, 0.12);
}

.btn-view-all:hover {
    background-color: transparent;
    color: var(--brand-red) !important;
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(128, 12, 25, 0.18);
}

.section-subtitle {
    font-size: 1rem;
    max-width: 580px;
    margin: 10px auto 0 auto;
    line-height: 1.5;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    body {
        padding-top: 75px;
    }
    .hero-bengali-title {
        font-size: 2.6rem;
    }
    .hero-food-img {
        width: 320px;
        height: 320px;
    }
    .choose-center-img-wrapper img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .carousel-caption {
        padding-bottom: 25px !important;
    }
    .hero-bengali-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    .hero-bengali-subtitle {
        font-size: 0.8rem !important;
        margin-top: 8px !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
        line-height: 1.4;
    }
    .hero-top-tagline {
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
        letter-spacing: 1.5px !important;
    }
    .hero-cta-buttons {
        justify-content: center;
        margin-top: 12px !important;
        gap: 10px !important;
    }
    .hero-cta-buttons .btn {
        padding: 5px 12px !important;
        font-size: 0.75rem !important;
    }
    .partner-title {
        font-size: 1.8rem;
    }
    /* Hide swiper arrow buttons on mobile screen widths */
    .trending-swiper-prev,
    .trending-swiper-next,
    .veg-swiper-prev,
    .veg-swiper-next,
    .video-swiper-prev,
    .video-swiper-next,
    .testimonials-swiper-prev,
    .testimonials-swiper-next {
        display: none !important;
    }
    /* Remove padding wrapper meant for arrow keys positioning */
    .trending-section .position-relative,
    .veg-section .position-relative,
    .videos-section .position-relative,
    .testimonials-section .position-relative {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Custom styling for mobile side-by-side product view */
@media (max-width: 575.98px) {
    .products-grid .col {
        padding-left: 6px;
        padding-right: 6px;
    }
    .trending-swiper,
    .veg-swiper {
        padding-left: 6px;
        padding-right: 6px;
    }
    .product-card {
        border-radius: 12px !important;
    }
    .product-info-wrapper {
        padding: 0.75rem !important;
    }
    .product-name {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    .price {
        font-size: 1.05rem;
    }
    .product-desc {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
        height: 32px;
    }
    .btn-view-details,
    .btn-add-to-cart,
    .btn-premium-cart {
        padding: 0.35rem 0.65rem !important;
        font-size: 0.75rem !important;
        border-radius: 6px !important;
    }
    .product-image-wrapper {
        border-radius: 12px 12px 0 0 !important;
    }
    .category-badge,
    .quantity-badge-overlay {
        top: 8px;
        left: 8px;
        font-size: 0.65rem;
        padding: 0.15rem 0.45rem !important;
    }
    .price-badge-overlay {
        top: 8px;
        right: 8px;
        font-size: 0.65rem;
        padding: 0.15rem 0.45rem !important;
    }

    /* Categories Mobile responsiveness */
    .category-card {
        height: 220px;
    }
    .category-name {
        font-size: 0.95rem;
        margin-bottom: 2px !important;
    }
    .category-desc {
        display: none !important;
    }

    /* Scales down the 3D package display mockups to fit small mobile screen bounds */
    .mockup-display-container {
        transform: scale(0.85);
        margin: -20px auto;
    }
}

/* Typing Cursor Animation & About Us Utilities */
.typing-cursor {
    font-weight: bold;
    color: var(--brand-red);
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.bg-light-blue {
    background-color: rgba(11, 26, 48, 0.08) !important;
}

.bg-light-yellow {
    background-color: rgba(255, 193, 7, 0.12) !important;
}

.tracking-wider {
    letter-spacing: 1.5px;
}

/* Inner Page Nav Solid State Rules */
.inner-page-nav .navbar {
    background-color: rgba(250, 246, 238, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}
.inner-page-nav .navbar .navbar-nav .nav-link {
    color: var(--dark-charcoal) !important;
    text-shadow: none !important;
}
.inner-page-nav .navbar .navbar-nav .nav-link:hover,
.inner-page-nav .navbar .navbar-nav .nav-link.active {
    color: var(--brand-red) !important;
}
.inner-page-nav .navbar .navbar-nav .nav-link::after {
    background-color: var(--brand-red) !important;
}
.inner-page-nav .navbar .brand-bengali {
    color: var(--brand-red) !important;
    text-shadow: none !important;
}
.inner-page-nav .navbar .brand-english {
    color: var(--dark-charcoal) !important;
    text-shadow: none !important;
}
.inner-page-nav .navbar .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.15) !important;
    background-color: transparent !important;
}
.inner-page-nav .navbar .navbar-toggler-icon {
    filter: none !important;
}

/* Inner Page Hero Headers Styling (About, Products, Gallery, Contact) */
.about-hero,
.products-hero,
.gallery-hero,
.contact-hero {
    background-color: var(--brand-red) !important;
    background-image: none !important;
    color: var(--white) !important;
    margin-top: 76px;
}

@media (max-width: 991.98px) {
    .hero-section,
    .about-hero,
    .products-hero,
    .gallery-hero,
    .contact-hero {
        margin-top: 0 !important;
    }
}

/* Scroll Reveal Fade Up Animations */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Background Food Vibe Icons */
.floating-vibe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    opacity: 0;
    font-size: 2rem;
    pointer-events: none;
    animation: drift 25s infinite linear;
}

@keyframes drift {
    0% {
        transform: translateY(105vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.14;
    }
    90% {
        opacity: 0.14;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) translateX(50px);
        opacity: 0;
    }
}

