        /* Products Section */
        .products {
            padding: 6rem 5%;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .products::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto 4rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .products-titles {
            flex: 1;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            position: relative;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
        }

        .view-all-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: white;
            color: #ff6b00;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            border: 2px solid #ff6b00;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 107, 0, 0.15);
        }

        .view-all-button:hover {
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
        }

        .products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            position: relative;
        }

        .product-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .product-card:nth-child(1).visible {
            animation: slideInCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .product-card:nth-child(2).visible {
            animation: slideInCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
        }

        .product-card:nth-child(3).visible {
            animation: slideInCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        @keyframes slideInCard {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 70px rgba(255, 107, 0, 0.2);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .product-image-wrapper {
            position: relative;
            overflow: hidden;
        }

        .product-image {
            position: relative;
            padding: 3rem 2rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(255, 107, 0, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .product-card:hover .product-image::before {
            opacity: 1;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
        }

        .product-card:hover .product-image img {
            transform: scale(1.15) translateY(-10px);
        }

        .product-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b00, #ff9500);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-card:hover .product-line {
            width: 100%;
        }

        .product-learn-more {
            position: absolute;
            bottom: 15px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: #ff6b00;
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .product-card:hover .product-learn-more {
            opacity: 1;
            transform: translateX(0);
        }

        .product-learn-more:hover {
            gap: 0.6rem;
        }

        .product-info {
            padding: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .product-category {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(255, 107, 0, 0.1);
            color: #ff6b00;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-info h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1a1a1a;
            line-height: 1.3;
        }

        .product-info p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .price-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.8rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 149, 0, 0.05));
            border-radius: 15px;
            border: 2px solid rgba(255, 107, 0, 0.1);
        }

        .price-content {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .price-label {
            font-size: 0.85rem;
            color: #666;
            font-weight: 500;
        }

        .price-new {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .price-old {
            font-size: 1.1rem;
            color: #999;
            text-decoration: line-through;
        }

        .price-discount {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            color: white;
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
        }

        .product-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .product-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .product-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .product-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px rgba(255, 107, 0, 0.4);
        }

        .product-button span {
            position: relative;
            z-index: 1;
        }