/* ===== CARD BASE ===== */
.btt-transfer-card--compact {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.btt-transfer-card--compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* ===== IMAGE ===== */

.btt-transfer-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

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

.btt-card-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #8b1116, #a61b22);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    line-height: 1;
		box-shadow: 0 6px 20px rgba(0,0,0,0.35);
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.btt-card-tag.top-rated { background: rgba(245, 158, 11, 0.85); }   /* gold */
.btt-card-tag.most-booked { background: rgba(139, 17, 22, 0.85); } /* brand red */
.btt-card-tag.best-value { background: rgba(22, 163, 74, 0.85); }  /* green */
.btt-card-tag.recommended { background: rgba(37, 99, 235, 0.85); } /* blue */
.btt-card-tag.trending { background: rgba(124, 58, 237, 0.85); }   /* purple */

.btt-card-tag svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2.5;
}


/* ===== CONTENT ===== */
.btt-transfer-card__top {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px;
    gap: 12px;
}

.btt-transfer-card__content {
    flex: 1;
    padding: 4px;
}

/* ===== TITLE ===== */
.btt-transfer-card__title {
    margin: 0 0 10px;
}

.btt-transfer-card__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
}

.btt-transfer-card__title a:hover {
    color: #721121;
}

/* ===== META SECTION ===== */
.btt-transfer-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 24px 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

.btt-meta-item {
    flex: 1;
    display: flex;
    align-items: center;
		justify-content: center;
    gap: 8px;
    min-width: 0;
}

.btt-meta-item svg {
    width: 30px;
    height: 30px;
    color: #721121;
    stroke: #721121;
    background: #e48a991c;
    border-radius: 12px;
    padding: 6px;
    flex: 0 0 30px;
}

.btt-meta-item-value {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}

.btt-meta-item small {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    color: #6b7280;
    margin-top: 2px;
}

.btt-meta-item svg.rating-star {
    stroke: #f5d50b;
    fill: #f5d50b;
    background: #f5d50b33;
}

/* Divider */
.btt-transfer-card__trust-divider {
    width: 1px;
    height: 32px;
    background: #e5e7eb;
    flex: 0 0 1px;
}

/* ===== PRICE ===== */
.btt-transfer-card__price-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.btt-transfer-card__price-label {
    display: block;
    font-size: 14px;
}

.btt-transfer-card__price {
    font-size: 32px;
    font-weight: 600;
    color: #8b1116;
}

.btt-transfer-card__price-note {
    display: block;
    font-size: 14px;
    line-height: 1.4;
}

/* ===== TRUST ===== */
.btt-transfer-card__trust {
    margin-top: 14px;
    padding: 2px 8px;
		background: #f3faf6;
    border: 1px solid #d1fae5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.btt-transfer-card__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
}

.btt-transfer-card__trust-item svg {
    width: 20px;
    height: 20px;
    color: #721121;
    stroke: #721121;
}

/* ===== ACTION BUTTONS ===== */
.btt-transfer-card__actions {
    display: flex;
    gap: 16px;
    padding: 12px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.btt-transfer-card__btn {
    flex: 1;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.btt-transfer-card__btn--primary,
.btt-transfer-card__btn--primary:hover {
    background: #721121;
    color: #fff;
    border: 1px solid #721121;
}

.btt-transfer-card__btn--secondary,
.btt-transfer-card__btn--secondary:hover {
    background: #2f7d4a;
    color: #FFF;
    border: 1px solid #cfded4;
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    .tours .tour-card {
        min-width: 100%;
        max-width: 100%;
    }

    .btt-transfer-card__image img {
        height: 220px;
    }

    .btt-transfer-card__title a {
        font-size: 18px;
    }

    .btt-transfer-card__meta {
        padding: 10px;
        gap: 6px;
    }

    .btt-meta-item {
        gap: 6px;
    }

    .btt-meta-item svg {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        padding: 6px;
    }

    .btt-meta-item strong {
        font-size: 13px;
    }

    .btt-meta-item small {
        font-size: 10px;
    }

    .btt-transfer-card__btn {
        font-size: 14px;
    }
}