
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfaf5;
  color: #292524;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;



  
}
/* Loader Styles */
.loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fdfaf5;
  color: #8d6e63;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #b45309;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* SEO Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 65px;
    bottom: 12px;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animación para llamar la atención */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Estilos del formulario de pedido rápido */
.pedido-rapido {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  border: 1px solid #f1ece8;
}

#form-pedido input,
#form-pedido select,
#form-pedido textarea {
  width: 100%;
  border: 1px solid #ddd7d0;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 0.95rem;
  color: #292524;
  background: #fff;
}

#form-pedido textarea {
  resize: vertical;
}

#form-pedido .btn-pedido {
  background: #f59e0b;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

#form-pedido .btn-pedido:hover {
  background: #d97706;
  transform: translateY(-1px);
}
