        :root {
            --primary-green: #5AB046;
            --light-green: #8CC63F;
            --dark-green: #1C741B;
            --primary-orange: #F7941D;
            --light-orange: #FDB813;
            --dark-orange: #F15A29;
            --background: #f9f9f9;
            --text-dark: #333333;
            --text-light: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #FAFFFE;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container-product {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo {
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
        }

        .product-section {
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
            gap: 30px;
            position: relative;
            /* Add position relative to container */
        }

        .product-images {
            flex: 1;
            min-width: 300px;
            position: sticky;
            /* Make this sticky */
            top: 70px;
            /* Distance from top of viewport */
            align-self: flex-start;
            /* Ensure it sticks to the top */
            max-height: calc(100vh - 40px);
            /* Maximum height - prevents overflow */
            overflow: hidden;
            /* Prevent overflow */
        }

        .product-info {
            flex: 1;
            min-width: 300px;
        }

        .main-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .thumbnail-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            cursor: pointer;
            transition: transform 0.3s ease;
            border: 2px solid transparent;
            object-fit: cover;
        }

        .thumbnail:hover {
            transform: scale(1.05);
            border-color: var(--primary-green);
        }

        .product-title {
            font-size: 32px;
            color: var(--primary-green);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }

        .product-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-orange);
        }

        .product-subtitle {
            font-size: 18px;
            color: var(--dark-green);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .eco-badge {
            display: inline-block;
            padding: 6px 12px;
            background-color: var(--light-green);
            color: var(--text-light);
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .product-description {
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .specifications {
            margin-bottom: 30px;
        }

        .spec-title {
            color: var(--dark-green);
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .spec-list {
            list-style: none;
        }

        .spec-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
        }

        .spec-list li:before {
            content: '•';
            color: var(--primary-orange);
            font-weight: bold;
            display: inline-block;
            width: 20px;
        }

        .actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .size-selector {
            margin-bottom: 20px;
        }

        .size-title {
            color: var(--dark-green);
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .size-option {
            padding: 8px 12px;
            border: 1px solid var(--primary-green);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .size-option:hover,
        .size-option.active {
            background-color: var(--primary-green);
            color: var(--text-light);
        }

        .request-quote {
            padding: 12px 24px;
            background-color: var(--primary-orange);
            color: var(--text-light);
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 20px;
        }

        .request-quote:hover {
            background-color: var(--dark-orange);
        }

        /* UPDATED FEATURES SECTION STYLES */
        .features-section {
            margin: 50px 0;
        }

        .section-title {
            font-size: 28px;
            color: var(--primary-green);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

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

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 40px;
            color: var(--primary-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
        }

        .feature-icon i {
            font-size: 40px;
        }

        .feature-text {
            color: var(--dark-green);
        }

        .feature-text strong {
            font-size: 18px;
            display: block;
            margin-bottom: 5px;
        }

        /* END OF UPDATED FEATURES SECTION */

        .technical-specs {
            margin: 50px 0;
        }

        .tech-specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .tech-specs-table th,
        .tech-specs-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .tech-specs-table th {
            background-color: var(--light-green);
            color: var(--text-light);
        }

        .tech-specs-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .tech-specs-table tr:hover {
            background-color: #e9e9e9;
        }

        .other-products {
            margin: 50px 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-card-content {
            padding: 20px;
        }

        .product-card-title {
            font-size: 18px;
            color: var(--dark-green);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .product-card-description {
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .product-card-btn {
            padding: 10px 15px;
            background-color: var(--primary-green);
            color: var(--text-light);
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .product-card-btn:hover {
            background-color: var(--dark-green);
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .product-section {
                flex-direction: column;
            }

            .product-images {
                position: static;
                /* Disable sticky positioning on smaller screens */
                max-height: none;
                overflow: visible;
            }

            .product-title {
                font-size: 28px;
            }
        }

        @media (max-width: 600px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .product-title {
                font-size: 24px;
            }

            .actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .tech-specs-table {
                font-size: 14px;
            }

            .tech-specs-table th,
            .tech-specs-table td {
                padding: 8px 10px;
            }
        }