/* MotoFlowStudio — SHARED BASE CSS
   Only styles used by both Store and Admin.
*/

/* ╔══════════════════════════════════════════════════════════════════╗
   ║                    SISTEMA DE DISEÑO CSS                       ║
   ║  Breakpoints: 480px · 768px · 1024px · 1440px                ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  1. VARIABLES Y CONFIGURACIÓN BASE                            ║
   ╚══════════════════════════════════════════════════════════════════╝ */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --fg-primary: #ffffff;
  --fg-muted: #888888;
  --accent: #ff4d00;
  --accent-hover: #ff6a2c;
  --border: #2a2a2a;
  --bg-Blackpure: #000;
  --sidebar-width: 260px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.3s ease;
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  2. RESET & BASE                                              ║
   ╚══════════════════════════════════════════════════════════════════╝ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 12px;}
body { font-family: 'Inter', sans-serif; background-color: var(--bg-Blackpure); color: var(--fg-primary); overflow-x: hidden; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  3. ANIMACIONES                                               ║
   ╚══════════════════════════════════════════════════════════════════╝ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-skeleton { 0% { background-position: -200px 0; } 100% { background-position: calc(200px + 100%) 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }
@keyframes caption-in { to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-brands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes whatsapp-pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 50% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@keyframes chatPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4), 0 0 0 0 rgba(255, 77, 0, 0.3); } 50% { box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4), 0 0 0 12px rgba(255, 77, 0, 0); } }
@keyframes chatBadgePop { 0% { transform: scale(0); } 70% { transform: scale(1.2); } 100% { transform: scale(1); } }
@keyframes chatBubbleIn { 0% { opacity: 0; transform: translateY(10px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes chatTypingDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }
@keyframes chatLoadDot { 0%, 100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes chatFlash { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes cajaPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes qty-pop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
@keyframes slideUpEfectivo { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  4. UTILIDADES GENERALES                                      ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.hidden { display: none; }
.rotate-180 { transform: rotate(180deg); }

/* Ripple */
.btn-primary, .btn-icon { position: relative; overflow: hidden; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.4); transform: scale(0); animation: ripple 0.6s linear; pointer-events: none; }

/* Animaciones de entrada */
.fade-in-up { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Skeleton loading */
.skeleton { background-color: #232323; background-image: linear-gradient(to right, #232323 0%, #2e2e2e 20%, #232323 40%, #232323 100%); background-size: 200px 100%; background-repeat: no-repeat; border-radius: 4px; animation: pulse-skeleton 1.5s ease-in-out infinite; }
.skeleton-card { border-radius: 16px; height: 320px; }

/* Spinner */
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; }

/* Bloquear scroll con modal */
html.modal-open, body.modal-open { overflow: hidden !important; touch-action: none; position: fixed !important; width: 100%; }
body.modal-open { margin: 0 !important; padding-right: 0 !important; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  5. APP CONTAINERS & LOADER                                  ║
   ╚══════════════════════════════════════════════════════════════════╝ */
#app-tienda, #app-admin { transition: opacity 0.4s ease-in-out; }
#cart-modal.modal-overlay { z-index: 300 !important; }

/* Loader */
#loader-screen {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: #000; z-index: 999999;
  display: flex; justify-content: center; align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader-screen.loader-hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; width: 300px; display: flex; flex-direction: column; align-items: center; }
.loader-logo-container { margin-bottom: 30px; width: 100%; }
.loader-gif { width: 100%; max-width: 250px; height: auto; border-radius: 10px; }
.loader-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 4px; color: #888; margin-top: 15px; text-transform: uppercase; }
.loader-bar-bg { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--accent), #ff6a2c); transition: width 0.3s ease-out; }

/* Noise overlay */
.noise-overlay {
  position: fixed; inset: 0; opacity: 0.03; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  7. BOTONES                                                   ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.btn-primary {
  background: var(--accent); color: white;
  padding: 14px 32px; font-weight: 600; border-radius: 4px;
  transition: all var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 77, 0, 0.3); }
.btn-primary:active { transform: translateY(0); }

.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s; }
.btn-success { background: #10b981; color: white; } .btn-success:hover { background: #059669; }
.btn-danger { background: #ef4444; color: white; } .btn-danger:hover { background: #dc2626; }
.btn-secondary { background: #4b5563; color: white; } .btn-secondary:hover { background: #374151; }

.btn-icon {
  width: 36px; height: 36px; border-radius: 6px; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); color: white; transition: all 0.2s;
}
.btn-icon:hover { background: rgba(255,255,255,0.15); }
.btn-icon.delete:hover { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  12. LIGHTBOX PREMIUM                                         ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity 0.3s ease;
}
.lightbox-overlay.active { display: flex; opacity: 1; }
.lightbox-content-new {
  display: flex; max-width: 960px; width: 100%; max-height: 88vh;
  background: linear-gradient(165deg, #0f0f0f 0%, #080808 50%, #0c0c0c 100%);
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .8), 0 0 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .04);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-overlay.active .lightbox-content-new { transform: scale(1) translateY(0); }

/* Columna imagen */
.lightbox-img-col {
  flex: 1.3; position: relative; background: #050505;
  display: flex; align-items: center; justify-content: center;
  padding: 30px; min-height: 400px; overflow: hidden;
}
.lightbox-img-col::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255, 120, 0, .06), transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(0, 100, 255, .04), transparent 50%);
  pointer-events: none;
}
.lightbox-main-img { max-width: 100%; max-height: 72vh; object-fit: contain; position: relative; z-index: 2; border-radius: 8px; transition: opacity 0.25s ease; }
.product.variant-fade { opacity: 0.15; }

/* Flechas */
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(10, 10, 10, .8); border: 1px solid rgba(255, 255, 255, .08);
  color: white; cursor: pointer; display: none; align-items: center; justify-content: center;
  transition: all 0.25s ease; backdrop-filter: blur(10px);
}
.lb-arrow:hover { background: rgba(255, 120, 0, .2); border-color: rgba(255, 120, 0, .4); transform: translateY(-50%) scale(1.1); }
.lb-arrow-left { left: 16px; }
.lb-arrow-right { right: 16px; }
.lb-arrow svg { width: 18px; height: 18px; }

/* Dots */
.lb-dots-nav {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10; padding: 8px 14px;
  background: rgba(0, 0, 0, .6); border-radius: 20px; backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .05);
}
.lb-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s ease; }
.lb-dot.active { background: #ff7a00; box-shadow: 0 0 8px rgba(255, 120, 0, .5); transform: scale(1.3); }
.lb-dot:hover:not(.active) { background: rgba(255,255,255,0.4); }

/* Columna info */
.lightbox-info-col { flex: 1; display: flex; flex-direction: column; border-left: 1px solid rgba(255, 255, 255, .04); position: relative; min-width: 0; }
.lightbox-close-new {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255, .05); border: 1px solid rgba(255, 255,255, .08);
  color: #666; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: all 0.2s ease; line-height: 1;
}
.lightbox-close-new:hover { background: rgba(239, 68, 68, .15); border-color: rgba(239, 68, 68, .3); color: #ef4444; transform: rotate(90deg); }
.lightbox-info-scroll { flex: 1; overflow-y: auto; padding: 28px 24px 24px; }
.lightbox-info-scroll::-webkit-scrollbar { width: 3px; }
.lightbox-info-scroll::-webkit-scrollbar-track { background: transparent; }
.lightbox-info-scroll::-webkit-scrollbar-thumb { background: rgba(255, 120, 0, .2); border-radius: 10px; }

/* Info detalle */
.lb-badge { display: inline-block; padding: 4px 14px; background: linear-gradient(135deg, rgba(255, 120, 0, .15), rgba(255, 120, 0, .05)); border: 1px solid rgba(255, 120, 0, .2); border-radius: 20px; color: #ff7a00; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-family: 'Poppins', sans-serif; margin-bottom: 6px; }
.lb-title { color: white; font-size: 22px; font-weight: 800; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; font-family: 'Poppins', sans-serif; }
.lb-prices { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.lb-price-current { color: #ff7a00; font-size: 28px; font-weight: 800; font-family: 'Poppins', sans-serif; line-height: 1; }
.lb-price-old { color: #444; font-size: 15px; text-decoration: line-through; font-weight: 500; }
.lb-desc { color: #777; font-size: 13px; line-height: 1.6; margin-bottom: 20px; }

/* Badges info */
.lb-info-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.lb-info-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; }
.lb-info-badge.color-badge { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); color: #ccc; }
.lb-info-badge.size-badge { background: rgba(255, 120, 0, .08); border: 1px solid rgba(255, 120, 0, .15); color: #ff7a00; }
.lb-info-badge-label { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: #555; margin-right: 2px; }
.lb-info-badge-values { display: flex; gap: 4px; }
.lb-info-badge-values span { padding: 2px 8px; background: rgba(255,255,255,0.06); border-radius: 4px; font-size: 11px; }

/* Features */
.lb-features { margin-top: 4px; }
.feature-list-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, .03); }
.feature-list-item:last-child { border-bottom: none; }
.feature-icon { color: #ff7a00; font-size: 12px; margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center; }
.feature-list-item strong { color: #888; font-size: 12px; font-weight: 600; margin-right: 4px; white-space: nowrap; }
.feature-list-item span { color: #ccc; font-size: 12px; line-height: 1.4; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  19. MODALS - BASE                                            ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 200;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 10px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
  background: var(--bg-secondary); border: 1px solid var(--border);
  width: 100%; max-width: 800px; max-height: 90vh;
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
  transform: scale(0.9); transition: transform 0.3s ease;
}
.modal-overlay.active .modal-container { transform: scale(1); }
.modal-small { max-width: 400px; }
.modal-header {
  padding: 20px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.modal-body { padding: 20px; overflow-y: auto; flex: 1; }
.modal-footer {
  display: flex; justify-content: flex-end; align-items: center; gap: 10px;
  padding: 20px; border-top: 1px solid var(--border);
  background: var(--bg-card); flex-shrink: 0;
}
.modal-footer .btn-primary, .modal-footer button { flex: 1; margin: 0; }

/* Form inputs */
.form-input {
  width: 100%; padding: 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-primary);
  color: white; margin-bottom: 12px; transition: border-color 0.2s; font-size: 16px;
}
.form-input:focus { border-color: var(--accent); outline: none; }

/* Category modal */
.category-modal-container { width: 100vw; height: 100vh; max-width: 100%; border-radius: 0; display: grid; grid-template-columns: 280px 1fr; }
#product-modal .modal-container { max-width: 550px !important; width: 100%; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  21. TOAST                                                     ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: #333; color: white; padding: 12px 20px; border-radius: 8px;
  border-left: 4px solid var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0; transform: translateX(100%); transition: all 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(0); }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  28. RECUPERACIÓN DE CONTRASEÑA                               ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.recup-modal-input {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 10px;
  background: rgba(0,0,0,0.3); color: #fff; font-size: 16px;
  text-align: center; letter-spacing: 2px; outline: none; transition: border-color 0.3s;
}
.recup-modal-input:focus { border-color: rgba(255, 77, 0, 0.5); }
.recup-codigo-row { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 16px; }
.recup-codigo-input { width: 160px; text-align: center; font-family: 'Courier New', monospace; font-size: 28px; letter-spacing: 8px; text-transform: uppercase; }
.recup-timer { text-align: center; font-size: 13px; color: #ff4d00; font-weight: 700; margin-top: 8px; font-variant-numeric: tabular-nums; }
.recup-step { display: none; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  30. BADGES                                                    ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.badge { padding: 4px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.badge-pending { background: #fbbf24; color: black; }
.badge-process { background: #3b82f6; color: white; }
.badge-ready { background: #10b981; color: white; }
.badge-sent { background: #8b5cf6; color: white; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  39. SCROLLBARS PERSONALIZADOS                                ║
   ╚══════════════════════════════════════════════════════════════════╝ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; border: 2px solid #0a0a0a; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  40. SWEETALERT OVERRIDES                                      ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.swal2-popup { background-color: #141414 !important; color: #fff !important; border: 1px solid #2a2a2a; border-radius: 12px !important; }
.swal2-title { color: #fff !important; }
.swal2-confirm { background-color: var(--accent) !important; border-radius: 4px !important; }
.swal2-cancel { background-color: #333 !important; border-radius: 4px !important; color: #fff !important; }

/* Shared responsive rules */
@media (max-width: 768px) {
  .modal-overlay { padding:0; align-items:flex-end; }
  .modal-container { border-radius:var(--radius-lg) var(--radius-lg) 0 0; max-height:92vh; width:100%; transform:translateY(100%); }
  .modal-overlay.active .modal-container { transform:translateY(0); }
  .modal-small { max-width:100%; }
  .modal-footer { flex-direction:column; gap:8px; }
  .modal-footer .btn-primary, .modal-footer button { width:100%; }
  .lightbox-overlay { padding:0; }
  .lightbox-content-new { flex-direction:column; max-height:95vh; border-radius:var(--radius-lg) var(--radius-lg) 0 0; }
  .lightbox-img-col { min-height:280px; padding:20px; border-bottom:1px solid rgba(255,255,255,.04); }
  .lightbox-info-col { border-left:none; border-top:1px solid rgba(255,255,255,.04); }
  .lightbox-main-img { max-height:45vh; }
  .lb-arrow { width:36px; height:36px; } .lb-arrow-left { left:10px; } .lb-arrow-right { right:10px; }
  .lb-title { font-size:18px; } .lb-price-current { font-size:24px; }
  .lb-dots-nav { bottom:14px; padding:6px 12px; gap:6px; } .lb-dot { width:6px; height:6px; }
  .lightbox-close-new { top:10px; right:10px; width:32px; height:32px; font-size:18px; }
  .lightbox-info-scroll { padding:20px 16px 24px; }
}
@media (max-width: 480px) {
  .user-avatar { width:32px; height:32px; font-size:12px; }
  .user-dropdown { width:180px; }
  .form-input { padding:10px; font-size:14px; }
  .modal-header { padding:16px; } .modal-header h3 { font-size:1.3rem; } .modal-body { padding:16px; }
  .btn-primary { padding:12px 20px; font-size:14px; width:100%; } .btn-sm { padding:8px 12px; } .btn-icon { width:40px; height:40px; }
  .lightbox-img-col { min-height:220px; padding:14px; }
  .lb-title { font-size:16px; } .lb-price-current { font-size:20px; } .lb-price-old { font-size:13px; } .lb-desc { font-size:12px; }
  .lb-badge { font-size:10px; padding:3px 10px; } .lb-info-badge { padding:4px 10px; font-size:11px; } .lb-info-badge-values span { padding:1px 6px; font-size:10px; }
  .feature-list-item { padding:6px 0; gap:6px; } .feature-list-item strong,.feature-list-item span { font-size:11px; } .feature-icon { font-size:10px; width:14px; }
  .lb-dots-nav { bottom:10px; padding:5px 10px; gap:5px; } .lb-dot { width:5px; height:5px; }
  .lightbox-close-new { top:8px; right:8px; width:28px; height:28px; font-size:16px; } .lightbox-info-scroll { padding:16px 12px 20px; }
}
