
        :root {
            --primary-color: #f7a082;
            --secondary-color: #f8f9fa;
            --dark-color: #343a40;
        }

        /*body {*/
        /*    font-family: 'Open Sans', sans-serif;*/
        /*    color: #333;*/
        /*}*/

        /*h1,*/
        /*h2,*/
        /*h3,*/
        /*h4,*/
        /*h5 {*/
        /*    font-family: 'Poppins', sans-serif;*/
        /*    font-weight: 700;*/
        /*}*/

        /* Header Styles */
        .products-header {
            background: linear-gradient(135deg, rgba(219, 33, 132, 0.1) 0%, rgba(219, 33, 132, 0.05) 100%);
            padding: 60px 0 40px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(219, 33, 132, 0.1);
        }

        .section-title {
            color: var(--primary-color);
            position: relative;
            margin-bottom: 20px;
            padding-bottom: 15px;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .lead {
            font-size: 1.25rem;
            color: #666;
        }

        /* Card Styles */
        .value-card,
        .product-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
            position: relative;
        }

        .value-card:hover,
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(219, 33, 132, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-card {
            border-left: 4px solid var(--primary-color);
        }

        .product-header {
            padding: 20px;
            color: var(--primary-color);
            position: relative;
            min-height: 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-header h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .product-badge {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 8px;
            font-weight: 600;
            align-self: flex-start;
        }

        .product-body,
        .card-body {
            padding: 20px;
            background: white;
            height: calc(100% - 100px);
            display: flex;
            flex-direction: column;
        }

        .product-body h4,
        .card-body h4 {
            color: var(--dark-color);
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .product-body ul,
        .card-body ul {
            padding-left: 20px;
            margin-bottom: 0;
        }

        .product-body li,
        .card-body li {
            margin-bottom: 8px;
            position: relative;
            font-size: 0.95rem;
            padding: 4px 0;
            /* Added vertical padding */
            padding-left: 8px;
            /* Added left padding */
            line-height: 1.4;
            /* Better line spacing */
        }

        .product-body li:before,
        .card-body li:before {
            content: "•";
            color: var(--primary-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            position: absolute;
            left: 0;
        }

        .value-icon {
            color: var(--primary-color);
            font-size: 4.5rem;
            margin-bottom: 15px;
        }

        /* Future Item Styles */
        .future-item {
            padding: 20px;
            border-radius: 5px;
            background-color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .future-icon {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 10px;
        }

        /* Natural Stone + Mica Section */
        .full-width-product {
            margin-top: 30px;
        }

        .variant-row {
            margin: 0 -10px;
        }

        .variant-col {
            padding: 0 10px;
            margin-bottom: 20px;
        }

        .variant {
            height: 100%;
            padding: 20px;
            background: white;
            border-radius: 6px;
            border-left: 3px solid var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .variant h5 {
            color: var(--primary-color);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .variant p {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 0;
        }

        .variant-list {
            padding-left: 15px;
            margin: 10px 0 0 0;
            font-size: 0.9rem;
        }

        .variant-list li {
            margin-bottom: 6px;
        }

        .variant-list li:before {
            content: "•";
            color: var(--primary-color);
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        /* Button Styles */
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-primary:hover {
            background-color: #c11a76;
            border-color: #c11a76;
        }

        .highlight {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .products-header {
                padding: 40px 0 30px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .lead {
                font-size: 1.1rem;
            }

            .variant-col {
                margin-bottom: 15px;
            }

            .variant {
                padding: 15px;
            }

            .product-header {
                min-height: 90px;
            }

            .product-body,
            .card-body {
                height: calc(100% - 90px);
            }
        }
    
<!-- Add styling for hover effects -->
    .hover-shadow:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-4px);
    }
    .hover-zoom img {
        transition: transform 0.4s ease;
    }
    .hover-zoom img:hover {
        transform: scale(1.05);
    }
    .animate-transition {
        transition: all 0.3s ease;
    }
<!-- Hover & Transition Styles -->

    .hover-shadow:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-4px);
    }
    .hover-zoom img {
        transition: transform 0.4s ease;
    }
    .hover-zoom img:hover {
        transform: scale(1.05);
    }
    .animate-transition {
        transition: all 0.3s ease;
    }


