@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
}





/* ===== TOP BAR ===== */
.top-bar {
    background: #F85606;
}


.top-bar a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: opacity 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar .divider {
    color: rgba(255, 255, 255, 0.35);
    margin: 0 10px;
    font-size: 11px;
}

/* ===== NAVBAR ===== */
.main-nav {
    background: #F85606;
    /* padding: 27px 0; */
    height: 75px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    padding-top: 15px;
}


@media (max-width: 480px) {
    .main-nav {
        height: auto !important;
    }

    .main-nav .container {
        padding-top: 5px;
    }
}

/* ===== LOGO ===== */
.nav-logo {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .nav-logo {
        margin-left: 55px;
    }
}

/* Text logo */
.logo-icon {
    background: #fff;
    color: #F85606;
    border-radius: 5px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Image logo */
.nav-logo img {
    height: 45px;
    /* লোগো একটু বড় করা হয়েছে */
    width: auto;
}

/* ===== SEARCH ===== */
.search-wrap {
    position: relative;
    max-width: 800px;
    /* উইডথ বাড়ানো হয়েছে 680 */
    display: flex;
    align-items: center;
}

.search-wrap input {
    width: 100%;
    height: 48px;
    /* সার্চ বারের উচ্চতা বাড়ানো হয়েছে */
    padding: 10px 60px 10px 20px;
    border: none;
    border-radius: 2px;
    /* হালকা রাউন্ডেড */
    font-size: 16px;
    /* ফন্ট সাইজ বড় করা হয়েছে */
    outline: none;
    color: #212121;
    background: #eff0f5;
    /* দরাজ স্টাইল লাইট গ্রে ব্যাকগ্রাউন্ড */
}

/* mobile search bar */
@media (max-width: 480px) {

    /* নেভবারকে হাইট না দিয়ে প্যাডিং দাও যাতে ভেতরে সবকিছু জায়গা পায় */
    .main-nav {
        height: auto !important;
        padding-bottom: 5px;
    }

    /* ইনপুট ফিল্ডের স্টাইল */
    .custom-mobile-input {
        width: 100%;
        height: 42px;
        /* ইমেজের মতো পারফেক্ট হাইট */
        padding: 10px 50px 10px 15px;
        border: none;
        border-radius: 4px;
        /* হালকা রাউন্ডেড */
        font-size: 15px;
        outline: none;
        color: #212121;
        background: #eff0f5;
        /* দরাজ স্টাইল লাইট গ্রে */
        display: block;
    }

    /* সার্চ বাটনের পজিশন ঠিক করা */
    .search-wrap .search-btn {
        position: absolute;
        right: 8px;
        /* একটু ভেতর দিকে */
        top: 0;
        height: 100%;
        width: 45px;
        background: #FFE1D2;
        /* হালকা অরেঞ্জ ব্যাকগ্রাউন্ড */
        border: none;
        border-radius: 0 4px 4px 0;
        color: #F85606;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
    }
}



/* মোবাইল কন্টেইনারের জন্য */
.mobile-search-container {
    width: 100%;
    padding: 10px 15px; /* দুই পাশে এবং উপরে-নিচে গ্যাপ */
    background: #F85606; /* নেভবারের সাথে মিল রেখে */
}

/* সার্চ বক্সের ডিজাইন */
.search-wrap-mobile {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-wrap-mobile input {
    width: 100%;
    height: 30px;
    padding: 0 50px 0 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background: #eff0f5;
    outline: none;
}

/* সার্চ বাটনের ডিজাইন */
.search-btn-mobile {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background: #FFE1D2;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #F85606;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* মোবাইল রেসপন্সিভনেস ফিক্স */
@media (max-width: 991px) {
    .main-nav {
        height: auto !important; /* ফিক্সড হাইট সরিয়ে দিন */
        min-height: 79px;
    }
}

/* end */
.search-wrap input::placeholder {
    color: #757575;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #FFE1D2;
    border: none;
    border-radius: 0 2px 2px 0;
    color: #F85606;
    /* আইকনের কালার গাঢ় অরেঞ্জ */
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.search-btn:hover {
    background: #ffcfb7;
}

/* ===== CART ICON ===== */
.cart-icon {
    font-size: 32px;
    margin-left: 15px;
    color: #fff;
}

.cart-badge {
    background: #F85606;
    border: 1px solid #fff;
    color: #fff;
    top: -2px;
    right: -10px;
}

/* ===== HAMBURGER ===== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.hamburger-btn span,
.mobile-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 992px) {
    .hamburger-btn {
        display: flex;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {

    .logo-text {
        font-size: 22px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .cart-icon {
        font-size: 22px;
        /* margin-left: 100px; */
    }
}

@media (max-width: 575px) {
    .search-wrap {
        display: none;
    }
}

/* ===== SIDEBAR ===== */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1200;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    background: #f57224;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header .user-info {
    color: #fff;
}

.sidebar-header .user-info h6 {
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}

.sidebar-header .user-info p {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.sidebar-menu {
    padding: 10px 0;
}

.sidebar-menu .menu-title {
    padding: 10px 16px 5px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.sidebar-menu a:hover {
    background: #fff5f0;
    color: #f57224;
}

.sidebar-menu a i {
    font-size: 18px;
    color: #f57224;
    width: 22px;
}

.sidebar-menu hr {
    margin: 6px 16px;
    border-color: #eee;
}


.category-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    display: none;
}

@media (min-width: 992px) {
    .category-nav {
        display: block;
    }
}

.category-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.category-nav ul li a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.category-nav ul li a:hover {
    color: #f57224;
    border-bottom-color: #f57224;
}

/* start */
/* ===== BANNER SLIDER ===== */
.banner-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #f4f4f4;
    /* ইমেজ লোড হওয়ার আগে হালকা ব্যাকগ্রাউন্ড */
}

.banner-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.banner-slide {
    min-width: 100%;
    position: relative;
    /* ডেক্সটপের জন্য স্ট্যান্ডার্ড রেশিও */
    aspect-ratio: 1976 / 688;
    overflow: hidden;
}

/* ✅ MAIN FIX - aspect ratio দিয়ে height auto হবে */
.banner-slider,
.banner-slide {
    aspect-ratio: 1976 / 688;
    height: auto;
    max-height: 400px;
    min-height: 160px;
}

/* ✅ Image perfectly full */
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* ডেক্সটপে পুরো ব্যানার জুড়েই ইমেজ থাকবে */
    display: block;
}

