/* ── Galería multimedia ─────────────────────────────────────────────────── */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* ── Amenidades / servicios ─────────────────────────────────────────────── */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.amenity-item {
    font-size: 24px;
    color: #5a5a5a;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #999;
}

.amenity-item .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* ── Stock / disponibilidad ─────────────────────────────────────────────── */
.stock-badge {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.badge-label {
    background: #5c3a21;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 0.8em;
    text-transform: uppercase;
}

/* ── Mensajes de estado de disponibilidad ───────────────────────────────── */
#msg-status {
    font-size: 0.9em;
    border-radius: 4px;
    padding: 8px 12px;
}
