:root {
  --bg-dark: #ED5023;   
  --bg-light: #F7802D;  
  --text: #fff7ed;      
  --muted: #fcae73;     
  --accent: #f97316;    
  --radius: 20px;
  --shadow-btn: 0 6px 18px rgba(0, 0, 0, 0.35);
  --maxw-mobile: 420px;
  --maxw-desktop: 560px;
  --black: #000000;
  --white: #fff;

  --page-h-mobile: 78svh;
  --page-h-desktop: 86svh;
}

*,*::before,*::after { box-sizing: border-box; }
html,body { height: 100%; margin: 0; }

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(90deg, #ff3131 0%, #ff914d 100%);
  -webkit-font-smoothing: antialiased;
}


.viewport {
  min-height: 100svh;
  padding: clamp(16px, 4vw, 32px);
  display: grid;
  place-items: center;
}

.card {
  width: 100%;
  max-width: var(--maxw-mobile);
  padding: 24px;
  text-align: center;
}

.brand { margin-bottom: 20px; }

.brand .logo-text {
  font-weight: 800;
}

.logo {
  width: 300px;
  height: auto;
  margin-bottom: 2px;
  display: block;
  margin-left: auto;
  margin-right: auto;

  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;

  animation: logoFadeIn 1s ease forwards;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.85));
}

.subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.actions {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform 0.1s ease, background 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
  background: #b73e0d;
}
.btn:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.45);
  outline-offset: 2px;
}

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center; /* Para alinear horizontalmente */
  flex-direction: row-reverse; /* Invertir orden para que el botón quede a la derecha */
}

.whatsapp-button {
  background-color: #ff3131;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  animation: bounceWhatsApp 1.8s infinite;
}

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

@keyframes bounceWhatsApp {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

.pulse {
  animation: pulseAnim 1.5s infinite;
}

@keyframes pulseAnim {
  0% {
    box-shadow: 0 0 0 0 #F7802D;
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-menu {
  display: none;
  flex-direction: column;
  background:#ff3131;
  border-radius: 12px;
  border: 1px solid #F7802D;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  margin-right: 12px; /* Separación horizontal */
  padding: 8px 0;
  animation: fadeInMenu 0.3s ease-out;
}

.whatsapp-menu a {
  padding: 10px 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.whatsapp-menu a:hover {
  background: #ff3131;
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-title {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 0 4px;
  color: var(--bg-light);
  border-bottom: 1px solid #c3f5d3;
  margin-bottom: 4px;
  background-color: #ff3131;
  color: #ffffff;
}

.site-title {
  position: absolute;
  top: 1px;
  left: 14px;
  font-family: "Baloo 2", sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #fff; /* naranja del logo */
  letter-spacing: 0;
  z-index: 50;
  text-indent: -9999px;
}


.seller-item {
  list-style: none;
  margin: 8px 0;
}

.seller-pick {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.seller-pick:hover {
  background: #f5f5f5;
}

.seller-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.seller-name {
  font-weight:bold;
  font-size: 20px;
  color: #fff;
  font-family: 'Poppins',sans-serif;
}

