/* ============================================
   VARIABLES
   ============================================ */
:root {
    --primary: #e91e8c;
    --primary-hover: #c2177a;
    --primary-light: rgba(233, 30, 140, 0.15);
    --primary-glow: rgba(233, 30, 140, 0.4);
    --dark: #0f0f0f;
    --darker: #080808;
    --card-bg: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #a0a0a0;
    --success: #4caf50;
    --danger: #f44336;
    --secondary: #ff6eb4;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--dark); color: var(--text-light); overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
a { text-decoration: none; color: inherit; }

/* ============================================
   HEADER
   ============================================ */
header {
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(233, 30, 140, 0.3);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 25px; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }
.logo span { color: white; }
.nav-search { flex: 1; max-width: 400px; margin: 0 30px; position: relative; }
.nav-search input { width: 100%; padding: 10px 20px 10px 45px; background: #1a1a1a; border: 1px solid rgba(233, 30, 140, 0.3); border-radius: 50px; color: white; font-size: 0.9rem; transition: all 0.3s ease; }
.nav-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 20px var(--primary-light); }
.nav-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 15px; }
.cart-btn { background: var(--primary-light); border: 1px solid rgba(233, 30, 140, 0.4); color: var(--primary); padding: 10px 20px; border-radius: 50px; cursor: pointer; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 10px; transition: all 0.3s ease; position: relative; }
.cart-btn:hover { background: var(--primary); color: white; box-shadow: 0 8px 25px var(--primary-glow); transform: translateY(-2px); }
.cart-count { background: var(--primary); color: white; width: 22px; height: 22px; border-radius: 50%; font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cart-btn:hover .cart-count { background: white; color: var(--primary); }

/* ============================================
   HERO
   ============================================ */
.hero-banner { padding-top: 90px; background: linear-gradient(135deg, #0f0f0f 0%, #1a0a12 50%, #0f0f0f 100%); position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: center; }
.hero-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(233, 30, 140, 0.12) 0%, transparent 70%); animation: pulse-bg 4s ease-in-out infinite; }
@keyframes pulse-bg { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.hero-inner { max-width: 1300px; margin: 0 auto; padding: 50px 25px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-inner h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 15px; background: linear-gradient(135deg, #fff 0%, var(--primary) 60%, var(--secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-inner p { color: var(--text-gray); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge { background: var(--primary-light); border: 1px solid rgba(233, 30, 140, 0.3); color: var(--secondary); padding: 7px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.hero-img { text-align: center; }
.hero-img img { max-width: 300px; width: 100%; filter: drop-shadow(0 20px 40px rgba(233, 30, 140, 0.3)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(45deg, var(--primary), var(--primary-hover)); color: white; padding: 14px 35px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; margin-top: 20px; transition: all 0.3s ease; box-shadow: 0 10px 30px var(--primary-glow); }
.btn-hero:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 20px 40px var(--primary-glow); }

/* ============================================
   CATEGORÍAS
   ============================================ */
.categories-bar { background: var(--darker); padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: sticky; top: 68px; z-index: 900; }
.categories-scroll { max-width: 1300px; margin: 0 auto; padding: 0 25px; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.categories-scroll::-webkit-scrollbar { display: none; }
.cat-btn { background: var(--card-bg); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--text-gray); padding: 9px 20px; border-radius: 50px; cursor: pointer; font-size: 0.88rem; font-weight: 600; white-space: nowrap; transition: all 0.3s ease; display: flex; align-items: center; gap: 7px; text-decoration: none; }
.cat-btn:hover, .cat-btn.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 5px 20px var(--primary-glow); transform: translateY(-2px); }

/* ============================================
   SHOP Y PRODUCTOS
   ============================================ */
.shop-section { max-width: 1300px; margin: 0 auto; padding: 50px 25px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; flex-wrap: wrap; gap: 15px; }
.section-title { font-size: 1.8rem; font-weight: 800; }
.section-title span { color: var(--primary); }
.products-count { color: var(--text-gray); font-size: 0.88rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }

.product-card { background: linear-gradient(145deg, var(--card-bg), #1f1f1f); border-radius: 18px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
.product-card:hover { transform: translateY(-10px); border-color: rgba(233, 30, 140, 0.4); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(233, 30, 140, 0.1); }
.product-badge-wrap { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 5px; }
.badge-tag { padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.badge-new { background: linear-gradient(45deg, var(--primary), var(--secondary)); color: white; }
.badge-sale { background: linear-gradient(45deg, #f44336, #e53935); color: white; }
.badge-hot { background: linear-gradient(45deg, #ff9800, #f57c00); color: white; }
.badge-best { background: linear-gradient(45deg, #9c27b0, #7b1fa2); color: white; }
.product-wishlist { position: absolute; top: 12px; right: 12px; z-index: 3; width: 36px; height: 36px; background: rgba(0, 0, 0, 0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-gray); font-size: 0.9rem; }
.product-wishlist:hover, .product-wishlist.active { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.1); }
.product-img-wrap { height: 220px; overflow: hidden; background: linear-gradient(135deg, #1a0a12, #1f1f1f); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay { position: absolute; inset: 0; background: rgba(233, 30, 140, 0.15); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn { background: white; color: var(--primary); padding: 9px 20px; border-radius: 50px; font-weight: 700; font-size: 0.82rem; display: flex; align-items: center; gap: 7px; transform: translateY(10px); transition: transform 0.3s ease; text-decoration: none; }
.product-card:hover .overlay-btn { transform: translateY(0); }
.product-info { padding: 18px; }
.product-category { font-size: 0.72rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-name { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; line-height: 1.4; cursor: pointer; transition: color 0.3s; text-decoration: none; color: var(--text-light); display: block; }
.product-name:hover { color: var(--primary); }
.product-desc { font-size: 0.8rem; color: var(--text-gray); margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.stars { color: #ffc107; font-size: 0.8rem; }
.rating-count { font-size: 0.75rem; color: var(--text-gray); }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.old-price { text-decoration: line-through; color: var(--text-gray); font-size: 0.82rem; display: block; }
.new-price { color: var(--primary); font-size: 1.2rem; font-weight: 900; }
.add-cart-btn { background: linear-gradient(45deg, var(--primary), var(--primary-hover)); color: white; border: none; padding: 10px 16px; border-radius: 12px; cursor: pointer; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 7px; transition: all 0.3s ease; white-space: nowrap; }
.add-cart-btn:hover { transform: scale(1.05); box-shadow: 0 8px 20px var(--primary-glow); }
.add-cart-btn.added { background: linear-gradient(45deg, var(--success), #43a047); }
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-gray); }
.empty-state i { font-size: 4rem; color: var(--primary); margin-bottom: 20px; opacity: 0.5; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-light); }

/* ============================================
   CARRITO SIDEBAR
   ============================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar { position: fixed; right: -500px; top: 0; width: 100%; max-width: 480px; height: 100vh; background: #111; z-index: 2001; transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column; border-left: 1px solid rgba(233, 30, 140, 0.3); }
.cart-sidebar.open { right: 0; }
.cart-header { padding: 25px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg, #1a0a12, #111); }
.cart-header h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.cart-close { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; color: var(--text-gray); font-size: 1.2rem; border: none; }
.cart-close:hover { background: var(--primary); color: white; transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.cart-item { display: flex; gap: 15px; padding: 15px; background: var(--card-bg); border-radius: 14px; margin-bottom: 12px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; position: relative; }
.cart-item:hover { border-color: rgba(233, 30, 140, 0.3); }
.cart-item-img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; border: 2px solid rgba(233, 30, 140, 0.3); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { color: var(--primary); font-weight: 800; font-size: 1rem; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; background: rgba(233, 30, 140, 0.15); border: 1px solid rgba(233, 30, 140, 0.3); border-radius: 8px; color: var(--primary); cursor: pointer; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.qty-btn:hover { background: var(--primary); color: white; }
.qty-display { font-weight: 700; font-size: 0.95rem; min-width: 25px; text-align: center; }
.cart-item-remove { position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; background: rgba(244, 67, 54, 0.15); border: none; border-radius: 50%; color: #f44336; cursor: pointer; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.cart-item-remove:hover { background: #f44336; color: white; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-gray); }
.cart-empty i { font-size: 3.5rem; color: var(--primary); opacity: 0.4; margin-bottom: 15px; }
.cart-footer { padding: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(135deg, #1a0a12, #111); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-gray); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 1.2rem; font-weight: 800; }
.cart-total span:last-child { color: var(--primary); font-size: 1.5rem; }
.btn-checkout { width: 100%; background: linear-gradient(45deg, var(--primary), var(--primary-hover)); color: white; border: none; padding: 16px; border-radius: 14px; font-size: 1rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 30px var(--primary-glow); }
.btn-checkout:hover { transform: scale(1.02); box-shadow: 0 15px 40px var(--primary-glow); }

/* ============================================
   MODAL CHECKOUT
   ============================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.92); z-index: 3000; display: none; justify-content: center; align-items: center; padding: 20px; backdrop-filter: blur(10px); }
.modal-overlay.open { display: flex; }
.modal-content { background: linear-gradient(145deg, #1e1e1e, #252525); width: 100%; max-width: 650px; border-radius: 24px; padding: 35px; position: relative; border: 1px solid rgba(233, 30, 140, 0.3); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(233, 30, 140, 0.1); max-height: 92vh; overflow-y: auto; }
.modal-content::-webkit-scrollbar { width: 4px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.close-modal { position: absolute; top: 18px; right: 22px; font-size: 1.5rem; cursor: pointer; color: var(--text-gray); transition: all 0.3s ease; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: none; border: none; }
.close-modal:hover { color: white; background: rgba(255, 255, 255, 0.1); transform: rotate(90deg); }
.modal-header { text-align: center; margin-bottom: 25px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 20px; }
.modal-header h2 { color: var(--primary); font-size: 1.6rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 2px; }
.step-indicator { display: flex; justify-content: center; gap: 50px; position: relative; margin-bottom: 5px; }
.step-indicator::before { content: ''; position: absolute; top: 50%; left: 15%; right: 15%; height: 3px; background: #333; z-index: 0; transform: translateY(-50%); border-radius: 2px; }
.step { width: 42px; height: 42px; background: #2a2a2a; border-radius: 50%; display: flex; justify-content: center; align-items: center; position: relative; z-index: 1; font-weight: 700; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 3px solid #333; font-size: 0.9rem; }
.step.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 0 25px var(--primary-glow); transform: scale(1.15); }
.step.completed { background: var(--success); border-color: var(--success); color: white; }

/* ============================================
   FORMULARIOS
   ============================================ */
.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.88rem; color: var(--text-gray); font-weight: 500; }
.form-control { width: 100%; padding: 13px 16px; background: #151515; border: 1px solid #333; border-radius: 12px; color: white; font-size: 0.95rem; transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 20px var(--primary-light); }
.row { display: flex; gap: 15px; }
.col { flex: 1; }

/* ============================================
   MÉTODOS DE PAGO
   ============================================ */
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 22px; }
.payment-option { background: linear-gradient(145deg, #1a1a1a, #222222); border: 2px solid #333; border-radius: 16px; padding: 16px 12px; cursor: pointer; text-align: center; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--text-gray); position: relative; overflow: hidden; }
.payment-option::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.5s ease; }
.payment-option:hover::before { left: 100%; }
.payment-option:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); }
.payment-option.selected { transform: translateY(-2px) scale(1.02); }

/* PayPal */
.payment-option[data-method="paypal"] { background: linear-gradient(145deg, #1a2a5e, #253b80); border-color: #253b80; }
.payment-option[data-method="paypal"]:hover { border-color: #3d5cb8; box-shadow: 0 15px 35px rgba(37, 59, 128, 0.5); }
.payment-option[data-method="paypal"]:hover i { color: #6b8cff; transform: scale(1.2); }
.payment-option[data-method="paypal"].selected { background: linear-gradient(145deg, #253b80, #1e3270); border-color: #4a7be0; box-shadow: 0 10px 30px rgba(37, 59, 128, 0.6); }
.payment-option[data-method="paypal"].selected i { color: #6b8cff; }
@keyframes paypalPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 59, 128, 0.4); } 50% { box-shadow: 0 0 0 8px rgba(37, 59, 128, 0); } }
.payment-option[data-method="paypal"]:not(.selected) { animation: paypalPulse 2.5s ease-in-out infinite; }

/* Tarjeta */
.payment-option[data-method="card"] { background: linear-gradient(145deg, #2a1a1a, #3d2020); border-color: #5a2525; }
.payment-option[data-method="card"]:hover { border-color: #ff5a5f; box-shadow: 0 15px 35px rgba(255, 90, 95, 0.4); }
.payment-option[data-method="card"]:hover i { color: #ff7a7f; transform: scale(1.2); }
.payment-option[data-method="card"].selected { background: linear-gradient(145deg, #3d2020, #2a1515); border-color: #ff5a5f; box-shadow: 0 10px 30px rgba(255, 90, 95, 0.5); }
.payment-option[data-method="card"].selected i { color: #ff7a7f; }

/* Transferencia */
.payment-option[data-method="transfer"]:hover { border-color: #4caf50; box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4); }
.payment-option[data-method="transfer"]:hover i { color: #4caf50; transform: scale(1.2); }
.payment-option[data-method="transfer"].selected { border-color: #4caf50; background: linear-gradient(145deg, rgba(76, 175, 80, 0.2), rgba(30, 30, 30, 0.9)); }
.payment-option[data-method="transfer"].selected i { color: #4caf50; }

/* Contra Entrega */
.payment-option[data-method="cod"]:hover { border-color: #2196f3; box-shadow: 0 15px 35px rgba(33, 150, 243, 0.4); }
.payment-option[data-method="cod"]:hover i { color: #2196f3; transform: scale(1.2); }
.payment-option[data-method="cod"].selected { border-color: #2196f3; background: linear-gradient(145deg, rgba(33, 150, 243, 0.2), rgba(30, 30, 30, 0.9)); }
.payment-option[data-method="cod"].selected i { color: #2196f3; }

.payment-option i { font-size: 1.8rem; transition: all 0.3s ease; display: block; }
.payment-option span { font-size: 0.8rem; font-weight: 600; }

/* ============================================
   CUENTAS BANCARIAS
   ============================================ */
.bank-accounts { background: #151515; border-radius: 12px; padding: 18px; margin-top: 18px; border: 1px solid #333; display: none; }
.bank-accounts.visible { display: block; animation: fadeIn 0.4s ease; }
.bank-account-option { display: flex; align-items: center; padding: 13px; background: #1e1e1e; border: 2px solid #333; border-radius: 10px; margin-bottom: 8px; cursor: pointer; transition: all 0.3s ease; }
.bank-account-option:hover { border-color: #444; }
.bank-account-option.selected { border-color: var(--primary); background: rgba(233, 30, 140, 0.08); }
.bank-radio { width: 20px; height: 20px; border: 2px solid #444; border-radius: 50%; margin-right: 13px; position: relative; transition: all 0.3s ease; flex-shrink: 0; }
.bank-account-option.selected .bank-radio { border-color: var(--primary); background: var(--primary); }
.bank-account-option.selected .bank-radio::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 11px; font-weight: bold; }
.bank-info strong { display: block; color: var(--primary); margin-bottom: 3px; font-size: 0.9rem; }
.bank-info span { font-size: 0.8rem; color: #888; }
.bank-info .account-num { font-family: monospace; font-size: 0.95rem; color: #fff; margin-top: 4px; }
.upload-area { border: 2px dashed #444; padding: 25px; text-align: center; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; position: relative; background: #151515; margin-top: 15px; }
.upload-area:hover { border-color: var(--primary); background: rgba(233, 30, 140, 0.05); }
.upload-area input { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; }
.upload-preview { max-width: 100%; max-height: 160px; margin-top: 12px; border-radius: 8px; display: none; border: 2px solid var(--success); }

/* ============================================
   INFO BOX
   ============================================ */
.info-box { background: rgba(76, 175, 80, 0.1); border: 1px solid var(--success); border-radius: 12px; padding: 16px; margin-top: 18px; display: none; }
.info-box.visible { display: block; animation: fadeIn 0.4s ease; }
.info-box h5 { color: var(--success); margin-bottom: 7px; display: flex; align-items: center; gap: 7px; }
.info-box p { font-size: 0.88rem; color: #aaa; }

/* ============================================
   BOTONES
   ============================================ */
.btn-next { background: linear-gradient(45deg, var(--primary), var(--primary-hover)); color: white; padding: 15px 35px; border-radius: 50px; font-weight: 800; font-size: 1rem; border: none; cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 30px var(--primary-glow); margin-top: 10px; }
.btn-next:hover { transform: scale(1.02); box-shadow: 0 15px 40px var(--primary-glow); }
.btn-next:disabled { opacity: 0.5; cursor: not-allowed; background: #444 !important; }
.btn-next:disabled:hover { transform: none !important; box-shadow: none !important; }
.btn-back { background: transparent; color: var(--text-gray); padding: 12px 25px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; border: 1px solid #333; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s ease; margin-top: 10px; width: 100%; }
.btn-back:hover { border-color: var(--primary); color: var(--primary); }
.btn-finish { background: linear-gradient(45deg, var(--success), #43a047); color: white; padding: 16px 35px; border-radius: 50px; font-weight: 800; font-size: 1rem; border: none; cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3); margin-top: 10px; }
.btn-finish:hover { transform: scale(1.02); box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5); }

/* ============================================
   RESUMEN DEL PEDIDO
   ============================================ */
.summary-box { background: rgba(255, 255, 255, 0.03); padding: 18px; border-radius: 12px; margin-bottom: 18px; border: 1px solid rgba(255, 255, 255, 0.05); }
.summary-box p { padding: 7px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); font-size: 0.9rem; display: flex; gap: 8px; align-items: flex-start; }
.summary-box p:last-child { border-bottom: none; }
.summary-box p strong { color: var(--primary); min-width: 100px; flex-shrink: 0; }
.total-display { text-align: center; margin-bottom: 22px; }
.total-display .label { font-size: 0.88rem; color: var(--text-gray); margin-bottom: 5px; }
.total-display .amount { color: var(--primary); font-size: 2.5rem; font-weight: 900; text-shadow: 0 0 30px var(--primary-glow); }
.savings-badge { color: var(--danger); font-size: 0.95rem; margin-top: 5px; }

/* ============================================
   PAYPAL
   ============================================ */
#paypal-payment-element, #card-payment-element { min-height: 80px; background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%); border: 1px solid #333; border-radius: 16px; padding: 20px; margin-top: 15px; display: flex; align-items: center; justify-content: center; }
.paypal-loading-container { text-align: center; padding: 25px 20px; color: var(--text-gray); }
.paypal-loading-container i { font-size: 2rem; color: var(--primary); animation: pulse 1.5s ease-in-out infinite; display: block; margin-bottom: 10px; }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.paypal-success { text-align: center; padding: 20px; background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.05)); border: 2px solid var(--success); border-radius: 16px; margin-top: 15px; animation: slideIn 0.4s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-15px); } to { opacity: 1; transform: translateY(0); } }
.paypal-success i { font-size: 3rem; color: var(--success); display: block; margin-bottom: 12px; animation: successPop 0.5s ease; }
@keyframes successPop { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
.paypal-success h4 { color: var(--success); margin-bottom: 8px; font-size: 1.1rem; }
.paypal-success p { font-size: 0.85rem; color: #aaa; margin: 4px 0; }

/* ============================================
   TOAST
   ============================================ */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: linear-gradient(45deg, var(--primary), var(--primary-hover)); color: white; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; z-index: 9999; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px var(--primary-glow); white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   FLOATING CART
   ============================================ */
.floating-cart { position: fixed; bottom: 30px; right: 25px; background: linear-gradient(45deg, var(--primary), var(--primary-hover)); color: white; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; z-index: 999; cursor: pointer; box-shadow: 0 8px 25px var(--primary-glow); transition: all 0.3s ease; border: none; animation: pulse-cart 2s infinite; }
@keyframes pulse-cart { 0% { box-shadow: 0 0 0 0 var(--primary-glow); } 70% { box-shadow: 0 0 0 15px rgba(233, 30, 140, 0); } 100% { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0); } }
.floating-cart:hover { transform: scale(1.1); }
.floating-cart-count { position: absolute; top: -5px; right: -5px; background: white; color: var(--primary); width: 22px; height: 22px; border-radius: 50%; font-size: 0.72rem; font-weight: 900; display: flex; align-items: center; justify-content: center; }

/* ============================================
   WHATSAPP
   ============================================ */
.whatsapp-btn { position: fixed; bottom: 100px; right: 25px; background: linear-gradient(45deg, #25D366, #20b358); color: white; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 999; text-decoration: none; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); transition: all 0.3s ease; }
.whatsapp-btn:hover { transform: scale(1.1); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--darker); padding: 40px 25px; text-align: center; color: var(--text-gray); font-size: 0.88rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
footer .logo { display: inline-block; margin-bottom: 15px; }

/* ============================================
   TELÉFONO
   ============================================ */
.phone-input-group { display: flex; gap: 8px; }
.phone-select { width: 70px; flex-shrink: 0; padding: 12px 0px; font-size: 0.9rem; text-align: center; }
.phone-input { flex: 1; }
.phone-input::placeholder { font-size: 0.85rem; color: #666; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablets */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-img img { max-width: 220px; }
    .nav-search { display: none; }
    .package-options { grid-template-columns: 1fr; }
    .row { flex-direction: column; }
    
    /* Productos: 2 columnas en tablets */
    .products-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    .product-img-wrap { height: 180px; }
}

/* Móviles - 1 sola columna */
@media (max-width: 600px) {
    .products-grid { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    .product-img-wrap { height: 200px; }
    .cart-sidebar { max-width: 100%; }
    .modal-content { padding: 20px; }
    .phone-input-group { flex-direction: column; }
    .phone-select { width: 100%; }
}
/* ============================================
   MEJORAS MÓVIL
   ============================================ */

/* HEADER - Logo más pequeño en móvil */
@media (max-width: 600px) {
    .nav-container {
        padding: 0 15px;
        gap: 10px;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .logo span {
        font-size: 0.95rem;
    }
    
    .cart-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .cart-btn i {
        font-size: 1rem;
    }
    
    .cart-btn span.cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}

/* ============================================
   CARRITO SIDEBAR - MÓVIL MEJORADO
   ============================================ */
@media (max-width: 600px) {
    .cart-sidebar {
        max-width: 100%;
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 15px;
        flex-direction: row;
        justify-content: center;
        position: relative;
    }
    
    .cart-header h3 {
        font-size: 0;
        /* Ocultamos el texto "Mi Carrito" */
    }
    
    .cart-header h3::before {
        content: '\f07a';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1.4rem;
        color: var(--primary);
    }
    
    /* Icono de cierre más pequeño y a la derecha */
    .cart-close {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
    }
    
    /* Carrito vacío - más compacto */
    .cart-empty {
        padding: 40px 15px;
    }
    
    .cart-empty i {
        font-size: 2.5rem;
    }
    
    .cart-empty h3 {
        font-size: 1.1rem;
    }
    
    /* Items del carrito - más compactos */
    .cart-items {
        padding: 15px;
    }
    
    .cart-item {
        padding: 10px;
        gap: 10px;
    }
    
    .cart-item-img {
        width: 55px;
        height: 55px;
    }
    
    .cart-item-name {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
    }
    
    .cart-item-controls {
        margin-top: 5px;
    }
    
    .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    .qty-display {
        font-size: 0.85rem;
        min-width: 20px;
    }
    
    .cart-item-remove {
        top: 5px;
        right: 5px;
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    
    /* Footer del carrito */
    .cart-footer {
        padding: 15px;
    }
    
    .cart-subtotal {
        font-size: 0.85rem;
    }
    
    .cart-total {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .cart-total span:last-child {
        font-size: 1.2rem;
    }
    
    .btn-checkout {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* ============================================
   MODAL CHECKOUT - MÓVIL MEJORADO
   ============================================ */
@media (max-width: 600px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
        padding: 20px;
        margin: 0;
    }
    
    .close-modal {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .modal-header {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-indicator {
        gap: 30px;
    }
    
    .step {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    /* Resumen del carrito en modal */
    #modalCartSummary {
        font-size: 0.85rem;
    }
    
    #modalCartSummary > div {
        padding: 8px !important;
    }
    
    #modalCartSummary img {
        width: 35px !important;
        height: 35px !important;
    }
    
    /* Formularios más compactos */
    .form-step h3 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .row {
        gap: 10px;
    }
    
    /* Teléfono - select más pequeño */
    .phone-select {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
    
    /* Métodos de pago - 2 columnas */
    .payment-methods {
        gap: 8px;
    }
    
    .payment-option {
        padding: 12px 8px;
    }
    
    .payment-option i {
        font-size: 1.4rem;
    }
    
    .payment-option span {
        font-size: 0.75rem;
    }
    
    /* Cuentas bancarias */
    .bank-account-option {
        padding: 10px;
    }
    
    .bank-info strong {
        font-size: 0.85rem;
    }
    
    .bank-info span {
        font-size: 0.75rem;
    }
    
    .account-num {
        font-size: 0.85rem !important;
    }
    
    /* Upload area */
    .upload-area {
        padding: 15px;
    }
    
    .upload-area i {
        font-size: 1.4rem;
    }
    
    /* Botones */
    .btn-next {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-back {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .btn-finish {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Resumen */
    .summary-box {
        padding: 12px;
    }
    
    .summary-box p {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    
    .summary-box p strong {
        min-width: 80px;
    }
    
    .total-display .label {
        font-size: 0.8rem;
    }
    
    .total-display .amount {
        font-size: 2rem;
    }
    
    /* PayPal */
    #paypal-payment-element,
    #card-payment-element {
        min-height: 60px;
        padding: 15px;
    }
    
    .paypal-success {
        padding: 15px;
    }
    
    .paypal-success i {
        font-size: 2rem;
    }
    
    .paypal-success h4 {
        font-size: 1rem;
    }
}

/* ============================================
   FLOATING CART - MÓVIL
   ============================================ */
@media (max-width: 600px) {
    .floating-cart {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}

/* ============================================
   WHATSAPP - MÓVIL
   ============================================ */
@media (max-width: 600px) {
    .whatsapp-btn {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* ============================================
   TOAST - MÓVIL
   ============================================ */
@media (max-width: 600px) {
    .toast {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        padding: 12px 20px;
        font-size: 0.85rem;
        max-width: 90%;
    }
    
    .toast.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   HERO - MÓVIL
   ============================================ */
@media (max-width: 600px) {
    .hero-banner {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 40px;
    }
    
    .hero-inner {
        padding: 30px 15px;
    }
    
    .hero-inner h1 {
        font-size: 1.8rem;
    }
    
    .hero-inner p {
        font-size: 0.9rem;
    }
    
    .hero-badges {
        gap: 8px;
    }
    
    .hero-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .hero-img img {
        max-width: 180px;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ============================================
   CATEGORÍAS - MÓVIL
   ============================================ */
@media (max-width: 600px) {
    .categories-bar {
        top: 55px;
        padding: 12px 0;
    }
    
    .cat-btn {
        padding: 7px 14px;
        font-size: 0.78rem;
    }
}



/* ============================================
   PRODUCTO.PHP - RESPONSIVE COMPLETO
   ============================================ */

/* HEADER - Logo más pequeño en móvil */
@media (max-width: 600px) {
    .nav-container { padding: 0 15px; gap: 8px; }
    .logo { font-size: 1rem; letter-spacing: 1px; }
    .logo span { font-size: 0.9rem; }
    .cart-btn { padding: 8px 12px; font-size: 0.75rem; }
    .cart-btn i { font-size: 0.9rem; }
    .cart-count { width: 18px; height: 18px; font-size: 0.6rem; }
}

/* BREADCRUMB */
@media (max-width: 600px) {
    .breadcrumb {
        padding: 85px 15px 15px;
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 6px;
    }
}

/* PRODUCT SECTION */
@media (max-width: 900px) {
    .product-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 15px;
    }
    .product-gallery { position: static; }
    .main-img-wrap img { height: 300px; }
    .product-title { font-size: 1.6rem; }
    .price-new { font-size: 2rem; }
}

@media (max-width: 600px) {
    .product-section { padding: 10px 15px 40px; }
    .main-img-wrap { border-radius: 16px; }
    .main-img-wrap img { height: 220px; }
    .img-badge { top: 12px; left: 12px; padding: 5px 12px; font-size: 0.75rem; }
    
    .product-title { font-size: 1.3rem; margin-bottom: 10px; }
    .product-cat-link { font-size: 0.7rem; margin-bottom: 8px; }
    
    .product-rating-wrap {
        flex-wrap: wrap;
        gap: 8px;
    }
    .stars { font-size: 0.9rem; }
    .rating-text { font-size: 0.75rem; }
    .stock-badge { font-size: 0.7rem; padding: 4px 10px; }
    
    .price-section { padding: 15px; border-radius: 12px; margin-bottom: 15px; }
    .price-old { font-size: 0.95rem; }
    .price-new { font-size: 1.8rem; }
    .price-save { font-size: 0.75rem; }
    
    /* Cantidad - más compacto */
    .qty-section { margin-bottom: 15px; gap: 10px; }
    .qty-section label { font-size: 0.8rem; }
    .qty-controls { border-radius: 8px; }
    .qty-ctrl-btn { width: 32px; height: 32px; font-size: 1rem; }
    .qty-num { width: 40px; font-size: 0.9rem; }
    
    /* Botones de acción */
    .action-btns { gap: 8px; margin-bottom: 15px; }
    .btn-add-cart, .btn-buy-now {
        padding: 12px 15px;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    .btn-wishlist-prod {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    /* Features - 1 columna */
    .product-features { grid-template-columns: 1fr; gap: 8px; }
    .feature-item { padding: 10px; }
    .feature-item span { font-size: 0.75rem; }
    
    /* Tabs */
    .tabs { margin-bottom: 15px; }
    .tab-buttons { 
        gap: 3px; 
        padding: 4px; 
        border-radius: 10px;
        overflow-x: auto;
    }
    .tab-btn {
        padding: 8px 10px;
        font-size: 0.7rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    .tab-content p { font-size: 0.85rem; line-height: 1.6; }
    .tab-content ul li { font-size: 0.8rem; padding: 8px 0; padding-left: 22px; }
}

/* PRODUCTOS RELACIONADOS */
@media (max-width: 900px) {
    .related-section { padding: 0 15px 50px; }
    .related-title { font-size: 1.3rem; margin-bottom: 20px; }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .related-section { padding: 0 15px 40px; }
    .related-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .product-card { border-radius: 14px; }
    .product-img-wrap { height: 160px; }
    .product-info { padding: 12px; }
    .product-category { font-size: 0.65rem; }
    .product-name { font-size: 0.85rem; margin-bottom: 8px; }
    .product-footer { gap: 8px; }
    .new-price { font-size: 1rem; }
    .add-cart-btn { padding: 8px 12px; font-size: 0.75rem; }
}

/* CARRITO SIDEBAR - MÓVIL */
@media (max-width: 600px) {
    .cart-sidebar {
        max-width: 100%;
        width: 100%;
        right: -100%;
    }
    .cart-header { padding: 12px; }
    .cart-header h3 {
        font-size: 0;
    }
    .cart-header h3::before {
        content: '\f07a';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1.3rem;
        color: var(--primary);
    }
    .cart-close {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .cart-items { padding: 12px; }
    .cart-item {
        padding: 10px;
        gap: 10px;
    }
    .cart-item-img {
        width: 55px;
        height: 55px;
    }
    .cart-item-name { font-size: 0.8rem; }
    .cart-item-price { font-size: 0.85rem; }
    .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }
    .cart-item-remove {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    .cart-footer { padding: 12px; }
    .cart-total { font-size: 0.95rem; margin-bottom: 10px; }
    .cart-total span:last-child { font-size: 1.1rem; }
    .btn-checkout {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* MODAL CHECKOUT - MÓVIL */
@media (max-width: 600px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 18px 18px 0 0;
        padding: 18px;
        margin: 0;
    }
    .close-modal {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
    .modal-header { margin-bottom: 15px; padding-bottom: 12px; }
    .modal-header h2 { font-size: 1.1rem; margin-bottom: 10px; }
    .step-indicator { gap: 25px; }
    .step {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }
    #modalCartSummary { font-size: 0.8rem; }
    #modalCartSummary img { width: 35px !important; height: 35px !important; }
    
    /* Formularios */
    .form-step h3 { font-size: 0.9rem !important; margin-bottom: 12px !important; }
    .form-group { margin-bottom: 12px; }
    .form-group label { font-size: 0.75rem; margin-bottom: 5px; }
    .form-control { padding: 10px 12px; font-size: 0.85rem; border-radius: 8px; }
    
    /* Métodos de pago */
    .payment-methods { gap: 8px; margin-bottom: 15px; }
    .payment-option {
        padding: 10px 8px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    .payment-option i { font-size: 1.2rem; }
    
    /* Cuentas bancarias */
    .bank-account-option { padding: 10px; }
    .bank-info strong { font-size: 0.8rem; }
    .bank-info span { font-size: 0.7rem; }
    .account-num { font-size: 0.8rem !important; }
    .upload-area { padding: 15px; }
    
    /* Botones */
    .btn-next {
        padding: 12px 20px;
        font-size: 0.85rem;
        margin-top: 8px;
    }
    .btn-back {
        padding: 10px 18px;
        font-size: 0.8rem;
        margin-top: 6px;
    }
    .btn-finish {
        padding: 13px 20px;
        font-size: 0.85rem;
    }
    
    /* Resumen */
    .summary-box { padding: 12px; margin-bottom: 12px; }
    .summary-box p { font-size: 0.75rem; padding: 5px 0; }
    .summary-box p strong { min-width: 70px; }
    .total-display .label { font-size: 0.75rem; }
    .total-display .amount { font-size: 1.8rem; }
}

/* FLOATING CART - MÓVIL */
@media (max-width: 600px) {
    .floating-cart {
        bottom: 15px;
        right: 12px;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    .floating-cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
}

/* WHATSAPP - MÓVIL */
@media (max-width: 600px) {
    .whatsapp-btn {
        bottom: 70px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

/* TOAST - MÓVIL */
@media (max-width: 600px) {
    .toast {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        padding: 10px 18px;
        font-size: 0.8rem;
        max-width: 90%;
    }
    .toast.show { transform: translateX(-50%) translateY(0); }
}

/* FOOTER - MÓVIL */
@media (max-width: 600px) {
    footer {
        padding: 25px 15px;
        font-size: 0.8rem;
    }
    footer .logo { font-size: 1rem; }
}