@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary: #159758;
    --primary-light: #e6f5ee;
    --danger: #e7000b;
    --danger-light: #ffe5e6;
    --text-dark: #212b36;
    --text-muted: #919eab;
    --text-secondary: #6a7282;
    --border: #f4f6f8;
    --border-input: #dfe3e8;
    --bg-search: #f4f6f8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    padding-top: 128px;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 0;
        /* mobile এ fixed header নেই */
    }
}

/* header css start */



/* ── DESKTOP HEADER ── */
.desktop-header {
    background: #f4f6f8;
    box-shadow: 0 1px 0 var(--border);
    border-bottom: 1px solid#f4f6f8;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.desktop-header .inner {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.main-nav {
    margin-left: 40px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color .15s;
}

.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover {
    color: var(--primary);
}

.offers-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-new {
    background: var(--danger-light);
    color: var(--danger);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 999px;
    line-height: 14px;
}

/* Search */
.search-wrap {
    position: relative;
    width: 414px;
    height: 40px;
    margin-left: auto;
}

.search-wrap input {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-input);
    border-radius: 32px;
    padding: 0 48px 0 16px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    background: #fff;
}

.search-wrap input::placeholder {
    color: var(--text-muted);
}

.search-wrap button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-search);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
}

/* Action Icons */
.header-actions {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-left: 28px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .15s;
}

.action-btn:hover {
    color: var(--primary);
}

.action-btn .icon-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.action-btn span.label {
    font-size: 12px;
    line-height: 18px;
}

/* ── CATEGORY BAR ── */
.category-bar {
    top: 80px;
    /* ← এটা 0 থেকে 80px করো */
    background: #e6f5ee;
    border-bottom: 1px solid var(--border);
    position: fixed !important;
    left: 0;
    right: 0;
    z-index: 999;
}

.category-bar nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-bar a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
}

.category-bar a:hover {
    color: var(--primary);
}

/* ── MOBILE HEADER ── */
.mobile-header {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-header .mobile-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 700;
}

.mobile-header .mobile-brand em {
    color: var(--primary);
    font-style: normal;
}

/* logo mobile  */
/* Mobile Brand Logo */
.mobile-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-brand img {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.hamburger-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-track-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Mobile Search */
.mobile-search-bar {
    display: none;
    padding: 8px 16px 12px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.mobile-search-bar .search-wrap {
    width: 100%;
}

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 200;
}

.sidebar-overlay.open {
    display: block;
}

/* ── LEFT SIDEBAR (hamburger → slides from LEFT) ── */
.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 210;
    transition: left .3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

/* ── RIGHT CART SIDEBAR (cart → slides from RIGHT) ── */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 210;
    transition: right .3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

/* Cart sidebar top */
.cart-sidebar-top {
    background: var(--primary);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    min-height: 60px;
    position: relative;
}

.cart-sidebar-top h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.cart-sidebar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .85);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    color: var(--text-muted);
}

.cart-empty svg {
    opacity: .4;
}

.cart-empty p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Sidebar header green bar */
.sidebar-top {
    background: var(--primary);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    min-height: 68px;
}

.sidebar-top .user-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-top .greeting {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.sidebar-top .signin-link {
    font-size: 13px;
    font-weight: 600;
    opacity: .9;
    text-decoration: none;
    color: #fff;
}

/* Sidebar close button */
.sidebar-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .8);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

/* Sidebar category links */
.sidebar-cats {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-cats a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color .15s;
}

.sidebar-cats a:hover {
    color: var(--primary);
}

/* Sidebar extra links */
.sidebar-extra {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-extra a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

.sidebar-extra a:hover {
    color: var(--primary);
}

/* Quick Action */
.sidebar-quick {
    padding: 16px 20px;
}

.sidebar-quick h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    margin-bottom: 8px;
    display: inline-block;
}

.quick-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    transition: color .15s;
}

.quick-item:last-child {
    border-bottom: none;
}

.quick-item:hover {
    color: var(--primary);
}

