/* Burika Catalog — minimal, framework-free styles */

.burika-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.burika-product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.burika-product-card:hover,
.burika-product-card:focus-within {
    transform: translateY(-2px);
    border-color: #1F8FE8;
    background: rgba(31, 143, 232, 0.06);
}

.burika-product-card__link {
    display: block;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
}

.burika-product-card__image {
    margin: -1.25rem -1.25rem 1rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.burika-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.burika-product-card__title {
    font-size: 19px;
    font-weight: 500;
    margin: 0 0 0.25rem;
    line-height: 1.3;
    color: #fff;
}

.burika-product-card__model {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.5rem;
    font-family: ui-monospace, SFMono-Regular, monospace;
}

.burika-product-card__summary {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.burika-product-card__cta {
    font-size: 14px;
    font-weight: 500;
    color: #5BBEEC;
}

.burika-no-products {
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.burika-assessment-btn,
.burika-quote-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #1F8FE8;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.burika-assessment-btn:hover,
.burika-quote-btn:hover {
    background: #1A7EC8;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .burika-product-grid {
        grid-template-columns: 1fr;
    }
}
