@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    --vino: #fb0100;
    --vino-dark: #d00100;
    --vino-light: #ff3333;
    --negro: #000;
    --gris-claro: #f8f9fa;
}

/* ============================================
   RESET Y CONFIGURACIÓN BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-top: 170px;
}

/* ============================================
   HEADER ROJO (FIXED - ESTÁTICO)
   ============================================ */
.main-header {
    background: linear-gradient(135deg, #fb0100 0%, #d00100 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-overlay {
    padding: 15px 0;
}

.main-logo {
    max-height: 80px;
    width: auto;
}

.logo-text {
    line-height: 1.1;
}

.logo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    letter-spacing: 3px;
    margin: 0;
    text-transform: lowercase;
}

.header-social {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #333;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.social-icon.whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.facebook:hover {
    background: #0c5dbf;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.6);
}

.social-icon.tiktok {
    background: #000;
    color: white;
}

.social-icon.tiktok:hover {
    background: #ff0050;
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.6);
}

/* ICONO DE GOOGLE - HEADER Y FOOTER */
.social-icon.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}

.social-icon.google:hover {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 25%, #34a853 50%, #4285f4 100%);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.6);
}

/* Footer Google icon */
.footer-social a.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}

.footer-social a.google:hover {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 25%, #34a853 50%, #4285f4 100%);
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.7);
}

.btn-login {
    background: white;
    color: var(--vino);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-login:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* ============================================
   BARRA DE BÚSQUEDA NEGRA (FIXED - ESTÁTICA)
   ============================================ */
.search-section {
    background: #2a2a2a;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-bar {
    flex: 1;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    background: transparent;
    outline: none;
}

.search-bar::placeholder {
    color: #999;
}

.btn-search {
    background: var(--vino);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--vino-dark);
    transform: scale(1.05);
}

.breadcrumb-section {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    color: #6c757d;
}

.breadcrumb-item.active {
    color: var(--vino);
    font-weight: 600;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--vino);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-size: 18px;
}

/* ============================================
   CARDS DE PRODUCTOS
   ============================================ */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 1, 0, 0.15);
    border-color: var(--vino);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-img.out-of-stock {
    filter: grayscale(100%) opacity(0.5);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
    z-index: 15;
    text-align: center;
    animation: pulseDiscount 2s infinite;
    font-weight: 900;
}

.discount-percent {
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.discount-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* ============================================
   INDICADOR DE DROGUERÍA (PUNTO COLOREADO)
   ============================================ */
.drogueria-indicator {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    animation: pulse 2s infinite ease-in-out;
}

.drogueria-1 {
    background: #ffeb3b;
    border: 2px solid #fdd835;
    box-shadow: 0 0 8px rgba(255, 235, 59, 0.6);
}

.drogueria-2 {
    background: #03a9f4;
    border: 2px solid #0288d1;
    box-shadow: 0 0 8px rgba(3, 169, 244, 0.6);
}

.drogueria-3 {
    background: #ff5722;
    border: 2px solid #e64a19;
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
}

.drogueria-4 {
    background: #4caf50;
    border: 2px solid #388e3c;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.drogueria-5 {
    background: #9c27b0;
    border: 2px solid #7b1fa2;
    box-shadow: 0 0 8px rgba(156, 39, 176, 0.6);
}

.drogueria-6 {
    background: #ff9800;
    border: 2px solid #f57c00;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.6);
}

.drogueria-7 {
    background: #795548;
    border: 2px solid #5d4037;
    box-shadow: 0 0 8px rgba(121, 85, 72, 0.6);
}

.drogueria-8 {
    background: #607d8b;
    border: 2px solid #455a64;
    box-shadow: 0 0 8px rgba(96, 125, 139, 0.6);
}

.drogueria-default,
.drogueria-0 {
    background: #9e9e9e;
    border: 2px solid #757575;
    box-shadow: 0 0 8px rgba(158, 158, 158, 0.6);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseDiscount {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 0, 0.7);
    }
}

.stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.badge-disponible {
    background: #28a745;
    color: white;
}

.badge-low {
    background: #ffc107;
    color: #1a1a1a;
    animation: pulseWarning 2s infinite;
}

.badge-agotado {
    background: #dc3545;
    color: white;
}

@keyframes pulseWarning {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
    }
}

