/*
 * Yetka Catalog Print
 * Estilos mínimos para el botón en la toolbar del catálogo.
 * Se evita fijar paleta de colores para respetar el theme (Glozin).
 */

.yetka-catalog-print-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  padding: 10px 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  border: 1px solid currentColor;
  background: transparent;
}

.yetka-catalog-print-btn:hover {
  text-decoration: none;
  opacity: 0.9;
}

.yetka-catalog-print-btn:focus {
  outline: none;
}

.yetka-catalog-print-btn[disabled],
.yetka-catalog-print-btn.is-loading {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.yetka-catalog-print-btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* Ajuste de separación para inserción "arriba" del bloque del toolbar */
.yetka-catalog-print-wrap {

  margin-bottom: 10px;
}

/* Modal (opciones de impresión) */
.yetka-catprint-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.yetka-catprint-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.yetka-catprint-card {
  position: relative;
  width: min(420px, calc(100% - 28px));
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.18);
  padding: 14px;
}

.yetka-catprint-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.yetka-catprint-close {
  appearance: none;
  border: 1px solid rgba(2,6,23,.12);
  background: #111;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  line-height: 30px;
  font-size: 18px;
  cursor: pointer;
}

.yetka-catprint-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.yetka-catprint-btn2 {
  flex: 1 1 auto;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(2,6,23,.12);
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.yetka-catprint-btn2[data-mode="without"] {
  background: transparent;
  color: inherit;
}

.yetka-catprint-muted {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.75;
}
