        body {
            background-size: cover;
            background-position: center center;
            background-attachment: fixed;
            background-repeat: no-repeat;
        }
        a {
            text-decoration: none;
            color: #014f2b;
            font-weight: 500;
        }
        .section-product-banner,
        .section-popular-products {
            background: transparent !important;
        }

        .cr-services-border {
            border: none !important;
            background: transparent !important;
        }
        .category-btn {
            width: 100%;
            padding: 15px 10px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            background-color: #fff;
            border: 2px solid #014f2b !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.05);
            color: #014f2b;
            font-weight: 700;
            text-transform: uppercase;
        }
        .category-btn:hover {
            background-color: #014f2b;
            color: #fff !important;
            box-shadow: 0 8px 15px rgba(1, 79, 43, 0.3);
        }

        .banner-sidebar {
            position: fixed;
            top: 110px;
            width: 170px;
            transition: all 0.4s ease-in-out;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .banner-sidebar.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .banner-left {
            left: calc(50% - (825px + 20px));
        }

        .banner-right {
            right: calc(50% - (825px + 20px));
        }
        .banner-sidebar img {
            margin-top: 20px;
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        }
        .tnc-overlay {
            display: none;
            position: fixed;
            z-index: 99999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.4s ease-out;
            align-items: center;
            justify-content: center;
        }
        .tnc-wrapper {
            position: relative;
            max-width: 650px;
            width: 90%;
            animation: zoomIn 0.4s ease-out;
        }
        .tnc-main-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 15px;
        }
        .tnc-close-btn {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 35px;
            height: 35px;
            background: #fff;
            color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            line-height: 1;
            padding-bottom: 4px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1;
        }
        .tnc-close-btn:hover {
            background: #ff0000;
            color: #fff;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }
        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to   { transform: scale(1);   opacity: 1; }
        }
        @media (max-width: 1550px) {
            .banner-sidebar {
                display: none !important;
            }
        }
        .category-block {
            /* margin-top: 14px; */
            padding: 4px;
        }

        /* .category-title {
            font-size: 20px;
            font-weight: 700;
            color: #014f2b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            padding-bottom: 16px;
            background-color: #ffffff;
        } */
        .category-title {
            background-color: #ffffff; 
            padding: 15px;
            border-radius: 10px ;
            margin-bottom: 8px;

            font-size: 20px;
            font-weight: 700;
            color: #014f2b;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
        }
        .category-title a {
            font-size: 20px;
            font-weight: 700;
        }
        .category-title::after {
            content: '';
            display: block;
            width: 65px;
            height: 3px;
            background: #f5a623;
            border-radius: 2px;
            margin: 3px auto 0;
        }

        .category-banner-wrap {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
            background: #eee;
            aspect-ratio: 1492 / 350;
        }
        .category-banner-wrap img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
            aspect-ratio: 1492 / 350;
        }
        .category-banner-wrap:hover img {
            transform: scale(1.03);
        }
        .sub-category-list {
            display: flex;
            gap: 8px;
            margin-top: 15px;
            flex-wrap: wrap;
            margin-bottom: 7px;
        }
        .sub-category-list a {
            padding: 6px 14px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-size: 13px;
            color: #444;
            text-decoration: none;
            background: #fff;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .sub-category-list a:hover {
            border-color: #014f2b;
            color: #014f2b;
            background: #f0fdf4;
        }
        .modal-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            color: #999;    
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .category-block {
                margin-top: 0px;
                padding: 4px;
            }
            .category-title {
                padding-bottom: 0px;
            }
        }