/* ==========================================================================
   Zenrota web — home showcase: Featured Tours + Transfer
   --------------------------------------------------------------------------
   zr tasarım dili (tokens .zr-sec üzerinde: --zr-red/--zr-ink/--zr-muted/
   --zr-line/--zr-soft). Kart iskeleti .zr-blog/.zr-bc ile aynı dili konuşur;
   ortak .zr-bd/.zr-bt/.zr-ph home_redesign.css'te tanımlı, burada yalnızca
   showcase'e özgü ekler var.
   ========================================================================== */

/* --- Featured Tours ------------------------------------------------------ */
.zr-tour {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.zr-tc {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--zr-line);
    border-radius: 16px;
    background: #fff;
    color: var(--zr-ink);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.zr-tc:hover {
    border-color: #e0c6c3;
    box-shadow: 0 10px 26px rgba(20, 20, 30, 0.07);
    transform: translateY(-2px);
    color: var(--zr-ink);
    text-decoration: none;
}
/* foto — tour.thumbnail yoksa .zr-ph boş kalır, soft gri zemin yer tutucudur */
.zr-tc .zr-ph {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--zr-soft);
}
.zr-tc .zr-ph img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.zr-tc:hover .zr-ph img {
    transform: scale(1.05);
}
.zr-tc:hover .zr-bt {
    color: var(--zr-red);
}
/* meta satırı — kart yüksekliği eşitlenirken gövdenin en altında durur */
.zr-tmeta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}
.zr-tnights {
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--zr-muted);
}
.zr-tprice {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-left: auto;
    white-space: nowrap;
}
.zr-tprice-from {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--zr-muted);
}
.zr-tprice-amount {
    font-size: 15px;
    font-weight: 800;
    color: var(--zr-red);
}

/* --- Transfer: vehicle types --------------------------------------------- */
.zr-veh {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.zr-vc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--zr-line);
    border-radius: 16px;
    background: #fff;
    transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.zr-vc:hover {
    border-color: #e0c6c3;
    box-shadow: 0 10px 26px rgba(20, 20, 30, 0.07);
    transform: translateY(-2px);
}
.zr-vic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--zr-soft);
    color: var(--zr-red);
}
.zr-vic svg {
    width: 24px;
    height: 24px;
}
.zr-vname {
    font-size: 14px;
    font-weight: 800;
    color: var(--zr-ink);
}
.zr-vmeta {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--zr-muted);
}

/* --- Transfer: popular routes -------------------------------------------- */
.zr-route-head {
    margin: 26px 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--zr-ink);
}
.zr-routes {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
@media (max-width: 1200px) {
    .zr-routes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.zr-rc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    padding: 14px 15px;
    border: 1px solid var(--zr-line);
    border-radius: 16px;
    background: #fff;
    color: var(--zr-ink);
    text-decoration: none;
    transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.zr-rc:hover {
    border-color: #e0c6c3;
    box-shadow: 0 10px 26px rgba(20, 20, 30, 0.07);
    transform: translateY(-2px);
    color: var(--zr-ink);
    text-decoration: none;
}
.zr-rtxt {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.zr-rt {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--zr-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zr-rc:hover .zr-rt {
    color: var(--zr-red);
}
.zr-rsub {
    font-size: 11px;
    font-weight: 700;
    color: var(--zr-muted);
}
.zr-rprice {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    white-space: nowrap;
}
.zr-rprice-from {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--zr-muted);
}
.zr-rprice-amount {
    font-size: 15px;
    font-weight: 800;
    color: var(--zr-red);
}
.zr-rview {
    font-size: 12px;
    font-weight: 800;
    color: var(--zr-red);
    white-space: nowrap;
}

/* --- responsive ---------------------------------------------------------- */
@media (max-width: 991px) {
    .zr-tour,
    .zr-veh,
    .zr-routes {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .zr-tour,
    .zr-routes {
        grid-template-columns: 1fr;
    }
    .zr-veh {
        grid-template-columns: repeat(2, 1fr);
    }
}