.quick-item .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-item .arrow {
    color: var(--text-muted);
    font-size: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {

    .desktop-header,
    .category-bar {
        display: none !important;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-search-bar {
        display: block;
    }
}

@media (min-width: 992px) {

    .mobile-header,
    .mobile-search-bar {
        display: none !important;
    }
}

/* header css end */


/* banner css start */
/* ── Hero wrapper ── */
.hero-section {
    padding-top: 24px;
    padding-bottom: 24px;
}

/* ── Shared image behaviour ── */
.hero-img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ══════════════════════════════
       MOBILE  (< 992 px)
    ══════════════════════════════ */
.mobile-hero-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Main banner */
.mobile-main-img {
    height: auto;
    /* natural ratio */
    border-radius: 12px;
}

/* Two-column promo row */
.mobile-promo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mobile-promo-row .hero-img {
    border-radius: 12px;
    aspect-ratio: 164 / 98;
    /* keeps original ratio */
}

/* ══════════════════════════════
       DESKTOP  (≥ 992 px)
    ══════════════════════════════ */
.desktop-hero-wrap {
    display: none;
    /* hidden by default */
}

@media (min-width: 992px) {
    .mobile-hero-wrap {
        display: none !important;
    }

    .desktop-hero-wrap {
        display: flex;
        gap: 20px;
        height: 432px;
        align-items: stretch;
    }

    /* Left banner – 68 % */
    .desktop-main {
        flex: 0 0 68%;
        min-width: 0;
        position: relative;
    }

    .desktop-main a,
    .desktop-main .hero-img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: var(--radius-lg);
    }

    .desktop-main .hero-img {
        object-fit: cover;
        border-radius: 12px;
    }

    /* Right column – 32 % */
    .desktop-side {
        flex: 0 0 32%;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
    }

    .desktop-side .promo-card {
        flex: 1;
        min-height: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

    .desktop-side .promo-card a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .desktop-side .hero-img {
        height: 100%;
        border-radius: 12px;
        ;
    }
}

/* ── 22-inch monitor tweak (≥ 1600 px) ── */
@media (min-width: 1600px) {
    .desktop-hero-wrap {
        height: 480px;
        /* slightly taller on big screens */
    }
}

/* ── hover effect ── */
a .hero-img {
    transition: transform 0.35s ease, filter 0.35s ease;

}

a:hover .hero-img {
    transform: scale(1.015);
    filter: brightness(0.93);
}

/* clip overflow from the rounded parent */
.desktop-main,
.desktop-side .promo-card a {
    overflow: hidden;
}

.mobile-hero-wrap a {
    overflow: hidden;
    border-radius: var(--radius-sm);
    display: block;
}


/* clip overflow — radius কাজ করার জন্য জরুরি */
.desktop-main,
.desktop-side .promo-card a,
.mobile-hero-wrap a {
    overflow: hidden;
    border-radius: 12px;
    /* ✅ parent এও radius */
}

/* banner css end */

/* product start css */
/* ── Section ── */
.featured-section {
    padding: 48px 0;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary) !important;
    margin-bottom: 24px;
    text-align: center;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
}

/* ── Card shell ── */
.product-card-wrap {
    border-radius: 16px;
    /* ✅ ছিল 10px */
    background: linear-gradient(to bottom, var(--primary), #b9b9b9);
    padding: 1px;
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

.product-card-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 151, 88, .18);
}

.product-card-inner {
    background: #fff;
    border-radius: 15px;
    /* ✅ var(--radius-inner) এর বদলে সরাসরি 15px */
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

/* ── Image area ── */
.product-img-wrap {
    position: relative;
    height: 128px;
    flex-shrink: 0;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .product-img-wrap {
        height: 186px;
    }
}

.product-img-wrap img {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: auto;
    transform: translateX(-50%) scale(1.05);
    object-fit: contain;
}

/* ── Discount badge ── */
.discount-badge {
    position: absolute;
    right: 8px;
    top: 8px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
    padding: 0 8px;
    border-radius: 6px;
    min-width: 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .discount-badge {
        right: 16px;
        top: 16px;
    }
}

/* ── Card body ── */
.product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 16px 12px;
}

@media (min-width: 992px) {
    .product-card-body {
        padding: 0 16px 16px;
    }
}

/* ── Product title ── */
.product-title {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    color: var(--text-dark);
}

@media (min-width: 992px) {
    .product-title {
        font-size: 1rem;
        font-weight: 600;
        line-height: 24px;
    }
}

.product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary);
}

/* ── Price row ── */
.price-row {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    margin-top: 2px;
}

