.tc-b9-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid #EAEAEA;
    background-color: #FFFFFF;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    height: 100%;
}

.tc-b9-clickable {
    cursor: pointer;
}

.tc-b9-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #F7F5F2;
}

.tc-b9-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tc-b9-card:hover .tc-b9-image-container img {
    transform: scale(1.05);
}

/* Badges Floating inside Cover Image */
.tc-b9-left-badge {
    position: absolute;
    z-index: 2;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.tc-b9-right-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    line-height: 1.2;
    text-align: center;
}

.tc-b9-right-badge .badge-prefix {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
}

.tc-b9-right-badge .badge-price {
    font-size: 16px;
    font-weight: 800;
    display: block;
    margin: 2px 0;
}

.tc-b9-right-badge .badge-suffix {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
}

/* Content Area */
.tc-b9-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tc-b9-destination {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tc-b9-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.tc-b9-info {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
}

.tc-b9-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

/* Content Badges */
.tc-b9-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tc-b9-badge-item {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #DDDDDD;
    transition: all 0.3s ease;
}

.tc-b9-divider {
    border: 0;
    border-top: 1px solid #EEEEEE;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* CTA */
.tc-b9-cta-wrap {
    margin-top: auto;
}

.tc-b9-cta {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.tc-b9-cta span {
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Sold Out Overlay Styles */
.tc-b9-soldout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-b9-soldout-overlay h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