@media (max-width: 767px) {
    .banner-slide img {
        position: absolute;

        width: 100%;
        height: 130px;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* ✅ Mobile overflow fix */

@media (min-width: 992px) {

    .banner-slider,
    .banner-slide {
        /* max-height: 340px;  */
        height: auto;
    }
}


@media (max-width: 767px) {
    .banner-slide {
        aspect-ratio: 16 / 9;
        /* মোবাইলে আরও ভালো দেখাবে */
        max-height: 200px;
    }

    .banner-slide img {
        object-fit: cover;
        /* মোবাইলে ইমেজ যেন চ্যাপ্টা না হয় */
    }
}

@media (max-width: 575px) {

    .banner-slider,
    .banner-slide {
        max-height: 180px;
        min-height: 100px;
    }
}

/* Fallback banner */
.banner-fake {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff5ee 0%, #ffe8d0 100%);
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .banner-fake {
        padding: 12px 16px;
    }

    .banner-text h1 {
        font-size: 20px !important;
    }

    .banner-badges .badge-pill {
        padding: 4px 8px;
        font-size: 10px;
    }

    .banner-cta {
        padding: 7px 14px;
        font-size: 11px;
        margin-top: 8px;
    }

    .banner-visual {
        display: none;
    }

    .date-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin: 5px 0;
    }
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #fff;
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

@media (max-width: 575px) {
    .slider-arrow {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.dot.active {
    background: #f57224;
    width: 20px;
    border-radius: 4px;
}


.slider-arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-slider:hover .slider-arrow {
    opacity: 1;
}





/* end */

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(90deg, #f57224 0%, #e84118 100%);
    color: #fff;
    padding: 14px 0;
}

.promo-banner .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.promo-text h4 {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.promo-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.promo-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
}

.promo-shop-btn {
    background: #1a0a00;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* start */

/* ===== FLASH SALE ===== */
.flash-sale-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.flash-sale-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px 0;
}

.flash-on-sale {
    color: #f57224;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.flash-on-sale:hover {
    text-decoration: underline;
}

.shop-all-btn {
    border: 1.5px solid #f57224;
    color: #f57224;
    background: #fff;
    padding: 8px 22px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
    align-self: center;
}

.shop-all-btn:hover {
    background: #f57224;
    color: #fff;
}

/* ===== PRODUCTS GRID — 6 columns desktop ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
}

@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    text-decoration: none;
    display: block;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 1;
    position: relative;
}

/* Image Wrapper */
.product-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

/* Fallback emoji */
.product-img-fallback {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    background: #f9f9f9;
}

/* Product Info */
.product-info {
    padding: 10px 10px 12px;
}

.product-name {
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}

.product-price {
    font-size: 25px;
    font-weight: 800;
    color: #f57224;
    margin-bottom: 3px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-old-price {
    font-size: 11.5px;
    color: #999;
    text-decoration: line-through;
}

.product-discount {
    font-size: 11.5px;
    color: #999;
}

/* end */

/* ===== PADDING FOR MOBILE BOTTOM NAV ===== */
@media (max-width: 991px) {
    body {
        padding-bottom: 60px;
    }
}

/* ===== MOBILE HAMBURGER ===== */
.mobile-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
}

@media (min-width: 992px) {
    .mobile-hamburger {
        display: none;
    }
}

/* ===== SECTION CARD ===== */
.section-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}

/* ===== SCROLL FADE ANIMATION ===== */
.fade-in {
    animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Top bar hidden on mobile */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}

/* Banner height mobile */
@media (max-width: 767px) {
    .banner-fake {
        height: 200px;
        padding: 20px;
        flex-direction: column;
    }

    .banner-text h1 {
        font-size: 26px;
    }

    .banner-woman {
        display: none;
    }

    .banner-cta {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .banner-fake {
        height: 180px;
    }

    .banner-text h1 {
        font-size: 22px;
    }

    .banner-badges {
        display: none;
    }
}


/* category start */
.category-section {
    background-color: #f4f4f4;
}


/* গ্রিড র‍্যাপার */
.category-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e2e2e2;
    /* বাইরের বর্ডার */
}

/* প্রতিটি ক্যাটাগরি বক্স */
.category-box {
    width: 12.5%;
    /* ডেক্সটপে ৮টি কলাম (100 / 8 = 12.5) */
    background: #fff;
    border: 0.5px solid #ebebeb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    min-height: 180px;
    /* বর্ডার ওভারল্যাপ কমানোর জন্য */
    margin-right: -1px;
    margin-bottom: -1px;
}

/* হোভার করলে হালকা শ্যাডো এবং বর্ডার হাইলাইট */
.category-box:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    z-index: 5;
    position: relative;
}

/* ইমেজ স্টাইল */
.category-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* টেক্সট স্টাইল */
.category-box p {
    font-size: 14px;
    color: #212121;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* ৩য় লাইনে গেলে ডট ডট হবে */
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 5px;
}

/* রেসপন্সিভ - বড় ট্যাবে ৪টি করে */
@media (max-width: 1200px) {
    .category-box {
        width: 25%;
    }
}

/* রেসপন্সিভ - ছোট ট্যাবে ৩টি করে */
@media (max-width: 768px) {
    .category-box {
        width: 33.33%;
    }

    .category-box img {
        width: 60px;
        height: 60px;
    }

    .category-box p {
        font-size: 12px;
    }
}

/* রেসপন্সিভ - মোবাইলে ২টি করে */
@media (max-width: 480px) {
    .category-box {
        width: 25%;
        min-height: auto !important;
        padding: 5px !important;
    }
}

/* category end */

/*  products start*/
/* Just For You Section Styles */
.section-title {
    font-size: 28px;
    color: #424242;
    font-weight: 700;
}

.product-card {
    background: #fff;
    border-radius: 2px;
    height: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.product-card:hover {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #ddd;
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* ইমেজ বর্গাকার রাখার জন্য */
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px;
}

.product-title {
    font-size: 14px;
    color: #212121;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 38px;
    /* ২ লাইনের বেশি দেখাবে না */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    color: #f57224;
    /* দরাজ অরেঞ্জ কালার */
    font-size: 18px;
    font-weight: 500;
}

.discount-section {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 4px 0;
}

.old-price {
    font-size: 12px;
    color: #9e9e9e;
    text-decoration: line-through;
}

.discount-tag {
    font-size: 12px;
    color: #212121;
}

.product-rating {
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #faca51;
    /* গোল্ডেন কালার */
}

.rating-count {
    color: #9e9e9e;
}

/* রেসপন্সিভ মোবাইল এডজাস্টমেন্ট */
@media (max-width: 576px) {
    .product-title {
        font-size: 12px;
        height: 34px;
    }

    .product-price {
        font-size: 15px;
    }
}

/*  products end*/


/* footer */
/* new footer css */
/* === Base === */
.footer-wrapper {
    /* আপনার ব্যাকগ্রাউন্ড কালার ঠিক রাখা হয়েছে */
    background: #F4F4F6;
    padding: 48px 20px 0;
    font-family: inherit;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px 32px;
    padding-bottom: 40px;
    /* বর্ডার কালারটি হালকা করা হয়েছে */
    border-bottom: 1px solid #d1d5db;
}

/* === Col 1: Logo + Social === */
.footer-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-follow-label {
    /* টেক্সট কালার গাঢ় করা হয়েছে */
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
}

.footer-social a:hover {
    transform: translateY(-3px);
    /* হোভারে হালকা উপরে উঠবে */
    opacity: 0.9;
}

.footer-social .s-fb {
    background: #1877f2;
}

.footer-social .s-yt {
    background: #ff0000;
}

.footer-social .s-ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* === Cols 2-4: Link columns === */
.footer-col-heading {
    /* হেডিং কালার গাঢ় নীলচে করা হয়েছে */
    color: #111827;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 8px;
    position: relative;
}

/* হেডিং এর নিচের বর্ডারটি আরও স্টাইলিশ করা হয়েছে */
.footer-col-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #f85606;
    /* আপনার ব্র্যান্ড অরেঞ্জ কালার */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links li a {
    /* সাধারণ টেক্সট কালার Slate Gray */
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.footer-links li a::before {
    content: '›';
    color: #9ca3af;
    font-size: 1.1rem;
    font-weight: 700;
    transition: color 0.2s;
}

/* হোভার করলে কালার অরেঞ্জ হবে */
.footer-links li a:hover {
    color: #f85606;
    padding-left: 5px;
    /* হালকা মুভমেন্ট ইফেক্ট */
}

.footer-links li a:hover::before {
    color: #f85606;
}

/* === Col 5: Contact Information === */
.contact-card {
    display: flex;
    align-items: center;
    /* আইকন এবং টেক্সট সোজা রাখার জন্য */
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    /* গোল আইকন বক্স আরও সুন্দর দেখায় */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    color: #fff;
}

.contact-icon-box.phone-box {
    background: #f85606;
}

.contact-icon-box.email-box {
    background: #f59e0b;
}

.contact-icon-box.address-box {
    background: #e84d42;
}

.contact-info-text strong {
    display: block;
    color: #1f2937;
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-info-text span {
    color: #606060;
    font-size: 0.9rem;
    font-weight: 500;
}

/* === Footer Bottom === */
.footer-bottom {
    background: #e5e7eb;
    /* নিচের পার্টটি মেইন ফুটার থেকে একটু আলাদা কালার */
    padding: 16px 20px;
    text-align: center;
}

.footer-bottom p {
    color: #606060;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom p a {
    color: #f85606;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

/* footer end */

/* start */
/* Mobile Bottom Nav Styles */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    /* সাদা ব্যাকগ্রাউন্ড */
    display: none;
    /* ডিফল্টভাবে ডেক্সটপে লুকানো থাকবে */
    grid-template-columns: repeat(4, 1fr);
    /* ৪টি সমান কলাম */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    /* উপরে হালকা শ্যাডো */
    padding: 8px 0;
    z-index: 9999;
    border-top: 1px solid #f1f1f1;
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #757575;
    /* আন-অ্যাক্টিভ কালার */
    transition: all 0.3s ease;
}

.mob-nav-item i {
    font-size: 20px;
    /* আইকন সাইজ */
    margin-bottom: 2px;
}

.mob-nav-item span {
    font-size: 11px;
    /* টেক্সট সাইজ */
    font-weight: 500;
}

/* অ্যাক্টিভ এবং হোভার স্টেট */
.mob-nav-item.active,
.mob-nav-item:hover {
    color: #f57224;
    /* দরাজ অরেঞ্জ কালার */
}

/* মিডিয়া কোয়েরি: শুধু মোবাইলে দেখানোর জন্য */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: grid;
        /* মোবাইলে গ্রিড হিসেবে শো করবে */
    }

    /* বডি টেক্সট যেন নেভিগেশনের নিচে ঢাকা না পড়ে তার জন্য প্যাডিং */
    body {
        padding-bottom: 60px;
    }
}

/* end */








/* Load More Container */
/* Load More Section Container */
.load-more-section {
    position: relative;
    min-height: 100px;
    /* লোডার দেখানোর জন্য স্পেস */
}

/* --- LOAD MORE BUTTON (Style from image_4) --- */
.load-more-btn {
    background-color: transparent;
    border: 1px solid #00abcd;
    /* ইমেজের মতো নীল বর্ডার */
    color: #00abcd;
    /* নীল টেক্সট */
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.load-more-btn:hover {
    background-color: #f0faff;
    /* হোভারে হালকা নীল ব্যাকগ্রাউন্ড */
}

/* --- DARAZ LOADER (Style from image_6) --- */
.daraz-loader-wrap {
    text-align: center;
}

/* Daraz Logo Icon (Semicircle + Caret) */
.daraz-logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: inline-block;
}

/* The Semicircle effect using linear gradient */
.daraz-logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f57224 50%, transparent 50%);
    /* Top half orange */
}

/* Inner Circle to create the 'cut' effect */
.daraz-logo-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    /* Match your page background */
    z-index: 1;
}

