*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Hind Siliguri', sans-serif;
    background: #f5f5f5;
}



/* header css start */
/* ── Top Info Bar ── */
.top-bar {
    background-color: #000F06;
    color: #daf9e7;
    font-size: 13px;
    padding: 6px 20px;
}

.top-bar a {
    color: #daf9e7;
    text-decoration: none;
}

.top-bar a:hover {
    color: #25b672;
}

/* ── Main Nav ── */
.main-nav {
    background-color: #003315;
    padding: 20px 16px;
}

.main-nav .inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}


.inner {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Search */
.search-wrapper {
    background-color: #000F06;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 12px 12px;
    flex: 1;
    max-width: 800px;
    /* এই line টা add করুন */
}

.search-wrapper .fa-magnifying-glass {
    color: #25b672;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

.search-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: #cae9d7;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    font-family: 'Hind Siliguri', sans-serif;
}

.search-wrapper input::placeholder {
    color: #25b672;
}

/* Cart button */
.cart-btn {
    background: none;
    border: none;
    color: #daf9e7;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-family: 'Hind Siliguri', sans-serif;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    padding: 0;
}

.cart-icon-wrap {
    position: relative;
    display: inline-flex;
}

.cart-icon-wrap .fa-cart-shopping {
    font-size: 22px;
}

.badge-count {
    position: absolute;
    top: -8px;
    left: 12px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Order Track */
.track-btn {
    color: #daf9e7;
    text-decoration: none;
    flex-shrink: 0;
}

.track-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #daf9e7;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 9px;
    color: #daf9e7;
    line-height: 1.2;
}

.track-icon-box i {
    font-size: 14px;
    margin-bottom: 1px;
}

.track-icon-box span {
    font-weight: 700;
}

/* Hamburger */
.hamburger-btn {
    background: none;
    border: none;
    color: #daf9e7;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hamburger-btn .fa-bars {
    font-size: 22px;
}

/* Mobile search toggle */
.mobile-search-btn {
    background: none;
    border: none;
    color: #daf9e7;
    cursor: pointer;
    padding: 0;
}

.mobile-search-btn .fa-magnifying-glass {
    font-size: 20px;
}

/* Mobile slide-down search */
.mobile-search-bar {
    background-color: #000F06;
    padding: 8px 16px;
    display: none;
}

.mobile-search-bar.show {
    display: block;
}

.mobile-search-bar .search-wrapper {
    flex: 1;
}

/* ── OVERLAY ── */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.sidebar-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* ── LEFT SIDEBAR ── */
.left-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    width: 280px;
    background: #fff;
    z-index: 1050;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.left-sidebar.show {
    left: 0;
}

.left-sidebar-header {
    background: #003315;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-sidebar-header span {
    color: #daf9e7;
    font-weight: 700;
    font-size: 16px;
}

.left-sidebar-close {
    background: none;
    border: none;
    color: #daf9e7;
    font-size: 20px;
    cursor: pointer;
}

.left-sidebar-body {
    padding: 10px 0;
    flex: 1;
}

.left-sidebar-body .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    cursor: pointer;
}

.left-sidebar-body .menu-item i {
    color: #25b672;
    width: 20px;
    text-align: center;
}

.left-sidebar-body .menu-item:hover {
    background: #f6fff9;
    color: #003315;
}

.left-sidebar-contact {
    padding: 14px 20px;
    color: #888;
    font-size: 13px;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

/* ── RIGHT SIDEBAR (CART) ── */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    bottom: 0;
    width: 360px;
    background: #fff;
    z-index: 1050;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.right-sidebar.show {
    right: 0;
}

/* Cart header */
.cart-sidebar-header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.back-btn {
    background: none;
    border: none;
    color: #25b672;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Hind Siliguri', sans-serif;
    padding: 0;
}

.cart-sidebar-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.cart-count-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

/* Cart body */
.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
}

/* Cart item */
.cart-item {
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f0ede0;
}

.cart-item-img svg {
    width: 100%;
    height: 100%;
}

