/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #FF8E2B; /* Orange */
    --text-dark: #111;
    --text-gray: #666;
    --bg-light: #Fcfcfc;
}

body {
    background-color: var(--bg-light);
    overflow-x: hidden; /* Prevents horizontal scrollbar */
}

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

/* --- Top Bar (Desktop) --- */
.top-bar {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
}

.top-bar i {
    margin-right: 6px;
}

.contact-info span {
    margin-right: 25px;
}

/* --- Header / Navbar --- */
.header-area {
    position: relative;
    z-index: 100;
}

.navbar {
    background: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Desktop Menu Layout */
.desktop-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
    margin-left: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

/* Actions (Search + Icons) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    background: #F2F2F2;
    border-radius: 30px;
    padding: 4px 6px 4px 15px;
    display: flex;
    align-items: center;
    width: 220px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    width: 100%;
}

.search-box button {
    background: #000;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-actions a {
    color: var(--text-dark);
    font-size: 18px;
    margin-left: 10px;
    position: relative;
    transition: 0.3s;
}

.user-actions a:hover {
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Menu Elements --- */
.mobile-toggler {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: #fff;
    position: absolute;
    top: 85px;
    left: 20px;
    right: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 25px;
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin-bottom: 25px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    display: block;
}

.mobile-actions .search-box {
    width: 100%;
    margin-bottom: 25px;
    background: #f9f9f9;
}

.mobile-icons {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.mobile-icons a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}



/* Wishlist Icon */
.wishlist-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary); /* কমলা রঙের হার্ট */
    transition: transform 0.2s;
    padding: 0;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .featured-section {
        padding: 50px 0;
    }

    .section-title-center h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .product-grid {
        gap: 15px; /* মোবাইলে গ্যাপ কম */
    }

    .product-card {
        /* --- MOBILE CALCULATION (2 Items per row) --- */
        /* সূত্র: (Total Width - 1 Gap) / 2 items */
        width: calc((100% - 15px) / 2);
    }

    /* Mobile Image Height Reduced */
    .product-image {
        height: 140px; /* মোবাইলে হাইট আরও কমানো হয়েছে */
    }
    
    .p-text h3 {
        font-size: 14px;
    }
    
    .price {
        font-size: 14px;
    }
}

/* --- Rating Styles --- */
.rating {
    color: #FFC107; /* গোল্ডেন/হলুদ কালার */
    font-size: 12px; /* স্টার সাইজ */
    margin-bottom: 5px; /* টাইটেল থেকে একটু দূরত্ব */
    display: flex;
    gap: 2px; /* স্টারগুলোর মাঝখানের গ্যাপ */
}

/* Optional: To ensure the title looks good below rating */
.p-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 2px; /* রেটিং এর সাথে একটু স্পেস ব্যালেন্স */
}


/* --- Info / Smarter Way Section --- */
.info-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden; /* ব্লব বা কনটেন্ট বাইরে বেরিয়ে গেলে তা হাইড করার জন্য */
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- Left Side: Image Masking --- */
.info-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center; /* ব্লব সেন্টারে রাখার জন্য */
    align-items: center;
}

/* The Orange Blob (Acts as the Mask) */
.info-blob {
    position: relative;
    width: 450px;
    height: 450px;
    background-color: var(--primary); /* Orange Color */
    
    /* অর্গানিক শেপ তৈরি */
    border-radius: 47% 53% 60% 40% / 30% 48% 52% 70%;
    
    /* এটি ইমেজকে শেপের ভেতরে মাস্ক করবে */
    overflow: hidden; 
    
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Image (Inside the Blob) */
.info-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ইমেজ শেপের পুরো জায়গা জুড়ে থাকবে */
    transition: transform 0.5s ease;
}

/* Optional: Hover effect on image */
.info-blob:hover .info-img {
    transform: scale(1.05);
}

/* --- Right Side: Content --- */
.info-content {
    flex: 1;
    padding-left: 20px;
}

.info-content .sub-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.info-content h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.info-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Black Button Style */
.btn-black {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-black:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .info-section {
        padding: 60px 0;
    }

    .info-container {
        flex-direction: column; /* ইমেজ উপরে, টেক্সট নিচে */
        text-align: center;
        gap: 50px;
    }

    .info-image-wrapper {
        width: 100%;
    }

    /* মোবাইলে ব্লব সাইজ ছোট */
    .info-blob {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .info-content {
        padding-left: 0;
    }

    .info-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .info-content p {
        margin: 0 auto 30px auto;
        font-size: 14px;
    }
}

/* --- Best Selling Section --- */
.best-selling-section {
    padding: 80px 0;
    background-color: #fff; /* সাদা ব্যাকগ্রাউন্ড */
}

/* মোবাইল রেসপন্সিভ এডজাস্টমেন্ট */
@media (max-width: 991px) {
    .best-selling-section {
        padding: 50px 0;
    }
}


/* --- Shop By Pet Section --- */
.shop-by-pet-section {
    padding: 80px 0;
    background-color: #fff; /* সাদা ব্যাকগ্রাউন্ড */
}

/* Slider Container */
.pet-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px; /* শ্যাডোর জন্য স্পেস */
    
    /* Scrollbar লুকানো */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pet-grid::-webkit-scrollbar {
    display: none;
}

/* Pet Card Style */
.pet-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px; /* প্রতিটি কার্ডের ন্যূনতম প্রস্থ */
    transition: transform 0.3s;
}

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

/* The Organic Blob Shape */
.pet-blob {
    width: 160px;
    height: 160px;
    background-color: #F8F9FA; /* ডিফল্ট হালকা ছাই রঙ */
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; /* অর্গানিক শেপ */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Image inside Blob */
.pet-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply; /* ব্যাকগ্রাউন্ডের সাথে ব্লেন্ড হওয়ার জন্য */
    opacity: 0.8;
    transition: 0.3s;
}

/* Text Style */
.pet-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- Hover & Active States --- */
/* কার্ডে হোভার করলে অথবা যদি 'active-blob' ক্লাস থাকে */
.pet-card:hover .pet-blob,
.active-blob {
    background-color: var(--primary); /* কমলা রঙ */
    border-radius: 58% 42% 30% 70% / 55% 55% 45% 45%; /* শেপ একটু পরিবর্তন হবে */
}

.pet-card:hover .pet-blob img,
.active-blob img {
    opacity: 1;
    transform: scale(1.1); /* হালকা জুম */
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .shop-by-pet-section {
        padding: 50px 0;
    }
    
    .pet-grid {
        gap: 20px;
    }

    .pet-card {
        min-width: 130px; /* মোবাইলে কার্ড একটু ছোট */
    }

    .pet-blob {
        width: 130px;
        height: 130px;
    }
    
    .pet-card h3 {
        font-size: 16px;
    }
}


/* --- Shop Page Header Wrapper --- */
/* এটি পুরো হেডার সেকশনের ব্যাকগ্রাউন্ড এবং স্টাইল নিয়ন্ত্রণ করে */
.shop-header-wrapper {
    background-color: #F8F9FA; /* খুব হালকা ছাই রঙ (হোম পেজের ব্যাকগ্রাউন্ডের মতো) */
    padding-bottom: 60px; /* নিচের দিকে স্পেস */
    position: relative;
    border-radius: 0 0 50px 50px; /* নিচে রাউন্ড শেপ */
    overflow: hidden;
}

/* --- Top Bar Styling (Same as Home) --- */
.top-bar {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-dark);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar i {
    margin-right: 5px;
}

.contact-info span {
    margin-right: 20px;
}

/* --- Navbar Styling (Floating Pill Shape) --- */
.navbar-area {
    margin-top: 0px;
    position: relative;
    z-index: 100;
}

.navbar {
    background: #fff;
    padding: 12px 30px;
    border-radius: 50px; /* Pill Shape */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft Shadow */
}

/* Active Menu Style (For 'Shop') */
.nav-links a.active {
    color: var(--primary); /* Orange Color */
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
}

/* --- Shop Hero Content (Title Area) --- */
.shop-hero-content {
    padding-top: 120px; 
    padding-bottom: 80px; /* নিচের দিকেও একটু স্পেস দেওয়া হলো */
    text-align: center;
    position: relative;
}

.shop-title-box h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--text-gray);
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: #ccc;
    font-size: 12px;
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* --- Decorative Blobs (To match Home Page vibe) --- */
.shop-blob-left {
    position: absolute;
    top: 50%;
    left: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 142, 43, 0.08); /* খুবই হালকা অরেঞ্জ */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.shop-blob-right {
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 142, 43, 0.1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .shop-header-wrapper {
        border-radius: 0 0 30px 30px;
    }
    
    .navbar {
        border-radius: 20px;
    }
    
    .shop-title-box h1 {
        font-size: 36px;
    }
}




/* =========================================
   SHOP PAGE MAIN CONTENT STYLES
   ========================================= */
.section-padding {
    padding: 80px 0;
}

/* Main Layout: Sidebar + Content */
.shop-layout-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* --- LEFT SIDEBAR STYLES --- */
.shop-sidebar {
    flex: 0 0 280px;
    width: 280px;
}

/* Mobile Toggle Button (Hidden on Desktop) */
.mobile-filter-btn {
    display: none;
    margin-bottom: 20px;
}

.mobile-filter-btn button {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

/* Mobile Sidebar Header (Hidden on Desktop) */
.sidebar-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-header-mobile h3 {
    font-size: 20px;
    margin: 0;
}

.sidebar-header-mobile button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Widgets Styling */
.sidebar-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Category & Brand Lists */
.category-widget ul, .brand-widget ul {
    list-style: none;
}

.category-widget ul li, .brand-widget ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-widget input[type="checkbox"] {
    accent-color: var(--primary);
    margin-right: 10px;
    transform: scale(1.1);
    cursor: pointer;
}

.sidebar-widget label {
    font-size: 15px;
    color: var(--text-gray);
    cursor: pointer;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

.sidebar-widget label span {
    color: #aaa;
    font-size: 13px;
}

/* Price Slider */
.price-slider-box {
    padding: 10px 0 20px 0;
}

.price-range-bar {
    height: 6px;
    background: #eee;
    border-radius: 5px;
    position: relative;
}

.range-fill {
    position: absolute;
    height: 100%;
    left: 20%;
    right: 30%;
    background: var(--primary);
    border-radius: 5px;
}

.range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.min-thumb { left: 20%; }
.max-thumb { right: 30%; }

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.filter-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.filter-btn:hover { background: #e67e22; }

/* Tags */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 13px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 30px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.tag-list a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Popular Products */
.pop-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pop-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
}

.pop-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pop-content span {
    color: var(--primary);
    font-weight: 700;
}

/* --- RIGHT MAIN CONTENT --- */
.shop-main-content {
    flex: 1;
}

.shop-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.result-count {
    color: var(--text-gray);
    font-size: 15px;
}

.orderby {
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 30px;
    color: var(--text-gray);
    outline: none;
    cursor: pointer;
}

/* Product Grid (3 Columns Desktop) */
.shop-product-grid-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-bottom: 50px;
}

/* Product Card */
.shop-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.shop-product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.shop-p-image {
    height: 250px;
    background: #F4F4F4;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-p-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.wishlist-icon:hover {
    color: var(--primary);
}

.shop-p-content {
    padding: 20px;
    text-align: left;
}

.shop-p-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.shop-p-content .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

/* Pagination */
.shop-pagination ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; 
    gap: 10px;
}

.shop-pagination a {
    text-decoration: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 600;
    transition: 0.3s;
}

.shop-pagination a.active, 
.shop-pagination a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.shop-pagination .next-btn {
    width: auto;
    padding: 0 25px;
    border-radius: 30px;
    gap: 8px;
}


/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .shop-layout-flex {
        flex-direction: column; 
        gap: 20px;
    }
    
    /* Show Filter Button */
    .mobile-filter-btn {
        display: block;
    }

    /* Sidebar: Hidden by default (Off-Canvas) */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px; /* Hide outside */
        width: 300px;
        height: 100%;
        background: #fff;
        z-index: 999;
        padding: 30px;
        overflow-y: auto;
        transition: 0.3s ease-in-out;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        flex: none;
    }

    .shop-sidebar.active {
        left: 0; /* Show */
    }

    .sidebar-header-mobile {
        display: flex;
    }

    /* Product Grid: 2 Columns on Mobile */
    .shop-product-grid-area {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }

    .shop-p-image {
        height: 180px;
    }

    .shop-p-content {
        padding: 15px;
    }

    .shop-top-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .shop-pagination ul {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* Small Phone: Can keep 2 columns or go 1 */
    .shop-product-grid-area {
        grid-template-columns: repeat(2, 1fr); /* 2 columns maintained as requested */
    }
}

/* =========================================
   ABOUT PAGE HEADER STYLES
   ========================================= */

/* Wrapper similar to Shop page */
.about-header-wrapper {
    background-color: #F8F9FA; /* Light gray background */
    padding-bottom: 60px;
    position: relative;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

/* About Hero Content */
.about-hero-content {
    padding-top: 120px;
    text-align: center;
    position: relative;
}

.about-title-box h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Decorative Blobs for About Page */
.about-blob-left {
    position: absolute;
    top: 40%;
    left: -60px;
    width: 220px;
    height: 220px;
    background-color: rgba(255, 142, 43, 0.08); /* Very light orange */
    border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.about-blob-right {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 142, 43, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

/* Responsive Fixes for About Page */
@media (max-width: 991px) {
    .about-header-wrapper {
        border-radius: 0 0 30px 30px;
    }
    
    .about-title-box h1 {
        font-size: 36px;
    }
}

/* =========================================
   ABOUT OUR STORE SECTION STYLES (UPDATED)
   ========================================= */
.section-padding {
    padding: 80px 0;
}

.about-store-flex {
    display: flex;
    gap: 60px;
    align-items: stretch; /* দুটি কলামের হাইট সমান রাখার জন্য */
}

/* Left & Right Columns */
.about-store-left,
.about-store-right {
    flex: 1;
    display: flex;          /* কলামের ভেতরেও ফ্লেক্স ব্যবহার করা হলো */
    flex-direction: column; /* উপর থেকে নিচে সাজানোর জন্য */
}

/* Right Column Adjustment */
.about-store-right {
    /* বাম পাশের টাইটেলের (H2) সমান জায়গা উপরে ছেড়ে দেওয়া হলো */
    /* যাতে দুই পাশের প্যারাগ্রাফ একই লেভেলে শুরু হয় */
    padding-top: 65px; 
}

/* Title Style */
.about-store-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Paragraph Style */
.about-store-flex p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Stats Flex Container */
.about-stats-flex {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    
    /* এটিই মেইন ফিক্স: */
    /* উপরের প্যারাগ্রাফ যত বড় বা ছোটই হোক, এটি স্ট্যাটসকে ধাক্কা দিয়ে নিচে সমান লাইনে রাখবে */
    margin-top: auto; 
}

/* Stat Box Style */
.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .about-store-flex {
        flex-direction: column;
        gap: 40px;
    }

    /* মোবাইলে ডান পাশের প্যাডিং দরকার নেই, কারণ এটি নিচে চলে যাবে */
    .about-store-right {
        padding-top: 0;
    }

    .about-store-left h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-store-flex p {
        margin-bottom: 30px;
    }

    .about-stats-flex {
        max-width: 100%;
        gap: 30px;
        justify-content: flex-start;
        margin-top: 0; /* মোবাইলে অটো মার্জিন দরকার নেই */
    }
}

@media (max-width: 576px) {
    .about-stats-flex {
        flex-wrap: wrap; 
        gap: 30px 60px;
    }
    
    .stat-box {
        min-width: 120px;
    }
}


/* =========================================
   FOUNDER INFO SECTION STYLES
   ========================================= */
.founder-section {
    background-color: #fff;
}

.founder-flex {
    display: flex;
    align-items: center;
    gap: 80px; /* ছবি এবং টেক্সটের মাঝখানের গ্যাপ */
}

/* Founder Image Styling (Height Fixed) */
.founder-img-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 20px; /* রাউন্ডেড কর্নার */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* হালকা শ্যাডো */
    
    /* হাইট ফিক্সড করা হলো যাতে বেশি লম্বা না হয় */
    height: 400px; 
    
    display: flex; /* ইমেজ ফিট করার জন্য */
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    
    /* ইমেজটি বক্সের মাপে সুন্দরভাবে কেটে (Crop) বসবে */
    object-fit: cover; 
    
    /* ইমেজের ফোকাস উপরের দিকে (চেহারার দিকে) রাখবে */
    object-position: top; 
}

/* Founder Content Styling */
.founder-content {
    flex: 1;
}

.founder-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.founder-content .designation {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 30px;
}

/* Italic Text Style (As per image) */
.founder-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic; /* প্যারাগ্রাফ ইটালিক করা হয়েছে */
    margin-bottom: 20px;
}

/* Signature Styling */
.signature-box {
    margin-top: 30px;
}

.signature-box img {
    height: 60px; /* সিগনেচারের হাইট */
    width: auto;
    opacity: 0.8;
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .founder-flex {
        flex-direction: column; /* মোবাইলে নিচে নিচে থাকবে */
        gap: 40px;
        text-align: center; /* সবকিছু মাঝখানে থাকবে */
    }

    .founder-img-wrapper {
        height: 300px; /* মোবাইলে ইমেজের হাইট কমানো হয়েছে */
        width: 100%;
    }

    .founder-content h2 {
        font-size: 32px;
    }

    .founder-content .designation {
        margin-bottom: 20px;
    }

    .signature-box {
        display: flex;
        justify-content: center; /* সিগনেচার মাঝখানে আনার জন্য */
    }
}

/* =========================================
   OUR TEAM SECTION STYLES (UPDATED)
   ========================================= */
.team-section {
    padding: 80px 0;
    background-color: #EAEAEA;
}

.team-section .section-title-center {
    margin-bottom: 50px;
}