/* The Orange Caret Icon */
.logo-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 24px;
    color: #f57224;
    /* Daraz Orange */
}

/* --- ROTATION ANIMATION --- */
@keyframes rotateDarazLoader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Apply animation to the semicircle */
.daraz-logo-icon::before {
    animation: rotateDarazLoader 1s linear infinite;
}

/* Loading Text */
.loading-text {
    font-size: 13px;
    color: #757575;
}

/* searhbar */


/* review-section */



.review-section {
    padding: 60px 0;
    background-color: #fdfdfd;
}


/* Swiper Container for 22 inch Monitor */
.reviewSlider {
    padding: 20px 50px 60px !important;
    margin: 0 auto;
}

/* Card Design */
.review-card {
    background: #fff;
    border-radius: 25px;
    /* Rounded corners like image */
    padding: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.user-meta h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;

}

.stars {
    font-size: 14px;
    margin-top: 4px;
}

.stars .yellow {
    color: var(--star-yellow);
}

.stars .gray {
    color: var(--star-gray);
}

/* Review Content Box */
.review-body {
    background-color: var(--review-bg);
    padding: 20px;
    border-radius: 15px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100px;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #f85606 !important;
    /* Active dot color */
}

/* 22 inch Monitor Responsive */
@media (min-width: 1400px) {
    .reviewSlider {
        max-width: 1800px;
    }
}

@media (max-width: 768px) {
    .section-title {
        color: #111;
        font-size: 2.26667vw;
        font-weight: 700;
        line-height: 4.8vw;
        overflow: hidden;
    }

    .review-card {
        padding: 15px;
    }
}