/* imaginique – Muster Designer */
/* Design: kreativ & elegant | Nachtblau × Terrakotta × Creme */

/* === Lokale Fonts (DSGVO-konform) === */
@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/dmsans-400.woff2') format('woff2');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/dmsans-italic-400.woff2') format('woff2');
  font-weight: 300 600;
  font-style: italic;
  font-display: swap;
}

/* === Design Tokens === */
#fp-pattern-visualizer {
  /* Nachtblau – Abstufungen */
  --iq-night:        #1A1E2E;
  --iq-night-hover:  #252A3E;
  --iq-night-card:   #2E3450;
  --iq-night-tint:   rgba(26,30,46,0.06);

  /* Terrakotta – sparsam einsetzen */
  --iq-terra:        #C4784A;

  /* Creme – Hauptbühne */
  --iq-cream:        #F0EDE6;
  --iq-cream-dark:   #E6E0D6;

  /* Utility */
  --iq-white:        #FFFFFF;
  --iq-text:         #1A1E2E;
  --iq-text-soft:    #6B6560;
  --iq-border:       #DDD8CF;

  /* Aliases (Kompatibilität) */
  --iq-indigo:       #1A1E2E;
  --iq-indigo-soft:  #252A3E;
  --iq-bg:           #F0EDE6;
  --iq-active-bg:    rgba(26,30,46,0.06);
  --iq-radius:       14px;
  --iq-radius-sm:    8px;
}

/* === Base === */
#fp-pattern-visualizer,
#fp-pattern-visualizer * {
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

/* Wrapper override */
#fp-pattern-visualizer {
  padding: 28px 28px 32px !important;
  border: 1px solid var(--iq-border) !important;
  border-radius: 20px !important;
  margin-top: 28px;
  background: var(--iq-white) !important;
}

/* === Heading === */
#fp-pattern-visualizer > div:first-child {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px;
  color: var(--iq-indigo) !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--iq-border);
}

/* === Layout === */
.fpTwoColWrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.fpColLeft {
  flex: 1 1 0;
  min-width: 260px;
  order: 2;
  display: flex;
  flex-direction: column;
}

.fpColRight {
  flex: 0 0 auto;
  min-width: 0;
  order: 1;
}

@media (max-width: 900px) {
  .fpTwoColWrap { flex-direction: column; gap: 0; }
  .fpColLeft, .fpColRight { max-width: 100%; width: 100%; }
}

/* === Step Track === */
.fpStepTrack {
  position: relative;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  margin: 10px 0 4px;
}

.fpStepLine {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--iq-indigo);
  border-radius: 2px;
}

.fpStepDots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.fpStepDot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--iq-white);
  border: 2.5px solid var(--iq-indigo);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s, background 0.15s, width 0.15s, height 0.15s;
  flex-shrink: 0;
}

.fpStepDot:hover {
  transform: scale(1.25);
}

.fpStepDot.active {
  width: 20px;
  height: 20px;
  background: var(--iq-indigo);
  border-color: var(--iq-indigo);
  transform: none;
}

/* === Range Slider === */
#fp-pattern-visualizer input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: transparent;
  outline: none;
  cursor: pointer;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 8px 0;
}

#fp-pattern-visualizer input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: var(--iq-indigo);
  border: none;
  box-shadow: none;
}

#fp-pattern-visualizer input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--iq-indigo);
  border: none;
  box-shadow: none;
  cursor: pointer;
  margin-top: -6px;
}

#fp-pattern-visualizer input[type="range"]::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: var(--iq-indigo);
  border: none;
  box-shadow: none;
}

#fp-pattern-visualizer input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--iq-indigo);
  border: none;
  box-shadow: none;
  cursor: pointer;
}

/* === Section Labels === */
.fpSliderRow {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--iq-text-soft);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.fpSliderRow label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--iq-text);
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
  margin-bottom: 6px;
}

.fpSliderRow .fpTicks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--iq-text-soft);
  margin-top: 4px;
  opacity: 1;
}

/* === Palette === */
.fpPaletteWrap {
  margin-top: 0;
  padding: 0 0 10px 0;
  border-radius: var(--iq-radius);
  background: transparent;
  width: 100%;
}

.fpPaletteGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 16px);
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

