/* =======================================
   Input principal de búsqueda
   ======================================= */
.el-input.el-input--large .el-input__wrapper {
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 6px 14px;
  transition: all 0.3s ease;
}

/* Hover y focus */
.el-input.el-input--large:hover .el-input__wrapper {
  border-color: #c0c0c0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}
.el-input.el-input--large.is-focus .el-input__wrapper {
  border-color: #409eff;
  box-shadow: 0 0 0 3px rgba(64,158,255,0.2);
}

/* =======================================
   Input interno (texto)
   ======================================= */
.el-input__inner {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  padding: 6px 0; /* se ajusta por prefix/suffix */
  background: transparent !important; /* evita fondo raro */
  box-shadow: none !important;
}

/* Placeholder */
.el-input__inner::placeholder {
  color: #aaa;
  font-style: italic;
}

/* =======================================
   Prefix (ícono de búsqueda)
   ======================================= */
.el-input__prefix {
  margin-right: 8px;
  color: #666;
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* =======================================
   Suffix (loader o Clear)
   ======================================= */
.el-input__suffix {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

/* Link "Clear" */
.el-input__suffix .el-link {
  font-size: 13px;
  font-weight: 500;
  color: #409eff !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.el-input__suffix .el-link:hover {
  color: #66b1ff !important;
}

/* =======================================
   Loader (circle-loader)
   ======================================= */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-loader {
  border: 3px solid #f3f3f3; /* gris claro */
  border-top: 3px solid #409eff; /* color primario */
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}

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


.card-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 20px auto;
  padding: 16px 20px;
  background: linear-gradient(90deg, #f0fff4, #e6fffa);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  animation: fadeIn 0.4s ease-out;
  font-family: Arial, sans-serif;
}

.card-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background: #c6f6d5;
  color: #2f855a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.text-content .title {
  margin: 0;
  font-weight: bold;
  color: #2d3748;
  font-size: 15px;
}

.text-content .subtitle {
  margin: 0;
  font-size: 13px;
  color: #718096;
}

.btn-details {
  background: #38a169;
  border: none;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.btn-details:hover {
  background: #2f855a;
  transform: scale(1.05);
}
  
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.delivery-banner {
  display: flex;
  align-items: center;
  justify-content: center; /* 🔥 centramos contenido interno */
  gap: 10px;
  width: 100%;             /* ocupa todo el ancho del contenedor */
  max-width: 500px;        /* no se hace gigante en pantallas grandes */
  margin: 16px auto;       /* 🔥 centra el bloque */
  padding: 12px 16px;
  background: #fffaf0;
  border: 1px solid #fbd38d;
  border-radius: 10px;
  color: #b7791f;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  animation: fadeIn 0.4s ease-out;
}

.delivery-banner i {
  font-size: 18px;
  color: #dd6b20;
}


/*---------- MOBILE APP SECTION ---------------*/
.section-mobileapp-pwa {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.phone-frame {
  display: inline-block;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.phone-img {
  max-width: 250px;
  border-radius: 30px;
  transition: transform 0.3s ease;
}
.phone-img:hover {
  transform: scale(1.05);
}

.pwa-title {
  font-size: 48px;
  font-weight: 900;
  color: #0019FF; /* Azul fuerte */
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
.pwa-title span {
  color: #E5FF39; /* Verde neon */
}

.pwa-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 30px;
  max-width: 420px;
}

.pwa-btn {
  display: inline-block;
  background: #0046ff; /* Azul base */
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,70,255,0.35);
  transition: all 0.3s ease;
}
.pwa-btn:hover {
  background: #0019FF; /* Azul fuerte en hover */
  transform: scale(1.07);
}

.pwa-qr {
  margin-top: 25px;
}
.pwa-qr img {
  width: 120px;
  margin-bottom: 10px;
}
.pwa-qr p {
  font-size: 14px;
  color: #6c757d;
}
