/* ===== List Layout Card — görsel örnekteki estetik ===== */

.list-layout-block {
    --ink: #0f172a;
    --muted: #6b7280;
    --bd: #e8eef5;
    --red: #dc3545;
    --red-d: #bf2e3b;
    --green: #27A974;
    --blue: #0d6efd;

    border: 1px solid var(--bd);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    background: #fff;
}

/* satır hizası */
.list-layout-block .row {
    align-items: center;
}

/* ---- SOL: Görsel + üst rozetler ---- */
.cardImage__caps {
    max-height: 220px;
}

.cardImage__caps .main-carousel,
.cardImage__caps .carousel-cell {
    height: 220px;
}

.cardImage__caps img.object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

/* Overlay badge (opsiyonel HTML ile) */
.cardImage__caps .lc-badge {
    position: absolute;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .16);
    z-index: 5;
    line-height: 1;
}

.cardImage__caps .lc-badge i {
    font-size: 1.05em;
}

.cardImage__caps .lc-badge--danger {
    top: 14px;
    background: var(--red);
}

.cardImage__caps .lc-badge--success {
    top: 58px;
    background: var(--green);
}

/* ---- ORTA: Başlık, alt satır, chip'ler ---- */
.listLayout_midCaps h4 {
    margin: 0 0 2px;
    color: var(--ink);
    font: 900 20px/1.25 system-ui;
}

.listLayout_midCaps .excortio {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    gap: 12px;
}

.listLayout_midCaps .excortio p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* “Hoteltipps”/indirim maddelerini chip gibi göster */
.listLayout_midCaps .detail {
    margin-top: 10px;
}

.listLayout_midCaps .detail .ellipsis {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #eef5ff;
    border: 1px solid #deecff;
    color: #0b3b66;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    border-radius: 999px;
    margin: 4px 6px 0 0;
}

.list-layout-block ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}


.text-md.text-muted-2 {
    font-size: 13px;
    color: #94a3b8;
}

.list-layout-block .square--40 {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .15);
}

.bg-seegreen-light {
    background-color: #27A974;
    border: 1px solid #86efac;
    border-radius: 25px;
}

.text-success-dark {
    color: #166534;
}

.list-layout-block .label.bg-seegreen,
.list-layout-block .discount-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    background: #27A974;
    color: #059669;
    border: 1px solid #a7f3d0;
}

/* eski fiyat & yeni fiyat */
.list-layout-block .text-muted-2.text-decoration-line-through {
    color: #94a3b8 !important;
    font-weight: 600;
}

.list-layout-block .fs-3,
.list-layout-block .price-now {
    font-size: 28px !important;
    font-weight: 900;
    color: var(--ink);
}

/* CTA butonu (kırmızı) – sadece bu kart içinde */
.list-layout-block .btn-primary {
    background: var(--red);
    border-color: var(--red-d);
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 20px;
}

.list-layout-block .btn-primary:hover {
    background: var(--red-d);
    border-color: var(--red-d);
}

/* küçük ayrıntılar */
.list-layout-block .label.bg-light-success.text-success {
    background: #d1fae5 !important;
    color: #059669 !important;
    border: 1px solid #a7f3d0;
    font-weight: 800;
    border-radius: 999px;
    padding: 6px 10px;
}

/* ----- Responsive ----- */
@media (max-width: 1199.98px) {
    .cardImage__caps {
        min-height: 200px;
    }

    .cardImage__caps .main-carousel,
    .cardImage__caps .carousel-cell {
        height: 200px;
    }
}

@media (max-width: 767.98px) {

    .list-layout-block .fs-3,
    .list-layout-block .price-now {
        font-size: 24px !important;
    }

    .list-layout-block .square--40 {
        width: 42px;
        height: 42px;
    }
}