/* KOMOPEDIR - Estilos Customizados */

:root {
    --primary: #1e3a8a;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --background: #f8fafc;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    margin: 0;
  }
  
  /* Scrollbar Custom */
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }
  
  .hide {
    display: none !important;
  }
  
  /* Layout Animado */
  .screen-fade-in {
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Cards Estilizados */
  .k-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s;
  }
  
  .k-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
  }
  
  /* Botões */
  .btn-primary {
    background: var(--primary);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
  }
  
  .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  
  /* Utility for fixed bottom cart */
  .cart-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
    z-index: 50;
  }
