/* --- 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: 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;
    }
    
   /* মেইন নেভিগেশন (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 করা হলো */
}



/* --- টপ ক্যাটাগরি সেকশন স্টাইল --- */
.categories-section {
    padding: 60px 30px;
    background-color: var(--color-white); /* সেকশনের সাদা ব্যাকগ্রাউন্ড */
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color-logo);
    margin-bottom: 40px;
}

/* টাইটেলের অরেঞ্জ কালার (ইমেজের মতো) */
.section-title {
    color: var(--text-color-logo); /* ডিফল্ট কালার কালো */
}
.section-title span {
    color: var(--primary-color); /* 'Top' এর কালার অরেঞ্জ */
}

.category-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap; /* ডেস্কটপে যেন র‍্যাপ হয় */
}

.category-card {
    text-decoration: none;
    color: var(--text-color-dark);
    width: 200px; /* প্রতিটি কার্ডের প্রস্থ */
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px); /* হোভারে সামান্য উপরে উঠবে */
}

.category-image-wrapper {
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 15px;
    overflow: hidden; /* ইমেজের কর্নার ঠিক রাখার জন্য */
}

.category-image-wrapper img {
    width: 100%;
    height: 160px; /* সব ইমেজ যেন সমান উচ্চতা পায় */
    object-fit: contain; /* ইমেজ যেন কেটে না যায় */
    transition: transform 0.3s ease;
}

.category-card:hover .category-image-wrapper img {
    transform: scale(1.05); /* হোভারে ইমেজ জুম হবে */
}

.category-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-logo);
}