.cart-item-info {
    flex: 1;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 8px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.qty-controls button {
    background: #fff;
    border: none;
    outline: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-controls button:hover {
    background: #f0f0f0;
}

.qty-num {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 17px;
}

.delete-btn:hover {
    color: #dc3545;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

/* You'll also love */
.also-love-section {
    padding: 14px 16px 6px;
}

.also-love-section .section-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.also-love-nav button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
}

.also-love-nav button:hover {
    background: #003315;
    color: #fff;
    border-color: #003315;
}

.love-products-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 16px 12px;
    scrollbar-width: none;
}

.love-products-scroll::-webkit-scrollbar {
    display: none;
}

.love-card {
    flex: 0 0 155px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.love-card-img {
    width: 100%;
    height: 125px;
    background: #f0ede0;
    overflow: hidden;
}

.love-card-img svg {
    width: 100%;
    height: 100%;
}

.love-card-actions {
    display: flex;
    border-top: 1px solid #eee;
}

.love-card-actions button {
    flex: 1;
    border: none;
    background: #fff;
    padding: 8px;
    cursor: pointer;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.love-card-actions button:first-child {
    border-right: 1px solid #eee;
}

.love-card-actions button:hover {
    background: #f6fff9;
    color: #003315;
}

.love-card-name {
    padding: 6px 8px;
    font-size: 12px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

/* Cart footer */
.cart-sidebar-footer {
    padding: 14px 16px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cart-total-row .label,
.cart-total-row .amount {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.order-btn {
    width: 100%;
    background: #7dc342;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 13px;
    cursor: pointer;
    font-family: 'Hind Siliguri', sans-serif;
    transition: background 0.2s;
}

.order-btn:hover {
    background: #5fa82e;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .desktop-only {
        display: none !important;
    }

    .right-sidebar {
        width: 100%;
        right: -100%;
    }

    .right-sidebar.show {
        right: 0;
    }
}

@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

/* header css end */

/* banner css start */
/* ════════════════════════════════
       BANNER SLIDER SECTION
    ════════════════════════════════ */
.banner-section {
    overflow: hidden;
    position: relative;
}

/* Carousel slide wrapper */
.banner-carousel .carousel-item {
    position: relative;
    min-height: 230px;
    overflow: hidden;
}

/* Slide image — full cover */
.banner-carousel .carousel-item img.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Slide content overlay */
.banner-carousel .slide-content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 230px;
}

/* Desktop height & padding */
@media (min-width: 768px) {
    .banner-carousel .carousel-item {
        min-height: 600px;
    }

    .banner-carousel .slide-content {
        min-height: 600px;
        padding: 64px 56px;
    }
}

/* Slide text */
.slide-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.slide-content p {
    margin-top: 16px;
    color: #555;
    font-size: 14px;
}

@media (min-width: 576px) {
    .slide-content h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .slide-content h2 {
        font-size: 2.25rem;
    }

    .slide-content p {
        margin-top: 24px;
        font-size: 16px;
    }
}

/* Custom prev/next arrows */
.banner-carousel .carousel-control-prev,
.banner-carousel .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-carousel .carousel-control-prev {
    left: 12px;
}

.banner-carousel .carousel-control-next {
    right: 12px;
}

.banner-carousel .carousel-control-prev-icon,
.banner-carousel .carousel-control-next-icon {
    filter: invert(1);
    width: 16px;
    height: 16px;
}

/* hide default icons, use FA */
.banner-carousel .carousel-control-prev-icon,
.banner-carousel .carousel-control-next-icon {
    display: none;
}

.banner-carousel .carousel-control-prev i,
.banner-carousel .carousel-control-next i {
    color: #333;
    font-size: 14px;
}

/* Indicators dots */
.banner-carousel .carousel-indicators {
    margin-bottom: 10px;
}

.banner-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 4px;
    transition: background 0.3s;
}

.banner-carousel .carousel-indicators .active {
    background-color: #25b672;
    width: 22px;
    border-radius: 4px;
}

/* Blog button — absolute bottom-left (same as original) */
.blog-badge {
    position: absolute;
    left: 32px;
    bottom: 18px;
    z-index: 10;
    background: #fffbeb;
    border-radius: 999px;
    padding: 6px 18px;
    text-decoration: none;
    font-weight: 700;
    color: #003315;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    transition: background 0.2s;
}

.blog-badge:hover {
    background: #d1fae5;
    color: #003315;
}

.blog-badge i {
    color: #25b672;
    font-size: 13px;
}

/* ── placeholder when no real images ── */
.slide-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #aaa;
}

/* banner css end */


/* category section  start*/
.category-section {
    background-color: #cae9d7;
    padding: 16px 0;
}

.category-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.category-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.category-track:hover {
    animation-play-state: paused;
}

.cat-item {
    flex: 0 0 auto;
    width: 100px;
    margin: 0;
    padding: 0 14px;
}

@media (min-width: 768px) {
    .cat-item {
        width: 120px;
        padding: 0 18px;
    }
}

.cat-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 4px 0;
}

.cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cat-icon {
        width: 66px;
        height: 66px;
    }
}