.team-section .section-title-center h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
}

/* Team Grid Layout (Desktop: 4 Columns) */
.team-grid {
    display: grid;
    /* আগে ৩ ছিল, এখন ৪ করা হলো */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

/* Team Card Styling */
.team-card {
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Image Wrapper */
.team-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Team Text Info */
.team-info h3 {
    font-size: 18px; /* ফন্ট সাইজ সামান্য কমানো হলো যাতে ৪ জনের নাম এক লাইনে ধরে */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-info .role {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        /* মোবাইলে ২ কলাম (১ লাইনে ২ জন) */
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; /* গ্যাপ কমানো হলো যাতে ছোট স্ক্রিনে ধরে */
        max-width: 100%; 
    }

    /* মোবাইলের জন্য কার্ডের স্টাইল এডজাস্টমেন্ট */
    .team-image {
        border-radius: 15px;
        margin-bottom: 10px;
    }
    
    .team-info h3 {
        font-size: 16px; /* মোবাইলে ফন্ট ছোট */
    }
    
    .team-info .role {
        font-size: 13px;
    }
}


/* =========================================
   TESTIMONIAL SECTION STYLES
   ========================================= */
.testimonial-section {
    background-color: #fff;
    overflow: hidden; /* For blob styling */
}

.testimonial-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Content Styling */
.testimonial-content {
    flex: 1;
}

.sub-title {
    color: var(--primary); /* Orange color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.testimonial-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.rating-stars {
    color: #FFC107; /* Amber/Gold color for stars */
    font-size: 18px;
    margin-bottom: 25px;
}

/* Slider Styling */
.testimonial-slider-wrapper {
    position: relative;
    min-height: 220px; /* To prevent layout shift */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.testimonial-slide.active-slide {
    opacity: 1;
    visibility: visible;
    position: relative; /* Active slide takes up space */
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic; /* Italic style as per image */
    margin-bottom: 30px;
}

.author-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info .role {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Arrows Styling */
.testimonial-arrows {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--text-dark); /* Black background */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background-color: var(--primary); /* Orange on hover */
}

/* Right Image Styling with Blob */
.testimonial-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-blob {
    width: 450px;
    height: 450px;
    background-color: var(--primary); /* Orange blob color */
    /* Organic blob shape */
    border-radius: 48% 52% 63% 37% / 39% 45% 55% 61%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Optional: Add background pattern overlay to blob if desired */
/* .testimonial-blob::before { ... } */

.testimonial-blob img {
    width: 85%; /* Image slightly smaller than blob */
    height: 85%;
    object-fit: cover;
    border-radius: 50%; /* Makes the image itself round */
    border: 5px solid rgba(255,255,255,0.2); /* Optional border effect */
}


/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .testimonial-flex {
        flex-direction: column-reverse; /* Image on top, text below */
        gap: 40px;
        text-align: center;
    }

    .testimonial-content h2 {
        font-size: 32px;
    }

    .rating-stars {
        justify-content: center;
        display: flex;
    }

    .testimonial-arrows {
        justify-content: center; /* Center arrows */
    }

    .testimonial-blob {
        width: 320px;
        height: 320px;
    }
}


/* =========================================
   VIDEO SECTION STYLES
   ========================================= */
.video-section {
    padding: 100px 0;
    background-color: #EAEAEA; /* ইমেজের মতো হালকা ছাই ব্যাকগ্রাউন্ড */
}

/* Video Wrapper Styling */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* ভিডিও এরিয়া খুব বেশি বড় না হওয়ার জন্য */
    margin: 0 auto;
    border-radius: 30px; /* রাউন্ডেড কর্নার */
    overflow: hidden;
    aspect-ratio: 16 / 9; /* ভিডিওর স্ট্যান্ডার্ড রেশিও */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* সুন্দর শ্যাডো */
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

/* Hover Effect on Image */
.video-wrapper:hover img {
    transform: scale(1.05); /* মাউস নিলে হালকা জুম হবে */
}

/* Play Button Styling */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--primary); /* অরেঞ্জ কালার */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* পালস বা গ্লো ইফেক্ট */
    box-shadow: 0 0 0 10px rgba(255, 142, 43, 0.3);
}

.play-btn:hover {
    background-color: #e67e22;
    transform: translate(-50%, -50%) scale(1.1); /* হোভার করলে বাটন বড় হবে */
    box-shadow: 0 0 0 15px rgba(255, 142, 43, 0.4);
}

.play-btn i {
    margin-left: 5px; /* আইকনটি সেন্টারে ঠিক করার জন্য */
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
        box-shadow: 0 0 0 5px rgba(255, 142, 43, 0.3);
    }
}

/* =========================================
   INSTAGRAM SECTION STYLES
   ========================================= */
.instagram-section {
    background-color: #fff; /* সাদা ব্যাকগ্রাউন্ড */
}

.instagram-section .section-title-center {
    margin-bottom: 50px;
}

/* Grid Layout */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ৪টি কলাম */
    gap: 30px;
}

/* Instagram Item Styling */
.insta-item {
    display: block;
    position: relative;
    border-radius: 20px; /* ইমেজের মতো রাউন্ডেড কর্নার */
    overflow: hidden;
    aspect-ratio: 1 / 1; /* পারফেক্ট স্কয়ার শেপ */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect (Zoom Image) */
.insta-item:hover img {
    transform: scale(1.1);
}

/* Overlay with Icon */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* কালো ট্রান্সপারেন্ট শেড */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* শুরুতে লুকানো থাকবে */
    transition: opacity 0.3s ease;
}

.insta-overlay i {
    font-size: 40px;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Show Overlay on Hover */
.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-overlay i {
    transform: translateY(0);
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .instagram-grid {
        /* মোবাইলে ২ কলাম (১ লাইনে ২টি করে ছবি) */
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }

    .instagram-section .section-title-center {
        margin-bottom: 30px;
    }
}


/* =========================================
   CONTACT PAGE HEADER STYLES
   ========================================= */

/* Wrapper Style (Consistent with other pages) */
.contact-header-wrapper {
    background-color: #F8F9FA; /* Light gray background */
    padding-bottom: 60px;
    position: relative;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

/* Contact Hero Content */
.contact-hero-content {
    padding-top: 60px;
    text-align: center;
    position: relative;
}

.contact-title-box h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Decorative Blobs for Contact Page */
.contact-blob-left {
    position: absolute;
    top: 30%;
    left: -40px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 142, 43, 0.08); /* Light Orange */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
}

.contact-blob-right {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 142, 43, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .contact-header-wrapper {
        border-radius: 0 0 30px 30px;
    }
    
    .contact-title-box h1 {
        font-size: 36px;
    }
}





/* =========================================
   CONTACT MAIN SECTION (FORM + INFO)
   ========================================= */
.contact-main-section {
    background-color: #fff;
}

.contact-flex {
    display: flex;
    gap: 80px; /* Space between form and text */
    align-items: flex-start;
}

/* --- Left: Contact Form Styling --- */
.contact-form-card {
    flex: 1;
    background-color: #F8F9FA; /* Light gray background like image */
    padding: 40px;
    border-radius: 20px; /* Rounded corners */
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #fff; /* Border blends with bg or invisible */
    background-color: #fff; /* White inputs */
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: 0.3s;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* General Form Focus Remove */
.form-group input:focus,
.form-group textarea:focus {
    outline: none !important;
    /* শ্যাডো রিমুভ করা হলো */
    box-shadow: none !important; 
    /* বর্ডার কালার যাতে চেঞ্জ না হয় বা ডিফল্ট থাকে */
    border-color: #ddd !important; 
}

.send-btn {
    background-color: var(--primary); /* Orange */
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%; /* Full width on mobile, optional on desktop */
    max-width: 200px;
}

.send-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

/* --- Right: Contact Info Styling --- */
.contact-info-content {
    flex: 1;
    padding-top: 20px; /* Align visually with form title */
}

.contact-info-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Icon List */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary); /* Orange Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0; /* আইকন চ্যাপ্টা হবে না */
}

.detail-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .contact-flex {
        flex-direction: column;
        gap: 50px;
    }

    .contact-form-card {
        width: 100%;
        padding: 25px;
    }

    .form-row {
        flex-direction: column; /* নামের ফিল্ডগুলো নিচে নিচে */
        gap: 0;
    }
    
    .contact-info-content h2 {
        font-size: 28px;
    }
    
    .detail-text {
        font-size: 16px;
    }
}


/* =========================================
   MAP SECTION STYLES
   ========================================= */
.map-section {
    padding-bottom: 100px; /* নিচের দিকে একটু বেশি স্পেস */
}

.map-wrapper {
    width: 100%;
    height: 450px; /* ম্যাপের হাইট */
    border-radius: 30px; /* ইমেজের মতো রাউন্ডেড কর্নার */
    overflow: hidden; /* কর্নারগুলো যাতে ঠিক থাকে */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* সুন্দর শ্যাডো */
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* ম্যাপের ডিফল্ট কালার স্কিম পরিবর্তন করা সম্ভব নয় আইফ্রেম দিয়ে, 
       তবে আপনি চাইলে সিএসএস ফিল্টার দিয়ে একটু স্টাইল করতে পারেন */
    /* filter: grayscale(20%) contrast(1.1); */
}

/* =========================================
   MOBILE RESPONSIVE (Max-width: 991px)
   ========================================= */
@media (max-width: 991px) {
    .map-section {
        padding-bottom: 60px;
    }

    .map-wrapper {
        height: 350px; /* মোবাইলে হাইট একটু কমানো */
        border-radius: 20px;
    }
}


/* --- CSS ভ্যারিয়েবলস --- */
:root {
    --primary-color: #f37321;
    --secondary-color: #5f27cd;
    --text-color-light: #ffffff;
    --text-color-dark: #333;
    --text-color-logo: #222;
    --text-color-medium: #555;
    --color-white: #ffffff;
    --color-light-bg: #f4f4f4;
    --color-light-hover: #f5f5f5;
    --color-border: #ddd;
    --shadow-main-nav: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-dropdown: 0 4px 10px rgba(0, 0, 0, 0.1);
    --font-primary: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-secondary: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- বেসিক রিসেট --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.5;
    background-color: #f9f9f9;
}

/* --- টপ হেডার স্টাইল --- */
/* --- টপ হেডার স্টাইল --- */
.top-header {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 102; /* <-- PROBLEM SOLVED! (100 theke 102 kora holo) */
}
.header-left,
.header-center,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.header-center { justify-content: center; }
.header-right { justify-content: flex-end; }
.header-left a {
    color: var(--text-color-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-left a:hover { text-decoration: underline; }
.promo-badge {
    background-color: var(--primary-color);
    padding: 2px 7px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
    margin: 3px
}
.promo-text { font-weight: bold; }
.header-right { gap: 25px; }
.header-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.fa-solid { font-size: 20px; }
.fa-truck-fast { font-size: 16px; }

/* --- ড্রপডাউন স্টাইল --- */
.header-option-wrapper { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-white);
    color: var(--text-color-dark);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    min-width: 120px;
    list-style: none;
    z-index: 110;
    margin-top: 8px;
    box-shadow: var(--shadow-dropdown);
}
.dropdown-menu.active { display: block; }
.dropdown-menu li { border-bottom: 1px solid var(--color-border); }
.dropdown-menu li:last-child { border-bottom: none; }
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-color-dark);
}
.dropdown-menu li a:hover { background-color: var(--color-light-hover); }

/* --- মেইন নেভিগেশন স্টাইল --- */
.main-nav-container {
    position: relative;
    padding: 20px 30px;
    z-index: 100;
    margin-bottom: -114px; 
    background: transparent;
    padding-bottom: 0;
}
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-main-nav);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color-logo);
}
.nav-logo i { color: var(--primary-color); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-bar { position: relative; }
.search-bar input {
    border: none;
    background-color: var(--color-light-bg);
    border-radius: 20px;
    padding: 10px 40px 10px 20px;
    font-size: 14px;
    outline: none;
}
.search-bar button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-color-medium);
}
.nav-icon {
    position: relative;
    font-size: 20px;
    color: var(--text-color-dark);
    text-decoration: none;
}
.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* --- মেগা মেন্যু স্টাইল --- */
.has-megamenu {
    position: static;
}
.mega-menu {
    display: none;
    position: absolute;
    top: 55px; 
    padding-top: 40px; 
    left: 50%;
    transform: translateX(-50%);
    width: 1140px;
    max-width: 90vw;
    background-color: var(--color-white);
    box-shadow: var(--shadow-main-nav);
    border-radius: 20px;
    z-index: 101;
    overflow: hidden;
}

@media (min-width: 993px) {
    .has-megamenu:hover .mega-menu {
        display: block;
    }
}
.mega-menu-content {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    gap: 30px;
}
.mega-menu-column { flex: 1; }
.mega-menu-column .column-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color-logo);
    text-decoration: none;
    margin-bottom: 15px;
}
.mega-menu-column .column-title:hover { color: var(--primary-color); }
.mega-menu-column .mt-20 { margin-top: 20px; }
.mega-menu-column ul { list-style: none; }
.mega-menu-column ul li a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: var(--text-color-medium);
    font-size: 14px;
    font-weight: 500;
}
.mega-menu-column ul li a:hover { color: var(--primary-color); }
.mega-menu-footer {
    border-top: 1px solid var(--color-border);
    background-color: var(--color-light-hover);
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.mega-menu-footer a {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 15px;
}
.mega-menu-footer a:hover { text-decoration: underline; }


/* --- হিরো সেকশন স্টাইল --- */
.hero-section {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 1; /* নেভিগেশনের নিচে */
}
.hero-slider {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
}

/* Swiper Pagination & Navigation */
.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-white);
    opacity: 0.7;
}
.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 20px;
    font-weight: 900;
}


/* --- মোবাইল মেন্যু বাটন --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color-logo);
    cursor: pointer;
}

/* --- মোবাইল মেন্যু প্যানেল --- */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: var(--color-white);
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}
.mobile-nav-menu.active {
    transform: translateX(0);
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1000;
}
.overlay.active {
    display: block;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-color-dark);
    cursor: pointer;
}
.mobile-search {
    margin: 20px 0;
}
.mobile-search input {
    width: 100%;
}
.mobile-nav-links { list-style: none; }
.mobile-nav-links li {
    border-bottom: 1px solid var(--color-light-hover);
}
.mobile-nav-links li a {
    display: block;
    padding: 15px 5px;
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 500;
}
.mobile-nav-links .has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    background-color: var(--color-light-hover);
    display: none;
}
.mobile-submenu.active {
    display: block;
}
.mobile-submenu li { border: none; }
.mobile-submenu li a { padding: 10px 5px; font-size: 14px; }
.mobile-submenu .mobile-submenu {
    padding-left: 15px;
    background-color: var(--color-white);
}
.mobile-submenu .mobile-submenu li a {
    font-size: 13px;
    color: var(--text-color-medium);
}
.mobile-top-options {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}
.mobile-top-options a {
    display: block;
    color: var(--text-color-medium);
    text-decoration: none;
    margin-bottom: 15px;
}
.mobile-lang-currency {
    display: flex;
    gap: 10px;
}
.mobile-lang-currency select {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
}

@media (max-width: 992px) {
    /* টপ হেডার (UPDATED) */
    .top-header {
        flex-direction: row; 
        justify-content: space-between; 
        padding: 10px 20px; 
        gap: 15px;
        flex-wrap: nowrap; /* Jate wrap na kore */
    }
    .header-left, .header-right {
        width: auto; 
        justify-content: flex-start;
        flex: none; /* <-- SHOMADHAN: Eti add korun */
    }
    .header-right {
        justify-content: flex-end; 
    }
    .header-center { 
        display: none; 
    }
    .promo-text { display: none; } 
    
    /* --- Main Navigation (baki code jemon chilo) --- */
    .main-nav-container { 
        padding: 15px; 
        margin-bottom: 0;
        background-color: var(--color-white);
    }
    .main-navigation { 
        border-radius: 20px; 
        box-shadow: none; 
    }
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .mobile-menu-toggle { display: block; }
    .mega-menu { display: none !important; }

    /* --- Hero Section (baki code jemon chilo) --- */
    .hero-section { height: 450px; }
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}
@media (max-width: 992px) {
    /* ... other styles ... */
    
    /* Main navigation is flex with space-between by default (desktop style still applies), 
       leaving space between .nav-logo and .mobile-menu-toggle. 
       We make the logo section expand and center its content. */
    .main-navigation .nav-logo {
        flex-grow: 1;       /* Take up available space for centering */
        text-align: center; /* Center the logo image/text */
    }
    .main-navigation .nav-logo img {
        margin: 0 auto;
        display: inline-block; /* Ensure image centers within the text-align: center */
    }
    
    /* ... other styles ... */
}


@media (max-width: 480px) {
    /* টপ হেডার */
.top-header {
         padding: 10px 15px;
         gap: 10px;
    }
    .header-left a {
        font-size: 13px; /* Font size ektu komano */
        gap: 5px;
    }
    .header-right {
        gap: 15px; /* Dropdown-er moddhe gap komano */
    }
    .header-option {
        gap: 4px;
        font-size: 13px;
    }
    
html, body {
         overflow-x: hidden; 
    }
    
 
   /* মেইন নেভিগেশন (UPDATED FOR MOBILE HERO FIX) */
/* মেইন নেভিগেশন (UPDATED FOR MOBILE HERO FIX) */
.main-nav-container,
body:not(.product-page) .main-nav-container, /* <-- EI LINE-TI NOTUN ADD KORA HOYECHE */
body.product-page .main-nav-container,
body.about-page .main-nav-container,
body.contact-page .main-nav-container,
body.download-page .main-nav-container,
body.faq-page .main-nav-container { 
    padding: 0px; 
    margin-bottom: 0 !important; /* Mobile-e negative margin remove kora */
    background-color: var(--color-white) !important; /* Mobile-e shada background deya */
    box-shadow: var(--shadow-main-nav) !important; /* Mobile-e shadow deya */
    padding-bottom: 0px !important; /* Padding reset kora */
    position: relative !important; /* Jate z-index kaj kore */
    z-index: 50 !important; /* Jate hero-r opore thake */
}
    .mobile-nav-menu { width: 100%; }
    
    /* হিরো সেকশন (উচ্চতা কমানো হয়েছে) */
    .hero-section { height: 200px; } /* 350px থেকে 300px করা হলো */
}



