

    body {
        font-family: "Inter", "Open Sans", sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        letter-spacing: -0.01em;
        color: #1a1a1a;
    }
    /* header css */
    .app-header {
        background-color: #01431D !important;
        padding: 0 !important;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 21;
    }
    .input-group input {
        padding: 16px 0px;
    }
    .search-bar .input-group .btn {
        width: 116px;
    }

    .search-pill {
        background: #ffffff;
        border-radius: 50px;
        overflow: hidden;
    }

    .search-pill .input-group-text {
        background: transparent;
    }

    .search-pill input {
        padding-left: 5px;
    }

    .search-pill .btn {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-radius: 50px;
    }

    .top-nav-bar ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 25px;
    }

    /* Category button */
    .nav-btn {
        background: transparent;
        border: none;
        font-size: 16px;
        font-weight: 600;
        color: #198754; /* green accent */
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }

    /* Bootstrap dropdown caret hidden (we use custom UI) */
    .nav-btn::after {
        display: none;
    }

    /* Menu items */
    .nav-link-btn {
        background: transparent;
        border: none;
        font-size: 16px;
        color: #333;
        cursor: pointer;
    }

    .nav-link-btn:hover {
        color: #198754;
    }

    /* Dropdown style */
    .dropdown-menu {
        margin-top: 8px;
        border-radius: 8px;
        min-width: 200px;
    }

    .category-dropdown {
        display: none;
    }

    .category-dropdown.show {
        display: block;
    }

    .dropdown-item:hover {
        background-color: #e6f4ee;
    }

    .category-wrapper {
        position: relative;
        display: inline-block;
    }

    .category-btn {
        background: transparent;
        border: none;
        font-size: 18px;
        font-weight: 600;
        color: #0b8a47;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .category-btn i {
        font-size: 20px;
    }

    /* Dropdown container */
    .category-dropdown {
        display: none;
        position: absolute;
        top: 45px;
        left: 0;
        width: 260px;
        background: white;
        border-radius: 8px;
        padding: 6px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        z-index: 9999;
    }

    /* Individual category rows */
    .category-dropdown a {
        display: block;
        padding: 12px 18px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        border-bottom: 1px solid #f2f2f2;
    }

    .category-dropdown a:last-child {
        border-bottom: none;
    }

    .category-dropdown a:hover {
        background: #e7f6ef;
    }
    .cart-icon {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .user-icon {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
    }

    .cart-count {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .cart-count .count {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: green;
        color: white;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cart-count .text {
        color: white;
        font-size: 12px;
    }
    button.header-profile-btn {
        border: none;
        color: white;
    }

    /* Banner section */
    .banner-section {
        background: linear-gradient(135deg, #01431D 0%, #064d23 40%, #0a6b30 100%);
        padding-top: 0;
        padding-bottom: 140px;
        position: relative;
        overflow: hidden;
    }
    .banner-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(9,149,71,0.2) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .banner-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .banner-section .swiper-slide > .row {
        min-height: 480px;
        align-items: center;
    }
    .banner-section .content {
        text-align: left;
        position: relative;
        z-index: 2;
    }

    .banner-section .content h6 {
        color: #8BC34A;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-family: "Inter", sans-serif;
    }

    .banner-section .content h1 {
        color: #fff;
        font-size: 60px;
        font-weight: 800;
        line-height: 1.08;
        margin-bottom: 20px;
        font-family: "Poppins", sans-serif;
        letter-spacing: -2px;
    }

    .banner-section .content p {
        font-size: 17px;
        line-height: 1.7;
        color: rgba(255,255,255,0.7);
        margin-bottom: 36px;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        max-width: 400px;
    }

    .banner-section .shop-now-btn {
        background-color: #fff;
        color: #01431D;
        padding: 14px 34px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .banner-section .shop-now-btn::after {
        content: "→";
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .banner-section .shop-now-btn:hover {
        background-color: #8BC34A;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .banner-section .shop-now-btn:hover::after {
        transform: translateX(4px);
    }

    /* Banner image treatment */
    .banner-section .image {
        position: relative;
        z-index: 2;
    }
    .banner-section .image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        max-height: 420px;
        width: 100%;
        object-fit: cover;
    }

    .banner-section .swiper .swiper-pagination-bullet {
        background-color: rgba(255,255,255,0.4);
        opacity: 1;
        width: 8px;
        height: 8px;
    }
    .banner-section .swiper .swiper-pagination-bullet-active {
        width: 24px !important;
        background-color: #8BC34A;
        opacity: 1;
        border-radius: 50px;
    }
    .banner-section .swiper .swiper-slide .image,
    .banner-section .swiper .swiper-slide.swiper-slide-prev .image,
    .banner-section .swiper .swiper-slide.swiper-slide-next .image{
        opacity: 0 !important;
        transform: scale(0.95) translateX(20px);
        transition: all 0.8s ease;
    }
    .banner-section .swiper .swiper-slide .content,
    .banner-section .swiper .swiper-slide.swiper-slide-prev .content,
    .banner-section .swiper .swiper-slide.swiper-slide-next .content{
        opacity: 0 !important;
        transform: translateY(20px);
        transition: all 0.8s ease;
    }
    .banner-section .swiper .swiper-slide.swiper-slide-visible.swiper-slide-active .content{
        opacity: 1 !important;
        transform: translateY(0);
        transition: all 0.8s ease;
    }
    .banner-section .swiper .swiper-slide.swiper-slide-visible.swiper-slide-active .image{
        opacity: 1 !important;
        transform: scale(1) translateX(0);
        transition: all 0.8s ease;
    }




    /* Wrapper card */
     .shipping-customer-service-info-section {
        background-color: white;
     }
    .shipping-customer-service-info-section .translate-y-50{
        transform: translateY(-50%)
    }
    .nbh-card {
        border: 1px solid #e5e5e5;
        padding: 20px 28px;
        border-right: none;
        background-color: white;
        transition: all 0.3s ease;
    }

    .nbh-card:hover {
        background-color: #f0faf4;
        box-shadow: 0 4px 15px rgba(9, 149, 71, 0.08);
    }

    .col-3:last-child .nbh-card {
        border-right: 1px solid #e5e5e5;
    }

    /* Content alignment */
    .nbh-card-body {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    /* Icon circle background */
    .icon-container {
        width: 100px;
        height: 100px;
        border: 1px solid #09954773;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .nbh-card:hover .icon-container {
        background-color: #099547;
        border-color: #099547;
    }

    .nbh-card:hover .icon-container svg path {
        fill: #fff;
    }

    /* Title and text */
    .content-container h5 {
        font-size: 18px;
        font-weight: 700;
        color: #01431D;
        font-family: "Poppins", sans-serif;
        letter-spacing: -0.3px;
    }

    .content-container p {
        font-size: 13px;
        margin: 0;
        color: #5a6b5e;
        font-weight: 400;
        line-height: 1.5;
    }

    /* Row padding similar to image */
    .px-20 {
        padding-left: 80px;
        padding-right: 80px;
    }

    /* Make all columns equal height */
    .nbh-card {
        height: 200px;
        display: flex;
        align-items: center;
    }

    /* Responsive (optional) */
    @media (max-width: 992px) {
        .col-3 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 576px) {
        .col-3 {
            flex: 0 0 100%;
            max-width: 100%;
            border-right: none;
            border-bottom: 1px solid #e5e5e5;
        }
    }


    .top-categories {
        background-color: white;
        padding-bottom: 120px;
    }

    .top-category-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 35px; /* spacing between items */
        justify-items: center;
        align-items: center;
        margin-top: 30px;
    }


    /* CATEGORY ITEM */
    .top-catagory-item {
        text-align: center;
        cursor: pointer;
        transition: all 0.35s ease;
        width: 100%;
    }

    .top-catagory-item:hover {
        transform: translateY(-8px);
    }

    /* IMAGE WRAPPER */
    .top-catagory-item .image-container {
        width: 100%;
        border-radius: 20px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 2px solid transparent;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        transition: all 0.35s ease;
    }

    .top-catagory-item:hover .image-container {
        border-color: #099547;
        box-shadow: 0 8px 25px rgba(9, 149, 71, 0.15);
    }

    /* IMAGE */
    .top-catagory-item .image-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.35s ease;
    }

    .top-catagory-item:hover .image-container img {
        transform: scale(1.05);
    }

    /* TEXT */
    .top-catagory-item .tci-body h5 {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-top: 12px;
        transition: color 0.3s ease;
        font-family: "Inter", sans-serif;
        letter-spacing: -0.2px;
    }

    .top-catagory-item:hover .tci-body h5 {
        color: #099547;
    }

    /* imported-food-section */
    .imported-food-section {
        padding-bottom: 120px !important;
        padding-top: 120px !important;
    }
    .bg-gray-color {
        background-color: #EEEFEE6E;
    }
    .home-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .product-item {
        border: 1px solid #e2e2e2;
        border-radius: 18px;
        padding: 20px;
        background: #fff;
        transition: all 0.35s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .product-item:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        border-color: #099547;
        transform: translateY(-4px);
    }

    /* Product Image */
    .product-item .thumb {
        width: 100%;
        max-height: 430px;
        overflow: hidden;
        border-radius: 12px;
    }
    .product-item .thumb a {
        display: block;
        margin-bottom: 20px;
    }
    .product-item .thumb img {
        width: 100%;
        height: auto;
        transition: transform 0.4s ease;
    }
    .product-item:hover .thumb img {
        transform: scale(1.05);
    }

    /* Title */
    .product-item .content {
        text-align: left;
    }
    .product-item .content .title a {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 5px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.6;
        transition: color 0.3s ease;
        font-family: "Inter", sans-serif;
    }
    .product-item:hover .content .title a {
        color: #099547;
    }

    /* Quantity text */
    .product-item .content .quantity {
        font-size: 13px;
        color: #6b7b6e;
        margin-bottom: 8px;
        font-weight: 500;
    }

    /* Price */
    .product-item .content .price {
        font-size: 20px;
        font-weight: 800;
        color: #01431D;
        margin-bottom: 10px;
        font-family: "Poppins", sans-serif;
        letter-spacing: -0.5px;
    }

    /* Add To Cart Button */
    .product-item .add-btn {
        width: 100%;
        background: #01431D;
        color: #fff;
        border-radius: 50px;
        padding: 9px 20px;
        font-size: 16px;
        display: flex;
        justify-content: center;
        gap: 8px;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .product-item .add-btn:hover {
        background: #099547;
        box-shadow: 0 4px 12px rgba(9, 149, 71, 0.3);
        transform: translateY(-1px);
    }

    .product-item .add-btn svg {
        fill: white;
    }
    .section-header {
        margin-bottom: 50px;
        position: relative;
        padding-bottom: 15px;
    }
    .section-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #099547;
        border-radius: 3px;
    }
    .imported-food-section .section-header h2 {
        font-size: 56px;
        font-weight: 700;
        color: #01431D;
        margin-bottom: 0px;
    }
    .section-header h2 {
        font-size: 42px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 0px;
        font-family: "Poppins", sans-serif;
        letter-spacing: -1px;
    }
    .tab-list {
        margin-bottom: 50px;
        margin-top: 20px;
        padding-left: 0px;
        display: flex;
        align-items: center;
        gap: 24px;
        list-style-type: none;
    }
    .tab-list li button {
        background-color: white;
        font-size: 28px;
        font-weight: 600;
        color: #01431D;
        border: none;
        padding: 8px 34px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    .tab-list li button.active,
    .tab-list li button:hover {
        background-color: #01431D;
        color: white;
    }

    /* swiper navigation css */
    .swiper-custom-button {
        width: 45px;
        height: 45px;
        border: 1px solid #DAE5DA;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        background-color: white;
    }
    .swiper-custom-button:hover,
    .swiper-custom-button:active,
    .swiper-custom-button:focus{
        background-color: #01431D;
        box-shadow: 0 2px 10px rgba(1, 67, 29, 0.3);
    }
    .swiper-custom-button:hover svg path {
        stroke: #fff;
    }
    .swiper-custom-button.next-btn {
        left: -45px;
    }
    .swiper-custom-button.prev-btn {
        right: -45px;
    }


    /* other-item section css */
    .other-items-section .section-header {
        text-align: center;
    }
    .other-items-section .section-header::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .other-items-section .section-header h2 {
        color: #099547;
        font-size: 52px;
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        letter-spacing: -1.5px;
    }
    .other-item {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.35s ease;
    }
    .other-item:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }
    .other-item .thumb {
        position: relative;
    }
    .other-item .thumb img {
        width: 100%;
        transition: transform 0.5s ease;
    }
    .other-item:hover .thumb img {
        transform: scale(1.03);
    }
    .other-item .thumb .content {
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        padding: 30px;
    }
     .other-item .thumb .content h6 {
        font-size: 18px;
        color: #099547;
        margin-bottom: 20px;
     }
     .other-item .thumb .content h3 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #002603;
        font-family: "Poppins", sans-serif;
        letter-spacing: -0.5px;
        line-height: 1.2;
     }
    .other-item .thumb .content .shop-now-btn {
        background-color: #0B4D1E;
        color: #fff;
        padding: 12px 28px;
        border-radius: 30px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: 0.3s ease;
    }

   .other-item .thumb .content .shop-now-btn::after {
        content: "➜";
        font-size: 16px;
    }
    .other-item .thumb .content .shop-now-btn:hover {
        background-color: white;
        color: #01431D;
    }

    .other-item.style2 .thumb .content h6 {
        color: #fff;
     }
     .other-item.style2 .thumb .content h3 {
        color: #fff;
     }
    .other-item.style2 .thumb .content .shop-now-btn {
        background-color: #fff;
        color: #0B4D1E;
    }
     .other-item.style2 .thumb .content .shop-now-btn:hover {
        background-color: #01431D;
        color: #fff;
    }


    /* footer css */
    .footer {
        font-family: "Inter", "Poppins", sans-serif;
        position: relative;
        overflow: hidden;
    }
    .footer h4 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 18px;
        letter-spacing: -0.3px;
    }
    .footer p, .footer li, .footer a {
        font-size: 14px;
        line-height: 1.7;
    }
    .footer .pattern-left {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        max-width: 250px;
    }
    .footer .pattern-left img {
        width: 100%;
    }
    .footer .pattern-right img {
        width: 100%;
    }
    .footer .pattern-right {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        max-width: 250px;
    }
    .footer h4 {
        font-size: 20px;
        color: #FFFFFF;
        margin-bottom: 24px;
    }
    .footer .footer-link-list {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    .footer .footer-link-list a {
        color: #fff;
        font-size: 14px;
        margin-bottom: 12px;
        display: block;
    }
    .footer .desc {
        max-width: 330px;
    }
    .footer .contact-us-info {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    .footer .contact-us-info li {
        display: flex;
        margin-bottom: 12px;
    }
    .footer .contact-us-info li .icon {
        width: 30px;
        margin-right: 10px;
    }
    .footer .contact-us-info li a {
        color: #fff;
    }

    .footer .social-link {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }
    .footer .social-link li {
        margin-right: 20px;
    }
    .footer .social-link li:last-child {
        margin-right: 0px;
    }
    .footer .social-link li a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
    }
    .footer .social-link li a:hover {
        background-color: #099547;
    }
    .footer .social-link li a:hover svg path {
        fill: white;
    }



    /* authentication css */
    .auth-card {
        padding: 55px 90px;
        border-radius: 8px;
    }
    .auth-card .card-header {
        border-bottom: none;
        font-size: 28px;
        font-weight: 600;
        color: #01431D;
        margin-bottom: 24px;
        margin-bottom: 0px;
        text-align: center;
    }
    .auth-card .card-body {
        padding: 0px;
    }
    .auth-item{
        text-align: left;
        margin-bottom: 24px;
    }
    .auth-item label{
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding-top: 0px;
    }
    .auth-item input {
        width: 100%;
    }

    .auth-card .auth-btn {
        width: 100%;
        border-radius: 50px;
        padding: 10px 20px;
        background-color: #01431D;
        color: #fff;
        border: none;
        font-size: 18px;
        font-weight: 600;
    }
    .auth-card .forgot-password-link {
        color: #01431D;
        font-size: 14px;
        text-align: right;
    }
    .auth-card a {
        color: #01431D
    }


    /* === CART SIDEBAR WRAPPER === */
.cart-sidebar {
    width: 380px;
    background: #fff;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    padding: 0;
    position: fixed;
    right: -390px;
    top: 100px;
    height: calc(100vh - 100px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.cart-sidebar .close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid green;
    border-radius: 50%;
}
.cart-sidebar.open {
    right: 0px !important;
}

.cart-sidebar-header {
    padding: 10px 16px;
    border-bottom: 1px solid #e6e6e6;
    background-color: #F4F4F4;
    margin-bottom: 10px;
}

.cart-sidebar-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.cart-sidebar-header span {
    font-weight: 600;
    color: #028A34;
}

.cart-sidebar-header .close-btn {
    border: none;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* === LIST WRAPPER === */
.cart-sidebar-wrapper {
    padding: 15px 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* === INDIVIDUAL CART ITEM === */
.cart-item {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececec;
}
.cart-item:nth-last-child(2) {
    border-bottom: none;
}
.cart-item .thumb {
    width: 100px;
    height: 100px;
    /* background-color: #ccc; */
}

.cart-item .thumb img {
    width: 100%;
    object-fit: contain;
}
.cart-item .details {
    width: 160px;
    padding-left: 20px;
}
.cart-item .price-block {
    width: 60px;
    text-align: center;
}
.cart-item .action {
    width: 60px;
    text-align: center;
}

.cart-item .details .title a {
    font-size: 14px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
}

.cart-item .details .quantity {
    font-size: 13px;
    color: #6b6b6b;
    margin-bottom: 6px;
}

/* === Quantity Button Group === */
.quantity-increase-decrease{
    background-color: #099547;
    width: 100px;
    padding: 2px 2px;
    border-radius: 30px;
    align-items: center;
    justify-content: space-between;
}
.quantity-increase-decrease button {
    background: transparent;
    color: #fff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 22px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-increase-decrease span {
    margin: 0 0px;
    background: transparent;
    padding: 1px 3px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    width: 30px;
    text-align: center;
}

/* Price Block */
.price-block h5 {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* Delete Icon */
.action {
    color: red;
    font-size: 18px;
    cursor: pointer;
}

/* === Total Block === */
.total-block {
    margin-top: 20px;
    padding: 16px 0;
    border-top: 1px solid #ddd;
    font-size: 18px;
    font-weight: 600;
}

/* === Checkout Button === */
.cart-sidebar-wrapper button.submit-btn {
    width: 100%;
    background: #028A34;
    padding: 16px;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}
.overflow-hidden {
    overflow: hidden;
}



/* product details */
.product-details-section {
    margin-bottom: 16px;
}
.pd-card {
    padding: 10px 10px;
    background-color: white;
    border: 2px solid #D9D9D985;
    border-radius: 8px;
}
.product-image-slider {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: contain;
    background-position: center;
    border-radius: 10px;
}

.slider-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.slider-image .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.slider-image .swiper-slide img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
}
.swiper-slide img {
    border-radius: 10px;
}

.slider-thumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0 !important;
}

.slider-thumbs .swiper-slide {
    width: 25%;
    height: 80px;
    opacity: 0.4;
    border-radius: 10px;
    cursor: pointer;
}
.slider-thumbs .swiper-slide img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.slider-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* Zoom container */
.product-zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}
.product-zoom-container .zoom-lens {
    display: none;
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #099547;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
}
.product-zoom-container .zoom-result {
    display: none;
    position: absolute;
    top: 0;
    left: 105%;
    width: 400px;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
    .product-zoom-container .zoom-result {
        display: none !important;
    }
}

/* Product detail page - prevent cropping */
.product-zoom-container .slider-image {
    height: auto;
}
.product-zoom-container .slider-image .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.product-zoom-container .slider-image .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
}

/* Zoom feature - product detail page only */
.product-zoom-container {
    position: relative;
    cursor: crosshair;
}
.product-zoom-container .zoom-result {
    display: none;
    position: absolute;
    top: 0;
    left: 105%;
    width: 450px;
    height: 450px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}
@media (max-width: 991px) {
    .product-zoom-container .zoom-result {
        display: none !important;
    }
}


.product-details-info {
    padding: 0 30px;
}
.product-details-info .product-details-block-item {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}
.product-details-info .product-details-block-item.title-block h2 {
    font-size: 32px;
    font-weight: 700;
}
.product-details-info .product-details-block-item.title-block span {
    font-size: 20px;
    font-weight: 400;
}
.product-details-info .product-details-block-item.title-block button {
    border: none;
    background-color: transparent;
}

.product-details-info .product-details-block-item.price-block .price {
    font-size: 18px;
    color: #646464;
}
.product-details-info .product-details-block-item.price-block .price span{
    margin-left: 30px;
    font-size: 24px;
    color: #01431D;
}

.product-details-info .product-details-block-item.quantity-block .quantity{
    font-size: 18px;
    color: #646464;
    margin-bottom: 0px;
}

.product-details-info .product-details-block-item.quantity-block .quantity-increase-decrease {
    margin-left: 30px;
}

.product-details-info .product-details-block-item.total-price-block .price {
    font-size: 18px;
    color: #646464;
}

.product-details-info .product-details-block-item.total-price-block .price span{
    margin-left: 30px;
    font-size: 24px;
    color: #01431D;
}

.product-details-info .add-to-cart {
    background-color: #01431D;
    color: white;
    max-width: 225px;
    width: 100%;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 18px;
    display: block;
    text-align: center;
}


.pd-card-header {
    position: relative;
}
.pd-card-header:after {
    content:"";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.pd-card-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #01431D; /* dark green like UI */
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.pd-card-header h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;         /* green underline width */
    height: 2px;
    background: #01431D;
}

/* Body */
.pd-card-wrapper {
    padding: 16px 0px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pd-card-wrapper h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #000;
}

.pd-card-wrapper span {
    font-size: 16px;
    color: #646464;
}


/* bread-crumbs-section */
.bread-crumbs-section {
    margin: 20px 0;
}

.breadcrumb-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 12px 20px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.breadcrumb li a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
}

.breadcrumb li span {
    color: #099547;
    font-weight: 500;
    font-size: 16px;
}

.breadcrumb li::after {
    content: "/";
    margin-left: 6px;
    color: #888;
}

.breadcrumb li:last-child::after {
    content: "";
}


/* cagagory list page css */
.catagory-left-sidebar {
    flex-shrink: 0;
    width: 200px;
}

.catagory-name-list {
    padding-left: 0;
    margin-bottom: 0;
    background-color: white;
    list-style: none;
}
.catagory-name-list li a {
    padding: 6px 16px;
    font-size: 16px;
    border-bottom: 1px solid #D9D9D9;
    color: #01431D;
    display: block;
}
.catagory-name-list li a.active {
    background-color: #099547;
    color: white;
    font-size: 18px;
}
.catagory-name-list li:last-child a{
    border-bottom: none;
}

.catagory-list-body {
    width: calc(100% - 200px);
    flex-shrink: 1;
}



/* page css */
.page-body {
    background-color: white;
}

.page-body .header {
    background-color: #0e8c4a;
    color: white;
    padding: 10px;
    text-align: center;
}

.page-body .header h1 {
    font-size: 32px;
    font-weight: normal;
    color: white;
}

.page-body .content {
    padding: 30px;
    line-height: 1.6;
    color: #333;
    font-weight: 700;
}



.page-body .content h4 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.page-body .content p {
    font-size: 15px;
    text-align: justify;
    color: #555;
    margin-bottom: 24px;
}


/* faq page css */

.faq-section {
    max-width: 1100px;
    margin: auto;
    padding: 50px 0;
    background: linear-gradient(to right, #fdfdfd, #e8f5e8);
}

.faq-title {
  text-align: center;
  font-size: 28px;
  color: white;
  background: #0b8d38;
  padding: 15px;
  margin-bottom: 40px;
}

/* .faq-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
} */

.faq-item {
  /* background: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-item-inner {
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-radius: 10px;
}

/* .faq-item.open {
  border-left: 4px solid #0b8d38;
} */

.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-header h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.plus {
  font-size: 22px;
  color: #0b8d38;
}

.line {
  width: 22px;
  height: 2px;
  background: #0b8d38;
  display: inline-block;
  display: none;
}
.faq-item.open .plus {
    display: none;
}
.faq-item.open .line {
    display: block;
}

.faq-content {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
  animation: fade .3s ease;
  padding-left: 30px;
}

.faq-item.open .faq-content {
  display: block;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.card-footer button.btn {
    font-weight: 600;
}
.success-order-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0b8d38;
    border: 1px solid #0b8d38;
    border-radius: 50%;
    margin-top: 20px;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


.product-item .thumb img {
    width: 100%;
    height: auto;
    margin: auto;
    max-height: 230px;
}

.custom-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    background-image: url(../images/startiIon.svg);
    aspect-ratio: 1;
    display: flex
    ;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    background-repeat: no-repeat;
    padding: 10px 0;
    z-index: 1;
}
.product-image-slider,
.product-item {
    position: relative;
}

.old-price {
  color: #e8312a;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 600;
  font-family: sans-serif;
  margin-left: 10px;
}