.cat-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

@media (min-width: 768px) {
    .cat-icon img {
        width: 44px;
        height: 44px;
    }
}

.cat-link:hover .cat-icon {
    background: #d1fae5;
    transform: translateY(-3px);
}

.cat-label {
    font-size: 12px;
    font-weight: 600;
    color: #052e16;
    white-space: nowrap;
    transition: color 0.2s;
    font-family: 'Hind Siliguri', sans-serif;
    text-align: center;
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .cat-label {
        font-size: 13px;
    }
}

.cat-link:hover .cat-label {
    color: #389e63;
}

/* category section  end*/

/* best sellers section  start*/
/* ════════════════════════════════
       BEST SELLERS SECTION
════════════════════════════════ */
.bestsellers-section {
    padding: 20px 0 30px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 30px;
    }
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.slider-nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: none;
    background: #cecbcb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #757575;
    font-size: 22px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.slider-nav button:hover {
    background: #003315;
    color: #fff;
}

/* ── Slider ── */
.product-slider-wrapper {
    overflow: hidden !important;
    padding: 8px 2px;
    width: 100%;
}

.product-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.4s ease;
    will-change: transform;
    margin: 0 !important;
    padding: 0 !important;
}

/* Bootstrap এর col class override করতে !important দেওয়া হয়েছে */
.product-slide {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    padding: 0 6px !important;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .product-slide {
        flex: 0 0 33.333% !important;
        width: 33.333% !important;
        max-width: 33.333% !important;
    }
}

@media (min-width: 992px) {
    .product-slide {
        flex: 0 0 25% !important;
        width: 25% !important;
        max-width: 25% !important;
    }
}

/* ── Product Card ── */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.2s;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-info {
    padding: 8px 12px 12px;
}

.product-name {
    font-size: 11px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin-bottom: 6px;
    font-family: 'Hind Siliguri', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-name {
        font-size: 13px;
    }
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: #25b672;
}

.price-old {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

@media (min-width: 768px) {
    .price-current {
        font-size: 20px;
    }

    .price-old {
        font-size: 15px;
    }
}

/* best sellers section  end*/

/* product section  start*/
/* ════════════════════════════════
       SUPER FOOD SECTION
════════════════════════════════ */
.superfood-section {
    padding: 20px 0 30px;
}

/* ── Section Header ── */
.sf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sf-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 768px) {
    .sf-title {
        font-size: 30px;
    }
}

.sf-view-more {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.sf-view-more:hover {
    color: #25b672;
}

@media (min-width: 768px) {
    .sf-view-more {
        font-size: 18px;
    }
}

/* ── Slider ── */
.sf-slider-wrapper {
    overflow: hidden !important;
    padding: 8px 0 8px 10px;
}

.sf-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.4s ease;
    will-change: transform;
    margin: 0 !important;
    padding: 0 !important;
}

.sf-slide {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    padding: 0 8px 0 0 !important;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .sf-slide {
        flex: 0 0 33.333% !important;
        width: 33.333% !important;
        max-width: 33.333% !important;
    }
}