/* =================================== */
/* Product Card Update (6 Products & Right Icons) */
/* =================================== */

/* 1. Grid-e 6-ti product-er jonno change */
.product-grid {
    /* 6-ti product-er jonno min-width komano holo */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 15px; /* Card-er moddhe gap ektu komano holo */
}

/* 2. Product Title Font aro choto kora holo */
.product-name {
    font-size: 14px; /* 15px theke 14px kora holo */
    padding: 10px 15px 5px 15px; /* Padding adjust kora holo */
    min-height: 42px; /* 14px font-e 2 line-er jonno height */
}

/* Padding adjust kora holo */
.product-price {
    padding: 0px 15px 15px 15px;
    font-size: 16px;
}
.product-reviews {
    padding: 0 15px 8px 15px;
}


/* 3. Hover Icon Actions (Notun Style: Right Vertical Stack) */

/* Apnar ager .product-actions CSS-ti replace korun */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column; /* Icon-guloke vertical (upor-nich) rakha holo */
    gap: 8px; /* Icon-er moddhe gap */
    
    /* Animation-er jonno */
    opacity: 0;
    transform: translateX(20px); /* Dan dik theke slide hobe */
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

/* Apnar ager .product-card:hover .product-actions CSS-ti replace korun */
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0); /* Hover korle normal position-e ashbe */
}

