/* ─────────────────────────────────────────────────────────
   COTIZADOR PROMO EN AMERICA  v2.0
   Paleta: Naranja #EF6827 | Negro #19161a | Grafito #444242
───────────────────────────────────────────────────────── */

#cpea-cotizador {
  font-family: 'Mulish', Arial, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  color: #19161a;
}

/* ── SECCIONES ───────────────────────────────────────────── */
.cpea-section {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 28px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.cpea-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #19161a;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid #EF6827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cpea-icon { font-size: 18px; }

.cpea-badge {
  background: #EF6827;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}

/* ── BUSCADOR ────────────────────────────────────────────── */
.cpea-section--search { padding-bottom: 20px; }

.cpea-search-wrap {
  position: relative;
}

.cpea-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  opacity: .5;
}

#cpea-search {
  width: 100%;
  padding: 12px 16px 12px 40px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
  font-family: inherit;
}
#cpea-search:focus { border-color: #EF6827; }

.cpea-hint {
  margin: 8px 0 0;
  font-size: 13px;
  color: #888;
}

/* ── RESULTADOS BÚSQUEDA ─────────────────────────────────── */
.cpea-resultados {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  z-index: 999;
  max-height: 340px;
  overflow-y: auto;
}

.cpea-resultado-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
  cursor: default;
}
.cpea-resultado-item:last-child { border-bottom: none; }
.cpea-resultado-item:hover { background: #fdf4ef; }
.cpea-resultado-item.cpea-ya-agregado { background: #f9f5f2; }

.cpea-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid #eee;
}
.cpea-thumb--empty {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  font-size: 20px;
  border-radius: 6px;
  flex-shrink: 0;
}

.cpea-resultado-info { flex: 1; min-width: 0; }
.cpea-resultado-info strong {
  display: block;
  font-size: 14px;
  color: #19161a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cpea-sku { font-size: 12px; color: #aaa; }

.cpea-resultado-accion { flex-shrink: 0; }

.cpea-btn-add {
  background: #EF6827;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.cpea-btn-add:hover { background: #d45a1e; }

.cpea-check { font-size: 13px; color: #2e7d32; font-weight: 600; }

.cpea-no-result {
  padding: 16px;
  font-size: 14px;
  color: #888;
  text-align: center;
}

/* ── CARRUSEL DE CATEGORÍAS ──────────────────────────────── */
.cpea-section--cats { padding: 20px 30px; }

.cpea-cats-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #EF6827 #f0f0f0;
  scroll-behavior: smooth;
}
.cpea-cats-carousel::-webkit-scrollbar { height: 4px; }
.cpea-cats-carousel::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
.cpea-cats-carousel::-webkit-scrollbar-thumb { background: #EF6827; border-radius: 2px; }

.cpea-cat-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 96px;
  padding: 12px 8px 10px;
  background: #fafafa;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
  user-select: none;
}
.cpea-cat-card:hover {
  border-color: #EF6827;
  background: #fff8f5;
  transform: translateY(-2px);
}
.cpea-cat-card.cpea-cat-active {
  border-color: #EF6827;
  background: #fff3ed;
  box-shadow: 0 3px 10px rgba(239,104,39,.18);
}

.cpea-cat-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  overflow: hidden;
  flex-shrink: 0;
}
.cpea-cat-active .cpea-cat-icon-wrap { background: #fde4d4; }

.cpea-cat-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.cpea-cat-emoji { font-size: 26px; line-height: 1; }

.cpea-cat-name {
  font-size: 11px;
  font-weight: 700;
  color: #444242;
  line-height: 1.2;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cpea-cat-active .cpea-cat-name { color: #EF6827; }

.cpea-cat-count {
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
}

/* ── GRILLA DE PRODUCTOS ─────────────────────────────────── */
.cpea-section--grid { padding: 24px 30px; }

.cpea-grid-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.cpea-grid-title {
  font-size: 16px;
  font-weight: 700;
  color: #19161a;
  margin: 0;
}

.cpea-total-label {
  font-size: 13px;
  color: #aaa;
  font-weight: 600;
}

.cpea-productos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cpea-prod-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .15s;
  cursor: default;
}
.cpea-prod-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.cpea-prod-card.cpea-prod-added {
  border-color: #EF6827;
  background: #fffaf7;
}

.cpea-prod-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cpea-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cpea-prod-img--empty {
  font-size: 32px;
  opacity: .35;
}

.cpea-prod-body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cpea-prod-name {
  font-size: 12px;
  font-weight: 700;
  color: #19161a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cpea-prod-sku {
  font-size: 10px;
  color: #bbb;
}

.cpea-prod-btn {
  margin-top: auto;
  padding: 6px 8px;
  border-radius: 6px;
  border: none;
  background: #EF6827;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.cpea-prod-btn:hover { background: #d45a1e; }

.cpea-prod-btn--added {
  background: #f0fdf4;
  color: #2e7d32;
  border: 1px solid #86efac;
  cursor: default;
}
.cpea-prod-btn--added:hover { background: #f0fdf4; }

/* ── PAGINACIÓN ──────────────────────────────────────────── */
.cpea-paginacion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cpea-pag-btn,
.cpea-pag-num {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  background: #fff;
  color: #444242;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpea-pag-btn:hover,
.cpea-pag-num:hover {
  border-color: #EF6827;
  color: #EF6827;
}
.cpea-pag-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.cpea-pag-btn:disabled:hover {
  border-color: #e0e0e0;
  color: #444242;
}

.cpea-pag-nums { display: flex; gap: 6px; }

.cpea-pag-num--active {
  background: #EF6827;
  border-color: #EF6827;
  color: #fff;
}
.cpea-pag-num--active:hover {
  background: #d45a1e;
  border-color: #d45a1e;
  color: #fff;
}

/* ── ESTADOS: LOADING / EMPTY ────────────────────────────── */
.cpea-loading {
  text-align: center;
  padding: 32px 16px;
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
}
.cpea-loading::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid #f0f0f0;
  border-top-color: #EF6827;
  border-radius: 50%;
  animation: cpea-spin .7s linear infinite;
  margin: 0 auto 12px;
}

@keyframes cpea-spin {
  to { transform: rotate(360deg); }
}

.cpea-empty {
  text-align: center;
  padding: 32px 16px;
  color: #aaa;
  font-size: 14px;
  grid-column: 1 / -1;
}

/* ── CARRITO ─────────────────────────────────────────────── */
.cpea-carrito-row {
  display: grid;
  grid-template-columns: 1fr 150px 1fr 36px;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cpea-carrito-row:last-child { border-bottom: none; }

.cpea-carrito-nombre strong {
  display: block;
  font-size: 14px;
  color: #19161a;
}
.cpea-carrito-nombre .cpea-sku { margin-top: 2px; }

.cpea-carrito-cantidad label,
.cpea-carrito-nota label {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.cpea-qty-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cpea-qty-btn {
  width: 30px; height: 30px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.cpea-qty-btn:hover { background: #EF6827; color: #fff; border-color: #EF6827; }
.cpea-qty-input {
  width: 52px;
  text-align: center;
  padding: 5px 4px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.cpea-qty-input::-webkit-outer-spin-button,
.cpea-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cpea-nota-input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.cpea-nota-input:focus { border-color: #EF6827; }

.cpea-btn-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color .15s;
  margin-top: 4px;
}
.cpea-btn-remove:hover { color: #e53e3e; }

/* ── FORMULARIO ──────────────────────────────────────────── */
.cpea-grid-form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* backward compat alias */
.cpea-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.cpea-field { display: flex; flex-direction: column; }

.cpea-field label {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  margin-bottom: 6px;
}

.cpea-req { color: #EF6827; }

.cpea-field input,
.cpea-field textarea {
  padding: 11px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.cpea-field input:focus,
.cpea-field textarea:focus { border-color: #EF6827; }
.cpea-field textarea { resize: vertical; min-height: 80px; }

/* ── MENSAJES ────────────────────────────────────────────── */
.cpea-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin: 16px 0;
  font-weight: 600;
}
.cpea-msg--error {
  background: #fff0f0;
  color: #c53030;
  border: 1px solid #fed7d7;
}
.cpea-msg--exito {
  background: #f0fff4;
  color: #276749;
  border: 1px solid #9ae6b4;
}

/* ── BOTÓN ENVIAR ────────────────────────────────────────── */
.cpea-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #EF6827;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  margin-top: 8px;
  width: 100%;
}
.cpea-btn:hover:not(:disabled) { background: #d45a1e; }
.cpea-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: .7;
}

.cpea-disclaimer {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cpea-productos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  #cpea-cotizador { font-size: 14px; }

  .cpea-section { padding: 18px 14px; }
  .cpea-section--cats { padding: 16px 14px; }
  .cpea-section--grid { padding: 18px 14px; }

  .cpea-productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cpea-cat-card { width: 80px; padding: 10px 6px 8px; }
  .cpea-cat-icon-wrap { width: 44px; height: 44px; }
  .cpea-cat-img { width: 44px; height: 44px; }
  .cpea-cat-emoji { font-size: 22px; }

  .cpea-grid-form-2,
  .cpea-grid-2 { grid-template-columns: 1fr; }

  .cpea-carrito-row {
    grid-template-columns: 1fr 36px;
    grid-template-rows: auto auto auto;
  }
  .cpea-carrito-cantidad { grid-column: 1; }
  .cpea-carrito-nota     { grid-column: 1; }
  .cpea-btn-remove       { grid-column: 2; grid-row: 1; }
}