@media (min-width: 992px) {
    .price-row {
        gap: 6px;
        margin-top: 8px;
    }
}

.price-current {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: var(--primary);
}

@media (min-width: 992px) {
    .price-current {
        font-size: 1rem;
        line-height: 24px;
        font-weight: 600;
    }
}

.price-original {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

@media (min-width: 992px) {
    .price-original {
        font-size: 1rem;
        line-height: 24px;
    }
}

/* ── Add to cart button ── */
.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 30px;
    border-radius: 32px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    box-shadow: 0 8px 8px rgba(21, 151, 88, .24);
    transition: background .15s;
    padding: 0 10px;
}

.btn-cart:hover {
    background: #107340;
    color: #fff;
}

@media (min-width: 992px) {
    .btn-cart {
        height: 40px;
        font-size: 15px;
        font-weight: 700;
        line-height: 26px;
        padding: 0 22px;
    }
}

.btn-cart svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .btn-cart svg {
        width: 20px;
        height: 20px;
    }
}

/* push button to bottom */
.btn-cart-wrap {
    margin-top: auto;
    padding-top: 4px;
}

@media (min-width: 992px) {
    .btn-cart-wrap {
        padding-top: 12px;
    }
}

/* ── Grid: 2 cols mobile, 4 cols lg ── */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (min-width: 576px) {
    .products-grid {
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ── View More button ── */
.btn-view-more {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 0;
    text-decoration: none;
    transition: background .15s;
    border: none;
}

.btn-view-more:hover {
    background: #107340;
    color: #fff;
}

/* product end css */


/* blog start css */
/* ══ Section ══ */
.blog-section {
    padding: 48px 0;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
}

/* ══ Slider wrapper ══ */
.blog-slider-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .blog-slider-row {
        gap: 12px;
    }
}

/* ══ Nav buttons ══ */
.blog-nav-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--surface);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s, transform .1s;
}

@media (min-width: 768px) {
    .blog-nav-btn {
        width: 44px;
        height: 44px;
    }
}

.blog-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.blog-nav-btn:active {
    transform: scale(.95);
}

.blog-nav-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* ══ Viewport ══ */
.blog-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 16px 0;
    /* let box-shadow breathe */
}

.blog-track {
    display: flex;
    transition: transform .5s ease;
    will-change: transform;
}

/* ══ Slide ══ */
.blog-slide {
    flex-shrink: 0;
    width: 100%;
    /* 1 card mobile */
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .blog-slide {
        width: 50%;
    }
}

/* 2 cards md */
@media (min-width: 992px) {
    .blog-slide {
        width: 33.333%;
    }
}

/* 3 cards lg */

/* ══ Blog card ══ */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* ── Image block ── */
.blog-img-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.blog-img-wrap img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

/* ── Date badge ── */
.blog-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 52px;
    height: 52px;
    background: var(--surface);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.blog-date-badge .day {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.blog-date-badge .month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── Category pill (overlaps image bottom) ── */
.blog-category-wrap {
    text-align: center;
    margin-top: -14px;
    position: relative;
    z-index: 1;
}

.blog-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 16px;
    border-radius: 2px;
}

/* ── Card body ── */
.blog-card-body {
    padding: 16px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
}

@media (min-width: 768px) {
    .blog-card-title {
        font-size: 1.1rem;
    }
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}

.blog-card-title a:hover {
    color: var(--primary);
}

/* ── Meta row ── */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.blog-meta-author {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-meta-author img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-meta-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.comment-count {
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Excerpt ── */
.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* ── Continue reading ── */
.blog-read-more {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
    margin-top: auto;
    transition: color .15s;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

/* ══ Dots ══ */
.blog-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--text-dark);
    opacity: .3;
    cursor: pointer;
    padding: 0;
    transition: opacity .15s;
}

.blog-dot.active {
    opacity: 1;
}

/* ══ View More ══ */
.btn-view-blogs {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
    border-radius: 0;
    transition: background .15s;
    border: none;
}

.btn-view-blogs:hover {
    background: #107340;
    color: #fff;
}

/* blog end css */


/* FEATURED CATEGORIES css start */
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #222;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.category-section {
    padding: 4rem 0;
}

.cat-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.cat-card .img-wrap {
    overflow: hidden;
    border-radius: 4px;
}