/* Notun icon button style */
.product-actions .action-btn {
    background-color: var(--color-white, #fff);
    color: var(--text-color-dark, #333);
    border: 1px solid var(--color-border, #ddd); /* Image-er moto border */
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.product-actions .action-btn:hover {
    background-color: var(--primary-color, #f37321);
    border-color: var(--primary-color, #f37321);
    color: var(--color-white, #fff);
    transform: scale(1.1); /* Hover korle ektu boro hobe */
}

/* Responsive adjust */
@media (max-width: 480px) {
    .product-actions .action-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* =================================== */
/* User Request Updates (Ratings & Colors) */
/* =================================== */

/* 1. Rating section remove kora holo */
.product-reviews {
    display: none;
}

/* 2. Product Price-er color Top Header-er BG color kora holo */
.product-price {
    /* --secondary-color holo apnar top-header er color */
    color: var(--secondary-color, #5f27cd);
    font-weight: 700; /* Color-ti fute uthar jonno ektu bold kora holo */
}

/* Old price-er color gray-i thakbe */
.product-price .old-price {
    color: #999;
    font-weight: 400; /* Normal font weight */
}

/* 3. "View All" Button-er BG color Top Header-er BG color kora holo */
.btn-secondary {
    background-color: var(--secondary-color, #5f27cd);
}

/* 4. "View All" Button-er Hover color Brand-color kora holo */
.btn-secondary:hover {
    /* --primary-color holo apnar brand color (orange) */
    background-color: var(--primary-color, #f37321);
}








/* =================================== */
/* Why Choose Us Section Styles */
/* =================================== */

.why-choose-section {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff); /* White background */
    font-family: var(--font-primary); /* Apnar defined font */
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dui column layout */
    gap: 60px;
    align-items: center;
    max-width: 1200px; /* Jeno content khub beshi choriye na jay */
    margin: 0 auto;
}

/* Apnar section-title class-ti reuse kora hocche */
.why-choose-text .section-title {
    text-align: left; /* Title-ke bam pashe align kora holo */
    margin-bottom: 25px;
}

/* "Why" shobdo-tir jonno brand color */
.why-choose-text .section-title span {
    color: var(--primary-color, #f37321);
}

.why-choose-text p {
    color: var(--text-color-medium, #555);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
    margin-bottom: 35px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-color-dark, #333);
    font-weight: 500;
    font-size: 15px;
}

.features-list li i {
    /* Checkmark-er jonno brand color (orange) */
    color: var(--primary-color, #f37321);
    font-size: 16px;
    margin-top: 4px; /* Text-er sathe align korar jonno */
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Modern look-er jonno */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive (Mobile-er jonno) */
@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr; /* Column-gulo stack kora holo */
        gap: 40px;
    }
    
    .why-choose-text .section-title {
        text-align: center; /* Mobile-e title center kora holo */
    }

    .why-choose-text {
        text-align: center; /* Text o button center kora holo */
    }

    .features-list {
        display: inline-block;
        text-align: left; /* List jeno bam pashei thake */
        margin: 25px auto 35px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 20px;
    }
}

/* =================================== */
/* Why Choose Section Update (BG & Image) */
/* =================================== */

/* 1. Background color poriborton */
.why-choose-section {
    background-color: #FFF2E8;
}

/* 2. Image-er border o shadow remove kora holo (PNG-er jonno) */
.why-choose-image img {
    border-radius: 0;
    box-shadow: none;
}


/* =================================== */
/* For You & Customer Section Styles */
/* =================================== */

.customer-focus-section {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff);
}

.customer-focus-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color-logo, #222);
}

.services-container {
    display: grid;
    /* Responsive Grid: 3 column desktop, 2 tablet, 1 mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--color-white, #ffffff);
    border-radius: 15px; /* Modern rounded corner */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden; /* Image-er corner round rakhar jonno */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-image-wrapper {
    width: 100%;
    /* 16:10 aspect ratio */
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05); /* Hover-e halka zoom effect */
}

.service-content {
    padding: 25px 30px 30px 30px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    color: var(--text-color-medium, #555);
    line-height: 1.7;
}

/* Responsive adjustments (auto-fit handle kore felbe) */
@media (max-width: 480px) {
    .customer-focus-section {
        padding: 50px 20px;
    }
    .service-content {
        padding: 20px 25px 25px 25px;
    }
}

/* =================================== */
/* Smart Factory Section Styles */
/* =================================== */

.smart-factory-section {
    padding: 80px 30px;
    /* Alternating color pattern-er jonno light orange BG */
    background-color: #FFF2E8; 
}

.smart-factory-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color-logo, #222);
}

.factory-grid {
    display: grid;
    /* Responsive Grid: 3 column desktop, 2 tablet, 1 mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.factory-card {
    background-color: var(--color-white, #ffffff);
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factory-card:hover {
    transform: translateY(-8px); /* Hover-e halka upore uthbe */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.factory-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.factory-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.factory-card:hover .factory-image-wrapper img {
    transform: scale(1.05); /* Hover-e image zoom hobe */
}

.factory-content {
    padding: 25px 30px;
}

.factory-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 15px;
}

.factory-content p {
    font-size: 14px;
    color: var(--text-color-medium, #555);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .smart-factory-section {
        padding: 50px 20px;
    }
    .factory-content {
        padding: 20px 25px;
    }
}

/* =================================== */
/* Smart Factory Slider Styles (Notun CSS) */
/* =================================== */

/* Purono image wrapper-er bodole notun slider-ke style kora */
.factory-image-slider {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative; /* Pagination-er jonno important */
}

/* Slider-er image jeno container-e fit hoy */
.factory-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider-er pagination dots (niche show korbe) */
.factory-image-slider .swiper-pagination {
    position: absolute;
    bottom: 10px !important; /* Image-er opor niche thakbe */
    left: 0;
    width: 100%;
}

/* Dot-gulor style */
.factory-image-slider .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.7); /* Shada dot */
    width: 8px;
    height: 8px;
    opacity: 1;
}

/* Active dot-er jonno apnar brand color */
.factory-image-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color, #f37321);
}

/* Purono .factory-image-wrapper CSS-ke remove kora (ba override kora) */
/* JODI AGER .factory-image-wrapper CLASS-ER CSS THAKE, TA REMOVE KORUN */
.factory-image-wrapper {
    /* Ei class-ti ar use hocche na */
}

/* =================================== */
/* Smart Factory Slider ARROW Styles (Notun CSS) */
/* =================================== */

.factory-image-slider .swiper-button-prev,
.factory-image-slider .swiper-button-next {
    color: var(--primary-color, #f37321); /* Arrow color (Brand Orange) */
    background-color: rgba(255, 255, 255, 0.8); /* Halka shada background */
    width: 35px; /* Button choto kora holo */
    height: 35px;
    border-radius: 50%;
    
    /* Default-e lukiye thakbe */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover korle button dekhabe */
.factory-card:hover .swiper-button-prev,
.factory-card:hover .swiper-button-next {
    opacity: 1;
}

/* Arrow icon-er size choto kora */
.factory-image-slider .swiper-button-prev::after,
.factory-image-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: 900;
}

/* Arrow position adjust */
.factory-image-slider .swiper-button-prev {
    left: 10px;
}
.factory-image-slider .swiper-button-next {
    right: 10px;
}

/* =================================== */
/* Certification Section CAROUSEL Styles */
/* =================================== */

.certification-section {
    padding: 80px 0; /* Side padding komano holo slider-er jonno */
    background-color: var(--color-white, #ffffff);
    text-align: center;
}

.certification-section .section-title {
    margin-bottom: 50px;
    color: var(--text-color-logo, #222);
}

/* Carousel container */
.certification-slider {
    width: 100%;
    max-width: 1200px; /* Max width set kora holo */
    margin: 0 auto 50px auto;
    overflow: hidden; /* Jeno logo-gulo baire na jay */
}

/* Ei style-ti khub important */
.certification-slider .swiper-wrapper {
    align-items: center; /* Shob logo-ke vertically center korbe */
}

/* Prottek-ti logo slide-er style */
.certification-slider .swiper-slide {
    width: 150px; /* Prottek-ti logo-r jonno fixed width */
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light-bg, #f4f4f4);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-slider .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.certification-slider .swiper-slide img {
    max-width: 80%;
    max-height: 80%;
    height: auto;
    filter: none;  /* কালারফুল দেখাবে */
    opacity: 1;    /* ফুল ব্রাইটনেস থাকবে */
    transition: transform 0.3s ease;
}

.certification-slider .swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.certification-section .button-container {
    margin-top: 30px;
}

/* Button style (ager motoi thakbe) */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color, #f37321);
    color: var(--color-white, #ffffff);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color, #5f27cd);
    transform: translateY(-3px);
}





/* =================================== */
/* Testimonial Section Styles (V2 - 3-per-view) */
/* =================================== */

.testimonial-section {
    padding: 80px 30px;
    background-color: #FFF2E8; /* Light orange background */
    position: relative; /* Arrow button-er jonno */
}

.testimonial-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.testimonial-section .section-title span {
    color: var(--primary-color, #f37321);
}

.testimonial-slider-v2 {
    max-width: 1200px; /* 3-ta card-er jonno width barano holo */
    margin: 0 auto;
    overflow: hidden; /* Important for slider */
    padding: 10px; /* Card-er shadow dekhar jonno */
}

.testimonial-card {
    background-color: var(--color-white, #ffffff);
    border-radius: 15px;
    padding: 30px;
    position: relative; /* Quote icon-er jonno */
    text-align: left; /* Notun Layout: Left Aligned */
    height: 100%; /* Shob card-er height soman rakhte */
    min-height: 280px; /* Ekti minimum height */
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Notun Quote Icon Style (Brand Purple Color) */
.testimonial-card .fa-quote-right {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary-color, #5f27cd);
    opacity: 0.08; /* Khub halka */
    z-index: 1;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative; /* Quote icon-er opore thakbe */
    z-index: 2;
}

.reviewer-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reviewer-profile .reviewer-info {
    text-align: left;
}
.reviewer-profile .reviewer-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin: 0;
}
.reviewer-profile .reviewer-info span {
    font-size: 14px;
    color: var(--text-color-medium, #555);
}

.testimonial-card .rating-stars {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--primary-color, #f37321);
    font-size: 15px;
    position: relative; /* Quote icon-er opore */
    z-index: 2;
}

.testimonial-card .review-text {
    font-size: 15px;
    color: var(--text-color-medium, #555);
    line-height: 1.7;
    position: relative; /* Quote icon-er opore */
    z-index: 2;
}

/* Notun Arrow Button Style (Slider-er baire) */
.slider-controls-v2 {
    position: relative;
    max-width: 1250px; /* Slider-er cheye ektu boro */
    margin: 20px auto 0;
}

.slider-controls-v2 .swiper-button-prev,
.slider-controls-v2 .swiper-button-next {
    color: var(--secondary-color, #5f27cd); /* Brand Purple */
    top: 50%;
    transform: translateY(-50%);
}
.slider-controls-v2 .swiper-button-prev:hover,
.slider-controls-v2 .swiper-button-next:hover {
    color: var(--primary-color, #f37321); /* Brand Orange */
}

/* Arrow position */
.slider-controls-v2 .testimonial-prev {
    left: -10px;
}
.slider-controls-v2 .testimonial-next {
    right: -10px;
}

/* Mobile-e arrow hide */
@media (max-width: 768px) {
    .slider-controls-v2 {
        display: none;
    }
}


/* =================================== */
/* Testimonial Arrow Position Update (Middle Align) */
/* =================================== */

/* Purono .slider-controls-v2 CSS-ti remove kore eti use korun */

.slider-controls-v2 {
    /* Container-ke slider-er opor niye asha holo */
    position: absolute; 
    top: 50%; /* Container-ke vertically center kora */
    left: 50%; /* Container-ke horizontally center kora */
    transform: translate(-50%, -50%); /* Perfect centering */
    
    max-width: 1250px; /* Slider-er cheye ektu boro */
    width: 100%;
    
    /* Click jeno card-e lage, button chara */
    pointer-events: none; 
}

.slider-controls-v2 .swiper-button-prev,
.slider-controls-v2 .swiper-button-next {
    color: var(--secondary-color, #5f27cd); /* Brand Purple */
    
    /* Ekhon top: 50% thik kaj korbe */
    top: 50%;
    transform: translateY(-50%);

    /* Click jeno button-e lage */
    pointer-events: auto; 
    
    /* Style add kora holo, jate bujha jay */
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.slider-controls-v2 .swiper-button-prev:hover,
.slider-controls-v2 .swiper-button-next:hover {
    color: var(--primary-color, #f37321); /* Brand Orange */
    background: var(--color-white);
}

/* Arrow icon size */
.slider-controls-v2 .swiper-button-prev::after,
.slider-controls-v2 .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

/* Arrow position */
.slider-controls-v2 .testimonial-prev {
    left: -15px;
}
.slider-controls-v2 .testimonial-next {
    right: -15px;
}

/* Mobile-e arrow hide */
@media (max-width: 992px) { 
    .slider-controls-v2 {
        display: none;
    }
}


/* =================================== */
/* Footer Section Styles */
/* =================================== */
.site-footer {
    background-color: var(--color-white, #ffffff);
    color: var(--text-color-medium, #555);
    padding: 80px 30px 0 30px;
    border-top: 1px solid var(--color-border, #ddd);
}

.footer-main {
    display: grid;
    /* 5-column layout */
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px; /* Wide layout */
    margin: 0 auto;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 25px; /* Logo boro kora holo */
    margin-bottom: 20px;
    color: var(--text-color-logo, #222);
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hotline-order {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.hotline-order i {
    font-size: 32px;
    color: var(--primary-color, #f37321); /* Brand Orange */
}
.hotline-order .hotline-details {
    display: flex;
    flex-direction: column;
}
.hotline-order span {
    font-size: 14px;
    color: var(--text-color-medium, #555);
}
.hotline-order strong {
    font-size: 22px;
    color: var(--primary-color, #f37321); /* Brand Orange */
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 5px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-light-bg, #f4f4f4);
    color: var(--text-color-medium, #555);
    text-decoration: none;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--primary-color, #f37321);
    color: var(--color-white, #ffffff);
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    text-decoration: none;
    color: var(--text-color-medium, #555);
    font-size: 15px;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color, #f37321);
    text-decoration: underline;
}

#footer-newsletter p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}
#footer-newsletter p strong {
    color: var(--primary-color, #f37321);
}

.newsletter-form {
    position: relative;
    margin-bottom: 30px;
}
.newsletter-form input {
    width: 100%;
    height: 50px;
    padding: 10px 50px 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--color-border, #ddd);
    background-color: var(--color-light-bg, #f4f4f4);
    font-size: 15px;
}
.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border: none;
    background-color: var(--secondary-color, #5f27cd); /* Brand Purple */
    color: var(--color-white, #ffffff);
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
    background-color: var(--primary-color, #f37321);
}

#footer-newsletter h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 15px;
}

.app-badges {
    display: flex;
    gap: 10px;
}
.app-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: var(--text-color-logo, #222);
    color: var(--color-white, #ffffff);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.app-badge i {
    font-size: 20px;
}
.app-badge:hover {
    background-color: var(--primary-color, #f37321);
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid var(--color-border, #ddd);
    flex-wrap: wrap; /* Mobile-e jeno niche name */
    gap: 15px;
}

.copyright {
    font-size: 14px;
    color: var(--text-color-medium, #555);
}
.copyright strong {
    color: var(--text-color-logo, #222);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 28px;
    color: #ccc;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-color-medium, #555);
}
.footer-bottom-links a:hover {
    color: var(--primary-color, #f37321);
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--text-color-logo, #222);
    color: var(--color-white, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    opacity: 0; /* Default-e hide */
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}
.scroll-to-top:hover {
    background-color: var(--primary-color, #f37321);
}
.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}


/* === Footer Responsive === */
@media (max-width: 1200px) {
    .footer-main {
        /* 5 column theke 3 column */
        grid-template-columns: repeat(3, 1fr);
    }
    #footer-brand-info {
        grid-column: 1 / -1; /* Brand info full width */
        text-align: center;
    }
    .hotline-order {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    #footer-newsletter {
        grid-column: 1 / -1; /* Newsletter full width */
    }
}

@media (max-width: 768px) {
    .footer-main {
        /* 3 column theke 2 column */
        grid-template-columns: 1fr 1fr;
    }

    /* === NOTUN ADD KORA HOLO === */
    /* Eti 1200px rule-ke override korche ebong 
       Newsletter-ke full-width na rekhe 2-column grid-e fit korche */
    #footer-newsletter {
        grid-column: auto;
    }
    /* === SHESH === */

    .footer-bottom {
        flex-direction: column; /* Center-e align */
        justify-content: center;
        text-align: center;
    }
    .payment-icons {
        order: -1; /* Payment icon shobar upore */
    }
}

@media (max-width: 576px) {
.footer-main {
        /* === MODIFIED: 1 column theke 2 column kora holo === */
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .site-footer {
        padding: 60px 20px 0 20px;
    }
    
    .footer-links,
    #footer-newsletter {
        text-align: left; /* Shob abar left align */
        
    }

    .hotline-order,
    .social-icons {
        justify-content: flex-start;
    }
/* === MODIFIED BLOCK === */
            .app-badges {
                flex-direction: row; /* "column" theke "row" kora holo */
                align-items: center; /* "flex-start" theke "center" kora holo */
                flex-wrap: wrap; /* Jayga na pele niche nam_be */
                display: none;
            }
            /* === SHESH === */
    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* === NOTUN: Footer App Title-ke ek line-e rakhar jonno === */
    #footer-newsletter h4 {
        white-space: nowrap;
        display: none;

        
    }
}



/* =================================== */
/* === SINGLE PRODUCT PAGE STYLES ===  */
/* === (FULL UPDATED CODE - NO BREADCRUMB) === */
/* =================================== */

/* --- 1. Home page-er negative margin override kora --- */
/* Ei class-ti single-product.html-er <body> tag-e deya hoyeche */
body.product-page .main-nav-container {
    margin-bottom: 0;
    background-color: var(--color-white, #ffffff00);
    padding-bottom: 20px;
    /* Main Nav-er niche ekti shadow, jate alada bujha jay */
    position: relative;
    z-index: 50;
}
/* Shudhu Home page-er jonno hero-r opor thakbe */
body:not(.product-page) .main-nav-container {
    margin-bottom: -114px; 
}


/* --- 2. BREADCRUMB BAR (SHOB CODE REMOVED) --- */
/* .breadcrumb-bar, .breadcrumbs-container { display: none; } */


/* --- 3. Main Page Container --- */
.product-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px; /* Header-er niche padding */
}

/* --- 4. Product Main Layout (Grid) --- */
.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* --- 5. Product Gallery --- */
.product-gallery-main {
    width: 100%;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}
.product-gallery-main .swiper-slide {
    aspect-ratio: 1 / 1;
}
.product-gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-gallery-thumbs {
    height: 100px;
}
.product-gallery-thumbs .swiper-slide {
    /* width: 100px; line-ti remove kora hoyeche */
    height: 100%;
    border: 2px solid var(--color-border, #ddd);
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    overflow: hidden;
}
.product-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary-color, #f37321);
}

/* --- 6. Product Details (Premium Style) --- */
.product-details .product-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 15px;
    line-height: 1.3;
}
.product-details .product-meta-top {
    margin-bottom: 20px;
}
.product-details .rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
}
.product-details .rating-stars span {
    color: var(--text-color-medium);
    font-size: 14px;
    margin-left: 5px;
}
.product-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background-color: var(--color-light-bg, #f4f4f4);
    padding: 15px 20px;
    border-radius: 10px;
}
.product-price-box .current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color, #5f27cd); /* Brand Purple */
}
.product-price-box .old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-color-medium, #555);
}
.product-price-box .discount-badge {
    background-color: var(--primary-color, #f37321);
    color: var(--color-white, #fff);
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}
.product-details .short-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color-medium, #555);
    margin-bottom: 25px;
}
.variations {
    margin-bottom: 30px;
}
.variation-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.variation-group label {
    font-weight: 600;
    color: var(--text-color-dark, #333);
}
.swatches {
    display: flex;
    gap: 8px;
}
.swatch.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.swatch.color-swatch.active {
    box-shadow: 0 0 0 3px var(--primary-color);
}
.product-actions-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.quantity-selector {
    display: flex;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    overflow: hidden;
}
.quantity-selector button {
    width: 40px;
    height: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color-medium, #555);
    transition: all 0.3s ease;
}
.quantity-selector button:hover {
    color: var(--secondary-color, #5f27cd);
    background: var(--color-light-hover, #f5f5f5);
}
.quantity-selector input {
    width: 50px;
    height: 50px;
    border: none;
    border-left: 1px solid var(--color-border, #ddd);
    border-right: 1px solid var(--color-border, #ddd);
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 0 5px;
}
.btn-add-to-cart {
    flex-grow: 1;
    background: var(--secondary-color, #5f27cd); /* Brand Purple */
    color: var(--color-white, #fff);
    border: 2px solid var(--secondary-color, #5f27cd);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-add-to-cart:hover {
    background: var(--primary-color, #f37321); /* Brand Orange */
    border-color: var(--primary-color, #f37321);
}
.btn-wishlist {
    background: none;
    border: 1px solid var(--color-border, #ddd);
    color: var(--text-color-dark, #333);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-wishlist i {
    margin-right: 8px;
}
.btn-wishlist:hover {
    border-color: var(--primary-color, #f37321);
    color: var(--primary-color, #f37321);
    background: #FFF2E8; /* Light Orange BG */
}
.product-meta-bottom {
    margin-top: 30px;
    border-top: 1px solid var(--color-border, #ddd);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}
.product-meta-bottom span {
    color: var(--text-color-medium);
}
.product-meta-bottom span strong {
    color: var(--text-color-dark);
    min-width: 80px;
    display: inline-block;
}
.product-meta-bottom a {
    color: var(--text-color-medium);
    text-decoration: none;
}
.product-meta-bottom a:hover {
    color: var(--primary-color);
}

/* --- 7. Product Info Tabs --- */
.product-info-tabs {
    margin-bottom: 80px;
}
.product-info-tabs .tab-header {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--color-border, #f0f0f0);
}
.product-info-tabs .tab-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color-medium, #888888);
    cursor: pointer;
    position: relative;
    padding: 15px 10px;
    transition: color 0.3s ease;
    background: none;
    border: none;
}
.product-info-tabs .tab-title.active {
    color: var(--text-color-logo, #222222);
}
.product-info-tabs .tab-title.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color, #FF5733);
    border-radius: 2px;
}
.product-info-tabs .tab-content-container {
    padding-top: 30px;
}
.product-info-tabs .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}
.product-info-tabs .tab-content.active {
    display: block;
}
.product-info-tabs .tab-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.product-info-tabs .tab-content p,
.product-info-tabs .tab-content li {
    font-size: 16px;
    color: var(--text-color-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}
.product-info-tabs .tab-content ul {
    list-style: none;
    padding-left: 0;
}
.product-info-tabs .tab-content li i {
    color: var(--primary-color);
    margin-right: 10px;
}
.specs-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}
.specs-table tr:nth-child(odd) {
    background-color: var(--color-light-bg, #f4f4f4);
}
.specs-table td {
    padding: 12px 15px;
    border: 1px solid var(--color-border, #ddd);
}
.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-color-dark);
}

/* --- 8. Related Products --- */
.related-products {
    margin-bottom: 80px;
    position: relative;
}
.related-products .section-title {
    text-align: center;
    margin-bottom: 40px;
}
.related-products-slider {
    overflow: hidden;
    padding: 10px;
    margin: 0 -10px;
}
.related-products-slider .product-card {
    height: 100%;
}
.related-products .swiper-button-prev,
.related-products .swiper-button-next {
    color: var(--secondary-color);
    background: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.related-products .swiper-button-prev::after,
.related-products .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}
.related-products .related-prev {
    left: 0;
}
.related-products .related-next {
    right: 0;
}

/* === 9. Single Product Responsive === */
@media (max-width: 992px) {
    .product-main {
        grid-template-columns: 1fr; /* Stack hoye jabe */
        gap: 30px;
        margin-bottom: 60px;
    }
}
@media (max-width: 420px) {
    .product-page-container {
        padding: 20px 15px;
    }
    .product-details .product-title {
        font-size: 22px;
    }
    .product-actions-group {
        flex-direction: column; /* Stack hobe */
    }
    .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
    .quantity-selector input {
        flex-grow: 1;
    }
    .product-info-tabs .tab-header {
        flex-wrap: wrap; /* Tabs wrap hobe */
        gap: 15px;
    }
    .product-info-tabs .tab-title {
        font-size: 16px;
    }
}

/* =================================== */
/* === SINGLE PRODUCT WHOLESALE UPDATE === */
/* =================================== */

/* --- Purono Price/Quantity/Cart button hide kora --- */
.product-price-box,
.product-actions-group,
.btn-wishlist {
    display: none; /* Ager style hide kora holo */
}

/* --- Notun Wholesale Price Table Style --- */
.wholesale-pricing {
    margin: 25px 0;
}
.wholesale-pricing h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color-dark, #333);
    margin-bottom: 15px;
}
.wholesale-pricing-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--color-border, #ddd);
}
.wholesale-pricing-table th,
.wholesale-pricing-table td {
    border: 1px solid var(--color-border, #ddd);
    padding: 12px 15px;
    text-align: left;
    font-size: 15px;
}
.wholesale-pricing-table th {
    background-color: var(--color-light-bg, #f4f4f4);
    font-weight: 600;
}
.wholesale-pricing-table td:not(:first-child) {
    text-align: center;
}
.wholesale-pricing-table td:first-child {
    font-weight: 500;
}
.wholesale-pricing-table td:not(:first-child) {
    font-weight: 700;
    color: var(--secondary-color, #5f27cd); /* Purple Price */
}

/* --- Notun Wholesale Action Buttons Style --- */
.product-actions-wholesale {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dui button pashapashi */
    gap: 15px;
    margin: 30px 0 20px 0;
}
.product-actions-wholesale button {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Orange Button */
.btn-quote {
    background: var(--primary-color, #f37321);
    color: var(--color-white, #fff);
    border-color: var(--primary-color, #f37321);
}
.btn-quote:hover {
    background: #e6600a; /* Darker orange */
    border-color: #e6600a;
}
/* Purple Button */
.btn-add-to-cart {
    background: var(--secondary-color, #5f27cd);
    color: var(--color-white, #fff);
    border-color: var(--secondary-color, #5f27cd);
}
.btn-add-to-cart:hover {
    background: #4a1da8; /* Darker purple */
    border-color: #4a1da8;
}


/* =================================== */
/* === MODAL POP-UP STYLES === */
/* =================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%); /* Ektu upore shuru */
    background-color: var(--color-white, #fff);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    padding: 30px 40px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%); /* Majkhane ashbe */
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-light-bg, #f4f4f4);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--text-color-medium, #555);
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-close-btn:hover {
    background: var(--color-border, #ddd);
    color: var(--text-color-dark, #333);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}
.modal-header h3 {
    font-size: 24px;
    color: var(--text-color-logo, #222);
    margin-bottom: 5px;
}
.modal-header p {
    font-size: 15px;
    color: var(--text-color-medium, #555);
}

.modal-form .form-group {
    margin-bottom: 20px;
}
.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color-dark, #333);
}
.modal-form label .required {
    color: #e74c3c;
    margin-left: 2px;
}
.modal-form input[type="text"],
.modal-form input[type="number"],
.modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}
.modal-form input[type="text"]:focus,
.modal-form input[type="number"]:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-color, #f37321);
}
.modal-form textarea {
    resize: vertical;
}

.modal-form .radio-group {
    display: flex;
    gap: 20px;
}
.modal-form .radio-group label {
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-submit-quote {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--secondary-color, #5f27cd); /* Purple Button */
    color: var(--color-white, #fff);
}
.btn-submit-quote:hover {
    background: #4a1da8; /* Darker purple */
}

/* Responsive Modal */
@media (max-width: 480px) {
    .modal-popup {
        width: 95%;
        padding: 25px 20px;
    }
    .modal-header h3 {
        font-size: 20px;
    }
}

/* =================================== */
/* === MODAL POP-UP LAYOUT UPDATE === */
/* =================================== */

/* Notun "form-row" class-er jonno grid style */
.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dui-column grid */
    gap: 20px;
}

/* Purono radio button style (Jodi thake) remove kora */
.modal-form .radio-group {
    display: none; 
}

/* Notun <select> (dropdown) style */
.modal-form select {
    width: 100%;
    height: 47px; /* Input field-er soman height */
    padding: 0 15px; /* 0 padding top/bottom jate text vertically center thake */
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    font-size: 15px;
    background-color: var(--color-white, #fff);
    cursor: pointer;
}
.modal-form select:focus {
    outline: none;
    border-color: var(--primary-color, #f37321);
}

/* Textarea height komano */
.modal-form textarea {
    min-height: 80px;
}

/* Responsive: Mobile-e grid-ke stack kora */
@media (max-width: 576px) {
    .modal-form .form-row {
        grid-template-columns: 1fr; /* 1-column layout */
        gap: 0; /* Form-group-er margin use hobe */
    }
    
    /* Mobile-e field-er niche margin komano */
    .modal-form .form-group {
        margin-bottom: 15px;
    }
}
/* =================================== */
/* === MODAL POP-UP MOBILE SCROLL FIX === */
/* =================================== */

@media (max-width: 480px) {
    .modal-popup {
        /* Screen-er 85% er beshi boro hobe na */
        max-height: 85vh; 
        
        /* Jodi content boro hoy, tahole modal-er bhitore scroll ashbe */
        overflow-y: auto; 
        
        /* Width ektu barano holo */
        width: 95%;
        padding: 25px 20px;
    }

    .modal-header h3 {
        font-size: 20px;
    }
    
    /* Form-er padding komano jate scrollbar-er jayga hoy */
    .modal-form {
        padding-right: 5px; 
    }
}


/* =================================== */
/* === B2B GUARANTEE SECTION (NOTUN) === */
/* =================================== */

.b2b-guarantee-section {
    padding: 60px 30px;
    background-color: #FFF2E8; /* Homepage-er light orange BG use kora holo */
    margin-bottom: 60px;
    border-radius: 15px;
}

.guarantee-container {
    display: grid;
    /* Responsive Grid: Desktop-e 4-col, Tablet-e 2-col, Mobile-e 1-col */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-card {
    text-align: center;
    padding: 20px;
    background-color: var(--color-white); /* Shada background card */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.guarantee-card i {
    font-size: 40px;
    color: var(--primary-color, #f37321); /* Brand Orange */
    margin-bottom: 20px;
}

.guarantee-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 10px;
}

.guarantee-card p {
    font-size: 15px;
    color: var(--text-color-medium, #555);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .b2b-guarantee-section {
        padding: 40px 20px;
        margin-bottom: 40px;
    }
}


/* =================================== */
/* === SINGLE PRODUCT V2 UPDATES === */
/* =================================== */

/* --- 1. Notun Product Highlights Bar --- */
.product-highlights-bar {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    background-color: var(--color-light-bg, #f4f4f4);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0 30px 0;
    flex-wrap: wrap; /* Mobile-e jeno wrap hoy */
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color-medium, #555);
    font-size: 14px;
}
.highlight-item i {
    font-size: 20px;
    color: var(--secondary-color, #5f27cd); /* Purple Icon */
}
.highlight-item strong {
    color: var(--text-color-dark, #333);
    font-weight: 700;
}

/* --- 2. Purono Tab Style Hide Kora --- */
/* (Style remove na kore shudhu hide korchi jate easily revert kora jay) */
.product-info-tabs {
     display: none; 
}

/* --- 3. Notun Professional Tab Container (V2) --- */
.product-tabs-container {
    background-color: var(--color-white, #ffffff);
    border: 1px solid var(--color-border, #ddd);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    margin-bottom: 80px;
    overflow: hidden; /* jeno border-radius kaj kore */
}

.tab-header-v2 {
    display: flex;
    background-color: var(--color-light-bg, #f4f4f4);
    padding: 10px;
    gap: 10px;
    /* Mobile-e scroll kora jabe */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap; /* Jeno tab-gulo ek line-e thake */
    border-bottom: 1px solid var(--color-border, #ddd);
}

.tab-title-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-medium, #555);
    background-color: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Jeno scroll-er shomoy choto na hoy */
}
.tab-title-v2 i {
    font-size: 15px;
}
.tab-title-v2:hover {
    background-color: var(--color-light-hover, #f5f5f5);
    color: var(--text-color-dark, #333);
}
.tab-title-v2.active {
    background-color: var(--color-white, #fff); /* Active tab-er shada BG */
    color: var(--primary-color, #f37321); /* Active tab-er Orange text */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-content-container-v2 {
    padding: 30px 35px;
}

/* --- 4. Notun Tab Content-er Style --- */
.tab-content-container-v2 .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}
.tab-content-container-v2 .tab-content.active {
    display: block;
}
.tab-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color-logo, #222);
}
.tab-content .tab-content-subtitle {
     margin-top: 30px; /* Table-er majhe gap */
}
.tab-content p,
.tab-content li {
    font-size: 16px;
    color: var(--text-color-medium, #555);
    line-height: 1.7;
    margin-bottom: 15px;
}
.tab-content ul {
    list-style: none;
    padding-left: 0;
}
.tab-content li i {
    color: var(--primary-color, #f37321);
    margin-right: 10px;
}
.specs-table {
    width: 100%;
    max-width: 800px; /* Ektu wide kora holo */
    border-collapse: collapse;
    margin-bottom: 20px;
}
.specs-table th,
.specs-table td {
    padding: 12px 15px;
    border: 1px solid var(--color-border, #ddd);
    text-align: left;
}
.specs-table th {
    background-color: var(--color-light-bg, #f4f4f4);
    font-weight: 600;
}
.specs-table tr:nth-child(even) {
    background-color: var(--color-light-bg, #f4f4f4);
}
.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-color-dark);
}

/* FAQ Style */
.faq-item {
    border-bottom: 1px solid var(--color-light-hover, #f5f5f5);
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color-dark, #333);
    margin-bottom: 8px;
}
.faq-item p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Responsive Tab */
@media (max-width: 480px) {
    .tab-header-v2 {
        padding: 8px;
        gap: 5px;
    }
    .tab-title-v2 {
        padding: 10px 15px;
        font-size: 14px;
    }
    .tab-content-container-v2 {
        padding: 25px 20px;
    }
}



/* =================================== */
/* === PLAIN JS PRODUCT GALLERY STYLES === */
/* =================================== */

/* Main image container-er style */
.product-gallery-main {
    border: 1px solid var(--color-border, #ddd);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Image jeno square thake */
}

/* Main image-er style */
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image jeno container-e fit thake */
}

/* Notun Thumbnail container-er style */
.product-gallery-thumbs-plain {
    display: flex; /* Thumbnail-gulo pashapashi rakhar jonno */
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap; /* Jayga na hole jeno niche neme jay */
}

/* Prottek-ti thumbnail image-er style */
.product-thumbnail {
    width: 100px;  /* Thumbnail width */
    height: 100px; /* Thumbnail height */
    object-fit: cover;
    border: 2px solid var(--color-border, #ddd);
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Thumbnail-e hover korle opacity barabe */
.product-thumbnail:hover {
    opacity: 1;
}

/* Je thumbnail-ti active (select kora), tar style */
.product-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color, #f37321); /* Active border orange hobe */
}


/* =================================== */
/* === ABOUT US PAGE (PREMIUM) - FULL CODE === */
/* =================================== */

/* --- 1. Navigation Bar Style (Homepage-er moto) --- */
/* Ei class-ti about-us.html-er <body> tag-e add kora ache */
body.about-page .main-nav-container {
    margin-bottom: -114px; /* Banner-ke nav-er niche ane */
    background: transparent; /* Background transparent kore dey */
    box-shadow: none; /* Shadow fele dey */
    position: relative;
    z-index: 100; /* Jate header-er opore thake */
    padding-bottom: 0; 
}
/* --- 2. Premium Page Header (Banner) UPDATE --- */
.about-header {
    position: relative;
    height: 400px; /* হাইট প্রয়োজন অনুযায়ী অ্যাডজাস্ট করতে পারেন */
    
    /* Content vertically center korar jonno */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 30px; /* Side padding */
    
    /* BACKGROUND COLOR CHANGE HERE */
    background-color: #FFF2E8; /* আপনার চাওয়া কালার */
    background-image: none; /* ইমেজ সরিয়ে ফেলা হয়েছে যাতে কালার দেখা যায় */
    
    text-align: center;
    
    /* TEXT COLOR CHANGE (সাদা ব্যাকগ্রাউন্ডে কালো লেখা) */
    color: var(--text-color-logo, #222); 
    
    z-index: 1; 
}

/* Image-er opor halka dark overlay chilo, seta ekhon HIDE kora holo */
.about-header::after {
    display: none;
}

/* Text-gulo overlay-er opore thakbe */
.about-header h1,
.about-header p {
    position: relative;
    z-index: 2; 
}

.about-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color-logo, #222); /* টাইটেল কালো কালার */
}

.about-header p {
    font-size: 18px;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--text-color-medium, #555); /* সাব-টাইটেল গ্রে কালার */
}
/* --- 3. 'Why Choose Us' Section (About Page-er jonno BG override) --- */
.about-page .why-choose-section {
    background-color: var(--color-white, #ffffff) !important;
}

/* --- 4. Company Values Section (Notun) --- */
.values-section {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff);
}

.values-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--color-light-bg, #f4f4f4);
    padding: 35px 30px;
    border-radius: 10px;
    border: 1px solid var(--color-border, #ddd);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color, #f37321);
}

.value-card i {
    font-size: 36px;
    color: var(--primary-color, #f37321);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-color-medium, #555);
    line-height: 1.6;
}

/* --- 5. Team Photo Section (Notun) --- */
.team-photo-section {
    padding: 80px 30px;
    background-color: #FFF2E8; /* Homepage-er light orange */
}

.team-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-photo-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.team-photo-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color-medium, #555);
    margin-bottom: 30px;
}

/* --- 6. 'Certifications' Section (About Page-er jonno BG override) --- */
.about-page .certification-section {
    background-color: #FFF2E8 !important; /* Light orange BG */
}


/* --- 7. Responsive Media Queries (About Page) --- */
@media (max-width: 992px) {
    .about-header h1 {
        font-size: 36px;
    }
    
    .team-photo-grid {
        grid-template-columns: 1fr; /* Stack hobe */
    }
    
    .team-photo-text .section-title {
        text-align: center;
    }
    
    .team-photo-text {
        text-align: center;
    }
}

/* --- Mobile (480px) --- */
@media (max-width: 480px) {
    
    /* Banner-er height aro komano holo */
    .about-header {
        height: 150px; 
        padding: 0 20px;
    }
    
    .about-header h1 {
        font-size: 30px; /* Font aro choto */
    }
    
    .about-header p {
        font-size: 16px;
    }

    /* Shob section-er padding komano holo */
    .values-section,
    .team-photo-section,
    .about-page .why-choose-section,
    .about-page .customer-focus-section,
    .about-page .certification-section {
        padding: 60px 20px;
    }
}



/* =================================== */
/* === CONTACT US PAGE (PREMIUM) === */
/* =================================== */

/* --- 1. Navigation Bar Style (Homepage-er moto) --- */
/* Ei class-ti contact-us.html-er <body> tag-e add korben */
body.contact-page .main-nav-container {
    margin-bottom: -114px; /* Banner-ke nav-er niche ane */
    background: transparent; /* Background transparent kore dey */
    box-shadow: none; /* Shadow fele dey */
    position: relative;
    z-index: 100; /* Jate header-er opore thake */
    padding-bottom: 0; 
}
/* Note: Apnar about-page-er jonno toiri .about-header class-ti ekhane reuse kora hobe */


/* --- 2. Contact Info Blocks Section --- */
.contact-info-section {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff);
}

.contact-info-grid {
    display: grid;
    /* Responsive Grid: 3-col desktop, 1-col mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: var(--color-light-bg, #f4f4f4);
    border: 1px solid var(--color-border, #ddd);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center; /* Icon o text jeno vertically centered thake */
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-color, #f37321);
}

.contact-info-card .icon-wrapper {
    font-size: 24px;
    color: var(--primary-color, #f37321);
    background-color: var(--color-white, #fff);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Icon jeno choto na hoye jay */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 5px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-color-medium, #555);
    line-height: 1.5;
    margin: 0;
}

/* --- 3. Contact Form & Map Section --- */
.contact-form-section {
    padding: 80px 30px;
    background-color: #FFF2E8; /* Homepage-er light orange BG */
}

/* Form o Map-er jonno 2-column grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Form-ke ektu beshi jayga deya holo */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--color-white, #ffffff);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper .section-title {
    text-align: left; /* Title bam dik theke shuru */
    margin-bottom: 30px;
}

/* Form-er input field styling */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color-dark, #333);
}
.contact-form label .required {
    color: #e74c3c;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color, #f37321);
    box-shadow: 0 0 0 3px rgba(243, 115, 33, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button Style */
.btn-submit-contact {
    display: inline-block;
    background-color: var(--primary-color, #f37321);
    color: var(--color-white, #ffffff);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    background-color: var(--secondary-color, #5f27cd);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(95, 39, 205, 0.2);
}

/* Google Map Wrapper */
.contact-map-wrapper {
    width: 100%;
    min-height: 450px; /* Map-er minimum height */
    border-radius: 10px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* --- 4. Contact Page Responsive CSS --- */
@media (max-width: 992px) {
    /* Form o Map-ke stack kora */
    .contact-form-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
}

@media (max-width: 480px) {
    /* Section padding komano */
    .contact-info-section,
    .contact-form-section {
        padding: 60px 20px;
    }

    /* Grid-card-er padding komano */
    .contact-form-grid {
        padding: 30px 20px;
    }

    /* Form-er row-ke 1 column kora */
    .contact-form .form-row {
        grid-template-columns: 1fr; 
        gap: 0; /* form-group-er margin use hobe */
    }

    /* Info card-er icon-ke upore neya */
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* =================================== */
/* === MAIN NAV SIMPLE DROPDOWN === */
/* =================================== */

/* 1. Make the <li> container relative */
.nav-links li.has-dropdown {
    position: relative;
}

/* 2. Style the dropdown menu itself */
.simple-dropdown-menu {
    display: none; /* Default-e hide thakbe */
    position: absolute;
    top: 100%; /* Parent link-er thik niche */
    left: 0;
    background-color: var(--color-white);
    color: var(--text-color-dark);
    border: 1px solid var(--color-border);
    border-radius: 10px; /* Modern look */
    min-width: 200px; /* Iccha-moto adjust korun */
    list-style: none;
    z-index: 110;
    padding-top: 10px; /* Nav bar theke halka gap */
    box-shadow: var(--shadow-dropdown);
    overflow: hidden; 
}

/* 3. Dropdown-er item-gulo */
.simple-dropdown-menu li {
    border-bottom: 1px solid var(--color-border);
}
.simple-dropdown-menu li:last-child {
    border-bottom: none;
}

/* 4. Dropdown-er link-gulo */
.simple-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 500;
    font-size: 15px;
}

/* Link-er hover effect */
.simple-dropdown-menu li a:hover {
    background-color: var(--color-light-hover);
    color: var(--primary-color); /* Brand color hobe hover-e */
}

/* 5. Desktop-e hover korle dropdown dekhabe */
@media (min-width: 993px) {
    .nav-links li.has-dropdown:hover .simple-dropdown-menu {
        display: block;
    }
    
    /* Hover korle padding jeno thik thake */
    .nav-links li.has-dropdown:hover > a {
         padding-bottom: 8px;
    }
}

/* 6. Mobile-e ei desktop dropdown-ti hide thakbe */
@media (max-width: 992px) {
     .simple-dropdown-menu {
        display: none !important; /* Mobile menu-r sathe conflict korbe na */
     }
}

/* =================================== */
/* === DOWNLOAD PAGE (PREMIUM V3.1) === */
/* =================================== */

/* --- 1. Navigation Bar Style --- */
body.download-page .main-nav-container {
    margin-bottom: -114px;
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 100;
    padding-bottom: 0; 
}

/* --- 2. Download Section --- */
.download-section {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff);
}

.download-category {
    max-width: 1400px; /* 5-ta card-er jonno ektu wide kora holo */
    margin: 0 auto 50px auto;
}

.download-category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-border, #ddd);
    display: flex;
    align-items: center;
    gap: 12px;
}
.download-category-title i {
    color: var(--primary-color);
    font-size: 24px;
}

/* --- 3. Slider Card Design --- */
.manuals-slider-container {
    position: relative;
    max-width: 1400px; /* 5-ta card-er jonno ektu wide kora holo */
    margin: 0 auto;
}

.manuals-slider {
    overflow: hidden;
    padding: 10px 10px 30px 10px; 
}

.download-item-card {
    display: block;
    text-decoration: none;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--color-white);
    height: 100%; /* Soman height-er jonno */
}
.download-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.download-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--color-light-bg, #f4f4f4);
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.download-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.download-item-card:hover .download-image-wrapper img {
    transform: scale(1.05);
}

.download-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--color-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.download-item-card:hover .download-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.download-item-title {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--color-border, #ddd);
}

.download-item-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-logo, #222);
    margin: 0;
    min-height: 40px; /* Title 1 line ba 2 line holeo height thik thakbe */
}

/* --- 4. Slider Arrow Style --- */
.manuals-slider-container .swiper-button-prev,
.manuals-slider-container .swiper-button-next {
    color: var(--secondary-color, #5f27cd);
    background: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    top: 50%;
    transform: translateY(-90%);
}
.manuals-slider-container .swiper-button-prev::after,
.manuals-slider-container .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}
.manuals-slider-container .manuals-prev { left: 0; }
.manuals-slider-container .manuals-next { right: 0; }


/* --- 5. Responsive CSS --- */
@media (max-width: 992px) {
    .download-page .about-header { height: 400px; }
}
@media (max-width: 576px) {
    .download-page .about-header { height: 250px; }
    .download-section { padding: 60px 20px; }
    .manuals-slider-container .swiper-button-prev,
    .manuals-slider-container .swiper-button-next {
        display: none; 
    }
}

/* --- 5. Responsive CSS --- */
@media (max-width: 992px) {
    .download-page .about-header { height: 400px; }
}
@media (max-width: 576px) {
    .download-page .about-header { height: 250px; }
    .download-section { padding: 60px 20px; }
    .manuals-slider-container .swiper-button-prev,
    .manuals-slider-container .swiper-button-next {
        display: none; 
    }
}



/* =================================== */
/* === FAQ PAGE (PREMIUM) === */
/* =================================== */

/* --- 1. Navigation Bar Style --- */
/* Ei class-ti faq.html-er <body> tag-e add korben */
body.faq-page .main-nav-container {
    margin-bottom: -114px; /* Banner-ke nav-er niche ane */
    background: transparent; /* Background transparent kore dey */
    box-shadow: none; /* Shadow fele dey */
    position: relative;
    z-index: 100; /* Jate header-er opore thake */
    padding-bottom: 0; 
}
/* Note: Page header-er jonno .about-header class-ti reuse kora hobe */


/* --- 2. FAQ Section --- */
.faq-section {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff);
}

.faq-container {
    max-width: 900px; /* FAQ-er jonno ektu choto width valo */
    margin: 0 auto;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 10px;
    overflow: hidden; /* jate radius kaj kore */
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* Prottek-ti FAQ item-er wrapper */
.faq-item {
    border-bottom: 1px solid var(--color-border, #ddd);
}
.faq-item:last-child {
    border-bottom: none;
}

/* Question-er style (clickable button) */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-logo, #222);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-light-hover, #f5f5f5);
}

/* Icon-er style (plus/minus) */
.faq-question .faq-icon {
    font-size: 16px;
    color: var(--primary-color, #f37321);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Answer-er style (default-e hide) */
.faq-answer {
    max-height: 0; /* Default-e height 0 */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 30px 30px; /* Padding shudhu tokhon ashbe jokhon open hobe */
    font-size: 16px;
    color: var(--text-color-medium, #555);
    line-height: 1.7;
    margin: 0;
}
.faq-answer p:not(:last-child) {
    margin-bottom: 15px;
}

/* --- 3. Active State (Jokhon toggle open hobe) --- */
.faq-item.active .faq-question {
    background-color: var(--color-light-hover, #f5f5f5);
    color: var(--primary-color, #f37321); /* Active question-er color change */
}

/* Icon rotate hobe */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Plus icon-ke cross(+) icon banano */
}

/* Answer show korar jonno max-height set kora */
.faq-item.active .faq-answer {
    max-height: 500px; /* Ekti boro height, jate content dhore (auto kora jay na transition-e) */
    padding-top: 0; /* Jate question-er thik nich theke padding shuru na hoy */
}


/* --- 4. Responsive CSS --- */
@media (max-width: 992px) {
    .faq-page .about-header { height: 400px; }
}
@media (max-width: 576px) {
    .faq-page .about-header { height: 250px; }
    .faq-section { padding: 60px 20px; }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
}



/* =================================== */
/* === SHOP PAGE (PREMIUM) - FULL CSS === */
/* =================================== */

/* --- 1. Navigation Bar Style (Desktop) --- */
/* Ei class-ti shop.html-er <body> tag-e add kora ache */
body.shop-page .main-nav-container {
    margin-bottom: -114px; /* Banner-ke nav-er niche ane */
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 100;
    padding-bottom: 0; 
}

/* --- 2. Shop Page Main Layout --- */
.shop-page-container {
    padding: 20px 30px;
    background-color: var(--color-white, #ffffff);
}

.shop-page-layout {
    display: grid;
    /* Desktop-e 2-column layout */
    grid-template-columns: 280px 1fr; /* Sidebar 280px, baki-ta main content */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- 3. Shop Sidebar --- */
.shop-sidebar {
    border: 1px solid var(--color-border, #ddd);
    border-radius: 10px;
    padding: 25px;
    height: fit-content; /* Jate content-er shoman height ney */
}

.sidebar-widget {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-light-hover, #f5f5f5);
    padding-bottom: 30px;
}
.sidebar-widget:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 20px;
}

.widget-list {
    list-style: none;
    padding: 0;
}
.widget-list li {
    margin-bottom: 10px;
}
.widget-list li a {
    text-decoration: none;
    color: var(--text-color-medium, #555);
    font-size: 15px;
    transition: all 0.3s ease;
}
.widget-list li a:hover,
.widget-list li a.active {
    color: var(--primary-color, #f37321);
    font-weight: 600;
}

/* --- 4. Shop Main Content --- */

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none; /* Desktop-e hide thakbe */
    background-color: var(--color-light-bg, #f4f4f4);
    border: 1px solid var(--color-border, #ddd);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-dark, #333);
    cursor: pointer;
    margin-bottom: 25px;
}
.mobile-filter-btn i {
    margin-right: 8px;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--color-light-bg, #f4f4f4);
    border-radius: 8px;
    margin-bottom: 30px;
}

.sort-bar p {
    font-size: 15px;
    color: var(--text-color-medium, #555);
    margin: 0;
}
.sort-bar select {
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid var(--color-border, #ddd);
    font-size: 14px;
    font-family: var(--font-primary);
}

/* Product Grid (Reuse from index.html) */
.shop-main-content .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-color-dark, #333);
    font-weight: 600;
    transition: all 0.3s ease;
}
.page-link:hover,
.page-link.active {
    background-color: var(--primary-color, #f37321);
    color: var(--color-white, #fff);
    border-color: var(--primary-color, #f37321);
}

/* --- 5. Shop Page Responsive --- */

@media (max-width: 992px) {
    /* Layout 1 column kora */
    .shop-page-layout {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-e sidebar hide kora */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100%;
        background-color: var(--color-white);
        z-index: 1001;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        padding: 30px;
        transform: translateX(-100%); /* Default-e hide */
        transition: transform 0.4s ease;
        overflow-y: auto;
    }
    .shop-sidebar.active {
        transform: translateX(0); /* Active hole show korbe */
    }
    
    /* === UPDATED: Mobile controls wrapper === */
    .shop-controls-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px; /* Purono sort-bar-er margin ekhane dilam */
    }
    
    /* Mobile-e filter button show kora */
    .mobile-filter-btn {
        display: block;
        margin-bottom: 0; /* Margin remove kora holo */
        flex-shrink: 0; /* Jate choto na hoye jay */
    }
    
    /* Sidebar-er close button */
    .mobile-filter-close {
        display: block;
        background: none;
        border: none;
        font-size: 16px; /* Icon remove kora hoyeche, tai size komano */
        color: var(--text-color-dark, #333);
        cursor: pointer;
        margin-bottom: 20px;
        text-align: right;
        width: 100%;
    }
    
    /* Sort Bar */
    .sort-bar {
        margin-bottom: 0; /* Margin wrapper-e deya hoyeche */
        flex-grow: 1; /* Baki jayga nibe */
    }
}

@media (max-width: 480px) {
    .shop-page-container { padding: 40px 20px; }
    
    /* === UPDATED: Mobile Controls Adjustments === */
    .shop-controls-mobile {
        gap: 10px; /* Gap komano */
    }

    .mobile-filter-btn {
        padding: 10px 15px; /* Padding komano */
        font-size: 14px;
    }
    .mobile-filter-btn i {
        margin-right: 5px;
    }

    /* Sort Bar (Column remove kora holo) */
    .sort-bar {
        /* flex-direction: column; <-- Ei line-ti remove kora holo */
        gap: 10px;
        align-items: center;
        padding: 10px 15px; /* Padding komano */
    }
    
    .sort-bar p {
        display: none; /* Mobile-e "Showing..." text hide kora */
    }

    .sort-bar select {
        width: 100%; /* Select box full width */
        font-size: 13px;
    }
    
    /* Mobile-e 2-column grid */
    .shop-main-content .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}


/* =================================== */
/* === CART PAGE (PREMIUM V2 - NO HERO) === */
/* =================================== */

/* --- 1. Navigation Bar Style (Notun) --- */
/* Ei class-ti cart.html-er <body> tag-e add kora ache */
body.cart-page .main-nav-container {
    margin-bottom: 0; /* Negative margin remove kora holo */
    background-color: var(--color-white); /* Shada background */
    position: relative;
    z-index: 100;
    padding-bottom: 0; 
}

/* --- 2. Cart Page Title Bar (Notun) --- */
.cart-page-title-bar {
    background-color: var(--color-light-bg, #f4f4f4);
    padding: 30px 30px;
    border-bottom: 1px solid var(--color-border, #ddd);
}
.cart-page-title-bar h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- 3. Cart Page Main Layout (Purono style-i thakbe) --- */
.cart-page-container {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff);
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- 4. Cart Items List (Purono style-i thakbe) --- */
.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-border, #ddd);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.cart-items-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
}
.btn-clear-cart {
    background: none;
    border: none;
    color: #e74c3c;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 3fr 1.5fr 1fr 40px; 
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--color-light-hover, #f5f5f5);
    padding: 25px 0;
}

.cart-item-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--color-border, #ddd);
}

.cart-item-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.cart-item-details h3 a {
    text-decoration: none;
    color: var(--text-color-logo, #222);
    transition: color 0.3s ease;
}
.cart-item-details h3 a:hover {
    color: var(--primary-color, #f37321);
}
.cart-item-details .unit-price {
    font-size: 14px;
    color: var(--text-color-medium, #555);
}

.cart-item .quantity-selector {
    height: 45px;
    max-width: 120px;
}
.cart-item .quantity-selector input { height: 45px; }
.cart-item .quantity-selector button { height: 45px; }

.cart-item-subtotal {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-color, #5f27cd);
    text-align: right;
}

.cart-item-remove {
    text-align: right;
}
.cart-item-remove button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}
.cart-item-remove button:hover {
    color: #e74c3c;
}

/* --- 5. Cart Summary (Purono style-i thakbe) --- */
.cart-summary-wrapper {
    position: sticky;
    top: 40px; 
}

.cart-summary-box {
    border: 1px solid var(--color-border, #ddd);
    border-radius: 10px;
    background-color: var(--color-light-bg, #f4f4f4);
    padding: 30px;
}

.cart-summary-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--color-border, #ddd);
    padding-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}
.summary-row span {
    color: var(--text-color-medium, #555);
}
.summary-row strong {
    color: var(--text-color-dark, #333);
}

.summary-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border, #ddd);
}
.summary-total span {
    font-size: 20px;
}
.summary-total strong {
    font-size: 22px;
    color: var(--primary-color, #f37321);
}

.btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--secondary-color, #5f27cd);
    color: var(--color-white, #fff);
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}
.btn-checkout:hover {
    background-color: var(--primary-color, #f37321);
}

.btn-continue-shopping {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 14px;
}

/* --- 6. Cart Page Responsive (Purono style-i thakbe) --- */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-wrapper {
        position: static;
        top: 0;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto;
        padding: 20px 0;
        gap: 10px 15px;
    }
    .cart-item-image {
        grid-row: 1 / 4;
    }
    .cart-item-details {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .cart-item-quantity {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        justify-self: start;
    }
    .cart-item-subtotal {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        text-align: left;
    }
    .cart-item-remove {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        justify-self: end;
    }
    .cart-item-details h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cart-page-container {
        padding: 40px 20px;
    }
    .cart-page-title-bar {
        padding: 20px;
    }
    .cart-page-title-bar h1 {
        font-size: 22px;
    }
    .cart-items-header h2 {
        font-size: 20px;
    }
    .cart-items-header .btn-clear-cart {
        font-size: 14px;
    }
    .cart-summary-box {
        padding: 25px 20px;
    }
}


/* =================================== */
/* === CHECKOUT PAGE (PREMIUM V3) === */
/* =================================== */

/* --- 1. Navigation Bar Style (Solid) --- */
body.checkout-page .main-nav-container {
    margin-bottom: 0; /* Negative margin remove */
    background-color: #ffffff00;
    position: relative;
    z-index: 100;
    padding-bottom: 0; 
}
/* Title Bar CSS remove kora hoyeche */


/* --- 2. Checkout Page Main Layout --- */
.checkout-page-container {
    padding: 80px 30px;
    background-color: var(--color-light-bg, #f4f4f4); /* Page-er BG halka gray kora holo */
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.7fr 1fr; /* Form 60%, Summary 40% */
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Checkout Form Input Styles Update */
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    /* ব্যাকগ্রাউন্ড কালার রিমুভ বা ট্রান্সপ্যারেন্ট করা হলো */
    background-color: transparent !important; 
}

/* Label-এর ব্যাকগ্রাউন্ড রিমুভ */
.checkout-form label {
    background-color: transparent !important;
}

/* Checkout Form Focus Remove */
.checkout-form input[type="text"]:focus,
.checkout-form input[type="email"]:focus,
.checkout-form input[type="tel"]:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none !important;
    /* ফোকাস করলে বর্ডার কালার আগের মতোই থাকবে বা আপনার পছন্দমত কালার দিতে পারেন */
    border-color: var(--color-border, #ddd) !important; 
    /* শ্যাডো বা গ্লো এফেক্ট রিমুভ করা হলো */
    box-shadow: none !important; 
}

.checkout-form textarea { min-height: 120px; }

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}
.form-group-checkbox input { width: auto; }
.form-group-checkbox label { margin: 0; font-weight: 500; }

.shipping-details-form {
    margin-top: 30px;
    display: none;
}

/* --- 4. Order Summary (Right Column) --- */
.order-summary-wrapper {
    position: sticky;
    top: 40px; 
    /* Ekhane background gray-er bodole white kora holo */
    background-color: var(--color-white, #fff); 
    border: 1px solid var(--color-border, #ddd);
    border-radius: 10px;
    padding: 30px;
}

.order-summary-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border, #ddd);
}

/* Product list (summary-te) */
.summary-item-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 15px;
    border-bottom: 1px solid var(--color-border, #ddd);
    margin-bottom: 20px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.summary-item-details {
    display: flex;
    align-items: center;
    gap: 15px;
}
.summary-item-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--color-border, #ddd);
}
.summary-item-info {
    font-size: 15px;
    color: var(--text-color-medium, #555);
}
.summary-item-info span {
    font-weight: 600;
    color: var(--text-color-dark, #333);
}
.summary-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-dark, #333);
}

/* Summary totals (cart theke reuse) */
.order-summary-wrapper .summary-row {
    font-size: 16px;
}
.order-summary-wrapper .summary-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border, #ddd);
}
.order-summary-wrapper .summary-total span {
    font-size: 20px;
}
.order-summary-wrapper .summary-total strong {
    font-size: 22px;
}

/* === NOTUN: Premium Payment Methods === */
.payment-methods {
    margin-top: 30px;
    border-top: 1px solid var(--color-border, #ddd);
    padding-top: 25px;
}
.payment-methods .payment-method {
    margin-bottom: 10px;
}
/* Radio button hide kora */
.payment-methods .payment-method input[type="radio"] {
    display: none;
}
/* Label-ke button-er moto style kora */
.payment-methods .payment-method label {
    display: block;
    padding: 15px 20px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-dark, #333);
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Hover effect */
.payment-methods .payment-method label:hover {
    border-color: var(--secondary-color, #5f27cd);
}
/* Selected state */
.payment-methods .payment-method input[type="radio"]:checked + label {
    border-color: var(--primary-color, #f37321);
    background-color: #FFF2E8; /* Light orange */
    box-shadow: 0 0 0 2px var(--primary-color, #f37321);
}

/* Place Order Button */
.btn-place-order {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--secondary-color, #5f27cd);
    color: var(--color-white, #fff);
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}
.btn-place-order:hover {
    background-color: var(--primary-color, #f37321);
}

/* --- 5. Checkout Page Responsive --- */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .order-summary-wrapper {
        position: static;
        top: 0;
        margin-top: 40px;
    }
}
@media (max-width: 480px) {
    .checkout-page-container {
        padding: 40px 20px;
    }
    .checkout-form-wrapper {
        padding: 30px 20px;
    }
    .checkout-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .order-summary-wrapper {
        padding: 25px 20px;
    }
}

/* === NOTUN: Premium Payment Methods (V3.1) === */
.payment-methods {
    margin-top: 30px;
    border-top: 1px solid var(--color-border, #ddd);
    padding-top: 25px;
}
.payment-methods .payment-method {
    margin-bottom: 10px;
}
/* Radio button hide kora */
.payment-methods .payment-method input[type="radio"] {
    display: none;
}
/* Label-ke button-er moto style kora */
.payment-methods .payment-method label {
    display: flex; /* Icon o Text-er jonno flex */
    align-items: center;
    gap: 15px; /* Icon theke text-er durotto */
    padding: 15px 20px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-dark, #333);
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Payment icon-er style */
.payment-methods .payment-method label i {
    font-size: 24px;
    color: var(--secondary-color, #5f27cd); /* Purple icon */
    width: 30px; /* Ekti fixed width */
    text-align: center;
}

/* Hover effect */
.payment-methods .payment-method label:hover {
    border-color: var(--secondary-color, #5f27cd);
}
/* Selected state */
.payment-methods .payment-method input[type="radio"]:checked + label {
    border-color: var(--primary-color, #f37321);
    background-color: #FFF2E8; /* Light orange */
    box-shadow: 0 0 0 2px var(--primary-color, #f37321);
}
.payment-methods .payment-method input[type="radio"]:checked + label i {
    color: var(--primary-color, #f37321); /* Active hole icon-er color orange */
}

/* === NOTUN: Premium Shipping Methods (V3.1) === */
.shipping-methods {
    margin-top: 20px;
    margin-bottom: 20px;
}
.shipping-methods h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color-dark, #333);
    margin-bottom: 15px;
}
.shipping-methods .shipping-method {
    margin-bottom: 10px;
}
/* Radio button hide kora */
.shipping-methods .shipping-method input[type="radio"] {
    display: none;
}
/* Label-ke button-er moto style kora */
.shipping-methods .shipping-method label {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ete price dan pashe thakbe */
    gap: 15px;
    padding: 15px 20px;
    border: 1px solid var(--color-border, #ddd);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-dark, #333);
    cursor: pointer;
    transition: all 0.3s ease;
}
.shipping-methods .shipping-method .label-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.shipping-methods .shipping-method label i {
    font-size: 20px;
    color: var(--secondary-color, #5f27cd);
    width: 25px;
    text-align: center;
}
.shipping-methods .shipping-method .label-price {
    font-weight: 700;
}

/* Hover effect */
.shipping-methods .shipping-method label:hover {
    border-color: var(--secondary-color, #5f27cd);
}
/* Selected state */
.shipping-methods .shipping-method input[type="radio"]:checked + label {
    border-color: var(--primary-color, #f37321);
    background-color: #FFF2E8; /* Light orange */
    box-shadow: 0 0 0 2px var(--primary-color, #f37321);
}
.shipping-methods .shipping-method input[type="radio"]:checked + label i {
    color: var(--primary-color, #f37321);
}


/* =================================================== */
/* === QUICK VIEW MODAL & HOVER BUTTON (FULL CODE) === */
/* =================================================== */

/* --- 1. Quick View Modal Frame (Wider) --- */
/* Ei style-gulo #quickViewModal-ke chawra korbe */
#quickViewModal {
    max-width: 800px; /* Width 550px theke 800px kora holo */
}

@media (max-width: 820px) {
    #quickViewModal {
        width: 90%; /* Mobile-e jeno responsive thake */
    }
}

/* --- 2. Quick View Modal Content --- */
/* Ei style-gulo modal-er vitorer content-ke sajiye dekhabe */
#quickViewModal .modal-content-wrapper {
    padding: 15px 5px;
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Image | Details */
    gap: 30px;
    align-items: flex-start;
}

.quick-view-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.quick-view-details .product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color-logo);
    margin-bottom: 10px;
    line-height: 1.3;
}

.quick-view-details .product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color); /* Purple price */
    margin-bottom: 15px;
}

.quick-view-details .product-price .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.quick-view-details .short-desc {
    font-size: 15px;
    color: var(--text-color-medium);
    line-height: 1.6;
    margin-bottom: 25px;
}

.quick-view-details .btn-view-details {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-view-details .btn-view-details:hover {
    background-color: var(--secondary-color);
}

.quick-view-details .btn-view-details i {
    margin-right: 8px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .quick-view-content {
        grid-template-columns: 1fr; /* Mobile-e stack hobe */
    }
    #quickViewModal {
        max-height: 90vh;
        overflow-y: auto;
    }
    .quick-view-details .product-title {
        font-size: 20px;
    }
}


/* --- 3. Product Card Hover Icon Hide Kora --- */
/* Top-right er cart icon-ti hide kora holo */
.product-actions .action-btn[aria-label="Add to Cart"] {
    display: none;
}

/* --- 4. Notun "Add to Cart" Button (Image er Niche) --- */
/* Ei CSS-ti kaj korar jonno "btn-add-to-cart-hover" span-ti "product-image-box" div er vitor thakte hobe */

.product-image-box {
    position: relative; /* Jate button-ti er vitor absolutely position kora jay */
    overflow: hidden; /* Jate button-ti baire na jay */
}

.btn-add-to-cart-hover {
    display: block;
    background-color: var(--secondary-color); /* Purple Color */
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 15px;
    
    /* Default-e hide rakhar jonno */
    opacity: 0;
    transform: translateY(100%); /* Niche theke slide hobe */
    transition: all 0.3s ease-in-out;
    
    /* Absolute positioning */
    position: absolute;
    bottom: 0; /* Ekdom niche */
    left: 0;
    right: 0;
    width: 100%; /* Full width */
    z-index: 10; /* Jate top-right icon er niche thake */
}

/* Product Card-e Hover korle button-ti show hobe */
.product-card:hover .btn-add-to-cart-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Notun button-e hover korle color change hobe */
.btn-add-to-cart-hover:hover {
    background-color: var(--primary-color); /* Orange Color */
}

.btn-add-to-cart-hover i {
    margin-right: 8px;
    font-size: 14px;
}

/* --- 5. Product Card Layout Adjustments --- */
/* Quick View icon guloke ektu opore tola holo */
.product-actions {
    z-index: 11; /* Jate Add to Cart button er opore thake */
}

/* Product name er opore padding thik rakha */
.product-name {
    padding: 15px 15px 5px 15px;
}

.product-price {
    padding: 0 15px 15px 15px; 
}

        .product-variations { margin-top: 20px; border-top: 1px solid #eee; padding-top: 15px; }
        .variation-group { margin-bottom: 15px; }
        .variation-group label { font-weight: bold; display: block; margin-bottom: 8px; }
        .variation-options { display: flex; gap: 8px; flex-wrap: wrap; }
        .variation-option {
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
            text-align: center;
        }
        /* ADDED: CSS for the selected state */
        .variation-option:hover, .variation-option.selected {
            border-color: #007bff;
            background-color: #f0f8ff;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
        }

                /* CSS FIX: Quantity Column Width */
        .cart-item-quantity {
            flex-basis: 180px; /* Increased overall container width */
            min-width: 180px;
        }
        .cart-item-quantity .quantity-selector {
            width: 160px; /* Increased selector width */
            min-width: 160px; 
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .cart-item-quantity .qty-input {
            width: 80px; /* Increased input width for typing */
            text-align: center;
            border: none; 
            padding: 5px 0;
            margin: 0;
            height: auto;
        }
        .cart-item-quantity .qty-btn {
            background: #f7f7f7;
            border: none;
            padding: 5px 8px;
            cursor: pointer;
            line-height: 1;
            flex-grow: 1;
        }
.cart-page-container {
    margin: 0 auto; /* default for mobile & small devices */
}

@media (min-width: 992px) {
    .cart-page-container{
        margin: 80px auto; /* for desktop */
    }
}
@media (min-width: 992px) {
    .product-page-container {
        margin: 100px auto; /* for desktop */
    }
}

@media (min-width: 992px) {
    .checkout-page-container {
        margin: 100px auto; /* for desktop */
    }
}



 /* Base styles from original checkout.html */
        .checkout-page {
            background-color: #f7f7f7;
        }
        .checkout-layout {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            gap: 30px;
            padding: 0 20px;
        }
        .checkout-form-wrapper {
            flex: 2;
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        .order-summary-wrapper {
            flex: 1;
            min-width: 300px;
            padding-top: 10px;
        }
        .order-summary-box h2 {
            border-bottom: 2px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.5em;
        }
        .summary-item-list {
            background: #fff;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dotted #ddd;
        }
        .summary-item:last-child {
            border-bottom: none;
        }
        .summary-item-details {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .summary-item-image img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
        }
        .summary-item-info {
            font-size: 0.9em;
            line-height: 1.3;
        }
        .summary-item-info span {
            font-weight: 600;
            color: #333;
        }
        .summary-item-info .options-summary {
            font-size: 0.8em;
            color: #777;
            margin-top: 2px;
        }
        .summary-item-price {
            font-weight: bold;
            color: #1e8449;
        }
        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .summary-total {
            font-weight: bold;
            font-size: 1.1em;
            border-top: 2px solid #333;
            padding-top: 15px !important;
            margin-top: 10px;
        }
        .btn-place-order {
            width: 100%;
            margin-top: 20px;
            padding: 15px;
            font-size: 1.1em;
            background-color: #007bff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .shipping-details-form {
            border: 1px solid #ddd;
            padding: 15px;
            margin-top: 15px;
            border-radius: 4px;
        }
        .shipping-details-form.hidden {
            display: none;
        }
        /* Styles for Shipping Method Display */
        .shipping-methods {
            margin-top: 20px;
            padding: 15px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
        .shipping-method {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .shipping-method label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            width: 100%;
        }
        .shipping-method .label-info {
            flex: 1;
            font-weight: 600;
        }
        .shipping-method .label-price {
             /* Price display REMOVED */
             display: none; 
        }

    button#placeOrderBtn{
        margin-top: -3px
    }

    /* --- START REVIEW FORM & INPUT STYLES --- */

.review-submission-form {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.review-submission-form h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

.review-form .form-group {
    margin-bottom: 15px;
}

.review-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #555;
    font-size: 0.95em;
}

.review-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    resize: vertical;
}

/* Star Rating Input Styling */
.star-rating-input {
    display: inline-block;
    font-size: 24px; /* Larger stars for input */
}

.star-rating-input .fa-star,
.star-rating-input .fa-star-half-stroke {
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    margin-right: 2px;
}

.star-rating-input .fa-solid {
    color: gold;
}

.star-rating-input .fa-regular {
    color: lightgray;
}

/* Submit Button */
#reviewSubmitBtn {
    padding: 10px 20px;
    background-color: var(--primary-color, #007bff);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

#reviewSubmitBtn:hover {
    background-color: #0056b3;
}

/* Alert messages for submission feedback */
.review-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
}

.review-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.review-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* --- END REVIEW FORM & INPUT STYLES --- */

.order-summary-wrapper .summary-total span{
    font-size: 15px !important;
    font-weight: 700;
}


/* ------- RESPONSIVE FIX FOR SINGLE PRODUCT PAGE ------- */
@media (max-width: 1024px) {
    .product-page-container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .product-main {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Gallery full width */
    .product-gallery {
        width: 100% !important;
        max-width: 100%;
        
    }

    .product-gallery-main img {
        width: 100% !important;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    /* Thumbnails row responsive */
    .product-gallery-thumbs-plain {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-gallery-thumbs-plain img {
        width: 70px;
        height: 70px;
        object-fit: cover;
    }

    /* Product details full width */
    .product-details {
        width: 100% !important;
        max-width: 100%;
    }
}

/* Phones */
@media (max-width: 600px) {
    .product-gallery-thumbs-plain img {
        width: 55px;
        height: 55px;
    }
}

/* WHOLESALE TABLE RESPONSIVE FIX */
.wholesale-pricing {
    width: 100%;
    overflow-x: auto;     /* allows horizontal scroll */
    -webkit-overflow-scrolling: touch;
}

.wholesale-pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;    /* ensures table stays readable */
}

.wholesale-pricing-table th,
.wholesale-pricing-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    white-space: nowrap;  /* prevent text from breaking */
}

/* Mobile/Tablets Fix */
@media (max-width: 768px) {
    .wholesale-pricing-table {
        font-size: 14px;
    }

    .wholesale-pricing {
        margin-bottom: 15px;
    }
}

/* Tablet: header overlap fix */
@media (min-width: 480px) and (max-width: 1024px) {
    .product-gallery-main {
        margin-top: 90px !important; /* Only tablet */
    }
}

/* Mobile: remove extra gap */
@media (max-width: 479px) {
    .product-gallery-main {
        margin-top: 0px !important; /* Mobile e gap dorkar nai */
    }
}

/* General Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

/* 1. Top Black Header */
.top-header {
    background: #5a1ba7; /* Purple base as per image top border */
    background: linear-gradient(90deg, #5118a1 0%, #7e22ce 100%);
    color: white;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
}

.top-center .badge {
    background: #ff8a00;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 800;
    margin-right: 10px;
}

/* 2. Main Navigation (Floating) */
.main-header {
    position: absolute;
    top: 50px; /* Right after top bar */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: white;
    border-radius: 50px;
    padding: 10px 30px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img { height: 35px; }

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #e67e22;
    -webkit-text-stroke: 0.5px black;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a.active { color: #e67e22; border-bottom: 2px solid #e67e22; }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    background: #f1f1f1;
    border-radius: 20px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    width: 120px;
}

.action-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
    color: #333;
}

.icon-item { position: relative; cursor: pointer; }

.count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ddd;
    color: #333;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.count.orange { background: #ff8a00; color: white; }

/* 3. Hero Slider */
.hero-slider {
    position: relative;
    height: 550px;
    background: white;
    overflow: hidden;
    padding-top: 100px; /* Space for floating nav */
}

/* Background Abstract Shapes (Same as image) */
.hero-slider::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 138, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    z-index: 2;
    position: relative;
}

.hero-left img { max-width: 400px; }

.hero-content {
    text-align: center;
}

.big-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.big-logo h1 {
    font-size: 60px;
    font-weight: 900;
    color: #ff8a00;
    -webkit-text-stroke: 2px #000;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 10px 0 30px;
}

/* Download Button (Same as image) */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(to right, #258fba, #37a8db);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 143, 186, 0.3);
}

.hero-right img { max-width: 250px; }

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 138, 0, 0.2);
    color: #ff8a00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
}

.dot.active { background: #ff8a00; width: 25px; border-radius: 10px; }

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    /* Top Header Adjustments */
    .top-center { display: none; } /* মোবাইলে মাঝখানের প্রোমো টেক্সট হাইড করা ভালো */
    
    /* Main Header Adjustments */
    .main-header {
        border-radius: 25px;
        padding: 10px 20px;
    }

    /* Hamburger Menu Icon */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* শুরুতে স্ক্রিনের বাইরে থাকবে */
        width: 250px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s;
        z-index: 999;
    }

    .nav-links.active {
        right: 0; /* ক্লিক করলে ভেতরে আসবে */
    }

    /* Mobile Menu Toggle Button */
    .menu-toggle {
        display: block !important;
        font-size: 24px;
        cursor: pointer;
        order: 3;
    }

    /* Search Bar Hide on Mobile (Optional) or Resize */
    .search-bar { display: none; } 

    /* Hero Section Adjustments */
    .hero-slider {
        height: auto;
        padding: 120px 20px 50px;
    }

    .hero-wrapper {
        flex-direction: column; /* এলিমেন্টগুলো একটির নিচে আরেকটি আসবে */
        text-align: center;
    }

    .hero-left img, .hero-right img {
        max-width: 200px; /* ইমেজ ছোট করা */
        margin: 20px 0;
    }

    .big-logo h1 {
        font-size: 35px; /* ফন্ট সাইজ ছোট করা */
        -webkit-text-stroke: 1px #000;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .btn-download {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Default hidden toggle */
.menu-toggle {
    display: none;
}

/* Category Section Styles */
.shop-categories {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-left: 10px;
}

.category-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* মোবাইলের জন্য */
}

.category-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-10px);
}

.category-box {
    height: 160px;
    border-radius: 30px; /* ইমেজের মতো রাউন্ডেড কর্নার */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

/* Background Colors for each Category */
.cat-bg { background-color: #fef1b4; }
.dog-bg { background-color: #b4e7f8; }
.small-pet-bg { background-color: #c8e6c9; }
.fish-bg { background-color: #e0e0e0; }
.bird-bg { background-color: #f8bbd0; }

.category-box img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-item:hover .category-box img {
    transform: scale(1.1);
}

.category-item p {
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* মোবাইলে ২ কলাম */
        gap: 15px;
    }
    
    .section-title {
        text-align: center;
        font-size: 20px;
    }
}

/* Mobile Responsive: Horizontal Scroll Style */
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .category-grid {
        display: flex; /* গ্রিড থেকে ফ্লেক্স এ পরিবর্তন */
        flex-wrap: nowrap; /* লাইন ব্রেক হবে না */
        overflow-x: auto; /* বাম থেকে ডানে স্ক্রল করার সুবিধা */
        padding: 10px 15px 20px;
        gap: 15px;
        
        /* স্মুথ স্ক্রলিং এর জন্য */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* স্ক্রলবার হাইড করার জন্য (ঐচ্ছিক কিন্তু সুন্দর দেখায়) */
    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        flex: 0 0 140px; /* প্রতিটি কার্ডের ফিক্সড সাইজ যেন ছোট না হয়ে যায় */
        scroll-snap-align: start; /* স্লাইড করার সময় কার্ডগুলো ঠিকমতো থামবে */
    }

    .category-box {
        height: 120px; /* মোবাইলে বক্সের হাইট কিছুটা কমানো হয়েছে */
        border-radius: 20px;
    }

    .category-item p {
        font-size: 14px;
        margin-top: 8px;
    }
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* এটি ডানে-বামে স্ক্রল হওয়া বন্ধ করবে */
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .shop-categories .container {
        width: 100%;
        padding: 0; /* কন্টেইনারের সাইড প্যাডিং সরিয়ে ফেলুন যেন গ্রিডটি ফুল উইডথ পায় */
        overflow: hidden;
    }

    .category-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto; /* শুধুমাত্র এই গ্রিডটুকু স্ক্রল হবে */
        padding: 10px 15px 25px; /* নিচের দিকে শ্যাডো দেখার জন্য সামান্য প্যাডিং */
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
}
.main-header {
    box-sizing: border-box; /* এটি নিশ্চিত করবে যে প্যাডিং উইডথ এর ভেতরেই থাকে */
    max-width: 95%; /* মোবাইলে যেন স্ক্রিনের বাইরে না যায় */
}



/* Special Offers Section */
.special-offers {
    padding: 60px 0;
    background-color: #fff;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.offers-grid {
    display: flex;
    gap: 20px;
}

.offer-card {
    flex: 1;
    height: 280px; /* কার্ডের হাইট */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* ইমেজ পুরো কার্ড জুড়ে থাকবে */
    transition: transform 0.3s ease;
}

/* প্রতিটি কার্ডের জন্য আলাদা ইমেজ এবং গ্রেডিয়েন্ট ওভারলে */
.offer-bg-1 {
    background-image: linear-gradient(to right, rgba(232, 245, 233, 0.95) 40%, rgba(255,255,255,0) 100%), 
                      url('https://i.ibb.co/L6Vv0pZ/premium-food.png');
}

.offer-bg-2 {
    background-image: linear-gradient(to right, rgba(232, 245, 233, 0.95) 40%, rgba(255,255,255,0) 100%), 
                      url('https://i.ibb.co/kM3PZ0X/economy-pack.png');
}

.offer-bg-3 {
    background-image: linear-gradient(to right, rgba(232, 245, 233, 0.95) 40%, rgba(255,255,255,0) 100%), 
                      url('https://i.ibb.co/M7yR5P7/clearance-sale.png');
}

.offer-card:hover {
    transform: scale(1.02);
}

.offer-content {
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.offer-text p {
    font-size: 18px;
    color: #2e7d32;
    font-weight: 500;
}

.offer-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1b5e20;
    margin-top: 5px;
    line-height: 1.2;
    max-width: 220px;
}

/* Round Button Style */
.round-btn {
    align-self: flex-end; /* বাটন ডানে থাকবে */
    background-color: #ff8a00;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.4);
    transition: 0.3s;
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.round-btn:hover {
    background-color: #e67e22;
    transform: rotate(-45deg); /* হালকা এনিমেশন */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .offers-grid {
        flex-direction: column;
        padding: 0 15px;
    }
    .offer-card {
        height: 220px;
    }
    .offer-text h3 {
        font-size: 22px;
    }
}

/* Recommendations Section Styles */
.recommendations {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* ৬টি কলাম ডেস্কটপে */
    gap: 10px; /* কার্ডগুলোর মাঝখানের টাইট গ্যাপ */
    width: 100%;
}

.product-card {
    background: #fff;
    padding: 0 !important; /* কার্ড এবং ইমেজের মাঝে কোনো প্যাডিং নেই */
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden; /* রিবন যেন কার্ডের বাইরে না যায় */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #ff8a00;
}

/* --- Corner Ribbon Badge Style (Image 9 এর মতো) --- */
.ribbon {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #000; /* কালো টেক্সট */
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #FFD700; /* হলুদ ব্যাকগ্রাউন্ড (Image 9 এর মতো) */
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1); /* হালকা শ্যাডো */
    position: absolute;
    top: 19px;
    left: -21px;
}

/* Product Image - Full Width */
.p-img {
    width: 100%;
    height: 180px;
    background: #fff;
    margin: 0;
    padding: 0;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ইমেজ স্ট্রেচ হবে না */
    display: block;
}

/* Product Details */
.p-details {
    padding: 12px;
    background: #fff;
    border-top: 1px solid #f5f5f5;
}

.rating {
    font-size: 11px;
    color: #ff8a00; /* অরেঞ্জ স্টার */
    margin-bottom: 6px;
}

.rating i.grey { color: #e0e0e0; }

.p-title {
    font-size: 13px;
    color: #000; /* কালো টাইটেল */
    font-weight: 600;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
    margin-bottom: 8px;
}

/* USD Price Styling */
.main-price {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.unit-price {
    font-size: 10px;
    color: #888;
}

.badge-yellow {
    display: inline-block;
    background: #fdd835; /* হলুদ প্রাইস ব্যাজ */
    color: #333;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 15px;
}

/* Mobile Responsive - Horizontal Scroll */
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .product-grid {
        display: flex;
        overflow-x: auto;
        padding: 10px 0 20px;
        gap: 10px;
        scroll-snap-type: x mandatory;
    }
    
    .product-grid::-webkit-scrollbar { display: none; }

    .product-card {
        flex: 0 0 170px;
        scroll-snap-align: start;
    }
}



/* --- Dog Spotlight Section Styles --- */
.dog-spotlight {
    padding: 60px 0;
    background-color: #fff;
}

/* Main Banner Style */
.main-banner {
    background-color: #add8e6; /* Light blue background */
    border-radius: 20px; /* Rounded corners like image_10.png */
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    min-height: 250px;
}

.banner-text h3 {
    font-size: 32px;
    font-weight: 500;
    color: #2c5057; /* Dark greenish-blue color */
    margin-bottom: -10px;
}

.banner-text h1 {
    font-size: 90px; /* Big "Dogs" text */
    font-weight: 900;
    color: #2c5057;
    line-height: 1;
}

.banner-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 110%; /* Image slightly larger than container to peek out */
    display: flex;
    align-items: flex-end;
}

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

/* Sub Banners Grid */
.sub-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 25px; /* Gap between cards */
}

/* Sub Card Common Styles */
.sub-card {
    position: relative;
    overflow: hidden;
    /* টেক্সট যাতে ছবির উপরে স্পষ্ট দেখা যায় তার জন্য প্যাডিং */
    padding: 15px; 
    /* কার্ডের হাইট ফিক্সড করে দিলে ভালো দেখাবে */
    height: 190px; 
    display: flex;
    align-items: flex-start; /* টেক্সট উপরের দিকে থাকবে */
    justify-content: flex-start;
}

/* লেখার পজিশন ঠিক করা (ছবির উপরে) */
.sub-card h3 {
    position: relative;
    z-index: 1; /* লেখা ছবির উপরে থাকবে */
    color: #fff; /* ব্যাকগ্রাউন্ড কালার যাই হোক, সাদা লেখা ফুটবে */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* লেখার নিচে ছায়া */
    font-weight: bold;
    margin: 0;
    width: 100%;
}

.sub-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* ছবি চ্যাপ্টা না হয়ে পুরো বক্স কভার করবে */
    z-index: 0; /* ছবি নিচে থাকবে */
    opacity: 0.8; /* লেখার নিচে ছবিটা একটু হালকা দেখাবে, যাতে লেখা পড়া যায় */
}

/* Specific Card Colors & Image Positioning */

/* Green Card */
.green-card {
    background-color: #c1e1a6; /* Light green */
}
.green-card img {
    right: 10px;
    bottom: -10px;
    max-height: 85%;
}

/* Blue Card */
.blue-card {
    background-color: #aed9e0; /* Light blue */
}
.blue-card img {
    right: 50%;
    transform: translateX(50%); /* Center horizontally */
    bottom: 0;
    max-height: 95%;
    max-width: 80%;
}

/* Yellow Card */
.yellow-card {
    background-color: #f3e095; /* Light yellow */
}
.yellow-card img {
    right: -20px;
    bottom: 0;
    max-height: 90%;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .main-banner {
        padding: 30px 40px;
        min-height: 200px;
    }
    .banner-text h1 { font-size: 70px; }
    .banner-text h3 { font-size: 26px; }
    
    .sub-card h3 { font-size: 18px; }
}

@media (max-width: 768px) {
    /* Main Banner Stacked */
    .main-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px 0; /* Remove bottom padding for image */
        height: auto;
    }
    .banner-img {
        position: relative;
        height: 200px;
        width: 100%;
        justify-content: flex-end;
        margin-top: -40px; /* Pull image up slightly */
    }
    .banner-text { z-index: 2; }

    /* Sub Banners Stacked */
    .sub-banners-grid {
        grid-template-columns: 1fr; /* 1 column */
        gap: 20px;
    }
    .sub-card {
        height: 110px !important;
    }
    .sub-card h3 { max-width: 100%; }
    .sub-card img { max-height: 80%; }
}


/* --- Top Sellers For Dogs Styles --- */
.dog-sellers {
    padding: 60px 0;
    background-color: #fff;
}

/* Product Card Design - Zero Padding */
.dog-sellers .product-card {
    background: #fff;
    padding: 0 !important; /* থাম্বনেইলের সাথে কোনো গ্যাপ থাকবে না */
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden; /* রিবন ব্যাজ যেন ভেতরে থাকে */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.dog-sellers .product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #ff8a00;
}

/* --- Corner Ribbon Badge (Yellow Style as per image) --- */
.ribbon {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 10;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #000; /* কালো টেক্সট */
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #FFD700; /* ইমেজের মতো হলুদ ব্যাকগ্রাউন্ড */
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    left: -21px;
}

/* Product Thumbnail */
.dog-sellers .p-img {
    width: 100%;
    height: 180px;
    background: #fff;
}

.dog-sellers .p-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Product Details - Black Title & USD */
.dog-sellers .p-details {
    padding: 12px;
    background: #fff;
    border-top: 1px solid #f5f5f5;
}

.dog-sellers .p-title {
    font-size: 13px;
    color: #000; /* কালো টাইটেল */
    font-weight: 600;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
    margin-bottom: 8px;
}

.dog-sellers .main-price {
    font-size: 18px;
    font-weight: 800;
    color: #333; /* USD Price */
}

/* --- Cat Spotlight Specific Styles --- */
.cat-spotlight {
    padding: 60px 0;
    background-color: #fff;
}

/* মেইন ব্যানারের হলুদ ব্যাকগ্রাউন্ড এবং টেক্সট কালার */
.cat-main-bg {
    background-color: #f6d683 !important; /* স্ক্রিনশট অনুযায়ী হলুদ কালার */
}

.cat-big-text {
    color: #4b3621 !important; /* বিড়ালের টেক্সটের জন্য ডার্ক ব্রাউন কালার */
}

/* সাব-কার্ডের নির্দিষ্ট কালারগুলো */
.sub-card.cat-green {
    background-color: #c7e6a5; /* হালকা সবুজ */
}

.sub-card.cat-blue {
    background-color: #b7e1f1; /* হালকা নীল */
}

.sub-card.cat-purple {
    background-color: #cfc1e7; /* হালকা বেগুনি */
}

/* Dogs সেকশনের মতো একই লেআউট নিশ্চিত করা */
.cat-spotlight .main-banner {
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    min-height: 250px;
}

.cat-spotlight .sub-card {
    border-radius: 20px;
    padding: 25px;
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cat-spotlight .sub-card img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 90%;
    object-fit: contain;
}


/* --- Top Sellers For Cats Styles --- */
.cat-sellers {
    padding: 60px 0;
    background-color: #f9f9f9; /* হালকা ধূসর ব্যাকগ্রাউন্ড */
}

/* কার্ডের ভেতরে কোনো প্যাডিং থাকবে না */
.cat-sellers .product-card {
    padding: 0 !important;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* রিবন ব্যাজের পজিশন */
.cat-sellers .ribbon {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 10;
}

/* থাম্বনেইল স্টাইল */
.cat-sellers .p-img {
    width: 100%;
    height: 180px;
}

.cat-sellers .p-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* টাইটেল এবং প্রাইস */
.cat-sellers .p-title {
    color: #000; /* কালো টাইটেল */
    font-weight: 600;
}

.cat-sellers .main-price {
    color: #333;
    font-weight: 800; /* USD Currency */
}



/* --- Testimonial Section Styles --- */
.testimonials {
    padding: 60px 0 80px;
    background-color: #ffffff; /* নির্দেশনা অনুযায়ী সেকশন ব্যাকগ্রাউন্ড সাদা */
}

/* Title Styling */
.testimonial-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.testimonial-title .highlight {
    color: #ff8a00; /* ইমেজের মতো অরেঞ্জ কালার */
    font-weight: 800;
}

/* Wrapper for arrows and cards */
.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

/* Cards Container Grid */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ৩ কলাম */
    gap: 30px;
    flex-grow: 1;
}

/* --- Testimonial Card Style --- */
.t-card {
    background-color: #f9f9f9; /* নির্দেশনা অনুযায়ী কার্ড ব্যাকগ্রাউন্ড অফ-হোয়াইট */
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* সাদা ব্যাকগ্রাউন্ডে ভেসে থাকার জন্য হালকা শ্যাডো */
    transition: transform 0.3s ease;
}

.t-card:hover {
    transform: translateY(-5px); /* হোভারে হালকা উপরে উঠবে */
}

/* Header: Avatar & Info */
.t-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0; /* ইমেজের মতো ধূসর ব্যাকগ্রাউন্ড */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #555;
}

.t-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.t-info p {
    font-size: 12px;
    color: #888;
}

/* Rating Stars */
.rating {
    color: #ff8a00;
    font-size: 12px;
    margin-bottom: 15px;
}

/* Review Text */
.review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Navigation Arrows */
.nav-arrow {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    color: #ff8a00;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: #ff8a00;
    color: white;
    border-color: #ff8a00;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .testimonial-cards {
        grid-template-columns: 1fr; /* মোবাইলে এক কলাম */
        gap: 20px;
    }
    .testimonial-wrapper {
        /* মোবাইলে অ্যারো হাইড করা যেতে পারে, অথবা স্লাইডার বানালে রাখা যাবে */
        justify-content: center;
    }
    .nav-arrow {
        display: none; /* আপাতত মোবাইলে অ্যারো হাইড করা হলো */
    }
}


/* --- Instagram Feed Styles --- */
.instagram-section {
    padding: 80px 0;
    background-color: #f3f4f7; /* স্ক্রিনশট অনুযায়ী হালকা ব্যাকগ্রাউন্ড */
    text-align: center;
}

/* Header Styling */
.insta-header {
    margin-bottom: 40px;
}

.insta-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.insta-header h2 i {
    color: #d4a017; /* ইনস্টাগ্রাম আইকনের গোল্ডেন কালার */
    font-size: 28px;
}

.insta-header p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Instagram Grid Layout */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* ৫টি কলাম স্ক্রিনশট অনুযায়ী */
    gap: 15px; /* ইমেজের মাঝখানের গ্যাপ */
}

.insta-item {
    width: 100%;
    aspect-ratio: 1 / 1; /* ইমেজগুলোকে স্কয়ার (Square) রাখার জন্য */
    overflow: hidden;
    border-radius: 4px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ইমেজ যেন ফেটে না যায় */
    transition: transform 0.5s ease;
    cursor: pointer;
}

/* Hover Effect */
.insta-item:hover img {
    transform: scale(1.1); /* হোভারে হালকা জুম হবে */
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr); /* ট্যাবলেটে ৩টি কলাম */
    }
}

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr); /* মোবাইলে ২টি কলাম */
    }
    .insta-header h2 {
        font-size: 24px;
    }
}


/* --- Premium Newsletter V2 Styles --- */
.newsletter-v2 {
    padding: 10px 0;
    background-color: #fcfcfc; /* Very light background */
    margin-bottom: 30px;
}

.newsletter-box {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Soft Shadow */
    position: relative;
    overflow: hidden;
}

/* Background subtle element */
.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 138, 0, 0.05); /* Light Orange circle */
    border-radius: 50%;
}

/* Left Content Styles */
.news-content {
    flex: 1;
}

.sub-title {
    color: #ff8a00; /* Theme Orange */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.news-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.text-orange {
    color: #ff8a00;
}

.news-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Right Form Styles */
.news-form-wrapper {
    flex: 1;
    max-width: 450px;
}

.news-form {
    width: 100%;
}

.form-group {
    display: flex;
    background: #f4f4f400;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.form-group:focus-within {
    border-color: #ff8a00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1);
}

.form-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 15px;
    outline: none;
    color: #333;
}

.submit-btn {
    background-color: #1b5e20; /* Dark Green from theme */
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #ff8a00; /* Orange on hover */
    transform: translateY(-2px);
}

.privacy-text {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    text-align: left;
}

.privacy-text a {
    color: #666;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .news-form-wrapper {
        width: 100%;
    }
    .privacy-text {
        text-align: center;
    }
    .news-content h2 {
        font-size: 28px;
    }
}


/* --- Special Offers Hero Section Styles --- */
.page-hero {
    background-color: #fdfaf7; /* Light off-white background as per screenshot */
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* To hide the overflowing shapes */
}

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

.page-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}

.breadcrumb a {
    text-decoration: none;
    color: #777; /* Grey color for parent link */
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #ff8a00;
}

.breadcrumb i {
    font-size: 14px;
    color: #ccc;
}

.breadcrumb .current {
    color: #ff8a00; /* Orange highlight as per screenshot */
}

/* Decorative Blobs (Same to Same as Image 37) */
.hero-shape {
    position: absolute;
    background-color: #ff8a00;
    opacity: 0.08; /* Very soft opacity */
    filter: blur(50px);
    border-radius: 50%;
    z-index: 1;
}

.shape-left {
    width: 400px;
    height: 400px;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.shape-right {
    width: 350px;
    height: 350px;
    right: -100px;
    top: 20%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }
    .page-title {
        font-size: 36px;
    }
    .breadcrumb {
        font-size: 16px;
    }
}


/* --- Special Offers Grid Styles --- */
.offers-grid-section {
    padding: 60px 0;
    background-color: #fff;
}

.offers-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ডেস্কটপে ৪টি কলাম */
    gap: 25px;
    row-gap: 35px;
}

.offer-category-card {
    text-align: center;
}

.category-img-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* স্কয়ার শেপ */
    border-radius: 15px; /* রাউন্ডেড কর্নার */
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge Styles */
.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.red-badge { background-color: #d32f2f; }
.green-badge { background-color: #388e3c; }

.offer-category-card p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* --- Mobile Responsive (১ সারিতে ২টা কার্ড) --- */
@media (max-width: 768px) {
    .offers-category-grid {
        grid-template-columns: repeat(2, 1fr); /* মোবাইলে ২টি কলাম */
        gap: 15px; /* ছোট স্ক্রিনে গ্যাপ কমানো হয়েছে */
        row-gap: 25px;
    }
    
    .offers-grid-section {
        padding: 40px 15px; /* সাইড প্যাডিং */
    }

    .category-badge {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .offer-category-card p {
        font-size: 13px; /* টেক্সট সাইজ কিছুটা কমানো হয়েছে যেন ২ লাইনে না ভেঙে যায় */
    }
}

/* Contact Form Fix override */
.contact-form-card .form-group {
    display: block; /* Flex সরিয়ে নিচে নিচে দেখাবে */
    background: transparent; /* নিউজলেটার এর ব্যাকগ্রাউন্ড রিমুভ */
    padding: 0;
    border: none;
    margin-bottom: 25px;
}

/* Special Offers Grid Layout Update */
.offers-grid {
    display: grid;
    /* ল্যাপটপ বা ডেস্কটপে ৪টা কার্ড দেখাবে */
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px;
}

/* মোবাইল রেসপন্সিভ ডিজাইন */
@media (max-width: 768px) {
    .offers-grid {
        /* মোবাইলে ১ সারিতে ২টা কার্ড দেখাবে */
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px; /* মোবাইলে গ্যাপ একটু কমিয়ে দেওয়া হলো সুন্দর দেখানোর জন্য */
    }
    
    /* মোবাইলে কার্ডের লেখাগুলো যাতে ভেঙে না যায় তার জন্য ফন্ট সাইজ এডজাস্টমেন্ট */
    .offer-content h3 {
        font-size: 14px !important;
    }
    .offer-content p {
        font-size: 11px !important;
    }
    .offer-card {
        min-height: 180px; /* মোবাইলের জন্য হাইট ফিক্স */
    }
}


/* --- Mobile: Everything for Dogs/Cats Grid Fix --- */
@media (max-width: 768px) {
    
    /* গ্রিড ৩ কলামে ভাগ করা */
    .sub-banners-grid {
        grid-template-columns: repeat(3, 1fr) !important; /* জোর করে ৩ কলাম */
        gap: 8px !important; /* গ্যাপ কমানো হয়েছে */
    }

    /* কার্ডের সাইজ ছোট করা */
    .sub-card {
        height: 110px !important; /* হাইট কমানো হলো */
        padding: 10px !important; /* প্যাডিং কমানো হলো */
        border-radius: 12px !important;
    }

    /* টাইটেল ফন্ট ছোট করা */
    .sub-card h3 {
        font-size: 10px !important; /* ফন্ট অনেক ছোট করা হলো যাতে ধরে */
        line-height: 1.2;
        max-width: 100%;
    }

    /* ছবি এডজাস্ট করা */
    .sub-card img {
        max-height: 100px !important; /* ছবির হাইট ফিক্স */
        max-width: 60px !important;
        right: -5px !important; /* পজিশন ঠিক করা */
        bottom: 0 !important;
    }
    
    /* স্পেসিফিক ইমেজ পজিশন ফিক্স (যদি দরকার হয়) */
    .green-card img { right: -5px !important; }
    .blue-card img { right: 50% !important; transform: translateX(50%) !important; }
    .yellow-card img { right: -10px !important; }
}


/* --- Checkout Form Stacked Fix --- */
.checkout-form .form-group {
    display: block !important;
    margin-bottom: 20px;
}

.checkout-form label {
    display: block !important;
    width: 100%;
    margin-bottom: 8px; /* লেবেল এবং ইনপুটের মাঝখানে গ্যাপ */
    font-weight: 600;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    width: 100% !important;
    display: block !important;
}


/* --- Mobile Testimonial Arrow Fix (Corrected for ID) --- */
@media only screen and (max-width: 992px) {
    /* ১. বাটনগুলো ফোর্স করে দেখানো */
    #prevTesti,
    #nextTesti {
        display: flex !important; 
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 999 !important; /* সবার উপরে থাকার জন্য */
        
        /* বাটনের সাইজ ও স্টাইল */
        width: 35px !important;
        height: 35px !important;
        background-color: #fff !important;
        border: 1px solid #ddd !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
        
        /* পজিশন ঠিক করা */
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        
        /* আইকন মাঝখানে আনা */
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
    }

    /* ২. বাম পাশের বাটন স্ক্রিনের ভেতরে আনা */
    #prevTesti {
        left: 5px !important; /* আগে -10px ছিল, তাই স্ক্রিনের বাইরে চলে যাচ্ছিল */
    }

    /* ৩. ডান পাশের বাটন স্ক্রিনের ভেতরে আনা */
    #nextTesti {
        right: 5px !important; /* আগে -10px ছিল, তাই স্ক্রিনের বাইরে চলে যাচ্ছিল */
    }
    
    /* ৪. আইকনের সাইজ ঠিক করা */
    #prevTesti i,
    #nextTesti i {
        font-size: 14px !important;
        color: #333 !important;
    }
}

/* Desktop: 4 items in 1 row */
    .insta-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* ৪টি কলাম */
        gap: 20px;
    }

    /* Wrapper Style Update */
    .insta-item-wrapper {
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        height: 420px; /* হাইট একটু বাড়ানো হলো যাতে কন্টেন্ট কেটে না যায় */
        position: relative;
        transition: transform 0.3s ease;
        display: flex;
        align-items: center; /* সেন্টারে রাখার জন্য */
        justify-content: center;
    }
    
    .insta-item-wrapper:hover {
        transform: translateY(-5px);
    }

    /* For Fallback Images */
    .insta-item-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Instagram Embed Iframe Control */
    .instagram-media {
        min-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        height: 100% !important; /* ফুল হাইট নেবে */
        object-fit: cover;
    }

    /* Responsive: Mobile & Tablet adjustment */
    @media (max-width: 991px) {
        .insta-grid-4 {
            grid-template-columns: repeat(2, 1fr); /* ট্যাবলেটে ২টি */
        }
        .insta-item-wrapper {
            height: 400px; 
        }
    }
    @media (max-width: 480px) {
        .insta-grid-4 {
            grid-template-columns: repeat(1, 1fr); /* মোবাইলে ১টি */
        }
        .insta-item-wrapper {
            height: auto;
            max-height: 500px;
        }
    }