/* Davilac Bulk - Estilos para tarjetas de descuentos por cantidad */

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */

.davilac-bulk-container {
    margin: 20px 0;
    padding: 0;
    font-family: -apple-system, 'Poppins', BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ========================================
   TÍTULO
   ======================================== */

.davilac-bulk-title {
    margin-bottom: 10px;
    text-align: center;
}

.davilac-bulk-title h3 {
    text-align: left !important;
    margin: 0;
    padding: 0;
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #005319;
    line-height: 1.2;
}

/* ========================================
   GRID DE TARJETAS
   ======================================== */

.davilac-bulk-grid {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
}

/* Configuraciones de columnas */
.davilac-bulk-cols-1 { grid-template-columns: 1fr; }
.davilac-bulk-cols-2 { grid-template-columns: repeat(2, 1fr); }
.davilac-bulk-cols-3 { grid-template-columns: repeat(3, 1fr); }
.davilac-bulk-cols-4 { grid-template-columns: repeat(4, 1fr); }
.davilac-bulk-cols-5 { grid-template-columns: repeat(5, 1fr); }

/* Responsive */
@media (max-width: 768px) {
    .davilac-bulk-cols-3,
    .davilac-bulk-cols-4,
    .davilac-bulk-cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .davilac-bulk-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ========================================
   TARJETAS BASE
   ======================================== */

.davilac-bulk-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.davilac-bulk-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #bcde01;
}

.davilac-bulk-card:active {
    transform: translateY(0);
}

/* ========================================
   HEADER DE LA TARJETA
   ======================================== */

.davilac-bulk-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #005319;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.quantity-badge {
    text-align: center;
    flex-grow: 1;
}

.quantity-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.quantity-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    transform: rotate(10deg);
}

.discount-percentage {
    display: block;
}

/* ========================================
   CUERPO DE LA TARJETA
   ======================================== */

.davilac-bulk-card-body {
    padding: 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-row {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.price-values {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Precios */
.old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
}

.new-price,
.current-price {
    color: #1f2937;
    font-size: 0.9rem !important;
    font-weight: 600;
}

.new-price {
    color: #059669;
}

/* ========================================
   FOOTER DE LA TARJETA
   ======================================== */

.davilac-bulk-card-footer {
    background: #f9fafb;
    padding: 12px 15px;
    border-top: 1px solid #e5e7eb;
}

.savings-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savings-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.savings-amount {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 700;
}

/* ========================================
   BOTÓN DE ACCIÓN
   ======================================== */

.davilac-bulk-card-action {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.davilac-bulk-card:hover .davilac-bulk-card-action {
    opacity: 1;
    pointer-events: all;
}

.bulk-select-btn {
    background: #005319;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bulk-select-btn:hover {
    background: #005319;
    transform: scale(1.05);
}

.bulk-select-btn:active {
    transform: scale(0.95);
}

/* ========================================
   TARJETA SELECCIONADA
   ======================================== */

.davilac-bulk-card.selected {
    border-color: #059669;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.davilac-bulk-card.selected .davilac-bulk-card-header {
    color: #fff;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* ========================================
   ESTILOS ALTERNATIVOS
   ======================================== */

/* Estilo Clásico - Más compacto */
.davilac-bulk-style-classic .davilac-bulk-card {
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    min-height: 125px;
}

.davilac-bulk-style-classic .davilac-bulk-card-header {
    background: #bcdf00;
    border-radius: 4px 4px 0 0;
    padding: 5px;
}

.davilac-bulk-style-classic .quantity-number {
    font-size: 1.3rem;
}

.davilac-bulk-style-classic .quantity-label {
    font-size: 11px;
}

.davilac-bulk-style-classic .davilac-bulk-card-body {
    padding: 5px;
}

.davilac-bulk-style-classic .price-row {
    margin-bottom: 0;
}

.davilac-bulk-style-classic .davilac-bulk-card-footer {
    padding: 5px;
}

.davilac-bulk-style-classic .discount-badge {
    border-radius: 4px;
    transform: none;
    position: static;
    padding: 4px 8px;
    font-size: 10px;
}

/* Estilo Minimal */
.davilac-bulk-style-minimal .davilac-bulk-card {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: none;
}

.davilac-bulk-style-minimal .davilac-bulk-card-header {
    background: #f3f4f6;
    color: #374151;
}

.davilac-bulk-style-minimal .quantity-number {
    color: #1f2937;
}

.davilac-bulk-style-minimal .discount-badge {
    background: #f59e0b;
    color: #92400e;
}

/* ========================================
   EFECTOS DE CARGA
   ======================================== */

.davilac-bulk-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

.davilac-bulk-card.processing {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ========================================
   UTILIDADES
   ======================================== */

.davilac-bulk-container .wc-price-amount {
    font-weight: inherit;
}

.davilac-bulk-container .woocommerce-Price-amount {
    font-weight: inherit;
}

/* Ocultar elementos durante la carga */
.davilac-bulk-container.hidden {
    display: none;
}

/* ========================================
   MEJORAS DE ACCESIBILIDAD
   ======================================== */

.davilac-bulk-card:focus {
    outline: 2px solid #005319;
    outline-offset: 2px;
}

.bulk-select-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* ========================================
   MEJORAS PARA PANTALLAS TÁCTILES
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    .davilac-bulk-card:hover {
        transform: none;
    }
    
    .davilac-bulk-card-action {
        opacity: 1;
        pointer-events: all;
    }
    
    .bulk-select-btn:hover {
        transform: none;
    }
}