section.products {
            padding: 0px 0;
            background-color: #fff;
        }
        
        /* Title styling */
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 28px;
            color: #2d5044;
            font-weight: 800;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
            text-transform: capitalize;
            position: relative;
            display: inline-block;
        }
        
        .title-underline {
            height: 5px;
            width: 200px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            margin: 0 auto 15px;
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }
        
        .title-underline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .section-subtitle {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Products grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        /* Product card styling */
        .product-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            border: 1px solid #ddd;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover::before {
            transform: scaleX(1);
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* Staggered animation for cards */
        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }
        .product-card:nth-child(7) { animation-delay: 0.7s; }
        .product-card:nth-child(8) { animation-delay: 0.8s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .product-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #e74c3c;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            z-index: 1;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .product-badge.new {
            background-color: #2ecc71;
        }
        
        .product-badge.bestseller {
            background-color: #f39c12;
        }
        
        .product-badge.limited {
            background-color: #9b59b6;
        }
        
        .product-content {
            padding: 10px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .product-category {
            color: #3498db;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        
        .product-title {
            font-size: 13px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.4;
            text-transform: uppercase;
            text-align: center;
        }
        
        .product-description {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .current-price {
            font-size: 1.7rem;
            font-weight: 800;
            color: #2ecc71;
            margin-right: 12px;
        }
        
        .original-price {
            font-size: 1.1rem;
            color: #95a5a6;
            text-decoration: line-through;
        }
        
        .product-rating {
            margin-bottom: 20px;
            color: #f39c12;
            display: flex;
            align-items: center;
        }
        
        .rating-count {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-left: 8px;
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .add-to-cart {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-grow: 1;
            margin-right: 15px;
            letter-spacing: 0.5px;
        }
        
        .add-to-cart:hover {
            background: linear-gradient(to right, #2980b9, #1c5a7a);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .favorite-btn {
            background: none;
            border: 2px solid #eee;
            color: #e74c3c;
            font-size: 1.3rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .favorite-btn:hover {
            background-color: #e74c3c;
            color: white;
            border-color: #e74c3c;
            transform: scale(1.1);
        }
        
        /* Section footer */
        .section-footer {
            text-align: center;
            margin-top: 60px;
        }
        
        .view-all-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
        }
        
        .view-all-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
        }
        
        /* Responsive styles */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            section.products {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 768px) {
            .products-grid {
                gap: 25px;
            }
            
            .product-img {
                height: 220px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .title-underline {
                width: 150px;
            }
        }
        
        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .product-content {
                padding: 20px;
            }
            
            .product-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .add-to-cart {
                margin-right: 0;
                width: 100%;
            }
            
            .favorite-btn {
                align-self: flex-end;
            }
        }