.product-search-gateway {
    max-width: 42rem;
    margin: 0 auto 2rem;
    padding: 0 0.5rem;
}

.product-search-gateway__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.product-search-gateway__subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.dark .product-search-gateway__subtitle {
    color: #9ca3af;
}

.product-search-gateway__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .product-search-gateway__cards {
        grid-template-columns: 1fr 1fr;
    }
}

.product-search-gateway__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    min-height: 10rem;
}

.dark .product-search-gateway__card {
    background: #1f2937;
    border-color: #374151;
}

.product-search-gateway__card:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
    transform: translateY(-2px);
}

.product-search-gateway__card .material-icons {
    font-size: 2.75rem;
    color: #dc2626;
}

.product-search-gateway__card-label {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.product-search-gateway__card-hint {
    font-size: 0.8125rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

.dark .product-search-gateway__card-hint {
    color: #9ca3af;
}

#search-context-banner {
    margin-bottom: 1rem;
}
