.products {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 111, 15, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.products-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.products-header h2 {
    margin-bottom: var(--spacing-md);
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.products-subtitle {
    font-size: 1.25rem;
    color: var(--color-grey);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.product-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.decor-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, currentColor, transparent);
    animation: float1 20s ease-in-out infinite;
}

.decor-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, currentColor, transparent);
    animation: float2 15s ease-in-out infinite;
}

.product-card-orange {
    background: linear-gradient(135deg, rgba(255, 111, 15, 0.95) 0%, rgba(255, 133, 51, 0.95) 100%);
    color: var(--color-white);
}

.product-card-dark {
    background: linear-gradient(135deg, rgba(38, 37, 38, 0.95) 0%, rgba(51, 50, 51, 0.95) 100%);
    color: var(--color-white);
}

.product-card-light {
    background: linear-gradient(135deg, rgba(234, 234, 234, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-icon-badge {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.product-icon-badge svg {
    width: 32px;
    height: 32px;
}

.product-card-light .product-icon-badge {
    background: rgba(255, 111, 15, 0.1);
    border: 1px solid rgba(255, 111, 15, 0.2);
    color: var(--color-primary);
}

.product-card:hover .product-icon-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.product-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.7rem;
    margin-top: 2px;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
}

.product-card-light .feature-icon {
    background: rgba(255, 111, 15, 0.15);
    color: var(--color-primary);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.05rem;
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-xl);
    position: relative;
    width: fit-content;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.product-card-light .product-cta {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
}

.product-cta:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card-light .product-cta:hover {
    background: var(--color-primary-dark);
}

.cta-arrow {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.cta-arrow svg {
    width: 14px;
    height: 14px;
}

.product-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    z-index: 1;
}

.image-backdrop {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.product-image img {
    position: relative;
    max-height: 600px;
    min-width: 500px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-xl);
    z-index: 2;
}

.product-card:hover .product-image img {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(1.15);
    }
}

@media (max-width: 968px) {
    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-icon-badge {
        margin: 0 auto var(--spacing-md);
    }

    .product-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .product-cta {
        margin: 0 auto;
    }

    .product-image img {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: var(--spacing-lg);
    }

    .products-grid {
        gap: var(--spacing-xl);
    }

    .product-image img {
        max-height: 280px;
        min-width: auto;
    }

    .product-card-title {
        font-size: 1.5rem;
    }
}
