
        :root {
            --primary-color-home-prod-section-by-codexaman: #f4c75c;
            --dark-color-home-prod-section-by-codexaman: #1a1a1a;
            --accent-color-home-prod-section-by-codexaman: #ff6b35;
        }

        /* ========== RICE SECTION ========== */
        .rice-section-home-prod-section-by-codexaman {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
            background-size: cover;
        }
        .rice-section-home-prod-section-by-codexaman::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* change color & opacity */
            z-index: 1;
        }

        .rice-section-home-prod-section-by-codexaman > * {
            position: relative;
            z-index: 2;
        }
        
        /* ========== YARN SECTION ========== */
        .yarn-section-home-prod-section-by-codexaman {
            padding: 100px 0;
            /*background: #f8f9fa;*/
            background: #fff7eb;
            position: relative;
            background-size: cover;
        }
         .yarn-section-home-prod-section-by-codexaman::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: rgba(0, 0, 0, 0.5); */
            background: rgb(255 255 255 / 50%);
            z-index: 1;
        }

        .yarn-section-home-prod-section-by-codexaman > * {
            position: relative;
            z-index: 2;
        }

        /* Section Header Styles */
        .section-header-home-prod-section-by-codexaman {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-tag-home-prod-section-by-codexaman {
            display: inline-block;
            background: var(--primary-color-home-prod-section-by-codexaman);
            /*color: var(--dark-color-home-prod-section-by-codexaman);*/
            color: #fff;
            padding: 8px 24px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
        }

        .section-main-title-home-prod-section-by-codexaman {
            font-size: 3rem;
            font-weight: 700;
            /*color: var(--dark-color-home-prod-section-by-codexaman);*/
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
        }

        .section-main-title-home-prod-section-by-codexaman::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color-home-prod-section-by-codexaman);
            border-radius: 2px;
        }

        .section-description-home-prod-section-by-codexaman {
            font-size: 1.2rem;
            color: #fff;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.8;
        }

        /* Product Card Styles */
        .product-card-wrapper-home-prod-section-by-codexaman {
            margin-bottom: 30px;
        }

        .product-card-home-prod-section-by-codexaman {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .product-card-home-prod-section-by-codexaman:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }

        /* Product Image Area */
        .product-image-container-home-prod-section-by-codexaman {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .product-img-home-prod-section-by-codexaman {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card-home-prod-section-by-codexaman:hover .product-img-home-prod-section-by-codexaman {
            transform: scale(1.05);
        }

        .product-badge-home-prod-section-by-codexaman {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--primary-color-home-prod-section-by-codexaman);
            color: var(--dark-color-home-prod-section-by-codexaman);
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Product Content */
        .product-body-home-prod-section-by-codexaman {
            padding: 25px 20px;
        }

        .product-name-home-prod-section-by-codexaman {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-color-home-prod-section-by-codexaman);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .product-info-home-prod-section-by-codexaman {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 18px;
            min-height: 65px;
        }

        /* Product Specs */
        .product-specs-home-prod-section-by-codexaman {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .spec-item-home-prod-section-by-codexaman {
            display: inline-flex;
            align-items: center;
            background: #f8f9fa;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.8rem;
            color: #555;
            border: 1px solid #e9ecef;
        }

        .spec-item-home-prod-section-by-codexaman i {
            color: var(--primary-color-home-prod-section-by-codexaman);
            margin-right: 6px;
            font-size: 1rem;
        }

        /* Action Button */
        .product-action-home-prod-section-by-codexaman {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 2px solid #f0f0f0;
        }

        .btn-explore-home-prod-section-by-codexaman {
            background: var(--primary-color-home-prod-section-by-codexaman);
            color: var(--dark-color-home-prod-section-by-codexaman);
            padding: 10px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }

        .btn-explore-home-prod-section-by-codexaman:hover {
            background: #e6b54d;
            color: var(--dark-color-home-prod-section-by-codexaman);
        }

        .btn-explore-home-prod-section-by-codexaman i {
            transition: none;
        }

        /* Animations */
        @keyframes float-home-prod-section-by-codexaman {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-50px) translateX(50px); }
        }

        @keyframes float-reverse-home-prod-section-by-codexaman {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(50px) translateX(-50px); }
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .section-main-title-home-prod-section-by-codexaman {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 991px) {
            .section-main-title-home-prod-section-by-codexaman {
                font-size: 2.5rem;
            }
            
            .product-image-container-home-prod-section-by-codexaman {
                height: 240px;
            }
        }

        @media (max-width: 767px) {
            .rice-section-home-prod-section-by-codexaman,
            .yarn-section-home-prod-section-by-codexaman {
                padding: 60px 0;
            }
            
            .section-main-title-home-prod-section-by-codexaman {
                font-size: 2rem;
            }
            
            .section-description-home-prod-section-by-codexaman {
                font-size: 1rem;
            }
            
            .product-body-home-prod-section-by-codexaman {
                padding: 25px;
            }
        }

        @media (max-width: 575px) {
            .product-image-container-home-prod-section-by-codexaman {
                height: 200px;
            }
            
            .section-main-title-home-prod-section-by-codexaman {
                font-size: 1.75rem;
            }
        }