/* ========================================
   OTHER PRODUCTS SECTION
======================================== */

.other-products {
    background: linear-gradient(180deg, var(--white-pure) 0%, var(--sky-cream) 100%);
    padding: var(--space-12) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.product-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-xl);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.product-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    background: var(--gradient-solar);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-glow);
}

.product-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.product-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    margin-bottom: var(--space-3);
    color: white;
}

.product-card>p {
    position: relative;
    z-index: 1;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    opacity: 0.95;
}

.product-features {
    position: relative;
    z-index: 1;
    list-style: none;
    margin-bottom: var(--space-6);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.product-features li svg {
    width: 18px;
    height: 18px;
    color: var(--sun-gold);
    flex-shrink: 0;
}

.product-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: white;
    color: var(--sun-deep);
    border-radius: var(--radius-lg);
    font-weight: var(--weight-semibold);
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    align-self: flex-start;
}

.product-btn:hover {
    background: var(--gradient-solar);
    color: white;
    transform: translateX(4px);
}

.product-btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-normal) var(--ease-out);
}

.product-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .product-card {
        min-height: 450px;
        padding: var(--space-8);
    }
}