/**
 * TT Tour Card Widget CSS — Compact Modern Design
 * BEM: .tt-ew-tour-card
 */

/* ─── KART GÖRSEL ─── */
.tt-ew-tour-card .tt-ew-card__image {
    height: 180px;
    aspect-ratio: unset;
}
.tt-ew-tour-card .tt-ew-card__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* ─── SÜRE BADGE (archive style — top-left, orange) ─── */
.tt-ew-card__badge-duration {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--tt-primary, #fd5c02);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/* ─── BOTTOM STRIP (archive style — type + campaign) ─── */
.tt-ew-card__img-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.tt-ew-card__img-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--tt-dark, #3e3837);
    line-height: 1.3;
    pointer-events: auto;
}
.tt-ew-card__img-tag--badge {
    background: var(--tt-primary, #fd5c02);
    color: #fff;
}
.tt-ew-card__img-discount {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 10px;
    background: #e74c3c;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    pointer-events: auto;
}
.tt-ew-card__img-discount i {
    font-size: 10px;
}

/* Legacy duration (keep for backwards compat) */
.tt-ew-tour-card__duration {
    display: none;
}

/* ─── İÇERİK ALANI ─── */
.tt-ew-tour-card .tt-ew-card__content {
    padding: 12px 14px 8px;
}

/* Üst satır: tip + ulaşım */
.tt-ew-tour-card .tt-ew-card__topline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

/* Tur tipi pill */
.tt-ew-tour-card__type {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--tt-primary, #fd5c02);
    background: rgba(253, 92, 2, 0.07);
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* Ulaşım etiketi */
.tt-ew-tour-card__transport {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #888;
}
.tt-ew-tour-card__transport i {
    font-size: 10px;
    color: #aaa;
}

/* Başlık — kompakt */
.tt-ew-tour-card .tt-ew-card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
}

/* Güzergah */
.tt-ew-tour-card .tt-ew-card__subtitle {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    line-height: 1.4;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tt-ew-tour-card .tt-ew-card__subtitle i {
    color: var(--tt-primary, #fd5c02);
    margin-right: 3px;
    font-size: 10px;
}

/* Meta bilgiler */
.tt-ew-tour-card .tt-ew-card__meta {
    gap: 10px;
    margin-bottom: 0;
    margin-top: auto;
}
.tt-ew-tour-card .tt-ew-card__meta span {
    font-size: 11px;
    color: #999;
}
.tt-ew-tour-card .tt-ew-card__meta span i {
    color: #bbb;
    margin-right: 2px;
    font-size: 10px;
}

/* ─── FOOTER ─── */
.tt-ew-tour-card .tt-ew-card__footer {
    border-top: 1px solid #f0eeee;
    padding: 10px 14px;
    gap: 8px;
}

/* Fiyat — kompakt */
.tt-ew-tour-card .tt-ew-card__price {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.tt-ew-tour-card .tt-ew-card__price-old {
    font-size: 11px;
    color: #bbb;
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 1px;
}
.tt-ew-tour-card .tt-ew-card__price-value {
    font-size: 18px;
    font-weight: 800;
}
.tt-ew-tour-card .tt-ew-card__price-unit {
    font-size: 11px;
    font-weight: 400;
    color: #999;
}

/* CTA buton — kompakt */
.tt-ew-tour-card .tt-ew-btn--sm {
    padding: 7px 14px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 7px;
}
.tt-ew-tour-card .tt-ew-btn--sm i {
    font-size: 10px;
}

/* ─── LİNK OVERLAY ─── */
.tt-ew-tour-card .tt-ew-card__link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.tt-ew-tour-card .tt-ew-card__image a,
.tt-ew-tour-card .tt-ew-card__title a,
.tt-ew-tour-card .tt-ew-card-badge,
.tt-ew-tour-card .tt-ew-btn {
    position: relative;
    z-index: 2;
}

/* ─── HOVER ─── */
.tt-ew-tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(62,56,55,0.13);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .tt-ew-tour-card .tt-ew-card__image { height: 160px; }
    .tt-ew-tour-card .tt-ew-card__content { padding: 10px 12px 6px; }
    .tt-ew-tour-card .tt-ew-card__footer { padding: 8px 12px; }
    .tt-ew-tour-card .tt-ew-card__title { font-size: 14px; }
    .tt-ew-tour-card .tt-ew-card__price-value { font-size: 16px; }
}
@media (max-width: 480px) {
    .tt-ew-tour-card .tt-ew-card__image { height: 150px; }
}
