
        .product__card {
            border: 1px solid #eee;
            padding: 8px;
            background: #fff;
            border-radius: 8px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: 0.3s;
        }

        .product__card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        /* Image */
        .product__card--thumbnail {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2px;
            overflow: hidden;
            background: #fdfdfd;
        }

        .product__card--thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: 0.3s;
        }

        .product__card--content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        /* Title */
        .product__card--title {
            font-size: 14px;
            margin: 10px 0 5px;
            font-weight: 600;
            min-height: 40px;
        }

        /* Info */
        .product__details--info {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .product__details--info .seller {
            color: #55a21b;
            font-weight: 500;
        }

        /* Price */
        .product__card--price {
            font-size: 16px;
            font-weight: 700;
            color: #054615;
            margin-bottom: 10px;
        }

        /* Buttons Container */
        .product__card--actions {
            display: flex;
            gap: 8px;
            margin-top: auto;
            padding-top: 15px;
        }

        /* Common Button Style */
        .product__card--actions a {
            flex: 1;
            text-align: center;
            padding: 10px 0;
            font-size: 14px;
            border-radius: 5px;
            font-weight: 500;
            transition: 0.3s;
            text-decoration: none;
        }

        /* Green Primary Button */
        .btn-best-price {
            background: #55a21b;
            color: #fff;
            border: none;
        }

        .btn-best-price:hover {
            background: #054615;
            color: #fff;
        }

        /* Dark Button */
        .btn-enquire {
            background: #4e5b64;
            color: #fff;
            border: 1px solid #4e5b64;
        }

        .btn-enquire:hover {
            background: #054615;
            border-color: #054615;
            color: #fff;
        }

        /* Dynamic Brand Section CSS */
        .brand-banner-container {
            transition: all 0.3s ease;
        }
        .brand-banner-container img {
            transition: transform 0.5s ease;
        }
        .brand-banner-container:hover img {
            transform: scale(1.04);
        }
        .brand-grid-wrapper {
            background: #fdfdfd !important;
            overflow: hidden;
        }
        .brand-grid-page.active {
            animation: brandGridFadeIn 0.8s ease-in-out forwards;
        }
        .brand-grid-page {
            align-content: start;
        }
        .brand-logo-card {
            background: #fff;
            border: 1px solid #eaeaea;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            height: 90px;
            border-radius: 6px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.01);
        }
        .brand-logo-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            border-color: #55a21b;
        }
        .brand-logo-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        @keyframes brandGridFadeIn {
            0% { opacity: 0; transform: scale(0.97); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Responsive Grid Columns */
        @media (max-width: 991px) {
            .brand-grid-page {
                grid-template-columns: repeat(4, 1fr) !important;
            }
            .brand-logo-card.empty-card {
                display: none !important;
            }
        }
        @media (max-width: 767px) {
            .brand-grid-page {
                grid-template-columns: repeat(2, 1fr) !important;
                align-content: start !important;
            }
            .brand-logo-card {
                height: 80px;
            }
            .brand-grid-wrapper {
                overflow-y: auto !important;
                overflow-x: hidden !important;
                -webkit-overflow-scrolling: touch;
                max-height: 440px !important;
            }
        }