@media (min-width: 992px) {
    .sf-slide {
        flex: 0 0 20% !important;
        width: 20% !important;
        max-width: 20% !important;
    }
}

/* ── Product Card ── */
.sf-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    height: 100%;
}

.sf-out-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
    font-weight: 500;
}

.sf-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.sf-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.sf-card:hover .sf-img-wrap img {
    transform: scale(1.05);
}

/* Desktop actions */
.sf-actions {
    display: none;
    justify-content: space-between;
    margin-bottom: 8px;
    background: #f1f1f1;
}

@media (min-width: 576px) {
    .sf-actions {
        display: flex;
    }
}

.sf-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    transition: background 0.2s;
}

.sf-action-btn:hover {
    background: #e0e0e0;
}

.sf-action-divider {
    width: 1px;
    height: 36px;
    background: #d1d5db;
    flex-shrink: 0;
    align-self: center;
}

/* Mobile actions */
.sf-actions-mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    background: #f1f1f1;
}

@media (min-width: 576px) {
    .sf-actions-mobile {
        display: none;
    }
}

.sf-name {
    font-size: 11px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin: 8px 0 6px 8px;
    font-family: 'Hind Siliguri', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

@media (min-width: 768px) {
    .sf-name {
        font-size: 13px;
    }
}

.sf-price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    margin-left: 8px;
    padding-bottom: 8px;
}

.sf-price-current {
    font-size: 20px;
    color: #25b672;
}

.sf-price-old {
    font-size: 15px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
}

/* product section  end*/


/* we care css start */
.we-care-section {
    background-color: #3DC673;
    padding: 48px 16px;
}

.we-care-section h2 {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.we-care-section p {
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.we-care-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-wrap {
    position: relative;
    flex-shrink: 0;
}

.circle-wrap:nth-child(1) {
    z-index: 1;
}

.circle-wrap:nth-child(2) {
    z-index: 2;
}

.circle-wrap:nth-child(3) {
    z-index: 3;
}

.circle-wrap:nth-child(4) {
    z-index: 4;
}

.circle-wrap:not(:first-child) {
    margin-left: -70px;
}

.circle-wrap img {
    width: 300px;
    height: 370px;
    object-fit: cover;
    display: block;
    border-radius: 50% / 50%;
    border: 5px solid #3DC673;
}

/* Tablet */
@media (max-width: 991px) and (min-width: 576px) {
    .circle-wrap img {
        width: 200px;
        height: 250px;
    }

    .circle-wrap:not(:first-child) {
        margin-left: -50px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .circle-wrap img {
        width: 100px;
        height: 125px;
    }

    .circle-wrap:not(:first-child) {
        margin-left: -25px;
    }
}

/* we care css end */
/* footer */
.footer {
    background-color: #003315;
    color: #22c55ee7;
    border-top: 1px solid #22c55e50;
    padding: 12px 0 0;
}

@media (min-width: 992px) {
    .footer {
        padding: 0;
    }
}

.footer a {
    color: #22c55ee7;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #86efac;
}

.footer-logo {
    height: 48px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .footer-logo {
        height: 80px;
    }
}

.footer-brand-title {
    font-size: 1rem;
    font-weight: 700;
    color: #22c55ee7;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
    .footer-brand-title {
        font-size: 1.25rem;
    }
}

.footer-col-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22c55ec5;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li+li {
    margin-top: 1.25rem;
}

.footer-contact-icon {
    margin-top: 5px;
    flex-shrink: 0;
    color: #22c55ee7;
}

.footer-hotline {
    font-size: 1.125rem;
    font-weight: 700;
    color: #22c55ee7;
}

@media (min-width: 992px) {
    .footer-hotline {
        font-size: 1.5rem;
    }
}

.footer-hotline-label {
    color: #22c55ee7;
    margin-bottom: 0;
}

.footer-divider {
    border-color: #22c55e83;
    margin: 0;
}

.footer-bottom {
    padding: 1.25rem 0;
}

.footer-copy {
    font-size: 0.875rem;
    color: #22c55ee7;
    margin: 0;
}

/* Social icons */
.social-icon-wrap {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.social-icon-wrap svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* footer */