/* ===== TOUR CARD COMPONENTS ===== */

.tour-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.btn-outline-card {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-card:hover {
    background: var(--primary-color);
    color: white !important;
}

.btn-reservar-card {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(230, 126, 34, 0.3);
}

.btn-reservar-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #d35400, #c0392b);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

@media (max-width: 500px) {
    .tour-card-actions {
        flex-direction: column;
    }
}