/* ইমেজের ব্যাকগ্রাউন্ড কালারগুলো */
.bg-cat-food { background-color: #fcf1e5; }
.bg-cat-toys { background-color: #fbeef2; }
.bg-dog-food { background-color: #fcf1e5; }
.bg-supplements { background-color: #f2f3f5; }
.bg-dog-toys { background-color: #f2f8f0; }


/* --- রেসপন্সিভ (ক্যাটাগরি সেকশন) --- */
@media (max-width: 992px) {
    .category-container {
        /* ট্যাবলেট ও মোবাইলে যেন পাশাপাশি স্ক্রল করা যায় */
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 20px; /* স্ক্রলবারের জন্য প্যাডিং */
    }
    
    .category-card {
        flex-shrink: 0; /* যেন কার্ডগুলো ছোট না হয়ে যায় */
        width: 160px; /* মোবাইলে কার্ডের প্রস্থ কমানো হলো */
    }

    .category-image-wrapper img {
        height: 120px; /* মোবাইলে ইমেজের উচ্চতা কমানো হলো */
    }
}

/* =================================== */
/* Products Tab Section Styles */
/* =================================== */

/* আপনার CSS ভ্যারিয়েবলগুলো (--primary-color, --text-color-logo, ইত্যাদি) 
   আপনার মূল CSS ফাইলে ঠিকমতো ডিফাইন করা আছে বলে ধরে নিচ্ছি। */

.products-tab-section {
    padding: 80px 30px;
    background-color: var(--color-white, #ffffff); /* ফলব্যাক কালার */
    text-align: center; /* View All বাটনকে মাঝখানে আনার জন্য */
}

.tab-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--color-border, #f0f0f0); /* ফলব্যাক কালার */
    padding-bottom: 10px; /* বর্ডারের থেকে কিছুটা উপরে */
    max-width: 400px; /* ট্যাবের হেডারের সর্বোচ্চ প্রস্থ */
    margin-left: auto;
    margin-right: auto;
}

.tab-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color-medium, #888888); /* ইনঅ্যাক্টিভ ট্যাবের রঙ */
    cursor: pointer;
    position: relative;
    padding: 0 10px;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.tab-title.active {
    color: var(--text-color-logo, #222222); /* অ্যাক্টিভ ট্যাবের রঙ */
}

/* অ্যাক্টিভ ট্যাবের নিচে আন্ডারলাইন */
.tab-title.active::after {
    content: '';
    position: absolute;
    bottom: -12px; /* বর্ডারের সাথে মিলিয়ে */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color, #FF5733); /* ব্র্যান্ড কালার */
    border-radius: 2px;
}

.tab-content-container {
    margin-bottom: 50px;
}

.tab-content {
    display: none; /* ডিফল্টভাবে সব ট্যাব কনটেন্ট লুকানো থাকবে */
    animation: fadeIn 0.5s ease; /* ছোট্ট ফেড-ইন ইফেক্ট */
}

.tab-content.active {
    display: block; /* অ্যাক্টিভ ট্যাব কনটেন্ট দেখানো হবে */
}

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

.product-grid {
    display: grid;
    /* --- ৫টি প্রোডাক্টের জন্য পরিবর্তন --- */
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); 
    gap: 20px; /* গ্যাপ ৩০px থেকে ২০px করা হয়েছে */
    /* --------------------------------- */
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color-dark, #333);
    text-align: left;
    background-color: var(--color-white, #ffffff);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* স্কয়ার ইমেজ বক্স */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-light-bg, #f5f5f5); /* ইমেজের ব্যাকগ্রাউন্ড */
    padding: 0px;
    box-sizing: border-box; /* প্যাডিং যেন সাইজ নষ্ট না করে */
}

.product-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-box img {
    transform: scale(1.05);
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-logo, #222222);
    padding: 15px 20px 5px 20px;
    min-height: 70px; /* নামের জন্য পর্যাপ্ত জায়গা */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 লাইনের বেশি হলে ... দেখাবে */
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #FF5733);
    padding: 5px 20px 20px 20px;
}

.view-all-button-container {
    /* এই ক্লাসের জন্য কোনো স্টাইল আপনার কোডে ছিল না, 
       তবে বাটনটি .btn-secondary ক্লাস ব্যবহার করছে */
}

.btn-secondary {
    display: inline-block;
    background-color: var(--text-color-logo, #222222); /* কালো ব্যাকগ্রাউন্ড */
    color: var(--text-color-light, #ffffff);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background-color: #555; /* হোভারে একটু হালকা কালো */
}

/* --- রেসপন্সিভ (প্রোডাক্ট ট্যাব সেকশন) --- */
@media (max-width: 992px) {
    .products-tab-section {
        padding: 60px 20px;
    }
    .tab-header {
        margin-bottom: 40px;
        gap: 20px;
        max-width: 350px;
    }
    .tab-title {
        font-size: 24px;
    }
    .product-grid {
        /* ট্যাবলেটে ৩টি দেখাবে */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 20px;
    }
    .product-name {
        font-size: 15px;
        padding: 12px 15px 5px 15px;
        min-height: 60px;
    }
    .product-price {
        font-size: 16px;
        padding: 5px 15px 15px 15px;
    }
    .btn-secondary {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .products-tab-section {
        padding: 40px 15px;
    }
    .tab-header {
        margin-bottom: 30px;
        gap: 15px;
        max-width: 280px;
    }
    .tab-title {
        font-size: 17px;
    }
    .tab-title.active::after {
        height: 2px;
        bottom: -10px;
    }
    .product-grid {
        /* মোবাইলে ২টি দেখাবে */
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
        gap: 15px;
    }
    .product-name {
        font-size: 13px;
        padding: 10px 10px 5px 10px;
        min-height: 50px;
    }
    .product-price {
        font-size: 14px;
        padding: 5px 10px 10px 10px;
    }
    .btn-secondary {
        padding: 8px 20px;
        font-size: 14px;
    }
}



/* =================================== */
/* 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: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 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: 30px; /* 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-brand-info,
    .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: 480px) {
    .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) --- */
.about-header {
    position: relative;
    height: 400px; /* Banner-er ucchota */
    
    /* Content vertically center korar jonno */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 30px; /* Side padding */
    
    background-color: #333; /* Fallback */
    /* *** IMPORTANT: Ekhane apnar team/office-er image-er path din *** */
    background-image: url('img/pdf (1).jpeg'); 
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--color-white, #fff);
    z-index: 1; /* Nav-er niche thakar jonno */
}

/* Image-er opor halka dark overlay */
.about-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* 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;
}

.about-header p {
    font-size: 18px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- 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;
}

/* --- 3. Checkout Form (Left Column) --- */
.checkout-form-wrapper {
    background-color: var(--color-white, #fff);
    border: 1px solid var(--color-border, #ddd);
    border-radius: 10px;
    padding: 40px;
}

.checkout-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color-logo, #222);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border, #ddd);
}

/* Form field styles */
.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.checkout-form .form-group {
    margin-bottom: 20px;
}
.checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}
.checkout-form label .required { color: #e74c3c; }

.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: var(--color-white);
}
.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;
    border-color: var(--primary-color, #f37321);
    box-shadow: 0 0 0 3px rgba(243, 115, 33, 0.1);
}

.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
    }