/* ========================================
   PRODUCT SELECTOR PAGE
   ======================================== */

.products-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4rem 0 3.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23fff' fill-opacity='.08'/%3E%3C/svg%3E");
    pointer-events: none;
}

.products-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: .75rem;
    position: relative;
}

.products-hero p {
    font-size: 1.15rem;
    opacity: .92;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
}

.products-section {
    padding: 3.5rem 0 5rem;
    background: var(--bg-page);
    min-height: 50vh;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-select-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-select-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity .3s ease;
}

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

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

.product-select-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,107,.08) 0%, rgba(255,200,26,.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.product-select-card:hover .product-select-icon {
    transform: scale(1.1);
}

.product-select-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text-primary);
}

.product-select-card p {
    font-size: .92rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-steps-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .85rem;
    background: rgba(255,107,107,.08);
    color: var(--primary);
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-select-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 14px rgba(255,107,107,.25);
    border: none;
    cursor: pointer;
    font-family: inherit;
    margin-top: auto;
}

.product-select-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,.35);
    background: var(--primary-dark);
    color: #fff;
}

.product-select-cta i {
    transition: transform .2s ease;
}

.product-select-card:hover .product-select-cta i {
    transform: translateX(3px);
}

.products-back {
    text-align: center;
    margin-top: 2rem;
}

.products-back a {
    color: var(--text-muted);
    font-size: .9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: color var(--duration) var(--ease);
}

.products-back a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 700px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .products-hero h1 {
        font-size: 2rem;
    }
    .products-hero p {
        font-size: 1rem;
    }
    .product-select-card {
        padding: 2rem 1.5rem 1.5rem;
    }
    .product-select-icon {
        width: 96px;
        height: 96px;
        font-size: 2.4rem;
    }
}
