/* ==================================================
   HISPASEEDS - SISTEMA DE TARJETAS PREMIUM (COMPACT)
   ================================================== */

/* 1. ESTILOS BASE (Productos y Categorías) */
.hs-listing-card,
.luxe-category-card,
.luxe-premium-pack,
.products .product {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(198, 168, 90, .14);
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015));
    box-shadow: var(--hs-shadow-soft);
}

.luxe-section {
    padding: clamp(30px, 5vw, 60px) 0; /* Reducido para ahorrar scroll */
}

.luxe-section-title {
    margin-bottom: 24px;
}

.luxe-section-title h2 {
    letter-spacing: -.03em;
}

/* 2. BLOQUE DE BENEFICIOS (DISEÑO COMPACTO LUXE) */
.luxe-benefits {
    background: #000000 !important; 
    padding: 40px 0 !important; /* Reducido de 80px a 40px para ahorrar scroll */
    position: relative;
    z-index: 10;
}

.luxe-benefits__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1400px !important;
    margin: 0 auto !important; 
    padding: 0 40px !important;
}

/* La Tarjeta Luxe */
.luxe-benefit {
    background: linear-gradient(145deg, #0f0f0f 0%, #050505 100%) !important;
    border: 1px solid rgba(198, 168, 90, 0.3) !important; 
    border-radius: 12px !important;
    padding: 30px 25px !important; /* Reducido para mayor compacidad */
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.luxe-benefit:hover {
    border-color: #c6a85a !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(198, 168, 90, 0.1) !important;
}

.luxe-benefit__title {
    color: #c6a85a !important;
    font-size: 1.05rem !important; /* Ligeramente más pequeño para el nuevo equilibrio */
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 12px !important;
}

.luxe-benefit__text {
    color: #f6f0e3 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    opacity: 0.8 !important;
}

/* 3. RESPONSIVE MÓVIL */
@media (max-width: 980px) {
    .luxe-benefits {
        padding: 30px 0 !important; /* Reducido para pantallas pequeñas */
    }
    
    .luxe-benefits__grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 20px !important;
    }
    
    .luxe-benefit {
        padding: 25px 20px !important;
    }
}