/**
 * Boyraz Daire Tipleri Widget — Yapısal CSS
 * Design (renk, tipografi, spacing) Elementor kontrolleri üzerinden yönetilir.
 */

/* ── Grid ─────────────────────────────────────────────────────── */
.boyraz-dt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

/* ── Kart ─────────────────────────────────────────────────────── */
.boyraz-dt-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ── Görsel Sarmalayıcı ───────────────────────────────────────── */
.boyraz-dt-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background-color: #f5f5f5;
    flex-shrink: 0;
}

.boyraz-dt-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.boyraz-dt-card:hover .boyraz-dt-img-wrap img {
    transform: scale(1.04);
}

/* Görsel yoksa placeholder */
.boyraz-dt-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #bbb;
}

/* ── Etiket ───────────────────────────────────────────────────── */
.boyraz-dt-label {
    font-weight: 600;
    line-height: 1.2;
    /* Varsayılan değerler — Elementor kontrolleri override eder */
    color: #fff;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Görsel üstü — Sol Üst */
.boyraz-dt-label--tl {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    margin: 10px;
}

/* Görsel üstü — Sol Alt */
.boyraz-dt-label--bl {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin: 10px;
    border-radius: 4px;
}

/* Görselin altında */
.boyraz-dt-label--below {
    display: block;
    text-align: center;
    margin: 10px 0 0;
    /* overlay stilleri geçersiz kılınır */
    position: static;
}

/* ── Daha Fazla Göster ────────────────────────────────────────── */

/* Başlangıçta gizlenecek kartlar */
.boyraz-dt-card--hidden {
    display: none;
}
/* Expanded durumda göster */
.boyraz-dt-expanded .boyraz-dt-card--hidden {
    display: flex;
}

/* Buton sarmalayıcı */
.boyraz-dt-show-more-wrap {
    text-align: center;
    margin-top: 24px;
}

/* Daha Fazla Göster butonu */
.boyraz-dt-show-more-btn {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    color: inherit;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    letter-spacing: 0.02em;
}
.boyraz-dt-show-more-btn:hover {
    background: rgba(0, 0, 0, 0.07);
}

/* ── Render Sayısı Rozeti ─────────────────────────────────────── */
.boyraz-dt-render-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    padding: 2px 7px;
    border-radius: 10px;
    z-index: 2;
    pointer-events: none;
}

/* ── Elementor Editor placeholder ────────────────────────────── */
.boyraz-dt-editor-placeholder {
    padding: 24px;
    text-align: center;
    border: 2px dashed #ccc;
    color: #999;
    font-size: 13px;
    border-radius: 6px;
}