.fpSwatch {
  width: 16px;
  height: 16px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  position: relative;
  pointer-events: auto;
  transition: transform 0.15s, opacity 0.15s;
  flex-shrink: 0;
}

.fpSwatch:hover {
  transform: scale(1.1);
}

.fpSwatch[aria-selected="true"] {
  outline: 3px solid var(--iq-indigo);
  outline-offset: 2px;
}

.fpSwatchInactive {
  opacity: 0.25;
  filter: grayscale(0.4);
}

.fpPaletteQuickActions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

#fp-pattern-visualizer .fpPaletteQuickActions .fpPaletteQuickBtn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 5px 13px 6px !important;
  border-radius: 100px !important;
  border: 1.5px solid var(--iq-border) !important;
  background: #fff !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  color: var(--iq-text-soft) !important;
  cursor: pointer !important;
  font-family: inherit !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07) !important;
  text-transform: none !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  min-height: 0 !important;
  min-width: 0 !important;
  transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
}

#fp-pattern-visualizer .fpPaletteQuickActions .fpPaletteQuickBtn:hover {
  border-color: var(--iq-indigo) !important;
  color: var(--iq-indigo) !important;
  background: var(--iq-night-tint) !important;
  box-shadow: 0 1px 5px rgba(26,30,46,0.13) !important;
}

#fp-pattern-visualizer .fpPaletteQuickActions .fpPaletteQuickBtn .fpQBtnDot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

#fp-pattern-visualizer .fpPaletteQuickActions .fpPaletteQuickBtn:first-child .fpQBtnDot {
  background: var(--iq-indigo) !important;
  opacity: 0.5;
}

#fp-pattern-visualizer .fpPaletteQuickActions .fpPaletteQuickBtn:last-child .fpQBtnDot {
  background: transparent !important;
  border: 1.5px solid var(--iq-border) !important;
}

#fp-pattern-visualizer .fpPaletteQuickActions .fpPaletteQuickBtn:first-child:hover .fpQBtnDot {
  opacity: 1;
}

#fp-pattern-visualizer .fpPaletteQuickActions .fpPaletteQuickBtn:last-child:hover .fpQBtnDot {
  border-color: var(--iq-indigo) !important;
}

.fpSwatchOrder {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--iq-indigo);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}

.fpMonoHint,
.fpSwatchLabel,
.fpPaletteHint,
.fpHelp {
  font-size: 12px;
  color: var(--iq-text-soft);
  margin-top: 6px;
  opacity: 1;
}

/* === Style Chips === */
.fpStyleChip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--iq-border);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--iq-text-soft) !important;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  line-height: 1.3;
}

.fpStyleChip:hover {
  border-color: var(--iq-indigo);
  color: var(--iq-indigo) !important;
}

.fpStyleChip.active {
  background: var(--iq-indigo);
  border-color: var(--iq-indigo);
  color: #fff !important;
  font-weight: 600;
}

.fpStyleChipDot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* === Generate Button === */
.fpGenBtn {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--iq-indigo);
  color: #fff;
  border: 1.5px solid var(--iq-indigo);
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
  margin-top: 12px;
}

.fpGenBtn:hover {
  background: var(--iq-indigo-soft);
  border-color: var(--iq-indigo-soft);
}

.fpGenBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.fpGenBtn.fpBusy {
  opacity: 0.7;
  cursor: default;
}

.fpGenInner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fpHourglass {
  display: inline-block;
  transform-origin: center;
  animation: fpPulse 0.9s ease-in-out infinite;
}

@keyframes fpPulse {
  0%   { transform: scale(1);    opacity: .55; }
  50%  { transform: scale(1.15); opacity: 1;   }
  100% { transform: scale(1);    opacity: .55; }
}

/* === Size Buttons === */
.fpSize {
  padding: 9px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--iq-radius-sm);
  border: 1.5px solid var(--iq-border);
  background: var(--iq-white);
  color: var(--iq-text);
  margin-right: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.fpSize:hover {
  border-color: var(--iq-indigo-soft);
  background: var(--iq-active-bg);
}

.fpSize[style*="background: #111"] {
  background: var(--iq-indigo) !important;
  color: #fff !important;
  border-color: var(--iq-indigo) !important;
  box-shadow: 0 2px 12px rgba(44,37,102,0.20);
}

