        /* category card Container css*/

        .category-card {
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
            text-align: center;
            padding: 2px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .category-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #2c3e50;
            line-height: 1.3;
        }

        .img-container {
            position: relative;
            padding-top: 50%;
            /* 1:1 aspect ratio */
            overflow: hidden;
            border-radius: 8px;
        }

        .category-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .category-card:hover img {
            transform: scale(1.05);
        }



        /* Custom Button Container */
        .button-container {
            padding: 20px 0px;
        }

        /* Button Styling */
        .btn-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            text-align: center;
            border-radius: 10px;
            padding: 12px;
            white-space: normal;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            width: 100%;
            height: 56px;
            text-transform: uppercase;
            font-size: 13px;
        }

        /* Button Colors */
        .btn-gray {
            background-color: #e5e5e5;
            color: #000;
        }

        .btn-green {
            background-color: #556b2f;
            color: white;
        }

        /* Hover & Click Effects */
        .btn-custom:hover {
            transform: scale(1.05);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

        .offers-section {
            margin: 20px 0;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .offer-card-category {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            min-height: 140px;
        }

        .offer-card-category:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .offer-header {
            background: #d52323;
            color: white;
            font-weight: bold;
            padding: 10px;
            font-size: 16px;
            min-height: 60px;
        }

        .offer-body {
            font-size: 15px;
            font-weight: bold;
            color: #1e1c18;
            margin-left: 20px;
        }

        .offer-link {
            color: black;
            font-size: 13px;
            display: block;
            margin-top: 18px;
            text-decoration: none;
            margin-left: 30px;
        }

        /* General container styling */
        .product-section-category {
            margin: 20px 0;
        }

        span.offer-header-text {
            margin-left: 20px;
            display: flex;
            margin-top: 22px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .product-card-category {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: center;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            min-height: 200px;

        }

        .product-card-category:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .product-card-category img {
            width: 100%;
            max-height: 150px;
            object-fit: cover;
        }

        .product-title-category {
            font-size: 14px;
            font-weight: bold;
            color: #aeaeae;
            line-height: 1.4;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            max-width: 100%;
            margin-left: 10px;
        }

        /* Flex container for vertical line and discount */
        .discount-container,
        .discount-container-offer {
            display: flex;
            align-items: center;
            margin-left: 5px;
        }

        .vertical-line,
        .vertical-line-offer {
            width: 4px;
            height: 22px;
            background-color: #e63737;
            margin-right: 5px;
            border-radius: 2px;
            margin-left: -5px;
        }

        .product-discount {
            font-size: 15px;
            font-weight: bold;
            color: #1e1c18;
        }


        /* Mobile View */
        @media (max-width: 768px) {

            .category-title {
                font-size: 0.8rem;
            }

            .product-grid,
            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }


            .offer-header {
                font-size: 14px;
            }

            .offer-body {
                font-size: 12px;
            }

            .product-card-category {
                min-height: 150px;
            }

            .product-card-category img {
                max-height: 100px;
            }

            .product-title-category {
                font-size: 14px;
            }

            .product-discount {
                font-size: 12px;
            }

            #product-section-category-title {
                font-size: 25px;
            }
        }