body {
    font-family: 'AdorshoLipi', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header-wrapper {
    background-color: #fff;
}

/* Top Header Area */
.top-bar {
    padding: 12px 15px 12px 5px; /* Reduced left padding to push logo further left */
}

.brand-logo {
    height: 48px; /* Standard mobile height */
    width: auto;
    max-width: 180px;
}



/* Custom Gradient Buttons */
.btn-custom {
    background: linear-gradient(135deg, #43a047, #1b5e20); /* Deep green match */
    color: white !important;
    border: none;
    font-weight: 500;
    font-size: 11px; /* Set as standard design size */
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-custom:hover {
    background: linear-gradient(135deg, #1b5e20, #43a047);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(27, 94, 32, 0.2);
}

.action-menu {
    font-size: 28px;
    color: #1b5e20;
    cursor: pointer;
}

/* Scrollable Navigation Menu (Mobile focus) */
.nav-scroll-wrapper {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    overflow-x: auto;
    white-space: nowrap;
    /* Hide scrollbar for a clean look */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.nav-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.nav-scroll-list {
    margin: 0;
    padding: 0 10px;
    list-style: none;
    display: inline-flex;
}

.nav-scroll-list li a {
    display: block;
    padding: 12px 15px;
    color: #222;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-scroll-list li a:hover {
    color: #43a047;
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .top-bar {
        padding: 15px 40px 15px 20px;
    }
    .horizontal-menu-list {
        padding: 0 30px;
    }
    .header-search-bar {
        max-width: 500px !important;
    }
}
@media (min-width: 992px) {
    body {
        background-color: #e9ecef;
    }
    
    /* Fading Animated Backgrounds */
    .animated-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1; /* Placed behind the site wrapper */
        background-repeat: repeat;
        background-size: 400px; /* Size of pattern tiles */
        opacity: 0; /* Default invisible */
    }

    .bg-1 {
        background-image: url('../Asset/Bg/pattern.png');
        animation: crossFadeBg 20s infinite;
    }

    .bg-2 {
        background-image: url('../Asset/Bg/pattern2.png');
        animation: crossFadeBg 20s infinite;
        animation-delay: 10s; /* Start halfway through cycle */
    }

    @keyframes crossFadeBg {
        0%   { opacity: 1; }
        40%  { opacity: 1; }
        50%  { opacity: 0; }
        90%  { opacity: 0; }
        100% { opacity: 1; }
    }

    .desktop-site-wrapper {
        max-width: 900px;
        margin: 0 auto;
        background-color: #fff;
        min-height: 100vh;
        overflow: clip; /* Prevents horizontal scroll without breaking position: sticky */
        border-left: 5px solid #146c36;
        border-right: 5px solid #146c36;
        animation: rgbBorderPulse 4s infinite linear;
    }

    @keyframes rgbBorderPulse {
        0% {
            border-color: #146c36;
            box-shadow: -20px 0 35px -10px rgba(20, 108, 54, 0.8), 20px 0 35px -10px rgba(20, 108, 54, 0.8), inset 8px 0 15px -5px rgba(0,0,0,0.2), inset -8px 0 15px -5px rgba(0,0,0,0.2);
        }
        33% {
            border-color: #00ff88;
            box-shadow: -20px 0 35px -10px rgba(0, 255, 136, 0.8), 20px 0 35px -10px rgba(0, 255, 136, 0.8), inset 8px 0 15px -5px rgba(0,0,0,0.2), inset -8px 0 15px -5px rgba(0,0,0,0.2);
        }
        66% {
            border-color: #0084ff;
            box-shadow: -20px 0 35px -10px rgba(0, 132, 255, 0.8), 20px 0 35px -10px rgba(0, 132, 255, 0.8), inset 8px 0 15px -5px rgba(0,0,0,0.2), inset -8px 0 15px -5px rgba(0,0,0,0.2);
        }
        100% {
            border-color: #146c36;
            box-shadow: -20px 0 35px -10px rgba(20, 108, 54, 0.8), 20px 0 35px -10px rgba(20, 108, 54, 0.8), inset 8px 0 15px -5px rgba(0,0,0,0.2), inset -8px 0 15px -5px rgba(0,0,0,0.2);
        }
    }

    .horizontal-menu-wrapper {
        display: flex;
        justify-content: center; /* Desktop-এ মেনুগুলো মাঝ বরাবর থাকবে */
    }
    .stories-wrapper {
        justify-content: center;
    }
}

/* =========================================
   Banner Carousel Styles (Mobile Optimized)
   ========================================= */
.banner-carousel .carousel-item img {
    width: 100%;
    display: block;
}

@media (min-width: 992px) {
    .banner-carousel .carousel-item img {
        height: 400px; /* Limits height on desktop */
        /* Image will stretch to fit 100% width and 400px height as requested */
    }
}

/* =========================================
   Horizontal Scrolling Menu Styles
   ========================================= */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.horizontal-menu-wrapper {
    background: linear-gradient(135deg, #43a047, #1b5e20, #2e7d32, #1b5e20); /* Animated gradient colors */
    background-size: 300% 300%;
    animation: gradientFlow 6s ease infinite;
    border-radius: 0; /* Full width so no border radius */
    padding: 5px 0;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    
    /* Hide scrollbar for a neat look */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.horizontal-menu-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.horizontal-menu-list {
    list-style: none;
    margin: 0;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
}

.horizontal-menu-list li {
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.horizontal-menu-list li:last-child {
    border-right: none;
}

.horizontal-menu-list li a {
    display: block;
    padding: 8px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 11px; /* Reduced to ~10px equivalent as requested for a better look */
    font-weight: 500;
    transition: background 0.3s;
}

.horizontal-menu-list li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 4px;
}

/* Floating Category Badge */
.category-badge {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6a1b9a, #4a148c); /* Deep Purple */
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 6px 6px 0 0; /* Flat at the bottom, curved at the top */
    z-index: 10;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.15); /* Shadow on top only */
}

/* =========================================
   Product Grid Styles
   ========================================= */
.product-card {
    position: relative;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f0f0f0;
}

.product-details {
    padding: 6px;
}

.product-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 34px;
    line-height: 1.4;
}

.product-price {
    font-size: 11px;
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 6px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.btn-action {
    flex: 1;
    border: none;
    padding: 4px 0;
    font-size: 9px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.btn-cart {
    background: #f1f1f1;
    color: #333;
}
.btn-cart:hover {
    background: #e2e2e2;
}

.btn-buy {
    color: #fff;
    flex: 2;
}
.btn-buy:hover {
    filter: brightness(0.9);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 2;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Category Themes (Replaces Red) */
/* Green Theme (Health) */
.theme-green .btn-buy, .theme-green .product-badge {
    background: linear-gradient(135deg, #43a047, #1b5e20);
}
/* Purple Theme (Beauty) */
.theme-purple .btn-buy, .theme-purple .product-badge {
    background: linear-gradient(135deg, #ab47bc, #6a1b9a);
}
/* Blue Theme (Home & Gadget) */
.theme-blue .btn-buy, .theme-blue .product-badge {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
}
/* Orange Theme (Lighting) */
.theme-orange .btn-buy, .theme-orange .product-badge {
    background: linear-gradient(135deg, #ff9800, #e65100);
}
/* Cyan Theme (Smart Gadget) */
.theme-cyan .btn-buy, .theme-cyan .product-badge {
    background: linear-gradient(135deg, #00acc1, #006064);
}
/* Teal Theme (Home Appliance) */
.theme-teal .btn-buy, .theme-teal .product-badge {
    background: linear-gradient(135deg, #26a69a, #004d40);
}

/* =========================================
   Expandable Grid Styles
   ========================================= */
.product-grid-wrapper {
    overflow: hidden;
    max-height: 400px; /* Approximately 2 rows */
    transition: max-height 0.8s ease-in-out;
}

.product-grid-wrapper.expanded {
    max-height: 8000px; /* Increased to fit up to 30 products */
    padding-bottom: 30px; /* Add padding for the show less button */
}

.grid-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.product-grid-wrapper.expanded .grid-fade-overlay {
    opacity: 0;
}

.btn-see-more {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(255, 143, 0, 0.3);
}

.btn-see-more:hover {
    background: linear-gradient(135deg, #ff8f00, #ffb300);
    box-shadow: 0 6px 12px rgba(255, 143, 0, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

#seeMoreBtnContainer {
    margin-top: -35px !important;
    position: relative;
    z-index: 10;
}

/* =========================================
   Customer Stories (Shorts Style) Styles
   ========================================= */
.customer-stories-section .section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.stories-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 10px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.stories-wrapper::-webkit-scrollbar {
    display: none;
}

/* 2.5 items visible on mobile, fixed max-width on desktop */
.story-card {
    flex: 0 0 calc(40% - 6px); /* 40% gives 2.5 items visible on mobile */
    max-width: 200px; /* Limits size on desktop */
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.story-video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #333;
}

.story-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.story-card:hover .story-video-placeholder img {
    opacity: 0.9;
}

/* Animated Play Button */
@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
}

.story-video-placeholder .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
    animation: pulse-ring 2s infinite ease-in-out;
}

.story-card:hover .play-icon {
    color: #fff;
    animation: none;
    transform: translate(-50%, -50%) scale(1.2);
    transition: transform 0.3s;
}

.story-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: #fff;
    z-index: 3;
}

.story-info h6 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 2px;
}

.story-info p {
    font-size: 9px;
    margin-bottom: 0;
    opacity: 0.9;
}
/* =========================================
   Blog Section Styles
   ========================================= */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-content h6 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content .read-more {
    font-size: 11px;
    font-weight: 600;
    color: #1b5e20;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-content .read-more:hover {
    color: #43a047;
}

/* =========================================
   Footer Section Styles
   ========================================= */
.footer-section {
    background: linear-gradient(135deg, #0f3d17, #1b5e20, #0a290f);
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: 20px;
}

.footer-logo {
    max-height: 40px;
}

.footer-text {
    font-size: 11px;
    opacity: 0.8;
}

.footer-links a {
    display: block;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 5px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    margin-left: 8px;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: #43a047;
    transform: translateY(-2px);
}

.copyright {
    font-size: 10px;
    opacity: 0.7;
}

/* =========================================
   Bottom Navigation Menu (Mobile) Styles
   ========================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #43a047, #1b5e20, #2e7d32, #1b5e20); /* Deep green animated background */
    background-size: 300% 300%;
    animation: gradientFlow 6s ease infinite;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    border-top-left-radius: 15px;
    border-top: 1px solid #eee;
}

/* =========================================
   Single Product Page (Play Store Style)
   ========================================= */
.product-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1050;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.product-header-sticky.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-header-sticky.scrolled .btn-round-glass {
    background: rgba(20, 108, 54, 0.1);
    color: #146c36;
}

.btn-round-glass {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-video-cover {
    height: 45vh;
}

.video-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.product-app-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    object-fit: cover;
    background-color: #fff;
    border: 3px solid #fff;
    margin-top: -60px;
    position: relative;
    z-index: 15;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
    .product-app-icon {
        width: 140px;
        height: 140px;
        margin-top: -90px;
        border-radius: 30px;
        border-width: 4px;
    }
}

.product-main-gallery .carousel-item img {
    height: 40vh;
    object-fit: cover;
    background: #f8f9fa;
}

.play-indicators {
    bottom: -15px;
}

.play-indicators button {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50%;
    background-color: #146c36 !important;
    opacity: 0.5 !important;
}
.play-indicators button.active {
    opacity: 1 !important;
    transform: scale(1.5);
}

.product-content-body {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.play-product-title {
    font-size: 28px;
    font-weight: 800;
    color: #212529;
}

.play-product-brand {
    font-size: 15px;
    font-weight: 600;
}

.play-metrics-row {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}
.play-metrics-row::-webkit-scrollbar {
    display: none; /* Chrome */
}

.metric-item {
    min-width: 65px;
}
.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
}
.metric-label {
    font-size: 11px;
    color: #6c757d;
}
.metric-divider {
    width: 1px;
    height: 30px;
    background-color: #dee2e6;
}

.play-install-btn {
    font-size: 18px;
    padding: 10px 0;
}

.play-screenshots-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
}
.play-screenshots-wrapper::-webkit-scrollbar {
    display: none;
}
.play-screenshots img {
    height: 150px;
    width: auto;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.play-about-text {
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.play-about-text img {
    max-width: 100% !important;
    height: auto !important;
}
.play-about-text.expanded {
    max-height: 5000px;
    -webkit-mask-image: none;
    mask-image: none;
}

.rating-huge {
    min-width: 100px;
    text-align: center;
}

.play-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1050;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* =========================================
   Tutorial Overlay Styles
   ========================================= */
.tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none; /* Let clicks pass through to the page below */
}

.tutorial-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10001;
    pointer-events: auto; /* Allow the skip button to be clicked */
}

.tutorial-spotlight {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 0 15px 5px rgba(255,255,255,0.7), 0 0 0 9999px rgba(0,0,0,0.85);
    background-color: transparent;
    pointer-events: none; /* Allows clicks to pass through to the target button */
    transition: all 0.3s ease;
}

.tutorial-pointer {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-70%);
    margin-bottom: 5px;
    text-align: center;
    white-space: nowrap;
    animation: bounceTutorial 1.5s ease-in-out infinite;
}

.tutorial-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    margin-bottom: 5px;
}

.tutorial-arrow {
    margin-left: 20px;
}

.tutorial-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

@keyframes bounceTutorial {
    0%, 100% { transform: translate(-70%, 0); }
    50% { transform: translate(-70%, -10px); }
}

/* =========================================
   Quantity Selection Page
   ========================================= */
.qty-chip {
    padding: 8px 18px;
    border: 1.5px solid #dee2e6;
    border-radius: 50px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    user-select: none;
}
.qty-chip:hover {
    border-color: #146c36;
    color: #146c36;
    background-color: rgba(20, 108, 54, 0.05);
}
.qty-chip.active {
    background-color: #146c36;
    color: #fff;
    border-color: #146c36;
    box-shadow: 0 4px 10px rgba(20, 108, 54, 0.3);
}

.custom-qty-input {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    background: #fff;
}
.custom-qty-input .btn {
    width: 45px;
    background: #f8f9fa;
}
.custom-qty-input .btn:hover {
    background: #e9ecef;
}
.custom-qty-input input:focus {
    box-shadow: none;
    background-color: rgba(20, 108, 54, 0.05);
}

/* Commercial CSS Banner */
.promo-banner-css {
    background: linear-gradient(135deg, #146c36 0%, #1e9d50 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px;
}
.promo-icon-bg {
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-right: 20px;
    backdrop-filter: blur(5px);
    flex-shrink: 0;
}
.promo-content {
    position: relative;
    z-index: 2;
}
.promo-banner-css::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.bottom-nav .nav-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

.bottom-nav .nav-item:hover,
.bottom-nav .nav-item.active {
    color: #fff;
    transform: translateY(-2px);
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff3d00;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
    border: 1px solid #fff;
}

/* Ensure body has enough padding so footer isn't hidden behind bottom nav on mobile */
@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
}
/* =========================================
   FAQ Section Styles
   ========================================= */
.faq-section .section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.accordion-item {
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.accordion-button {
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    padding: 12px 15px;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-body {
    font-size: 12px;
    background-color: #f9f9f9;
    color: #555;
    padding: 12px 15px;
}

/* Green Theme */
.faq-item-green .accordion-button {
    background: linear-gradient(135deg, #1b5e20, #43a047);
}
.faq-item-green .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #43a047, #1b5e20);
}
.faq-item-green { border-bottom: 3px solid #1b5e20; }

/* Purple Theme */
.faq-item-purple .accordion-button {
    background: linear-gradient(135deg, #6a1b9a, #ab47bc);
}
.faq-item-purple .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ab47bc, #6a1b9a);
}
.faq-item-purple { border-bottom: 3px solid #6a1b9a; }

/* Blue Theme */
.faq-item-blue .accordion-button {
    background: linear-gradient(135deg, #0d47a1, #1e88e5);
}
.faq-item-blue .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
}
.faq-item-blue { border-bottom: 3px solid #0d47a1; }

/* Product Price Badge */
.price-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}
.badge-color-0 { background-color: #e11d48; color: #fff; }
.badge-color-1 { background-color: #2563eb; color: #fff; }
.badge-color-2 { background-color: #16a34a; color: #fff; }
.badge-color-3 { background-color: #d97706; color: #fff; }
.badge-color-4 { background-color: #9333ea; color: #fff; }
.badge-color-5 { background-color: #0891b2; color: #fff; }
.badge-color-6 { background-color: #be123c; color: #fff; }
.badge-color-7 { background-color: #0f766e; color: #fff; }
.badge-color-8 { background-color: #c026d3; color: #fff; }
.badge-color-9 { background-color: #b45309; color: #fff; }
