
      
    


      
     


      {} *{} {}
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 :root { --primary-color: #1c1917; --bg-color: #fafaf9; } body { font-family: 'Lato', sans-serif; background-color: var(--bg-color); color: #292524; -webkit-tap-highlight-color: transparent; } h1, h2, h3, .serif-font { font-family: 'Playfair Display', serif; } /* Scrollbars ocultos */ .hide-scroll::-webkit-scrollbar { display: none; } .hide-scroll { -ms-overflow-style: none; scrollbar-width: none; } /* Animaciones */ .fade-in-up { animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(15px); } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } /* Botón Flotante */ .float-btn { background: rgba(28, 25, 23, 0.98); backdrop-filter: blur(10px); box-shadow: 0 15px 30px -5px rgba(0,0,0,0.25); transition: transform 0.2s ease; } .float-btn:active { transform: scale(0.97); } /* Tarjeta de Producto */ .product-card { background: white; border: 1px solid #e7e5e4; border-radius: 12px; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; } .product-card:active { transform: scale(0.98); } /* Modal Seguridad */ #security-modal { z-index: 100; } .security-content { background: #1c1917; color: #e5e5e5; border: 1px solid #333; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8); } .tech-data-footer { font-family: 'Courier New', Courier, monospace; color: #525252; font-size: 0.65rem; line-height: 1.4; margin-top: 1.5rem; border-top: 1px solid #262626; padding-top: 1rem; } /* Sticky Header */ .sticky-header { position: sticky; top: 0; z-index: 40; background: rgba(250, 250, 249, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); } .cat-btn.active { background-color: #1c1917; color: #fff; border-color: #1c1917; } /* Modal Carrito */ #cart-content { transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); } #cart-modal.active #cart-content { transform: translateY(0); } /* Upsell Card */ .upsell-card { min-width: 130px; border: 1px solid #e7e5e4; border-radius: 8px; padding: 10px; background: white; } /* Botón GPS en formulario */ .gps-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; padding: 6px 12px; border-radius: 8px; font-size: 0.75rem; font-weight: bold; display: flex; align-items: center; gap: 4px; cursor: pointer; z-index: 20; } .gps-btn:disabled { opacity: 0.6; cursor: wait; } /* --- Estilos Mapa Móvil --- */ #map-modal { z-index: 200; } .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar { border: none; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); } /* PIN FIJO EN EL CENTRO (Estilo Uber) */ #fixed-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1000; pointer-events: none; /* Permite arrastrar el mapa debajo */ transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); } /* Animación cuando se mueve el mapa */ .map-moving #fixed-pin { transform: translate(-50%, -100%) scale(1.1); } /* Sombra del pin */ #pin-shadow { position: absolute; top: 50%; left: 50%; width: 12px; height: 4px; background: rgba(0,0,0,0.3); border-radius: 50%; transform: translate(-50%, 0); z-index: 999; pointer-events: none; } /* Botón de recentrar flotante */ .recenter-map-btn { position: absolute; bottom: 100px; right: 16px; z-index: 1000; background: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.15); color: #1c1917; font-size: 1.2rem; border: 1px solid #e5e7eb; cursor: pointer; } .recenter-map-btn:active { transform: scale(0.9); background: #f3f4f6; } 