.product-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(to bottom, white 0%, #fff5f5 100%);
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ============================================
   PRINCIPIO ACTIVO Y NOMBRE GENÉRICO
   ============================================ */
.product-generico-section {
    text-align: center;
    margin-bottom: 8px;
    min-height: 40px;
}

.product-generico-label {
    font-size: 9px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    display: block;
}

.product-principio-activo {
    font-size: 11px;
    font-weight: 700;
    color: var(--vino);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.product-nombre-generico {
    font-size: 10px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #cfb000;
    font-size: 14px;
    text-shadow: 0 0 3px rgb(253, 227, 0), 0 1px 2px rgba(0,0,0,0.2);
    filter: brightness(1.2);
}

.stars i.bi-star {
    color: #ddd;
    text-shadow: none;
    filter: none;
}

.rating-number {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.presentation-container {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    justify-content: center;
}

.presentation-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.pres-chip {
    background: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.pres-chip:hover {
    background: #fff5f5;
    border-color: var(--vino);
}

.pres-chip.active {
    background: var(--vino);
    color: white;
    border-color: var(--vino);
    box-shadow: 0 3px 8px rgba(251, 1, 0, 0.3);
}

.product-footer {
    padding: 0 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.precio-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--vino);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.precio-tag .currency {
    font-size: 18px;
}

.precio-tag .decimal {
    font-size: 16px;
    color: #999;
}

.btn-vino {
    background: var(--vino);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(220, 53, 69, 0.4);
}

.btn-vino:hover {
    background: var(--vino-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(251, 1, 0, 0.5);
}

.btn-vino:active {
    transform: translateY(0);
}

.btn-vino.btn-disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-vino.btn-disabled:hover {
    transform: none;
}

.modal-header {
    background: linear-gradient(135deg, #fb0100 0%, #d00100 100%);
    color: white;
    border: none;
}

.modal-title {
    font-weight: 700;
}

.disclaimer-text {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #856404;
    line-height: 1.6;
}

.disclaimer-text i {
    color: #ffc107;
    margin-right: 8px;
    font-size: 18px;
}

.disclaimer-text-important {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
    animation: pulse-disclaimer 3s ease-in-out infinite;
}

@keyframes pulse-disclaimer {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
    }
    50% {
        transform: scale(1.01);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    }
}

.disclaimer-icon {
    font-size: 28px;
    color: #ff9800;
    animation: pulse-icon 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

.disclaimer-content {
    flex: 1;
    color: #090700;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.disclaimer-content strong {
    color: #dc3545;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 3px;
    animation: pulse-text 2.5s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.cart-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cart-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cart-item .btn-group {
    flex-shrink: 0;
}

.cart-item .btn-outline-danger {
    flex-shrink: 0;
}

.cart-summary {
    background: transparent;
    border-radius: 0;
    border: none;
}

/* ============================================
   MENSAJES DE DESCUENTO POR MONTO
   ============================================ */
.discount-promo-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: discountPulse 2s ease-in-out infinite;
}

.discount-promo-message i {
    font-size: 24px;
    color: #28a745;
    animation: giftBounce 1.5s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.discount-promo-message span {
    font-size: 13px;
    color: #155724;
    font-weight: 600;
}

.discount-promo-message strong {
    color: #0d5524;
}

@keyframes discountPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
    }
    50% {
        box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4);
    }
}

.discount-hint-message {
    background: linear-gradient(135deg, #e7f3ff 0%, #cce5ff 100%);
    border: 2px solid #007bff;
    border-radius: 12px;
    padding: 10px 14px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-hint-message i {
    font-size: 20px;
    color: #007bff;
}

.discount-hint-message span {
    font-size: 12px;
    color: #004085;
    font-weight: 500;
}

.discount-hint-message strong {
    color: #0056b3;
}

.registro-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.delivery-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.delivery-option {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.delivery-option:hover {
    border-color: var(--vino);
    box-shadow: 0 4px 12px rgba(251, 1, 0, 0.15);
}

.payment-option-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.payment-option-compact.selected {
    background: rgba(255, 255, 255, 0.08);
    border-width: 3px;
    transform: translateY(-1px);
}

/* ============================================
   DELIVERY & PAYMENT BUTTONS - SOLID SOFT COLORS
   ============================================ */

/* Base button styles */
.delivery-option-compact,
.payment-option-compact {
    border: none;
    border-radius: 12px;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.delivery-option-compact:hover,
.payment-option-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.delivery-option-compact input[type="radio"],
.payment-option-compact input[type="radio"] {
    display: none;
}

.delivery-option-compact label,
.payment-option-compact label {
    cursor: pointer;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.delivery-option-compact i,
.payment-option-compact i {
    font-size: 24px;
    margin-bottom: 2px;
    color: #333 !important;
}

.delivery-option-compact strong,
.payment-option-compact strong {
    font-size: 11px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    color: #333 !important;
}

.delivery-price-compact {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
    color: #333 !important;
}

/* Delivery Options - Solid Soft Colors with Dark Border */
.delivery-option-compact.delivery-pickup {
    background: #ffcdd2;
    border: 2px solid #e57373;
}
.delivery-option-compact.delivery-pickup:hover {
    background: #ef9a9a;
    border-color: #c62828;
}

.delivery-option-compact.delivery-home {
    background: #bbdefb;
    border: 2px solid #64b5f6;
}
.delivery-option-compact.delivery-home:hover {
    background: #90caf9;
    border-color: #1976d2;
}

.delivery-option-compact.delivery-vip {
    background: #fff9c4;
    border: 2px solid #fdd835;
}
.delivery-option-compact.delivery-vip:hover {
    background: #fff59d;
    border-color: #f9a825;
}

/* Payment Options - Solid Soft Colors with Dark Border */
.payment-option-compact.payment-efectivo {
    background: #c8e6c9;
    border: 2px solid #81c784;
}
.payment-option-compact.payment-efectivo:hover {
    background: #a5d6a7;
    border-color: #2e7d32;
}

.payment-option-compact.payment-banco {
    background: #bbdefb;
    border: 2px solid #64b5f6;
}
.payment-option-compact.payment-banco:hover {
    background: #90caf9;
    border-color: #1976d2;
}

.payment-option-compact.payment-qr {
    background: #b3e5fc;
    border: 2px solid #4fc3f7;
}
.payment-option-compact.payment-qr:hover {
    background: #81d4fa;
    border-color: #0288d1;
}

/* Selected state */
.delivery-option-compact.selected,
.payment-option-compact.selected {
    border-width: 3px;
    transform: translateY(-2px);
}

.payment-option-compact input[type="radio"] {
    display: none;
}

.payment-option-compact label {
    cursor: pointer;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.payment-option-compact i {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.payment-option-compact:hover i {
    transform: scale(1.08);
}

.payment-option-compact strong {
    font-size: 11px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    color: #333 !important;
}

/* ============================================
   INFORMACIÓN DE PAGO - DISEÑO MEJORADO
   ============================================ */
.payment-info-container {
    margin-top: 20px;
    display: none;
    animation: slideDown 0.4s ease;
}

.payment-info-container.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid #dee2e6;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.8);
}

.payment-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #dee2e6;
}

.payment-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.payment-info-title {
    flex: 1;
}

.payment-info-title h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #212529;
}

.payment-info-title p {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
}

.payment-info-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.payment-data-item:hover {
    border-color: #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.payment-data-label {
    font-size: 13px;
    font-weight: 700;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-data-label i {
    font-size: 16px;
    color: #6c757d;
}

.payment-data-value {
    font-size: 15px;
    font-weight: 800;
    color: #212529;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    padding: 6px 14px;
    border-radius: 8px;
    border: 2px solid #dee2e6;
}

/* Colores específicos para cada método de pago */
.payment-info-box.efectivo {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.payment-info-box.efectivo .payment-info-icon {
    background: linear-gradient(135deg, #16a765 0%, #0f6b4a 100%);
}

.payment-info-box.nequi {
    background: linear-gradient(135deg, #e2d5f1 0%, #d3c0e8 100%);
    border-color: #7b2cbf;
}

.payment-info-box.nequi .payment-info-icon {
    background: linear-gradient(135deg, #7b2cbf 0%, #5a1e94 100%);
}

.payment-info-box.daviplata {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #dc3545;
}

.payment-info-box.daviplata .payment-info-icon {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
}

.payment-info-box.banco {
    background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
    border-color: #0066cc;
}

.payment-info-box.banco .payment-info-icon {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
}

/* ============================================
   MENSAJE DE ADVERTENCIA DE PAGO
   ============================================ */
.payment-notice-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-notice-box .payment-notice-icon {
    color: #ffc107;
    font-size: 24px;
    flex-shrink: 0;
}

.payment-notice-box .payment-notice-content {
    font-size: 13px;
    color: #664d03;
    line-height: 1.4;
}

.payment-notice-box .payment-notice-content strong {
    color: #664d03;
}

.cart-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.cart-btn,
.whatsapp-support-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn {
    background: linear-gradient(135deg, #fb0100 0%, #d00100 100%);
    color: white;
}

.cart-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(251, 1, 0, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffc107;
    color: #1a1a1a;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.whatsapp-support-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    animation: whatsappGlow 2s ease-in-out infinite;
}

.whatsapp-support-btn i {
    font-size: 28px;
    z-index: 2;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #128C7E;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-support-btn:hover .whatsapp-tooltip,
.whatsapp-support-btn:active .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-support-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6b54 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-redes {
    background: linear-gradient(135deg, #1a1d23 0%, #0d0f13 100%);
    color: #9aa3b2;
    margin-top: 80px;
}

.footer-logo {
    max-width: 120px;
}

.footer-brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
}

.footer-brand-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

.footer-text {
    color: #9aa3b2;
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.footer-social a.whatsapp {
    background: #25D366;
    color: white;
}

.footer-social a.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

.footer-social a.facebook {
    background: #1877F2;
    color: white;
}

.footer-social a.facebook:hover {
    background: #0c5dbf;
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.7);
}

.footer-social a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.footer-social a.instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.7);
}

.footer-social a.tiktok {
    background: #000;
    color: white;
}

.footer-social a.tiktok:hover {
    background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 35px rgba(255, 0, 80, 0.7);
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--vino);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #9aa3b2;
}

.footer-list i {
    color: var(--vino);
    font-size: 16px;
    margin-top: 2px;
}

.footer-list a {
    color: var(--vino);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--vino-light);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-icon {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 85px;
    justify-content: center;
}

.payment-icon:hover {
    transform: translateY(-2px);
    border-color: #3a3a3a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.payment-icon i {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.payment-icon:hover i {
    transform: scale(1.1);
}

.payment-icon span {
    font-size: 12px;
    color: #b0b0b0;
    font-weight: 600;
}

/* Colores específicos por tipo de pago */
.payment-icon:nth-child(1) i {
    /* Nequi - Morado */
    color: #a020f0 !important;
}

.payment-icon:nth-child(1):hover,
.payment-icon:nth-child(1):focus {
    border-color: #a020f0;
}

.payment-icon:nth-child(2) i {
    /* Daviplata - Rojo */
    color: #ee1c25 !important;
}

.payment-icon:nth-child(2):hover,
.payment-icon:nth-child(2):focus {
    border-color: #ee1c25;
}

.payment-icon:nth-child(3) i {
    /* Banco - Azul */
    color: #0066cc !important;
}

.payment-icon:nth-child(3):hover,
.payment-icon:nth-child(3):focus {
    border-color: #0066cc;
}

.payment-icon:nth-child(4) i {
    /* Efectivo - Verde */
    color: #00c853 !important;
}

.payment-icon:nth-child(4):hover,
.payment-icon:nth-child(4):focus {
    border-color: #00c853;
}

/* ============================================
   INVIMA - ROSA BRILLANTE
   ============================================ */
.footer-badge {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-badge:hover {
    transform: translateY(-2px);
    border-color: #ff1493;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.footer-badge i {
    font-size: 32px;
    color: #ff1493 !important;
    transition: transform 0.3s ease;
}

.footer-badge:hover i {
    transform: scale(1.1);
}

.footer-badge strong,
.footer-badge small {
    color: #b0b0b0;
}

/* ============================================
   PAGINACIÓN
   ============================================ */
.pagination {
    gap: 8px;
}

.pagination .page-link {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    color: var(--vino);
    font-weight: 600;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--vino);
    color: white;
    border-color: var(--vino);
}

.pagination .page-item.active .page-link {
    background: var(--vino);
    border-color: var(--vino);
    color: white;
}

.store-pagination-wrap {
    margin: 38px auto 20px;
    padding: 0 12px;
}

.store-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.store-pagination__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid #dfe3e8;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    box-shadow: none;
}

.store-pagination__icon {
    display: none;
}

.store-pagination__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-pagination__summary strong {
    color: #0f172a;
    font-weight: 800;
}

.store-pagination__eyebrow {
    display: block;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.store-pagination__list {
    gap: 4px;
    margin: 0;
    padding: 4px;
    border: 1px solid #dfe3e8;
    border-radius: 6px;
    background: #fff;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: none;
}

.store-pagination__list .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #dfe3e8;
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.store-pagination__list .page-link:hover,
.store-pagination__list .page-link:focus {
    background: #f8fafc;
    border-color: #b8c0cc;
    color: #111827;
    box-shadow: none;
}

.store-pagination__list .page-link:focus {
    outline: none;
}

.store-pagination__list .page-item.active .page-link {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
    box-shadow: none;
}

.store-pagination__list .page-item.disabled .page-link {
    background: #f6f8fa;
    border-color: #dfe3e8;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

.store-pagination__dots {
    min-width: 44px;
}

.store-pagination-wrap .sr-pagination-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.store-pagination-wrap .sr-pagination-info {
    display: inline-block;
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid #dfe3e8;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: none;
}

.store-pagination-wrap .sr-pagination-info strong {
    color: #0f172a;
    font-weight: 800;
}

.store-pagination-wrap .sr-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
    margin: 0;
    padding: 4px;
    border: 1px solid #dfe3e8;
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.store-pagination-wrap .sr-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid #dfe3e8;
    border-radius: 5px;
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.store-pagination-wrap .sr-pagination .page-link:hover,
.store-pagination-wrap .sr-pagination .page-link:focus {
    background: #f8fafc;
    border-color: #b8c0cc;
    color: #111827;
    box-shadow: none;
    outline: none;
}

.store-pagination-wrap .sr-pagination .page-item.active .page-link {
    background: var(--vino);
    border-color: var(--vino);
    color: #fff;
    box-shadow: none;
}

.store-pagination-wrap .sr-pagination .page-item.disabled .page-link {
    background: #f6f8fa;
    border-color: #dfe3e8;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

@media (max-width: 575px) {
    .store-pagination-wrap {
        margin-top: 30px;
        padding: 0 10px;
    }

    .store-pagination {
        gap: 12px;
        justify-content: center;
    }

    .store-pagination__summary {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 12px;
    }

    .store-pagination__icon {
        display: none;
    }

    .store-pagination__list {
        gap: 6px;
    }

    .store-pagination__list .page-link {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 9px;
    }

    .store-pagination-wrap .sr-pagination-bar,
    .store-pagination-wrap .sr-pagination {
        justify-content: center;
    }

    .store-pagination-wrap .sr-pagination-info {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 991px) {
    body {
        padding-top: 150px;
    }

    .main-logo {
        max-height: 60px;
    }

    .logo-title {
        font-size: 22px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .product-image-container {
        height: 200px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .search-section {
        top: 90px;
    }

    .delivery-option-compact i,
    .payment-option-compact i {
        font-size: 28px;
    }

    .delivery-option-compact strong,
    .payment-option-compact strong {
        font-size: 13px;
    }

    .delivery-price-compact {
        font-size: 14px;
    }
}

/* PC Desktop - Buttons centered with max-width */
@media (min-width: 992px) {
    body {
        padding-top: 150px;
    }
    
    #cartModal .delivery-section-compact .row,
    #cartModal .payment-section-compact .row {
        max-width: 100%;
        margin: 0 auto;
    }
    
    #cartModal .delivery-option-compact,
    #cartModal .payment-option-compact {
        min-height: 60px;
        padding: 8px 6px;
    }
    
    #cartModal .delivery-option-compact i,
    #cartModal .payment-option-compact i {
        font-size: 22px;
    }
    
    #cartModal .delivery-option-compact strong,
    #cartModal .payment-option-compact strong {
        font-size: 12px;
    }
    
    #cartModal .delivery-price-compact {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    body {
        padding-top: 130px;
    }

    .header-overlay {
        padding: 10px 0;
    }

    .main-logo {
        max-height: 50px;
    }

    .cart-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .cart-item h6 {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .cart-item small {
        font-size: 10px;
        display: block;
    }
    
    .cart-item .text-success {
        font-size: 12px;
        margin-top: 2px;
    }
    
    .cart-item .btn-group-sm .btn {
        padding: 2px 8px;
        font-size: 12px;
    }
    
    .cart-item .btn-outline-danger {
        padding: 4px 8px;
        font-size: 12px;
    }

    /* Cart Modal - Mobile: Delivery & Payment Buttons with Same PC Colors */
    #cartModal .delivery-option-compact,
    #cartModal .payment-option-compact {
        padding: 10px 6px;
        min-height: 60px;
    }
    
    #cartModal .delivery-option-compact.delivery-pickup {
        background: #ffcdd2;
        border: 2px solid #e57373;
    }
    
    #cartModal .delivery-option-compact.delivery-home {
        background: #bbdefb;
        border: 2px solid #64b5f6;
    }
    
    #cartModal .delivery-option-compact.delivery-vip {
        background: #fff9c4;
        border: 2px solid #fdd835;
    }
    
    /* Payment Options - Match PC Colors */
    #cartModal .payment-option-compact.payment-efectivo {
        background: #c8e6c9;
        border: 2px solid #81c784;
    }
    
    #cartModal .payment-option-compact.payment-banco {
        background: #bbdefb;
        border: 2px solid #64b5f6;
    }
    
    #cartModal .payment-option-compact.payment-qr {
        background: #b3e5fc;
        border: 2px solid #4fc3f7;
    }
    
    #cartModal .delivery-option-compact i,
    #cartModal .payment-option-compact i {
        font-size: 18px;
        color: #333 !important;
    }
    
    #cartModal .delivery-option-compact strong,
    #cartModal .payment-option-compact strong,
    #cartModal .delivery-price-compact {
        font-size: 9px;
        color: #333 !important;
    }
    
    #cartModal .delivery-option-compact input[type="radio"],
    #cartModal .payment-option-compact input[type="radio"] {
        display: none;
    }
    
    /* Cart Modal - Mobile: Payment Notice Box */
    #cartModal .payment-notice-box {
        background: #fff3cd;
        border: 2px solid #ffc107;
        border-radius: 10px;
        padding: 10px;
        margin: 10px 0;
    }
    
    #cartModal .payment-notice-box .payment-notice-icon {
        color: #ffc107;
        font-size: 20px;
    }
    
    #cartModal .payment-notice-box .payment-notice-content {
        font-size: 12px;
        color: #664d03;
    }

    /* Buy Modal - Mobile */
    #buyModal .modal-body {
        padding: 0;
    }
    
    #buyModal .row {
        display: flex;
        flex-direction: column;
        margin: 0;
    }
    
    #buyModal .col-lg-5 {
        order: 0;
        position: relative;
        z-index: 1;
        background: #fff;
        margin-bottom: 0;
        padding: 0 !important;
    }
    
    #buyModal .col-lg-5 > div {
        min-height: auto !important;
        padding: 5px !important;
    }
    
    #buyModal .col-lg-7 {
        order: 1;
        padding: 5px !important;
    }
    
    #buyModal .col-lg-7 > div {
        padding: 5px !important;
    }
    
    #buyModal .product-modal-image {
        max-height: 150px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #buyModal .product-modal-image img {
        max-height: 150px !important;
        max-width: 100%;
        width: auto !important;
        object-fit: contain;
    }
    
    #buyModal .product-modal-image i {
        font-size: 50px !important;
    }
    
    #buyModal #modalProductName {
        font-size: 14px !important;
        margin-bottom: 2px !important;
    }
    
    #buyModal #modalPresentation {
        font-size: 10px !important;
    }
    
    #buyModal .text-muted {
        font-size: 9px !important;
    }
    
    #buyModal .modal-detail-item {
        padding: 2px;
    }
    
    #buyModal .modal-detail-label {
        font-size: 9px;
    }
    
    #buyModal .modal-detail-value {
        font-size: 10px;
    }
    
    #buyModal #modalPrice {
        font-size: 52px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        display: inline-flex !important;
        align-items: baseline !important;
    }
    
    #buyModal #modalPrice span {
        font-size: 28px !important;
        vertical-align: baseline !important;
    }
    
    #buyModal .presentation-chip {
        font-size: 7px !important;
        padding: 2px 3px !important;
    }
    
    #buyModal .presentation-chip i {
        font-size: 8px !important;
    }
    
    #buyModal .btn-lg {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .cart-item .row {
        margin: 0;
    }
    
    .cart-item .col-8,
    .cart-item .col-4 {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .cart-item h6 {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .cart-item .text-danger,
    .cart-item .text-success {
        font-size: 11px;
    }
    
    .cart-item .text-danger,
    .cart-item .text-success {
        font-size: 11px;
    }
    
    .cart-item .text-muted {
        font-size: 11px;
    }
    
    .cart-item .btn-group-sm .btn {
        padding: 2px 8px;
        font-size: 12px;
    }
    
    .cart-item .btn-outline-danger {
        padding: 4px 8px;
    }

    .logo-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .header-social {
        gap: 6px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .search-section {
        padding: 10px 0;
        top: 70px;
    }

    .search-bar {
        padding: 8px 15px;
        font-size: 14px;
    }

    .btn-search {
        padding: 8px 20px;
        font-size: 13px;
    }

    .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .row.g-4 {
        --bs-gutter-x: 6px;
        --bs-gutter-y: 8px;
    }

    .product-card {
        border-radius: 10px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        border: 1px solid #eee;
    }

    .product-image-container {
        height: 130px;
        background: #fafafa;
    }

    .product-img {
        padding: 10px;
    }

    .discount-badge {
        padding: 4px 8px;
        top: 6px;
        left: 6px;
        border-radius: 8px;
    }

    .discount-percent {
        font-size: 12px;
    }

    .discount-label {
        font-size: 7px;
    }

    .stock-badge {
        top: 6px;
        right: 6px;
        padding: 4px 8px;
        font-size: 9px;
        border-radius: 20px;
    }

    .product-body {
        padding: 8px 10px;
    }

    .product-title {
        font-size: 11px;
        min-height: 44px;
        margin-bottom: 4px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-generico-label {
        font-size: 7px;
    }

    .product-principio-activo {
        font-size: 9px;
    }

    .product-nombre-generico {
        font-size: 8px;
    }

    .product-generico-section {
        min-height: 28px;
    }

    .product-rating {
        gap: 4px;
        margin-bottom: 4px;
    }

    .stars i {
        font-size: 10px;
    }

    .rating-number {
        font-size: 10px;
        color: #888;
    }

    .pres-chip {
        font-size: 9px;
        padding: 4px 6px;
        min-width: 38px;
        border-radius: 5px;
    }

    .presentation-chips {
        gap: 3px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-footer {
        padding: 6px 10px 10px 10px;
        background: #fff;
        border-top: 1px solid #f0f0f0;
    }

    .product-footer .precio-container-descuento,
    .product-footer .precio-tag {
        margin-bottom: 6px;
    }

    .precio-tag {
        font-size: 15px;
        font-weight: 700;
        color: #dc3545;
        margin-bottom: 0;
    }

    .precio-original-tachado {
        font-size: 11px;
        color: #999;
    }

    .btn-vino {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }

    .btn-vino i {
        font-size: 14px;
    }

    .cart-float {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .cart-btn,
    .whatsapp-support-btn {
        width: 56px;
        height: 56px;
    }

    .whatsapp-tooltip {
        right: auto;
        left: 50%;
        bottom: 70px;
        top: auto;
        transform: translateX(-50%) translateY(10px);
    }

    .whatsapp-tooltip::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(-50%) rotate(90deg);
    }

    .whatsapp-support-btn:hover .whatsapp-tooltip,
    .whatsapp-support-btn:active .whatsapp-tooltip {
        transform: translateX(-50%) translateY(0);
    }

    .cart-btn i {
        font-size: 26px;
    }

    .whatsapp-support-btn i {
        font-size: 24px;
    }

    .cart-count {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .footer-logo {
        max-width: 110px;
    }

    .footer-brand-title {
        font-size: 18px;
    }

    .footer-brand-subtitle {
        font-size: 9px;
    }

    .delivery-option {
        padding: 12px;
    }

    .delivery-option i {
        font-size: 24px;
    }

    .delivery-price {
        font-size: 16px;
    }

    .disclaimer-text-important {
        padding: 10px 12px;
        gap: 10px;
    }

    .disclaimer-icon {
        font-size: 24px;
    }

    .disclaimer-content {
        font-size: 12px;
    }

    .disclaimer-content strong {
        font-size: 13px;
    }

    .delivery-option-compact,
    .payment-option-compact {
        padding: 6px 4px;
        border-radius: 8px;
        min-height: 50px;
    }

    .delivery-option-compact i,
    .payment-option-compact i {
        font-size: 18px;
    }

    .delivery-option-compact strong,
    .payment-option-compact strong {
        font-size: 9px;
    }

    .delivery-price-compact {
        font-size: 10px;
    }

    .payment-notice-box {
        padding: 12px;
    }

    .payment-notice-icon {
        font-size: 24px;
    }

    .payment-notice-content {
        font-size: 12px;
    }

    .payment-notice-content strong {
        font-size: 14px;
    }

    .payment-info-box {
        padding: 16px;
    }

    .payment-info-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .payment-info-title h6 {
        font-size: 15px;
    }

    .payment-data-item {
        padding: 10px 14px;
    }

    .payment-data-label {
        font-size: 12px;
    }

    .payment-data-value {
        font-size: 14px;
        padding: 5px 12px;
    }

    .discount-promo-message,
    .discount-hint-message {
        padding: 10px 12px;
        gap: 10px;
    }

    .discount-promo-message i,
    .discount-hint-message i {
        font-size: 20px;
    }

    .discount-promo-message span,
    .discount-hint-message span {
        font-size: 11px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 576px) {
    .header-overlay {
        padding: 6px 0;
    }

    .main-logo {
        max-height: 30px;
    }

    .logo-title {
        font-size: 12px;
    }

    .logo-subtitle {
        font-size: 8px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .product-image-container {
        height: 110px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-img {
        padding: 8px;
    }

    .discount-badge {
        padding: 3px 6px;
        top: 4px;
        left: 4px;
        border-radius: 6px;
    }

    .discount-percent {
        font-size: 10px;
    }

    .discount-label {
        font-size: 6px;
    }

    .stock-badge {
        top: 4px;
        right: 4px;
        padding: 3px 6px;
        font-size: 8px;
    }

    .product-body {
        padding: 6px 8px;
    }

    .product-title {
        font-size: 10px;
        min-height: 38px;
        line-height: 1.25;
        -webkit-line-clamp: 3;
    }

    .product-generico-label {
        font-size: 6px;
    }

    .product-principio-activo {
        font-size: 8px;
    }

    .product-nombre-generico {
        font-size: 7px;
    }

    .product-generico-section {
        min-height: 24px;
    }

    .product-rating {
        gap: 3px;
        margin-bottom: 3px;
    }

    .stars i {
        font-size: 9px;
    }

    .rating-number {
        font-size: 9px;
    }

    .pres-chip {
        font-size: 8px;
        padding: 3px 5px;
        min-width: 34px;
        border-radius: 4px;
    }

    .presentation-chips {
        gap: 2px;
    }

    .product-footer {
        padding: 5px 8px 8px 8px;
    }

    .precio-tag {
        font-size: 13px;
    }

    .precio-original-tachado {
        font-size: 9px;
    }

    .btn-vino {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 6px;
    }

    .btn-vino i {
        font-size: 12px;
    }

    .cart-btn,
    .whatsapp-support-btn {
        width: 48px;
        height: 48px;
    }

    .search-section {
        top: 46px;
    }

    body {
        padding-top: 82px;
    }

    .disclaimer-text-important {
        padding: 6px 8px;
        gap: 6px;
        margin: 0 6px;
        border-radius: 8px;
    }

    .disclaimer-icon {
        font-size: 16px;
    }

    .disclaimer-content {
        font-size: 10px;
    }

    .disclaimer-content strong {
        font-size: 11px;
    }

    .delivery-option-compact,
    .payment-option-compact {
        padding: 10px 6px;
        border-radius: 10px;
    }

    .delivery-option-compact i,
    .payment-option-compact i {
        font-size: 20px;
    }

    .delivery-option-compact strong,
    .payment-option-compact strong {
        font-size: 10px;
    }

    .delivery-price-compact {
        font-size: 11px;
    }

    .payment-notice-box {
        padding: 8px;
    }

    .row.g-4 {
        --bs-gutter-x: 5px;
        --bs-gutter-y: 6px;
    }

    .container {
        padding-left: 6px;
        padding-right: 6px;
    }

    .payment-notice-icon {
        font-size: 20px;
    }

    .payment-notice-content {
        font-size: 11px;
    }

    .payment-notice-content strong {
        font-size: 13px;
    }

    .payment-info-box {
        padding: 14px;
        border-radius: 12px;
    }

    .payment-info-header {
        gap: 10px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .payment-info-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 10px;
    }

    .payment-info-title h6 {
        font-size: 14px;
    }

    .payment-info-title p {
        font-size: 11px;
    }

    .payment-info-data {
        gap: 10px;
    }

    .payment-data-item {
        padding: 9px 12px;
        border-radius: 10px;
    }

    .payment-data-label {
        font-size: 11px;
    }

    .payment-data-label i {
        font-size: 14px;
    }

    .payment-data-value {
        font-size: 13px;
        padding: 4px 10px;
        border-radius: 6px;
    }

    .discount-promo-message,
    .discount-hint-message {
        padding: 8px 10px;
        gap: 8px;
        border-radius: 10px;
    }

    .discount-promo-message i,
    .discount-hint-message i {
        font-size: 18px;
    }

    .discount-promo-message span,
    .discount-hint-message span {
        font-size: 10px;
    }
}

/* ============================================
   FIX PARA SAFARI iOS
   ============================================ */
@supports (-webkit-touch-callout: none) {
    input, select, textarea {
        font-size: 16px !important;
    }

    .cart-btn:hover,
    .whatsapp-support-btn:hover {
        transform: scale(1.05);
    }
}

/* ============================================
   UTILIDADES DE COLOR
   ============================================ */
.text-vino {
    color: var(--vino) !important;
}

.bg-vino {
    background-color: var(--vino) !important;
}

.text-danger {
    color: var(--vino) !important;
}

.btn-danger {
    background-color: var(--vino) !important;
    border-color: var(--vino) !important;
}

.btn-danger:hover {
    background-color: var(--vino-dark) !important;
    border-color: var(--vino-dark) !important;
}

/* ============================================
   BADGE DE DESCUENTO (ESTILO ALTERNATIVO)
   ============================================ */
.descuento-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(255, 65, 108, 0.5);
    z-index: 15;
    animation: pulse-descuento 2s infinite;
}

@keyframes pulse-descuento {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.precio-container-descuento {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.precio-original-tachado {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.precio-tag.precio-descuento .amount {
    color: #ff4b2b !important;
}

.precio-tag.precio-descuento .currency {
    color: #ff4b2b !important;
}

.precio-tag.precio-descuento .decimal {
    color: #ff4b2b !important;
}

@media (max-width: 768px) {
    .descuento-badge {
        font-size: 13px;
        padding: 6px 10px;
        top: 8px;
        left: 8px;
    }

    .precio-original-tachado {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .descuento-badge {
        font-size: 11px;
        padding: 5px 8px;
        top: 5px;
        left: 5px;
    }

    .precio-original-tachado {
        font-size: 11px;
    }
}

/* ============================================
   CONTENIDO SEO OCULTO
   ============================================ */
.seo-content {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

/* ============================================
   MODAL - SECCIÓN GENÉRICO
   ============================================ */
.modal-generico-section {
    text-align: center;
    margin-bottom: 12px;
}

.modal-generico-label {
    font-size: 10px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    display: block;
}

.modal-principio-activo {
    font-size: 12px;
    font-weight: 800;
    color: var(--vino);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.modal-nombre-generico {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    line-height: 1.2;
}

/* ============================================
   MODAL - RATING CON ESTRELLAS
   ============================================ */
.modal-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 0;
}

.modal-stars {
    display: flex;
    gap: 3px;
}

.modal-stars i {
    color: #ffc107;
    font-size: 16px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    filter: none;
    animation: starGentleShine 2s ease-in-out infinite;
    animation-delay: calc(var(--star-index, 0) * 0.2s);
}

.modal-stars i.bi-star {
    color: #e0e0e0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    filter: none;
    animation: none;
}

.modal-stars i.bi-star-half {
    color: #ffc107;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    filter: none;
}

.modal-stars i:nth-child(1) { --star-index: 0; }
.modal-stars i:nth-child(2) { --star-index: 1; }
.modal-stars i:nth-child(3) { --star-index: 2; }
.modal-stars i:nth-child(4) { --star-index: 3; }
.modal-stars i:nth-child(5) { --star-index: 4; }

@keyframes starGentleShine {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

.modal-rating-number {
    font-size: 14px;
    font-weight: 800;
    color: #000;
    padding: 3px 8px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 8px;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

/* ============================================
   MODAL - PRECIO GRANDE
   ============================================ */
.modal-price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.modal-price-large .currency-symbol {
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
    text-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.modal-price-large .price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #dc3545;
    text-shadow: 0 3px 6px rgba(220, 53, 69, 0.3);
    letter-spacing: -1px;
}

/* ============================================
   NOTA DE STOCK - BURBUJA AMARILLA
   ============================================ */
.stock-note-bubble {
    background: linear-gradient(135deg, #fff9c4 0%, #fff176 50%, #fff9c4 100%);
    border: 2px solid #ffd54f;
    border-radius: 18px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 18px rgba(255, 235, 59, 0.5),
                0 0 36px rgba(255, 235, 59, 0.3),
                0 4px 14px rgba(255, 235, 59, 0.25);
    animation: yellowBubblePulse 2.5s ease-in-out infinite;
    margin-top: 12px;
    text-align: center;
}

.stock-note-bubble i {
    font-size: 16px;
    color: #f57f17;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
    flex-shrink: 0;
}

.stock-note-bubble span {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2px;
    line-height: 1.4;
    flex: 1;
}

@keyframes yellowBubblePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 18px rgba(255, 235, 59, 0.5),
                    0 0 36px rgba(255, 235, 59, 0.3),
                    0 4px 14px rgba(255, 235, 59, 0.25);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(255, 235, 59, 0.7),
                    0 0 50px rgba(255, 235, 59, 0.5),
                    0 6px 18px rgba(255, 235, 59, 0.35);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 576px) {
    .modal-generico-label {
        font-size: 9px;
    }

    .modal-principio-activo {
        font-size: 11px;
    }

    .modal-nombre-generico {
        font-size: 10px;
    }

    .modal-stars i {
        font-size: 14px;
    }

    .modal-rating-number {
        font-size: 12px;
        padding: 2px 6px;
    }

    .modal-price-large .currency-symbol {
        font-size: 20px;
    }

    .modal-price-large .price-amount {
        font-size: 32px;
    }

    .stock-note-bubble {
        padding: 6px 12px;
        gap: 6px;
    }

    .stock-note-bubble i {
        font-size: 14px;
    }

    .stock-note-bubble span {
        font-size: 10px;
    }
}

/* ============================================
   BOTÓN FLOTANTE DE CARRITO
   ============================================ */
.floating-cart-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #fb0100 0%, #d00100 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(251, 1, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    animation: cartPulse 2s ease-in-out infinite;
}

.floating-cart-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(251, 1, 0, 0.6);
}

.floating-cart-btn i {
    font-size: 28px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@keyframes cartPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(251, 1, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(251, 1, 0, 0.6), 0 0 20px rgba(251, 1, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .floating-cart-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .floating-cart-btn i {
        font-size: 24px;
    }

    .cart-badge {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}
 {
        font-size: 12px;
    }
}

.welcome-modal-body {
    padding: 30px 25px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

@media (max-width: 576px) {
    .welcome-modal-body {
        padding: 25px 20px 20px;
    }
}

@media (max-width: 400px) {
    .welcome-modal-body {
        padding: 20px 15px 15px;
    }
}

.welcome-header {
    margin-bottom: 18px;
    text-align: center;
}

@media (max-width: 576px) {
    .welcome-header {
        margin-bottom: 15px;
    }
}

.welcome-logo {
    max-width: 70px;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    animation: fadeInDown 0.5s ease;
}

@media (max-width: 576px) {
    .welcome-logo {
        max-width: 60px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .welcome-logo {
        max-width: 50px;
        margin-bottom: 8px;
    }
}

.welcome-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--vino);
    margin-bottom: 6px;
    line-height: 1.2;
    animation: fadeInUp 0.5s ease 0.1s both;
}

@media (max-width: 576px) {
    .welcome-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

@media (max-width: 400px) {
    .welcome-title {
        font-size: 16px;
    }
}

.welcome-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
    animation: fadeInUp 0.5s ease 0.2s both;
}

@media (max-width: 576px) {
    .welcome-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .welcome-subtitle {
        font-size: 11px;
    }
}

.review-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    text-align: center;
    animation: fadeIn 0.5s ease 0.3s both;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .review-section {
        padding: 14px;
        margin-bottom: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 400px) {
    .review-section {
        padding: 12px;
        margin-bottom: 12px;
    }
}

.review-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 576px) {
    .review-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }
}

@media (max-width: 400px) {
    .review-icon {
        width: 40px;
        height: 40px;
    }
}

.review-icon i {
    font-size: 22px;
    color: white;
}

@media (max-width: 576px) {
    .review-icon i {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .review-icon i {
        font-size: 18px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 193, 7, 0);
    }
}

.review-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .review-title {
        font-size: 15px;
        margin-bottom: 5px;
    }
}

@media (max-width: 400px) {
    .review-title {
        font-size: 14px;
    }
}

.review-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .review-text {
        font-size: 11px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .review-text {
        font-size: 10px;
    }
}

.star-rating-container {
    margin-bottom: 14px;
}

@media (max-width: 576px) {
    .star-rating-container {
        margin-bottom: 12px;
    }
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

@media (max-width: 576px) {
    .star-rating {
        gap: 5px;
    }
}

@media (max-width: 400px) {
    .star-rating {
        gap: 4px;
    }
}

.star-interactive {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (max-width: 576px) {
    .star-interactive {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .star-interactive {
        font-size: 20px;
    }
}

.star-interactive:hover {
    transform: scale(1.2);
}

.star-interactive.bi-star-fill {
    color: #ffc107;
    animation: starPop 0.3s ease;
}

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.rating-text {
    font-size: 11px;
    color: #999;
    font-weight: 600;
}

@media (max-width: 576px) {
    .rating-text {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .rating-text {
        font-size: 9px;
    }
}

.review-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 576px) {
    .review-buttons {
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .review-buttons {
        gap: 6px;
    }
}

.btn-google-review {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 10px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(66, 133, 244, 0.3);
    min-height: 65px;
}

@media (max-width: 576px) {
    .btn-google-review {
        padding: 9px 6px;
        font-size: 10px;
        gap: 5px;
        min-height: 60px;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .btn-google-review {
        padding: 8px 5px;
        font-size: 9px;
        gap: 4px;
        min-height: 55px;
    }
}

.btn-google-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
    color: white;
}

.btn-google-review i {
    font-size: 18px;
}

@media (max-width: 576px) {
    .btn-google-review i {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .btn-google-review i {
        font-size: 14px;
    }
}

.welcome-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0;
}

@media (max-width: 576px) {
    .welcome-divider {
        margin: 14px 0;
    }
}

@media (max-width: 400px) {
    .welcome-divider {
        margin: 12px 0;
    }
}

.welcome-divider::before,
.welcome-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.welcome-divider span {
    padding: 0 12px;
    color: #999;
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 576px) {
    .welcome-divider span {
        padding: 0 10px;
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .welcome-divider span {
        padding: 0 8px;
        font-size: 10px;
    }
}

.social-section {
    text-align: center;
    animation: fadeIn 0.5s ease 0.4s both;
}

.social-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

@media (max-width: 576px) {
    .social-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .social-title {
        font-size: 14px;
    }
}

.welcome-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .welcome-social-grid {
        gap: 6px;
        margin-bottom: 8px;
    }
}

@media (max-width: 400px) {
    .welcome-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

.welcome-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 10px;
}

@media (max-width: 576px) {
    .welcome-social-btn {
        padding: 10px 6px;
        font-size: 9px;
        gap: 5px;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .welcome-social-btn {
        padding: 10px 8px;
        font-size: 10px;
        gap: 6px;
    }
}

.welcome-social-btn:hover {
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 576px) {
    .welcome-social-btn:hover {
        transform: translateY(-2px);
    }
}

.welcome-social-btn i {
    font-size: 22px;
}

@media (max-width: 576px) {
    .welcome-social-btn i {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .welcome-social-btn i {
        font-size: 22px;
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2 0%, #0c5dbf 100%);
    box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
}

.facebook-btn:hover {
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 3px 10px rgba(220, 39, 67, 0.3);
}

.instagram-btn:hover {
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.tiktok-btn {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.tiktok-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.btn-continue {
    background: linear-gradient(135deg, var(--vino) 0%, var(--vino-dark) 100%);
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(251, 1, 0, 0.3);
}

@media (max-width: 576px) {
    .btn-continue {
        padding: 10px 24px;
        font-size: 12px;
        gap: 6px;
    }
}

@media (max-width: 400px) {
    .btn-continue {
        padding: 9px 20px;
        font-size: 11px;
        gap: 5px;
    }
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(251, 1, 0, 0.4);
}

@media (max-width: 576px) {
    .btn-continue:hover {
        transform: translateY(-1px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-open {
    overflow-y: auto !important;
}

#welcomeModal .modal-dialog {
    overflow-x: hidden;
}

@media (max-height: 700px) {
    #welcomeModal .modal-body {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
}

@media (max-height: 600px) {
    #welcomeModal .modal-body {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}

.footer-bottom {
    text-align: center;
    width: 100%;
    padding: 15px 0;
    background: rgba(0,0,0,0.3);
    font-size: 13px;
}

/* ============================================
   CATEGORÍAS - ESTILOS
   ============================================ */
.categories-section {
    background: #1a1a1a;
    padding: 15px 0;
    position: fixed;
    top: 170px;
    left: 0;
    right: 0;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

body {
    padding-top: 240px;
}

/* Contenedor con scroll CENTRADO */
.categories-scroll-container {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Botones de scroll */
.scroll-btn {
    background: var(--vino);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 18px;
}

.scroll-btn:hover {
    background: var(--vino-dark);
    transform: scale(1.1);
}

/* Wrapper de categorías - SCROLL FUNCIONAL */
.categories-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 8px 0;
    flex: 1;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

/* Píldoras de categoría */
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-pill i {
    font-size: 14px;
}

.category-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--vino);
    color: white;
    transform: translateY(-2px);
}

.category-pill.active {
    background: var(--vino);
    border-color: var(--vino);
    color: white;
    box-shadow: 0 4px 15px rgba(251, 1, 0, 0.4);
}

/* MOBILE */
.categories-mobile {
    width: 100%;
}

.btn-categories-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-categories-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--vino);
}

.btn-categories-toggle i:first-child {
    font-size: 18px;
    color: var(--vino);
}

.current-category-badge {
    background: var(--vino);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-left: auto;
    margin-right: 8px;
}

/* OFF-CANVAS DRAWER */
.categories-drawer {
    max-width: 320px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

.categories-drawer .offcanvas-header {
    background: var(--vino);
    padding: 18px 20px;
}

.categories-drawer .offcanvas-title {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.categories-drawer .offcanvas-body {
    padding: 0;
}

.categories-nav-mobile {
    display: flex;
    flex-direction: column;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.category-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.category-nav-item.active {
    background: rgba(251, 1, 0, 0.15);
    border-left: 4px solid var(--vino);
}

.category-nav-item.active .category-nav-name {
    color: var(--vino);
    font-weight: 700;
}

.category-nav-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.category-nav-item.active .category-nav-icon {
    background: var(--vino);
    color: white;
}

.category-nav-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.category-nav-item .bi-chevron-right {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE CATEGORÍAS */
@media (max-width: 991.98px) {
    .categories-section {
        top: 160px;
    }
    body {
        padding-top: 225px;
    }
}

@media (max-width: 767.98px) {
    .categories-section {
        top: 150px;
        padding: 12px 0;
    }
    body {
        padding-top: 215px;
    }
}

@media (max-width: 575.98px) {
    .categories-section {
        top: 140px;
        padding: 10px 0;
    }
    body {
        padding-top: 200px;
    }
}

/* ============================================
   ESTILOS ADICIONALES PARA STORE.CSS
   AGREGAR AL FINAL DEL ARCHIVO EXISTENTE
   ============================================ */

/* ============================================
   ICONOS DE REDES SOCIALES CON COLORES ORIGINALES (HEADER)
   ============================================ */
.social-icon-brand {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
}

.social-icon-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-icon-brand:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon-brand:hover {
    transform: translateY(-8px) scale(1.15);
}

/* WhatsApp - Verde */
.social-icon-brand.whatsapp-brand {
    background: #25D366;
    color: white;
}

.social-icon-brand.whatsapp-brand:hover {
    background: #128C7E;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* Facebook - Azul */
.social-icon-brand.facebook-brand {
    background: #1877F2;
    color: white;
}

.social-icon-brand.facebook-brand:hover {
    background: #0c5dbf;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

/* Instagram - Gradiente */
.social-icon-brand.instagram-brand {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon-brand.instagram-brand:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.6);
}

/* TikTok - Negro */
.social-icon-brand.tiktok-brand {
    background: #000000;
    color: white;
}

.social-icon-brand.tiktok-brand:hover {
    background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.6);
}

/* Google - Multicolor */
.social-icon-brand.google-brand {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}

.social-icon-brand.google-brand:hover {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 25%, #34a853 50%, #4285f4 100%);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.6);
}

/* Responsive para iconos del header */
@media (max-width: 991px) {
    .social-icon-brand {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .social-icon-brand {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .header-social {
        gap: 6px;
    }
}

@media (max-width: 575px) {
    .social-icon-brand {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .header-social {
        gap: 4px;
    }
}

/* ============================================
   FOOTER RESPONSIVE - TÍTULO DROGUERÍAS REDES
   ============================================ */
.footer-brand-wrapper {
    flex-wrap: nowrap;
}

.footer-brand-text {
    min-width: 0;
}

.footer-brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    white-space: nowrap;
}

.footer-brand-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .footer-brand-title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .footer-brand-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    
    .footer-logo {
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .footer-brand-wrapper {
        justify-content: center;
        text-align: center;
    }
    
    .footer-brand-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .footer-brand-subtitle {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .footer-logo {
        max-width: 80px;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-brand-wrapper {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .footer-brand-title {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .footer-brand-subtitle {
        font-size: 7px;
    }
    
    .footer-logo {
        max-width: 70px;
    }
}

@media (max-width: 400px) {
    .footer-brand-title {
        font-size: 12px;
        letter-spacing: 0;
    }
    
    .footer-brand-subtitle {
        font-size: 6px;
        letter-spacing: 0.5px;
    }
}

/* ============================================
   OCULTAR BOTÓN DE CATEGORÍAS EN MÓVIL
   ============================================ */
@media (max-width: 767px) {
    .desktop-only-categories {
        display: none !important;
    }
    
    .search-categories-wrapper {
        justify-content: center;
    }
}

/* ============================================
   CUPÓN DE DESCUENTO - ESTILOS
   ============================================ */
.coupon-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.coupon-section:hover {
    border-color: #adb5bd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.coupon-header {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d9e 100%);
    color: white;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}

.coupon-header i {
    font-size: 20px;
    animation: ticketBounce 2s ease-in-out infinite;
}

@keyframes ticketBounce {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.coupon-body {
    padding: 18px;
}

.coupon-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    outline: none;
}

.coupon-input:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.15);
}

.coupon-input::placeholder {
    text-transform: none;
    font-weight: 400;
    color: #adb5bd;
}

.coupon-input.shake {
    animation: shakeInput 0.5s ease-in-out;
}

@keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-10px); }
    40%, 80% { transform: translateX(10px); }
}

.btn-apply-coupon {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d9e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    background: linear-gradient(135deg, #5a2d9e 0%, #4a2480 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
}

.btn-apply-coupon i {
    font-size: 16px;
}

.coupon-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.coupon-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.coupon-message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.coupon-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 12px;
    border: 2px solid #28a745;
}

.coupon-applied-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #155724;
}

.coupon-applied-info i {
    font-size: 20px;
    color: #28a745;
}

.coupon-discount-badge {
    background: #28a745;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.btn-remove-coupon {
    background: transparent;
    border: none;
    color: #dc3545;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-remove-coupon:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: scale(1.1);
}

/* Responsive para cupón */
@media (max-width: 575px) {
    .coupon-input-wrapper {
        flex-direction: column;
    }
    
    .coupon-input {
        width: 100%;
    }
    
    .btn-apply-coupon {
        width: 100%;
        justify-content: center;
    }
    
    .coupon-header {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .coupon-body {
        padding: 14px;
    }
}

/* ============================================
   CONFIGURACIÓN DE DESCUENTO - ESTILOS
   ============================================ */
.discount-config-section {
    margin-top: 15px;
}

.btn-config-discount {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-config-discount:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #adb5bd;
    color: #495057;
}

.btn-config-discount i:first-child {
    font-size: 16px;
    color: #fb0100;
}

.btn-config-discount span {
    flex: 1;
    text-align: left;
}

.config-chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.discount-config-panel {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px solid #fb0100;
    border-radius: 16px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.config-row {
    margin-bottom: 18px;
}

.config-row:last-of-type {
    margin-bottom: 20px;
}

.config-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.config-row label i {
    color: #fb0100;
    font-size: 16px;
}

.config-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.config-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    background: white;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-btn:hover {
    border-color: #fb0100;
    color: #fb0100;
    transform: scale(1.05);
}

.config-btn.minus:hover {
    background: #fff5f5;
}

.config-btn.plus:hover {
    background: #f0fff4;
    border-color: #28a745;
    color: #28a745;
}

.config-input {
    width: 100px;
    padding: 10px 14px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.config-input:focus {
    border-color: #fb0100;
    box-shadow: 0 0 0 3px rgba(251, 1, 0, 0.15);
}

.config-input.amount {
    width: 150px;
}

.config-prefix,
.config-suffix {
    font-size: 14px;
    font-weight: 700;
    color: #666;
}

.config-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 13px;
    resize: none;
    outline: none;
    transition: all 0.3s ease;
}

.config-textarea:focus {
    border-color: #fb0100;
    box-shadow: 0 0 0 3px rgba(251, 1, 0, 0.15);
}

.config-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-save-config {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #28a745 0%, #20923f 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-save-config:hover {
    background: linear-gradient(135deg, #20923f 0%, #1a7a35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-reset-config {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reset-config:hover {
    background: linear-gradient(135deg, #5a6268 0%, #4b5157 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

/* Responsive para configuración */
@media (max-width: 575px) {
    .discount-config-panel {
        padding: 15px;
    }
    
    .config-input-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .config-input {
        width: 80px;
    }
    
    .config-input.amount {
        width: 120px;
    }
    
    .config-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .config-actions {
        flex-direction: column;
    }
    
    .btn-save-config,
    .btn-reset-config {
        width: 100%;
    }
}

/* ============================================
   MENSAJE DE DESCUENTO MEJORADO
   ============================================ */
.discount-promo-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    animation: celebrationPulse 1.5s ease-in-out infinite;
}

@keyframes celebrationPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(40, 167, 69, 0.2);
    }
}

.discount-promo-message i {
    font-size: 24px;
    color: #28a745;
    animation: giftBounce 1s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.discount-promo-message span {
    flex: 1;
    font-size: 14px;
    color: #155724;
    font-weight: 600;
    line-height: 1.4;
}

.discount-hint-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.discount-hint-message i {
    font-size: 20px;
    color: #ffc107;
}

.discount-hint-message span {
    flex: 1;
    font-size: 13px;
    color: #856404;
    font-weight: 500;
}

/* ============================================
   ANIMACIÓN DE PULSE PARA KEYFRAMES
   ============================================ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 193, 7, 0);
    }
}

/* ICONOS REDES SOCIALES HEADER - COLORES ORIGINALES */
.social-icon-brand {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
}

.social-icon-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-icon-brand:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon-brand:hover {
    transform: translateY(-8px) scale(1.15);
}

.social-icon-brand.whatsapp-brand {
    background: #25D366;
    color: white;
}

.social-icon-brand.whatsapp-brand:hover {
    background: #128C7E;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.social-icon-brand.facebook-brand {
    background: #1877F2;
    color: white;
}

.social-icon-brand.facebook-brand:hover {
    background: #0c5dbf;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

.social-icon-brand.instagram-brand {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon-brand.instagram-brand:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.6);
}

.social-icon-brand.tiktok-brand {
    background: #000000;
    color: white;
}

.social-icon-brand.tiktok-brand:hover {
    background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.6);
}

.social-icon-brand.google-brand {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}

.social-icon-brand.google-brand:hover {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 25%, #34a853 50%, #4285f4 100%);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.6);
}

@media (max-width: 991px) {
    .social-icon-brand {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* FOOTER RESPONSIVE */
.footer-brand-wrapper {
    flex-wrap: nowrap;
}

.footer-brand-text {
    min-width: 0;
}

.footer-brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    white-space: nowrap;
}

.footer-brand-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .footer-brand-title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    .footer-brand-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .footer-logo {
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .footer-brand-wrapper {
        justify-content: center;
        text-align: center;
    }
    .footer-brand-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .footer-brand-subtitle {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .footer-logo {
        max-width: 80px;
    }
    .footer-text {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-brand-wrapper {
        flex-direction: column;
        gap: 10px !important;
    }
    .footer-brand-title {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    .footer-brand-subtitle {
        font-size: 7px;
    }
    .footer-logo {
        max-width: 70px;
    }
}

@media (max-width: 400px) {
    .footer-brand-title {
        font-size: 12px;
        letter-spacing: 0;
    }
    .footer-brand-subtitle {
        font-size: 6px;
        letter-spacing: 0.5px;
    }
}

/* MENSAJE DESCUENTO */
.discount-promo-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    animation: celebrationPulse 1.5s ease-in-out infinite;
}

@keyframes celebrationPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(40, 167, 69, 0.2); }
}

.discount-promo-message i {
    font-size: 24px;
    color: #28a745;
    animation: giftBounce 1s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.discount-promo-message span {
    flex: 1;
    font-size: 14px;
    color: #155724;
    font-weight: 600;
    line-height: 1.4;
}

.discount-hint-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.discount-hint-message i {
    font-size: 20px;
    color: #ffc107;
}

.discount-hint-message span {
    flex: 1;
    font-size: 13px;
    color: #856404;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 193, 7, 0);
    }
}

/* ============================================
   AGREGAR AL FINAL DE store.css
   ============================================ */

/* ICONOS REDES SOCIALES HEADER - COLORES ORIGINALES */
.social-icon-brand {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
}

.social-icon-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-icon-brand:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon-brand:hover {
    transform: translateY(-8px) scale(1.15);
}

.social-icon-brand.whatsapp-brand {
    background: #25D366;
    color: white;
}

.social-icon-brand.whatsapp-brand:hover {
    background: #128C7E;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.social-icon-brand.facebook-brand {
    background: #1877F2;
    color: white;
}

.social-icon-brand.facebook-brand:hover {
    background: #0c5dbf;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

.social-icon-brand.instagram-brand {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon-brand.instagram-brand:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.6);
}

.social-icon-brand.tiktok-brand {
    background: #000000;
    color: white;
}

.social-icon-brand.tiktok-brand:hover {
    background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.6);
}

.social-icon-brand.google-brand {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    color: white;
}

.social-icon-brand.google-brand:hover {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc05 25%, #34a853 50%, #4285f4 100%);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.6);
}

@media (max-width: 991px) {
    .social-icon-brand {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* FOOTER RESPONSIVE */
.footer-brand-wrapper {
    flex-wrap: nowrap;
}

.footer-brand-text {
    min-width: 0;
}

.footer-brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    white-space: nowrap;
}

.footer-brand-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .footer-brand-title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    .footer-brand-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .footer-logo {
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .footer-brand-wrapper {
        justify-content: center;
        text-align: center;
    }
    .footer-brand-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .footer-brand-subtitle {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .footer-logo {
        max-width: 80px;
    }
    .footer-text {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-brand-wrapper {
        flex-direction: column;
        gap: 10px !important;
    }
    .footer-brand-title {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    .footer-brand-subtitle {
        font-size: 7px;
    }
    .footer-logo {
        max-width: 70px;
    }
}

@media (max-width: 400px) {
    .footer-brand-title {
        font-size: 12px;
        letter-spacing: 0;
    }
    .footer-brand-subtitle {
        font-size: 6px;
        letter-spacing: 0.5px;
    }
}

/* MENSAJE DESCUENTO */
.discount-promo-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    animation: celebrationPulse 1.5s ease-in-out infinite;
}

@keyframes celebrationPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(40, 167, 69, 0.2); }
}

.discount-promo-message i {
    font-size: 24px;
    color: #28a745;
    animation: giftBounce 1s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.discount-promo-message span {
    flex: 1;
    font-size: 14px;
    color: #155724;
    font-weight: 600;
    line-height: 1.4;
}

.discount-hint-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.discount-hint-message i {
    font-size: 20px;
    color: #ffc107;
}

.discount-hint-message span {
    flex: 1;
    font-size: 13px;
    color: #856404;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 193, 7, 0);
    }
}


/* === FIX REAL: CUPÓN OK (index.blade.php usa .coupon-ok / #couponOk) === */
.coupon-ok{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    background:linear-gradient(135deg,#fff176 0%,#ffeb3b 50%,#fff59d 100%);
    color:#1a1a1a;
    border:2px solid #ffd600;
    font-weight:900;
    font-size:13px;
    line-height:1;
    box-shadow:
        0 0 12px rgba(255,235,59,.9),
        0 0 28px rgba(255,235,59,.6),
        0 6px 18px rgba(255,193,7,.45);
    animation:couponGlow 1.6s ease-in-out infinite;
    width:100%;
}
.coupon-ok i{
    color:#f57f17;
    font-size:18px;
}
@keyframes couponGlow{
    0%,100%{transform:scale(1); box-shadow:0 0 10px rgba(255,235,59,.8),0 6px 18px rgba(255,193,7,.45);}
    50%{transform:scale(1.03); box-shadow:0 0 22px rgba(255,235,59,1),0 10px 26px rgba(255,193,7,.6);}
}

/* (Opcional) Mejora del contenedor del cupón, sin tocar la lógica */
.coupon-box{
    background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    border-radius:16px;
    overflow:hidden;
    border:2px solid #dee2e6;
}
.coupon-header{
    background:linear-gradient(135deg,#6f42c1 0%,#5a2d9e 100%);
    color:#fff;
    padding:10px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.coupon-title{
    font-weight:800;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
}
.coupon-input-row{
    padding:12px 14px;
    display:flex;
    gap:10px;
    align-items:center;
}
.coupon-apply-btn{
    white-space:nowrap;
    border-radius:12px !important;
    font-weight:800 !important;
}
.coupon-clear-btn{
    background:rgba(255,255,255,.2);
    border:none;
    color:#fff;
    border-radius:10px;
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.coupon-clear-btn:hover{
    background:rgba(255,255,255,.28);
}

/* error mantiene rojo */
.coupon-error{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border-radius:12px;
    background:#f8d7da;
    color:#721c24;
    border:1px solid #f5c6cb;
    font-weight:800;
    width:100%;
}
.coupon-feedback{
    padding:0 14px 14px 14px;
}
