/**
 * 03-components-kat.css
 * Kategori / ürün / seçenek kartları (kat-label → kat-kart → kat-img-wrap → kat-tik).
 */

.kat-label {
    display: block;
    width: 100%;
    margin: 0;
    cursor: pointer;
}

.kat-kart {
    background: #fff;
    border: 2px solid var(--km-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover — çerçeve açık mavi */
.kat-label:hover .kat-kart {
    border-color: var(--km-border-hover);
}

/* Seçili — ana mavi çerçeve + hafif gölge */
.kat-radio:checked + .kat-kart,
.kat-label.is-selected .kat-kart {
    border-color: var(--km-primary);
    box-shadow: 0 0 0 1px var(--km-primary);
}

/* Görsel alanı — kare oran */
.kat-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid var(--km-border);
    padding: 8px;
}

.kat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Sağ üst onay dairesi — seçilince görünür */
.kat-tik {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--km-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35);
}

.kat-radio:checked + .kat-kart .kat-tik,
.kat-label.is-selected .kat-tik {
    opacity: 1;
    transform: scale(1);
}

/* Kart alt başlık alanı — varsayılan gri zemin */
.kat-isim {
    background: #f8f9fa;
    padding: 10px 8px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    transition: background-color 0.2s ease;
}

/* Seçili kart alt alanı — açık mavi zemin */
.kat-radio:checked + .kat-kart .kat-isim,
.kat-label.is-selected .kat-isim {
    background: var(--km-primary-light);
}

.kat-isim span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--km-text);
    line-height: 1.25;
    display: block;
}

/* 4:3 görsel oranı (yazı yeri / şekil yeri) — sınıf: kat-img-wrap kat-img-wrap--43 */
.kat-img-wrap--43 {
    aspect-ratio: 4 / 3;
}

.kat-img-wrap--43 img {
    max-height: 120px;
}

@media (min-width: 768px) {
    .kat-img-wrap {
        padding: 12px;
    }

    .kat-isim {
        padding: 14px 10px;
    }

    .kat-isim span {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .kat-img-wrap {
        padding: 6px;
    }

    .kat-img-wrap--43 img {
        max-height: 90px;
    }

    .kat-isim span {
        font-size: 0.82rem;
    }
}
