/* ========================================
   OPTION 2: Compact Vertical Card
   ======================================== */

.tour-card-v {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 450px; /* Fixed height - much shorter than current */
}

.tour-card-v:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.tour-card-v__media {
    position: relative;
    height: 180px; /* Smaller than current */
    overflow: hidden;
}

.tour-card-v__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card-v:hover .tour-card-v__media img {
    transform: scale(1.05);
}

/* Floating Badges */
.tour-card-v__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-card-v__badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-card-v__badge i {
    color: #1a5490;
    font-size: 12px;
}

/* Content Section */
.tour-card-v__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-v__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Max 2 lines */
    overflow: hidden;
}

.tour-card-v__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-card-v__title a:hover {
    color: #1a5490;
}

.tour-card-v__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Max 3 lines */
    overflow: hidden;
    min-height: 67px; /* 3 lines: 14px font × 1.6 line-height × 3 = ~67px */
}

/* Footer Section */
.tour-card-v__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto; /* Push to bottom */
}

.tour-card-v__price {
    display: flex;
    flex-direction: column;
}

.tour-card-v__price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    line-height: 1;
}

.tour-card-v__btn {
    padding: 10px 18px;
    background: #1a5490;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tour-card-v__btn:hover {
    background: #2c7abf;
}

.tour-card-v__btn i {
    font-size: 12px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .tour-card-v {
        height: auto;
        min-height: 420px;
    }

    .tour-card-v__media {
        height: 160px;
    }

    .tour-card-v__badges {
        flex-direction: column;
        align-items: flex-start;
    }
}
