
        /* Container spacing for text list */
        .more-products-container {
            margin-top: 20px;
            padding: 30px 15px;
            text-align: center;
            background-color: #fafafa;
            /* Very subtle background separation */
            border-radius: 12px;
        }

        /* Subsection header styling */
        .more-products-title {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 700;
            /* Bold header */
            letter-spacing: 0.5px;
        }

        /* Responsive Flexbox wrapper */
        .product-text-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            /* Margins between cards */
            justify-content: center;
        }

        /* Base Style: Laptop/Desktop (8 items per row) */
        .product-text-item {
            /* Math: 100% / 8 columns = 12.5% minus gap allocations */
            flex: 1 1 calc(12.5% - 12px);
            min-width: 120px;

            /* Light greenish aesthetic */
            background-color: #f0fdf4;
            /* Ultra-light mint green */
            border: 1px solid #bbf7d0;
            /* Soft pastel green border */
            border-radius: 8px;

            /* Typography Upgrades */
            padding: 14px 8px;
            font-size: 1.8rem;
            /* Increased size */
            font-weight: 500;
            /* Semi-bold text */
            color: #000;
            /* Deep forest green text for high readability contrast */

            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            transition: all 0.25s ease-in-out;
            cursor: default;
        }

        /* Interactive Hover state */
        .product-text-item:hover {
            background-color: #dcfce7;
            /* Slightly richer light green on hover */
            border-color: #86efac;
            transform: translateY(-2px);
            /* Subtle lift effect */
            box-shadow: 0 4px 12px rgba(22, 101, 52, 0.1);
        }

        /* Mobile Screens Breakpoint (Max-width: 767px) */
        @media (max-width: 767px) {

            /* 4 items per row on narrow screens */
            .product-text-item {
                flex: 1 1 calc(25% - 12px);
                min-width: 75px;
                font-size: 1.5rem;
                /* Clean, legible sizing for mobile viewports */
                padding: 12px 4px;
            }

            .more-products-title {
                font-size: 2.2rem;
            }
        }