/* === Area Buttons === */
.fpAreaBtn {
  padding: 5px 12px;
  border-radius: var(--iq-radius-sm);
  border: 1.5px solid var(--iq-border);
  background: var(--iq-white);
  color: var(--iq-text) !important;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  opacity: 0.65;
  transition: border-color 0.15s, opacity 0.15s, background 0.15s;
}

.fpAreaBtn:hover {
  opacity: 0.9;
  border-color: var(--iq-indigo-soft);
}

.fpAreaBtn.active {
  border-color: var(--iq-indigo);
  background: var(--iq-active-bg);
  color: var(--iq-indigo) !important;
  opacity: 1;
}

.fpAreaBtn.colored {
  opacity: 1;
  border-width: 1.5px;
  border-style: solid;
}

.fpAreaBtnDot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  border: 1px solid rgba(0,0,0,0.15);
}

/* === Paint Swatches === */
.fpPaintSwatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.1s, box-shadow 0.1s;
}

.fpPaintSwatch:hover {
  transform: scale(1.18);
}

.fpPaintSwatch.active {
  border-color: var(--iq-indigo);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--iq-indigo);
}

/* === Mini Buttons === */
.fpBtnMini {
  border: 1px solid var(--iq-border);
  border-radius: var(--iq-radius-sm);
  background: var(--iq-white);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--iq-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.fpBtnMini:hover {
  border-color: var(--iq-indigo-soft);
  background: var(--iq-active-bg);
}

/* === Row Actions === */
.fpRowActions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

/* === States === */
.fpHidden  { display: none !important; }
.fpBusy    { opacity: .65; pointer-events: none; }

/* === Style Cards (Grid) === */
.fpStyleCardGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
  max-width: 800px;
}

.fpStyleCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  min-height: 110px;
  background: var(--iq-white);
  border-radius: var(--iq-radius);
  box-shadow: 0 2px 10px rgba(44,37,102,0.06);
  border: 2px solid var(--iq-border);
  cursor: pointer;
  position: relative;
  opacity: 0.7;
  filter: grayscale(0.2);
  transition: border 0.2s, box-shadow 0.2s, opacity 0.2s, filter 0.2s;
}

.fpStyleCard.active {
  border: 2px solid var(--iq-indigo);
  box-shadow: 0 4px 20px rgba(44,37,102,0.18);
  opacity: 1;
  filter: none;
}

.fpStyleCardImg {
  width: 90px;
  height: 90px;
  background: var(--iq-bg-warm);
  border-bottom: 1px solid var(--iq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  color: var(--iq-text-soft);
}

.fpStyleCardTitle {
  font-weight: 600;
  font-size: 0.9em;
  margin: 8px 0 3px 0;
  text-align: center;
  color: var(--iq-text);
}

.fpStyleCardDesc {
  font-size: 0.82em;
  color: var(--iq-text-soft);
  text-align: center;
  margin-bottom: 8px;
}

.fpStyleCard .fpStyleCardCheck {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--iq-indigo);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  z-index: 2;
}

.fpStyleCard.active .fpStyleCardCheck {
  display: block;
}

/* === Workflow Progress Bar === */
#fpWorkflowBar {
  margin-bottom: 24px;
}

.fpWfSteps {
  display: flex;
  align-items: flex-start;
}

.fpWfStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.fpWfDot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--iq-border);
  color: var(--iq-text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.fpWfLabel {
  font-size: 9px;
  color: var(--iq-text-soft);
  text-align: center;
  margin-top: 5px;
  line-height: 1.3;
  word-break: break-word;
  max-width: 56px;
  transition: color 0.2s, font-weight 0.2s;
}

.fpWfLine {
  flex: 1;
  height: 2px;
  background: var(--iq-border);
  margin-top: 12px;
  flex-shrink: 1;
  transition: background 0.2s;
}

/* Active step */
.fpWfStep.fpWfActive .fpWfDot {
  background: var(--iq-indigo);
  color: #fff;
}
.fpWfStep.fpWfActive .fpWfLabel {
  color: var(--iq-indigo);
  font-weight: 700;
}

/* Completed steps */
.fpWfStep.fpWfDone .fpWfDot {
  background: var(--iq-terra);
  color: #fff;
}
.fpWfStep.fpWfDone .fpWfLabel {
  color: var(--iq-terra);
}

/* Lines after done steps */
.fpWfStep.fpWfDone + .fpWfLine {
  background: var(--iq-terra);
}

/* External steps (WooCommerce flow, outside plugin) */
.fpWfStep.fpWfExternal .fpWfDot {
  background: transparent;
  border: 1.5px dashed var(--iq-border);
  color: var(--iq-border);
}
.fpWfStep.fpWfExternal .fpWfLabel {
  color: var(--iq-border);
}
.fpWfLine.fpWfExternal {
  background: repeating-linear-gradient(
    to right,
    var(--iq-border) 0, var(--iq-border) 4px,
    transparent 4px, transparent 8px
  );
}

/* Active external step (e.g. step 6 after step 5 done) */
.fpWfStep.fpWfExternal.fpWfActive .fpWfDot {
  background: var(--iq-indigo);
  border-color: var(--iq-indigo);
  color: #fff;
}
.fpWfStep.fpWfExternal.fpWfActive .fpWfLabel {
  color: var(--iq-indigo);
  font-weight: 700;
}

#fpWfNext3Wrap {
  margin-top: auto;
  display: none;
  flex-direction: column;
  gap: 8px;
}

#fpWfNext3Wrap .fpWfNextBtn {
  margin-top: 0;
}

.fpWfNextBtn {
  display: block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  background: var(--iq-indigo);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}
.fpWfNextBtn:hover {
  background: var(--iq-indigo-soft);
}
.fpWfLine.fpWfLineDone {
  background: var(--iq-terra);
}

.fpStepPanel {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* === Panel Heading === */
.fpSizeGrid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.fpSizeBtn {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1.5px solid var(--iq-border);
  background: #fff;
  color: var(--iq-indigo);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.fpSizeBtn:hover {
  border-color: var(--iq-indigo);
}

.fpSizeBtn.fpSizeBtnActive {
  background: var(--iq-indigo);
  color: #fff;
  border-color: var(--iq-indigo);
}

.fpStep3Summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid var(--iq-border);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--iq-text-soft);
}
.fpStep3Summary .fpStep3SumRow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fpStep3Summary .fpStep3SumLabel {
  font-weight: 600;
  color: var(--iq-indigo);
  min-width: 80px;
}
.fpStep3Summary .fpStep3SumDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fpStep3Summary .fpStep3SumLink {
  cursor: pointer;
  border-radius: 6px;
  padding: 4px 6px;
  margin: -4px -6px;
  transition: background 0.15s;
}
.fpStep3Summary .fpStep3SumLink:hover {
  background: var(--iq-bg-soft, #f4f4f8);
}
.fpStep3Summary .fpStep3SumEdit {
  margin-left: auto;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.15s;
  color: var(--iq-indigo);
}
.fpStep3Summary .fpStep3SumLink:hover .fpStep3SumEdit {
  opacity: 1;
}

.fpPanelHeading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--iq-indigo);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--iq-border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fpPanelSubheading {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--iq-text-soft);
  letter-spacing: 0;
}

/* === Saison-Buttons === */
#fpSeasonBtns {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0 16px;
}

.fpSeasonBtn {
  width: 100%;
  padding: 10px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--iq-border);
  background: #fff;
  color: var(--iq-text-soft);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.fpSeasonBtn:hover {
  border-color: var(--iq-indigo);
  color: var(--iq-indigo);
}
.fpSeasonBtn.fpSeasonActive {
  background: var(--iq-indigo);
  border-color: var(--iq-indigo);
  color: #fff;
  font-weight: 600;
}
.fpSeasonLabel {
  font-weight: 500;
}
.fpSeasonDots {
  display: flex;
  gap: 4px;
  align-items: center;
}
.fpSeasonDots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
}

/* === Pill Button (dark) === */
.fpBtnPill {
  display: inline-block;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #fff !important;
  background: var(--iq-indigo);
  padding: 7px 18px;
  border-radius: 100px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s;
  cursor: pointer;
}
.fpBtnPill:hover {
  background: var(--iq-indigo-soft);
  color: #fff !important;
}
