/* ============================================================
   BOTILLERÍA PORVENIR — Catálogo Styles
   ============================================================ */

/* ── Header del catálogo ───────────────────────────────── */
.catalogo-header {
  padding: 100px 0 2rem;
  background: linear-gradient(180deg, #0A0F0A 0%, rgba(46, 139, 34, 0.04) 100%);
  border-bottom: 1px solid var(--border);
}

.catalogo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.catalogo-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.catalogo-title span {
  color: var(--naranja);
}

.catalogo-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Search ────────────────────────────────────────────────── */
.catalogo-search-wrap {
  flex-shrink: 0;
}

.catalogo-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 35, 20, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.6rem 1.25rem;
  min-width: 320px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalogo-search:focus-within {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(46, 139, 34, 0.12);
}

.search-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-clear {
  color: var(--text-muted);
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.search-clear.visible {
  opacity: 1;
}

/* ── Layout ─────────────────────────────────────────────── */
.catalogo-main {
  padding: 2rem 0 4rem;
}

.catalogo-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Sidebar ────────────────────────────────────────────── */
.catalogo-sidebar {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.sidebar-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--naranja);
  letter-spacing: 0.05em;
}

.sidebar-toggle-mobile {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
}

.sidebar-cats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar-cat-item button {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.sidebar-cat-item button:hover {
  background: rgba(46, 139, 34, 0.1);
  color: var(--text-primary);
}

.sidebar-cat-item button.active {
  background: rgba(46, 139, 34, 0.2);
  color: var(--naranja);
  font-weight: 700;
}

.sidebar-cat-emoji {
  font-size: 1.1rem;
}

.sidebar-cat-count {
  margin-left: auto;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.1rem 0.4rem;
  border-radius: 100px;
  color: var(--text-muted);
}

/* ── Controls ───────────────────────────────────────────── */
.catalogo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catalogo-results {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#resultNum {
  font-weight: 800;
  color: var(--naranja);
  font-size: 1rem;
}

.filter-active-tag {
  background: rgba(46, 139, 34, 0.2);
  color: var(--verde-glow);
  border: 1px solid rgba(46, 139, 34, 0.3);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.catalogo-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-open-sidebar {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-open-sidebar:hover {
  border-color: var(--verde);
  color: var(--text-primary);
}

/* ── Subcategorías tabs ─────────────────────────────────── */
.subcats-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.subcat-tab {
  background: rgba(20, 35, 20, 0.6);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.subcat-tab:hover {
  border-color: var(--naranja);
  color: var(--naranja);
}

.subcat-tab.active {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--naranja);
  color: var(--naranja);
}

/* ── Productos Grid ─────────────────────────────────────── */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* ── Tarjeta de Producto ────────────────────────────────── */
.producto-card {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  cursor: default;
}

.producto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.producto-img-wrap {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(46, 139, 34, 0.08), rgba(245, 166, 35, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.producto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.producto-badge-promo {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: linear-gradient(135deg, var(--naranja), #FF6B35);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.producto-body {
  padding: 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.producto-cat-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.producto-nombre {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.35;
  flex: 1;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.producto-descripcion {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.producto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.producto-precio {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--naranja);
  line-height: 1;
}

.btn-agregar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--verde), var(--verde-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-agregar:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-verde);
}

.btn-agregar:active {
  transform: scale(0.97);
}

.btn-agregar.added {
  background: linear-gradient(135deg, var(--naranja), var(--naranja-dark));
}

/* Counter inline en la card */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(20, 35, 20, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.2rem;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--naranja);
  font-size: 1rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.15s;
}

.qty-btn:hover {
  background: rgba(245, 166, 35, 0.15);
}

.qty-num {
  font-weight: 700;
  font-size: 0.875rem;
  min-width: 20px;
  text-align: center;
}

/* ── Empty / Carga ──────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  margin-bottom: 1.5rem;
}

/* ── Paginación ─────────────────────────────────────────── */
.paginacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem 0 1rem;
  flex-wrap: wrap;
}

.pag-btn {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0 0.5rem;
}

.pag-btn:hover {
  border-color: var(--naranja);
  color: var(--naranja);
}

.pag-btn.active {
  background: var(--naranja);
  color: #000;
  border-color: var(--naranja);
  font-weight: 800;
}

.pag-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Carrito Drawer ─────────────────────────────────────── */
.carrito-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.carrito-overlay.open {
  opacity: 1;
  visibility: visible;
}

.carrito-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #111B11;
  border-left: 1px solid var(--border-bright);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carrito-drawer.open {
  transform: translateX(0);
}

.carrito-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.carrito-drawer-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--naranja);
}

.carrito-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrito-close:hover {
  background: rgba(220, 50, 50, 0.15);
  color: #FF6B6B;
  border-color: rgba(220, 50, 50, 0.3);
}

.carrito-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.carrito-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
}

.carrito-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem;
  background: rgba(20, 35, 20, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.carrito-item-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.carrito-item-info {
  flex: 1;
  min-width: 0;
}

.carrito-item-nombre {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.carrito-item-precio {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--naranja);
}

.carrito-item-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.carrito-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem;
  transition: color 0.2s;
}

.carrito-item-remove:hover {
  color: #FF6B6B;
}

.carrito-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.carrito-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.carrito-total-precio {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--naranja);
}

.carrito-nota textarea {
  resize: none;
  font-size: 0.85rem;
}

/* ── Tipo de entrega ────────────────────────────────────── */
.carrito-entrega {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.entrega-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.entrega-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 35, 20, 0.6);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.entrega-option:hover {
  border-color: var(--verde);
  color: var(--text-primary);
  background: rgba(46, 139, 34, 0.08);
}

.entrega-option input[type="radio"] {
  display: none;
}

.entrega-option:has(input:checked) {
  background: rgba(46, 139, 34, 0.18);
  border-color: var(--verde-glow);
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(46, 139, 34, 0.18);
}

.entrega-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.entrega-txt {
  line-height: 1.2;
}

/* ── Método de pago ────────────────────────────────────── */
.carrito-pago {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.pago-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.pago-btn {
  background: rgba(20, 35, 20, 0.6);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.pago-btn:hover {
  border-color: var(--naranja);
  color: var(--text-primary);
  background: rgba(245, 166, 35, 0.05);
}

.pago-btn.active {
  background: rgba(46, 139, 34, 0.2);
  border-color: var(--verde-glow);
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(46, 139, 34, 0.2);
}

.pago-emoji {
  font-size: 1.2rem;
}

.pago-texto {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .catalogo-layout {
    grid-template-columns: 1fr;
  }

  .catalogo-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    border-radius: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  .catalogo-sidebar.open {
    transform: translateX(0);
  }

  .sidebar-toggle-mobile {
    display: block;
  }

  .btn-open-sidebar {
    display: flex;
  }
}

@media (max-width: 768px) {
  .catalogo-header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .catalogo-search-wrap {
    width: 100%;
  }

  .catalogo-search {
    min-width: unset;
  }

  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carrito-drawer {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .productos-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Dirección de entrega ────────────────────────────────── */
.carrito-nota input.input-field {
  font-size: 0.9rem;
}

/* ── Modal de Confirmación de Transferencia ─────────────── */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.confirm-overlay.open {
  opacity: 1;
  visibility: visible;
}

.confirm-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-xl);
  background: #111B11;
  border: 1px solid var(--border-bright);
  animation: slide-up 0.35s ease;
}

@keyframes slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.confirm-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.confirm-close:hover {
  background: rgba(220,50,50,0.15);
  color: #FF6B6B;
}

.confirm-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.confirm-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.confirm-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--naranja);
  margin-bottom: 0.35rem;
}

.confirm-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Resumen pedido */
.confirm-resumen {
  background: rgba(20,35,20,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.confirm-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  gap: 0.5rem;
}

.confirm-item-nombre {
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confirm-item-precio {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--naranja);
  flex-shrink: 0;
}

.confirm-dir {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.confirm-nota {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Datos de transferencia */
.confirm-transferencia {
  margin-bottom: 1.25rem;
}

.confirm-section-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--naranja);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.transfer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 0.5rem;
}

.transfer-row:first-of-type {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.transfer-row-total {
  background: rgba(245,166,35,0.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245,166,35,0.2) !important;
  margin-top: 0.5rem;
  padding: 0.75rem;
}

.transfer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 700;
  flex-shrink: 0;
}

.transfer-val-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.transfer-val {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
  text-align: right;
}

.transfer-monto {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--naranja);
}

/* Botón copiar */
.btn-copy {
  background: rgba(46,139,34,0.12);
  border: 1px solid rgba(46,139,34,0.25);
  color: var(--verde-glow);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-copy:hover {
  background: rgba(46,139,34,0.25);
  transform: scale(1.05);
}

.btn-copy.copied {
  background: rgba(46,139,34,0.35);
  color: #fff;
}

/* Acciones del modal */
.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.confirm-wa-btn {
  width: 100%;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  padding: 0.9rem;
}

/* ── Sidebar: Más Vendidos highlight ────────────────────── */
.sidebar-cat-masvendidos-item button {
  background: rgba(243, 156, 18, 0.06);
  border: 1px solid rgba(243, 156, 18, 0.2);
  color: #f39c12;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.sidebar-cat-masvendidos-item button:hover {
  background: rgba(243, 156, 18, 0.14);
  color: #e67e22;
  border-color: rgba(243, 156, 18, 0.4);
}

.sidebar-cat-masvendidos-item button.active {
  background: rgba(243, 156, 18, 0.2);
  border-color: #f39c12;
  color: #f39c12;
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.2);
}
