/* ── Import Modal ── */
.import-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 4000;
  align-items: center; justify-content: center;
}
.import-modal.show { display: flex; }
.import-content {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 92%;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
}
.import-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid var(--whic-border); }
.import-tab {
  padding: 8px 20px;
  border: none; background: none;
  font-size: 14px; font-weight: 500;
  cursor: pointer; color: var(--whic-text-light);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.import-tab.active { color: var(--whic-green); border-bottom-color: var(--whic-green); }
.import-pane { display: none; }
.import-pane.active { display: block; }
.whiskybase-result {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--whic-border);
}
.whiskybase-result:last-child { border-bottom: none; }

/* ── Custom Product Form ── */
#customProductForm {
  background: var(--whic-bg-alt);
  border: 1px solid var(--whic-border);
  border-radius: var(--whic-radius);
  padding: 16px;
  margin-bottom: 16px;
  display: none;
  animation: fadeIn .2s ease;
}
