.d-none {
    display: none !important;
}

.details-link {
    text-decoration: none;
    color: inherit;
}


/* ==========================================
   Room Card States: Oferta (Offer)
   ========================================== */

/* Oferta banner at bottom of room-thumb */
.room-thumb .oferta-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(208, 66, 120, 0.8); /* #D04278 with 80% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.room-thumb .oferta-banner span {
    color: var(--white);
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
}

/* Old price styling for oferta cards */
.room-price .old-price {
    font-size: 16px;
    font-weight: var(--font-medium);
    color: #606060;
    text-decoration: line-through;
    margin-right: 8px;
}


/* ==========================================
   Room Card States: Reservada (Reserved)
   ========================================== */

/* Reservada banner centered in room-thumb */
.room-thumb .reservada-banner {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 30px;
    background: rgba(102, 102, 239, 0.8); /* #6666EF with 80% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.room-thumb .reservada-banner span {
    color: var(--white);
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
}

  a {
    text-decoration: none;
}