.cat-card .img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cat-card:hover .img-wrap img {
    transform: scale(1.05);
}

.cat-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .cat-card h3 {
        font-size: 1.125rem;
    }
}

/* FEATURED CATEGORIES css end */

/* promo css start */
.promo-section {
    padding: 1rem 0;
}

.banner-link {
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.banner-link:hover img {
    transform: scale(1.05);
}

/* Chia seed banner aspect ratio 2048:1365 */
.banner-chia {
    aspect-ratio: 2048 / 1365;
}

/* Square banners */
.banner-square {
    aspect-ratio: 1 / 1;
}

/* Right tall banner */
.banner-tall {
    aspect-ratio: 1500 / 1871;
}

/* Left col layout */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Two small squares grid */
.small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .small-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide litchi on mobile */
.hide-mobile {
    display: none;
}

@media (min-width: 576px) {
    .hide-mobile {
        display: block;
    }

}

/* Desktop: 2 col grid, right banner fills full height */
@media (min-width: 768px) {
    .main-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: stretch;
    }

    .banner-tall {
        aspect-ratio: unset;
        height: 95%;
    }
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .main-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

/* promo css end */


/*  */
/*  */
/* ===== REVIEW SECTION ===== */
.review-section {
    background: #f8f9fa;
    padding: 3.5rem 0;
}

.review-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.review-body {
    background: #DEEAF1;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.review-body p {
    font-size: 0.82rem;
    color: #495057;
    margin: 0;
    line-height: 1.7;
}

.star-rating .fa-star {
    font-size: 0.85rem;
}

.star-on {
    color: #ffc107;
}

.star-off {
    color: #dee2e6;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots span.active {
    background: var(--primary);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-nav button {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #495057;
}

.slider-nav button:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.slides-wrapper {
    overflow: hidden;
}

.slides-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide-item {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

/*  */

/* footer css start */
.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(145, 158, 171, 0.24);
    background: #e6f5ee;
    color: #212b36;
    padding: 30px 16px 120px;
}

@media (min-width: 992px) {
    .site-footer {
        background: #fff;
        padding: 48px 0 137px;
        min-height: 400px;
    }
}

.footer-logo {
    display: block;
    height: 48px;
    width: 210px;
}

@media (min-width: 992px) {
    .footer-logo {
        height: 64px;
        width: 280px;
    }
}

.footer-tagline {
    margin-top: 1.5rem;
    max-width: 285px;
    font-size: 0.875rem;
    color: #637381;
    line-height: 1.6;
}

.social-icons {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (min-width: 992px) {
    .social-icons {
        margin-top: 3rem;
    }
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f3f4f6;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: #e5e7eb;
    transform: scale(1.05);
    opacity: 0.8;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.footer-nav {
    margin-top: 3rem;
}

@media (min-width: 992px) {
    .footer-nav {
        margin-top: 0;
        margin-left: auto;
    }
}

.footer-heading {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #212b36;
    margin-bottom: 1.25rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #212b36;
    text-decoration: none;
    transition: color 0.15s ease;
    margin-bottom: 1rem;
}

.footer-link:last-child {
    margin-bottom: 0;
}

.footer-link:hover {
    color: #2e7d32;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #212b36;
    text-decoration: none;
    transition: color 0.15s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    color: #2e7d32;
}

.contact-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.footer-wave {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 43px;
}

@media (min-width: 992px) {
    .footer-wave svg {
        height: 83px;
    }
}

.footer-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    text-align: center;
    font-size: 0.75rem;
    color: #212b36;
    padding: 0 16px;
    z-index: 1;
}

@media (min-width: 992px) {
    .footer-copy {
        bottom: 21px;
    }
}

/* footer css end */


/* mobile footer css start */
/* শুধু mobile এ দেখাবে, lg এবং তার উপরে লুকাবে */
.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: #fff;
    border-top: 1px solid var(--border);
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

.nav-item-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 16px;
    text-decoration: none;
    color: var(--inactive-color);
    background: transparent;
    border: none;
    outline: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-item-btn.active {
    color: var(--active-color);
}

.nav-item-btn:hover {
    color: var(--active-color);
}

.nav-item-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.nav-label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    white-space: nowrap;
}

.nav-item-btn.active .nav-label {
    font-weight: 600;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* mobile footer css end */