.products-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center; 
}

.products-grid > .product-card {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-orange);
}

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

.product-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
}

.product-card.sale {
    border: 2px solid var(--yellow);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}

.premium-badge,
.sale-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge {
    background: var(--gradient-primary);
    color: white;
}

.sale-badge {
    background: linear-gradient(135deg, var(--yellow) 0%, #FBBF24 100%);
    color: white;
}

.product-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.product-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.product-price {
    text-align: center;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-from {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-right: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.product-card .btn {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 2rem 0;
    }

    .products-grid {
        gap: 1.25rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .product-header h3 {
        font-size: 1.125rem;
    }

    .product-subtitle {
        font-size: var(--font-size-xs);
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .product-features li {
        padding: 0.625rem 0;
        font-size: var(--font-size-xs);
    }

    .premium-badge,
    .sale-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.625rem;
    }
}

@media (max-width: 992px) {
    .products-section {
        padding: 4rem 0;
    }

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

@media (max-width: 768px) {
    .products-section {
        padding: 3rem 0;
    }

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

    .product-card {
        padding: 1.5rem;
    }

    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .product-header h3 {
        font-size: 1.125rem;
    }

    .product-subtitle {
        font-size: 0.8rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .product-features li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 2.5rem 0;
    }

    .product-card {
        padding: 1.25rem;
    }

    .premium-badge,
    .sale-badge {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
    }

    .product-header h3 {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .product-features {
        margin: 1rem 0;
    }
}

.products-cta {
    margin-top: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), #F7931E);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.show-more-btn i:first-child {
    font-size: 1.2rem;
}

.show-more-btn i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.show-more-btn:hover i:last-child {
    transform: translateX(5px);
}

.products-cta-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .products-cta {
        margin-top: 3rem;
    }

    .show-more-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .products-cta-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .products-cta {
        margin-top: 2rem;
    }

    .show-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}