/* ── Omni Quiz Widget — Brand: omni.pet ──────────── */

#omni-quiz-root {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}

.oq-frame {
  /* ── Design tokens (overridden by JS) ── */
  --oq-base-font-size: 16px;
  --oq-font-scale: 1;
  --oq-base-line-height: 1.5;
  --oq-heading-line-height: 1.3;
  --oq-heading-weight: 700;
  --oq-body-weight: 400;
  --oq-spacing-unit: 8px;
  --oq-spacing-scale: 1;
  --oq-spacing-xs: calc(var(--oq-spacing-unit) * 0.5 * var(--oq-spacing-scale));
  --oq-spacing-sm: calc(var(--oq-spacing-unit) * 1 * var(--oq-spacing-scale));
  --oq-spacing-md: calc(var(--oq-spacing-unit) * 2 * var(--oq-spacing-scale));
  --oq-spacing-lg: calc(var(--oq-spacing-unit) * 3 * var(--oq-spacing-scale));
  --oq-spacing-xl: calc(var(--oq-spacing-unit) * 4 * var(--oq-spacing-scale));
  --oq-border-width: 2px;
  --oq-border-color: #d6cfc0;
  --oq-radius-scale: 1;
  --oq-radius-sm: calc(4px * var(--oq-radius-scale));
  --oq-radius-md: calc(8px * var(--oq-radius-scale));
  --oq-radius-lg: calc(12px * var(--oq-radius-scale));
  --oq-radius-xl: calc(16px * var(--oq-radius-scale));
  --oq-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --oq-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.10);
  --oq-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
  --oq-alert-color: #CE2B32;
  --oq-title-size: calc(32px * var(--oq-font-scale));
  --oq-step-title-size: calc(26px * var(--oq-font-scale));
  --oq-subtitle-size: calc(17px * var(--oq-font-scale));
  --oq-button-size: calc(18px * var(--oq-font-scale));
  --oq-option-size: calc(17px * var(--oq-font-scale));
  --oq-button-padding: var(--oq-spacing-md) var(--oq-spacing-lg);
  --oq-card-padding: var(--oq-spacing-md);
  --oq-input-padding: 14px 18px;
  --oq-option-padding: 14px var(--oq-spacing-md);
  --oq-content-padding: var(--oq-spacing-lg) var(--oq-spacing-md) 140px;

  max-width: 680px;
  margin: 0 auto;
  padding: var(--oq-content-padding);
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  font-size: var(--oq-base-font-size);
  line-height: var(--oq-base-line-height);
  font-weight: var(--oq-body-weight);
}

/* ── Back button ───────────────────────────────────── */

.oq-back-btn {
  background: none;
  border: none;
  color: #676986;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 8px;
}

.oq-back-btn:hover { color: #272D45; }

/* ── Progress ──────────────────────────────────────── */

.oq-progress {
  width: 100%;
  height: 6px;
  background: var(--oq-border-color);
  border-radius: var(--oq-radius-sm);
  overflow: hidden;
  margin-bottom: var(--oq-spacing-xs);
}

.oq-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.oq-progress-text {
  font-size: 13px;
  color: #676986;
  text-align: right;
  margin-bottom: var(--oq-spacing-md);
}

/* ── Content ───────────────────────────────────────── */

.oq-content {
  animation: oq-fadeIn 0.3s ease;
}

@keyframes oq-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Typography ────────────────────────────────────── */

.oq-title {
  font-size: var(--oq-title-size);
  font-weight: var(--oq-heading-weight);
  line-height: var(--oq-heading-line-height);
  margin: 0 0 var(--oq-spacing-sm);
  text-align: center;
  color: #272D45;
}

.oq-title .oq-accent {
  color: #124A2B;
}

.oq-step-title {
  font-size: var(--oq-step-title-size);
  font-weight: var(--oq-heading-weight);
  line-height: var(--oq-heading-line-height);
  margin: 0 0 var(--oq-spacing-sm);
  color: #272D45;
}

.oq-subtitle {
  font-size: var(--oq-subtitle-size);
  color: #676986;
  margin: 0 0 var(--oq-spacing-md);
}

/* ── Hero image ────────────────────────────────────── */

.oq-hero {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--oq-radius-lg);
  margin-bottom: var(--oq-spacing-md);
}

/* Intro responsive image variants */
.oq-intro-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 16px auto;
  border-radius: 8px;
}


/* ── Bullets ───────────────────────────────────────── */

.oq-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.oq-bullets li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: #272D45;
}

.oq-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #124A2B;
  font-weight: 700;
}

/* ── Buttons ───────────────────────────────────────── */

.oq-btn {
  display: block;
  width: 100%;
  padding: var(--oq-button-padding);
  font-size: var(--oq-button-size);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: var(--oq-spacing-md);
  transition: background 0.2s, opacity 0.2s, transform 0.15s;
  background: #124A2B;
  color: #fff;
  border-radius: var(--oq-radius-md);
}

.oq-btn:hover { background: #0d3a22; }
.oq-btn:active { transform: scale(0.98); }
.oq-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.oq-btn-checkout {
  font-size: var(--oq-button-size);
  padding: var(--oq-button-padding);
  margin-top: var(--oq-spacing-lg);
  background: var(--oq-alert-color);
}

.oq-btn-checkout:hover { background: #b52329; }

.oq-btn-link {
  background: transparent !important;
  border: none;
  color: #676986;
  font-size: 14px;
  cursor: pointer;
  margin-top: 12px;
  text-decoration: underline;
  display: block;
  width: 100%;
  text-align: center;
}

.oq-btn-link:hover,
.oq-btn-link:focus,
.oq-btn-link:active { color: #555; background: transparent !important; }

/* ── Input ─────────────────────────────────────────── */

.oq-input {
  display: block;
  width: 100%;
  padding: var(--oq-input-padding);
  font-size: var(--oq-subtitle-size);
  border: var(--oq-border-width) solid var(--oq-border-color);
  border-radius: var(--oq-radius-md);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  margin-bottom: var(--oq-spacing-sm);
  background: #fff;
}

.oq-input:focus {
  border-color: #124A2B;
}

/* ── Breed selected ─────────────────────────────────── */

.oq-breed-selected {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 8px;
  margin: 12px 0 0;
}

.oq-breed-selected-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #124A2B;
}

.oq-breed-selected-placeholder {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: #f0ebe0;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #124A2B;
}

.oq-breed-selected-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #272D45;
}

.oq-breed-change {
  background: none;
  border: none;
  color: #124A2B;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.oq-breed-change:hover { color: #0d3a22; }

/* ── Breed info box ────────────────────────────────── */

.oq-breed-info-box {
  border: var(--oq-border-width) dashed #124A2B;
  background: #E3F2EB;
  border-radius: var(--oq-radius-lg);
  padding: var(--oq-spacing-md) var(--oq-spacing-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--oq-spacing-sm);
  margin: 0 0 var(--oq-spacing-md);
}

.oq-info-box {
  border: var(--oq-border-width) dashed #124A2B;
  background: #E3F2EB;
  border-radius: var(--oq-radius-lg);
  padding: var(--oq-spacing-md) var(--oq-spacing-lg);
  margin: 12px 0 var(--oq-spacing-md);
  font-size: 14px;
  line-height: 1.5;
  color: #272D45;
}

.oq-breed-info-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.oq-breed-info-text {
  font-size: 14px;
  line-height: 1.5;
  color: #272D45;
}

/* ── Breed review card (horizontal) ────────────────── */

.oq-breed-review {
  display: flex;
  background: #f5f5f5;
  border-radius: var(--oq-radius-lg);
  overflow: hidden;
  margin: 0 0 var(--oq-spacing-md);
  box-shadow: var(--oq-shadow-sm);
}

.oq-breed-review-img {
  width: 120px;
  min-height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.oq-breed-review-img-placeholder {
  width: 120px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: #e8e4dc;
  flex-shrink: 0;
}

.oq-breed-review-body {
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.oq-breed-review-stars {
  color: #00B67A;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.oq-breed-review-title {
  font-weight: 700;
  font-size: 15px;
  color: #272D45;
  margin-bottom: 4px;
  line-height: 1.3;
}

.oq-breed-review-text {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 6px;
}

.oq-breed-review-more {
  font-size: 13px;
  color: #124A2B;
  text-decoration: underline;
  cursor: pointer;
}

.oq-breed-review-more:hover {
  color: #0d3a22;
}

/* ── Breed autocomplete dropdown ─────────────────── */

.oq-breed-input-wrap {
  position: relative;
  margin: 8px 0;
}

.oq-breed-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--oq-border-color);
  border-radius: var(--oq-radius-md);
  box-shadow: var(--oq-shadow-lg);
  z-index: 100;
  margin-top: var(--oq-spacing-xs);
}

.oq-breed-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f0ebe0;
}

.oq-breed-row:last-child {
  border-bottom: none;
}

.oq-breed-row:hover {
  background: #E3F2EB;
}

.oq-breed-row-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.oq-breed-row-placeholder {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #f0ebe0;
  border-radius: 50%;
  flex-shrink: 0;
}

.oq-breed-row-name {
  font-size: 15px;
  font-weight: 500;
  color: #272D45;
}

.oq-breed-empty {
  padding: 20px;
  text-align: center;
  color: #676986;
  font-size: 14px;
}

/* ── Gender ────────────────────────────────────────── */

.oq-gender-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 16px 0;
}

.oq-gender-btn {
  flex: 1;
  max-width: 180px;
  padding: var(--oq-spacing-lg) var(--oq-spacing-md);
  border: var(--oq-border-width) solid var(--oq-border-color);
  border-radius: var(--oq-radius-lg);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-weight: 600;
  font-size: var(--oq-option-size);
  background: #fff;
  color: #272D45;
}

.oq-gender-btn:hover {
  border-color: #124A2B;
  background: #E3F2EB;
}

.oq-gender-btn.selected {
  background: var(--oq-gender-selected, #e8c96d);
  border-color: var(--oq-gender-selected, #e8c96d);
  color: #272D45;
}

/* ── Option rows ───────────────────────────────────── */

.oq-option {
  display: flex;
  align-items: center;
  gap: var(--oq-spacing-sm);
  padding: var(--oq-option-padding);
  border: var(--oq-border-width) solid var(--oq-border-color);
  border-radius: var(--oq-radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: var(--oq-spacing-sm);
  background: #fff;
}

.oq-option:hover {
  border-color: #124A2B;
  background: #E3F2EB;
}

.oq-option-emoji {
  font-size: 24px;
  flex-shrink: 0;
}

.oq-option-content {
  flex: 1;
  min-width: 0;
}

.oq-option-label {
  font-size: var(--oq-option-size);
  font-weight: 600;
  color: #272D45;
}

.oq-option-sub {
  font-size: 14px;
  color: #676986;
  margin-top: 2px;
}

/* ── Weight slider ─────────────────────────────────── */

.oq-weight-display {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 16px 0 8px;
  color: #272D45;
}

.oq-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #d6cfc0;
  border-radius: 4px;
  outline: none;
  margin-bottom: 20px;
}

.oq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #124A2B;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.oq-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #124A2B;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ── Pills (multi-select) ─────────────────────────── */

.oq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.oq-pill {
  padding: 12px 18px;
  border: 2px solid #d6cfc0;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
  background: #fff;
  color: #272D45;
}

.oq-pill:hover {
  border-color: #124A2B;
}

.oq-pill.selected {
  border-color: #124A2B;
  background: #124A2B;
  color: #fff;
}

/* ── Loading ───────────────────────────────────────── */

.oq-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #d6cfc0;
  border-top-width: 4px;
  border-radius: 50%;
  animation: oq-spin 0.8s linear infinite;
  margin: 24px auto;
}

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

.oq-loading-msgs {
  text-align: center;
  margin-top: 16px;
}

.oq-loading-msg {
  font-size: 14px;
  padding: 4px 0;
  transition: opacity 0.5s ease;
  color: #272D45;
}

.oq-loading-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #676986;
  margin-top: 20px;
  font-style: italic;
}

.oq-loading-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 360px;
  margin: 20px auto 0;
  padding: 10px 16px;
  border: 1.5px solid #124A2B;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #124A2B;
  text-align: center;
  opacity: 1;
  transition: opacity 0.35s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.oq-loading-social-icon {
  font-size: 16px;
  line-height: 1;
}

.oq-loading-social-text {
  line-height: 1.35;
}

/* ── Journey steps bar ─────────────────────────────── */

.oq-journey-bar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.oq-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 56px;
}

.oq-journey-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  color: #272D45;
  border: 1.5px solid #272D45;
}

.oq-journey-step.active .oq-journey-num {
  background: #124A2B;
  color: #fff;
  border-color: #124A2B;
}

.oq-journey-label {
  font-size: 9px;
  font-weight: 600;
  color: #272D45;
  text-align: center;
  white-space: nowrap;
}

.oq-journey-dots {
  color: #9aa09c;
  font-size: 8px;
  letter-spacing: 1px;
  height: 32px;
  display: flex;
  align-items: center;
}

/* ── Nutrition System Header ───────────────────────── */

.oq-nutrition-header {
  text-align: center;
  margin-bottom: 20px;
}

.oq-nutrition-title {
  font-size: 22px;
  font-weight: 800;
  color: #272D45;
  margin: 0 0 6px;
  line-height: 1.3;
}

.oq-nutrition-title em {
  font-style: italic;
  color: #124A2B;
}

.oq-nutrition-subtitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.oq-nutrition-pill {
  display: inline-block;
  background: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #272D45;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ── Results ───────────────────────────────────────── */

.oq-results-banner {
  border-radius: 14px;
  padding: 28px 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.oq-results-banner h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
}

.oq-results-banner p {
  font-size: 15px;
  margin: 0;
  opacity: 0.9;
}

/* ── Plan summary ──────────────────────────────────── */

.oq-plan-summary {
  background: #E3F2EB;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.oq-plan-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #124A2B;
}

.oq-plan-summary p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #272D45;
}

.oq-plan-summary-list {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
  color: #272D45;
}

.oq-plan-summary-list li {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 6px;
}

.oq-plan-summary-list li:last-child {
  margin-bottom: 0;
}

/* ── Calorie cards ─────────────────────────────────── */

.oq-calorie-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.oq-calorie-card {
  flex: 1;
  background: #fff;
  border: 1px solid #d6cfc0;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.oq-calorie-value {
  font-size: 28px;
  font-weight: 700;
  color: #124A2B;
}

.oq-calorie-label {
  font-size: 13px;
  color: #676986;
  margin-top: 2px;
}

/* ── Feeding guide ─────────────────────────────────── */

.oq-feeding-guide {
  background: #E3F2EB;
  border: 1px solid #b8d9c8;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #124A2B;
}

.oq-feeding-guide-list {
  list-style: disc;
  margin: 8px 0 0;
  padding-left: 20px;
}

.oq-feeding-guide-list li {
  margin-bottom: 4px;
}

.oq-feeding-guide-list li:last-child {
  margin-bottom: 0;
}

/* ── Order-value perks ─────────────────────────────── */

.oq-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
}

.oq-perk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #272D45;
}

.oq-perk-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.oq-perk-text {
  line-height: 1.4;
}

/* ── Purchase toggle ───────────────────────────────── */

.oq-purchase-toggle {
  display: flex;
  background: #fff;
  border: 1px solid #d6cfc0;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 20px;
}

.oq-toggle-btn {
  flex: 1;
  padding: 12px 8px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  color: #676986;
  text-align: center;
}

.oq-toggle-btn.active {
  background: #124A2B;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.oq-sub-badge {
  display: inline-block;
  background: #B8FF45;
  color: #124A2B;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Product cards ─────────────────────────────────── */

.oq-product-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid #d6cfc0;
  border-radius: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  background: #fff;
}

.oq-product-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.oq-product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.oq-product-info {
  flex: 1;
  min-width: 0;
}

.oq-product-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  color: #124A2B;
}

.oq-product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #272D45;
}

.oq-product-price {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.oq-price-original {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  margin-right: 6px;
}

.oq-price-sale {
  color: #CE2B32;
}

.oq-price-interval {
  font-size: 12px;
  font-weight: 400;
  color: #676986;
  margin-left: 2px;
}

.oq-product-why {
  font-size: 13px;
  color: #676986;
  line-height: 1.4;
}

/* ── Recommendation heading ────────────────────────── */

.oq-rec-heading {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.3;
}

/* ── Recommendation toggle cards ──────────────────── */

.oq-rec-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #d6cfc0;
  border-radius: 14px;
  margin-bottom: 8px;
  background: #fff;
  transition: opacity 0.2s;
}

.oq-rec-card.excluded {
  opacity: 0.45;
}

/* Toggle */
.oq-rec-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  flex-shrink: 0;
  width: 42px;
}

.oq-rec-toggle-label {
  font-size: 10px;
  font-weight: 600;
  color: #272D45;
}

.oq-rec-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: #ccc;
  position: relative;
  transition: background 0.2s;
}

.oq-rec-toggle.on {
  background: #124A2B;
}

.oq-rec-toggle-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.oq-rec-toggle.on .oq-rec-toggle-thumb {
  left: 18px;
}

/* Lock (for supplements) */
.oq-rec-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  width: 42px;
}

.oq-rec-lock-label {
  font-size: 8px;
  font-weight: 700;
  color: #676986;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.oq-rec-lock-icon {
  font-size: 16px;
}

.oq-rec-card.oq-rec-essential {
  border-color: var(--oq-accent-color, #124A2B);
  border-width: 2px;
  background: color-mix(in srgb, var(--oq-accent-color, #124A2B) 5%, #fff);
}

.oq-rec-essential-badge {
  display: inline-block;
  background: var(--oq-accent-color, #124A2B);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* Product image */
.oq-rec-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Product info */
.oq-rec-info {
  flex: 1;
  min-width: 0;
}

.oq-rec-title {
  font-size: 14px;
  font-weight: 700;
  color: #272D45;
  line-height: 1.2;
  margin-bottom: 2px;
}

.oq-rec-sub {
  font-size: 12px;
  color: #676986;
  line-height: 1.3;
}

.oq-supply-note {
  font-size: 11px;
  color: #8a8a8a;
  line-height: 1.3;
  margin-top: 4px;
  font-weight: 500;
}

/* Info button */
.oq-rec-info-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #676986;
  cursor: pointer;
  flex-shrink: 0;
}

.oq-rec-info-btn:hover {
  color: #272D45;
}

/* ── Dog Hero ────────────────────────────────────────── */

.oq-dog-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 16px 0 24px;
}

.oq-dog-hero-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.oq-dog-hero-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: #f0ebe0;
}

.oq-dog-hero-label {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

/* ── Analysis accordions ───────────────────────────── */

.oq-analysis-accordions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}

.oq-accordion {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--oq-summary-frame, #d4b85c);
}

.oq-accordion-header {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.oq-accordion-header::-webkit-details-marker { display: none; }

.oq-accordion-header::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  margin-left: 12px;
}

.oq-accordion[open] .oq-accordion-header::after {
  content: "−";
}

.oq-accordion-body {
  padding: 14px 16px;
  font-size: 13px;
  color: #272D45;
  line-height: 1.5;
}

/* ── Analysis image ────────────────────────────────── */

.oq-analysis-image-wrap {
  margin: 24px 0;
  text-align: center;
}

.oq-analysis-image {
  max-width: 100%;
  border-radius: 12px;
  display: inline-block;
}

/* ── Vet endorsement ──────────────────────────────── */

.oq-vet-section {
  display: flex;
  gap: 14px;
  padding: 16px;
  margin: 20px 0;
  background: #fff;
  border: 1px solid var(--oq-border-color, #d6cfc0);
  border-radius: 12px;
  align-items: flex-start;
}

.oq-vet-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #d6cfc0;
}

.oq-vet-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.oq-vet-body {
  flex: 1;
  min-width: 0;
}

.oq-vet-name {
  font-size: 15px;
  font-weight: 700;
  color: #272D45;
}

.oq-vet-title {
  font-size: 12px;
  color: #676986;
  margin-top: 2px;
}

.oq-vet-quote {
  font-size: 13px;
  color: #676986;
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
}

/* ── Quiz Answers Summary Table ───────────────────── */

.oq-summary-table {
  background: var(--oq-summary-frame, #d4b85c);
  border-radius: 12px;
  padding: 12px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oq-summary-row {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--oq-summary-frame, #d4b85c);
}

.oq-summary-label {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 8px 0 0 8px;
}

.oq-summary-text {
  flex: 1;
  padding: 14px 16px;
  font-size: 13px;
  color: #272D45;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .oq-dog-hero-img,
  .oq-dog-hero-placeholder {
    width: 140px;
    height: 140px;
    font-size: 64px;
  }

  .oq-dog-hero-label {
    font-size: 17px;
  }

  .oq-summary-label {
    width: 80px;
    font-size: 12px;
    padding: 10px 8px;
  }

  .oq-summary-text {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ── Your Price screen ─────────────────────────────── */

.oq-yp-heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.3;
}

.oq-trial-card {
  border: 2px solid #124A2B;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
}

.oq-trial-title {
  font-size: 15px;
  font-weight: 600;
  color: #124A2B;
  margin-bottom: 12px;
}

.oq-trial-img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.oq-trial-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #272D45;
}

.oq-trial-discount-badge {
  display: inline-block;
  background: #CE2B32;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.oq-yp-plan-intro {
  font-size: 14px;
  margin: 0 0 12px;
  color: #272D45;
}

.oq-plan-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #d6cfc0;
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.oq-plan-option.selected {
  border-color: #124A2B;
  background: #E3F2EB;
}

.oq-plan-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d6cfc0;
  flex-shrink: 0;
  position: relative;
}

.oq-plan-radio.on {
  border-color: #124A2B;
}

.oq-plan-radio.on::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #124A2B;
}

.oq-plan-text {
  flex: 1;
}

.oq-plan-text strong {
  font-size: 15px;
  color: #272D45;
}

.oq-plan-badge {
  display: inline-block;
  background: #CE2B32;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.oq-plan-sub {
  font-size: 13px;
  color: #676986;
  margin-top: 2px;
}

.oq-yp-section-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin: 28px 0 12px;
  color: #272D45;
}

.oq-delivery-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #d6cfc0;
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.oq-delivery-option.selected {
  border-color: #124A2B;
  background: #E3F2EB;
}

.oq-delivery-details {
  font-size: 13px;
  color: #272D45;
  line-height: 1.6;
}

.oq-delivery-label {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1.5px solid #272D45;
  color: #272D45;
  flex-shrink: 0;
}

.oq-delivery-label.selected {
  background: #124A2B;
  color: #fff;
  border-color: #124A2B;
}

.oq-delivery-info {
  font-size: 12px;
  color: #676986;
  line-height: 1.5;
  margin-top: 12px;
}

.oq-delivery-info p {
  margin: 0 0 8px;
}

/* ── Treat Time screen ────────────────────────────── */

.oq-treat-card {
  border: 1px solid #d6cfc0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  background: #fff;
}

.oq-treat-top {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.oq-treat-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.oq-treat-info {
  flex: 1;
}

.oq-treat-title {
  font-size: 16px;
  font-weight: 700;
  color: #124A2B;
  margin-bottom: 4px;
}

.oq-treat-desc {
  font-size: 13px;
  color: #272D45;
  line-height: 1.4;
}

.oq-treat-price-row {
  font-size: 14px;
  color: #272D45;
  margin-bottom: 10px;
}

.oq-treat-add-btn {
  width: 100%;
  padding: 12px;
  border: 2px solid #124A2B;
  border-radius: 10px;
  background: #fff;
  color: #124A2B;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.oq-treat-add-btn:hover {
  background: #E3F2EB;
}

.oq-treat-add-btn.added {
  border-color: transparent;
}

.oq-treats-counter {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #272D45;
  margin-top: 8px;
}

/* ── Review screen ────────────────────────────────── */

.oq-review-date-heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  color: #272D45;
}

.oq-urgency-banner {
  background: #fce4e4;
  color: #CE2B32;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.oq-delivery-timer {
  text-align: center;
  font-size: 13px;
  color: #272D45;
  margin-bottom: 12px;
}

/* ── Calendar ─────────────────────────────────────── */

.oq-calendar {
  background: #fdf8e8;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.oq-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #272D45;
}

.oq-cal-nav {
  display: flex;
  gap: 12px;
}

.oq-cal-arrow {
  font-size: 20px;
  cursor: pointer;
  color: #272D45;
  padding: 0 4px;
  user-select: none;
}

.oq-cal-arrow:hover {
  color: #124A2B;
}

.oq-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.oq-cal-day-name {
  font-size: 11px;
  font-weight: 600;
  color: #676986;
  padding: 4px 0;
}

.oq-cal-empty {
  padding: 8px;
}

.oq-cal-day {
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #272D45;
  transition: background 0.15s;
}

.oq-cal-day:hover:not(.past):not(.selected) {
  background: #E3F2EB;
}

.oq-cal-day.selected {
  font-weight: 700;
  border-radius: 8px;
}

.oq-cal-day.past {
  color: #ccc;
  cursor: default;
}

/* ── Checkout screen ──────────────────────────────── */

.oq-checkout-summary {
  border: 1px solid #d6cfc0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
}

.oq-checkout-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 14px;
  color: #272D45;
  border-bottom: 1px solid #f0ebe0;
}

.oq-checkout-row:last-child {
  border-bottom: none;
}

.oq-checkout-product-row {
  display: block;
  padding: 12px 16px;
}

.oq-checkout-product-row .oq-checkout-row-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.oq-checkout-product-row .oq-checkout-bullets {
  clear: both;
  width: 100%;
}

.oq-checkout-row-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.oq-checkout-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.oq-checkout-title-col {
  flex: 1;
  min-width: 0;
}

.oq-checkout-title {
  font-weight: 600;
}

.oq-checkout-price {
  flex-shrink: 0;
  align-self: center;
}

.oq-checkout-price-free {
  color: #2c6e49;
  font-weight: 700;
}

.oq-checkout-bullets {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  color: #676986;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
  align-self: stretch;
}

.oq-checkout-heading {
  font-size: calc(var(--oq-step-title-size) + 3px);
}

.oq-checkout-total {
  background: #f9f6ef;
  font-size: 16px;
}

.oq-checkout-delivery {
  text-align: center;
  font-size: 14px;
  color: #272D45;
  margin-bottom: 16px;
}

.oq-basket-hint {
  background: #fff8e1;
  border: 1px solid #e8d68a;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #5a4a10;
  margin: 0 0 12px;
  line-height: 1.45;
}

.oq-free-gift-banner {
  background: linear-gradient(135deg, #E3F2EB, #d4efdd);
  border: 1.5px solid #2c6e49;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #124A2B;
  margin: 0 0 12px;
  text-align: center;
  line-height: 1.4;
}

.oq-free-badge {
  display: inline-block;
  margin-left: 6px;
  background: #2c6e49;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

.oq-remove-btn {
  background: #fff;
  border: 1.5px solid #e3b3b6;
  color: #CE2B32;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: 0.3px;
  min-height: 36px;
  min-width: 80px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.oq-remove-btn:hover,
.oq-remove-btn:focus {
  background: #fdecec;
  border-color: #CE2B32;
  outline: none;
}

@media (max-width: 480px) {
  .oq-remove-btn {
    min-height: 44px;
    min-width: 88px;
    padding: 10px 12px;
  }
}

/* ── Bottom nav updates ───────────────────────────── */

.oq-nav-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.oq-nav-back-btn {
  flex: 1;
  max-width: 140px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.oq-nav-back-btn:hover {
  background: rgba(255,255,255,0.1);
}

.oq-nav-next-btn {
  flex: 1;
  max-width: 180px;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background: #d4a843;
}

.oq-nav-next-btn:hover {
  opacity: 0.9;
}

.oq-nav-price-summary {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  margin-top: 4px;
}

.oq-nav-price-total {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 12px;
  opacity: 0.8;
}

/* ── Cart total (legacy) ──────────────────────────── */

.oq-cart-total {
  text-align: right;
  font-size: 18px;
  padding: 12px 0 0;
  color: #272D45;
}

/* ── Email capture ─────────────────────────────────── */

.oq-offer-badge {
  border-radius: 10px;
  padding: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  background: #CE2B32;
}

.oq-offer-title {
  font-size: 18px;
  font-weight: 700;
}

.oq-offer-sub {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

.oq-privacy {
  font-size: 12px;
  color: #676986;
  text-align: center;
  margin-top: 12px;
}

/* ── Bottom nav bar (Back / Next + Timer) ──────────── */

.oq-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #124A2B;
  border-radius: 12px 12px 0 0;
  padding: 16px 20px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 99999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.oq-nav-back {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.oq-nav-back:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.oq-nav-timer {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.oq-nav-timer-value {
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: 4px;
}

.oq-nav-timer-value strong {
  font-size: 16px;
}

/* ── Old back button (hidden, replaced by bottom nav) ─ */

.oq-back-btn {
  display: none;
}

/* ── Responsive ────────────────────────────────────── */

@media (max-width: 480px) {
  .oq-frame {
    padding: 16px 12px 90px;
  }

  .oq-title {
    font-size: 26px;
  }

  .oq-step-title {
    font-size: 22px;
  }

  .oq-plan-summary {
    padding: 16px 14px;
    border-left: 4px solid #124A2B;
  }

  .oq-plan-summary p,
  .oq-plan-summary-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .oq-plan-summary-list {
    padding-left: 18px;
  }

  .oq-plan-summary-list li {
    margin-bottom: 10px;
  }

  .oq-feeding-guide {
    padding: 14px 14px;
    font-size: 14px;
    line-height: 1.6;
    border-left: 4px solid #124A2B;
  }

  .oq-feeding-guide-list li {
    margin-bottom: 8px;
    line-height: 1.55;
  }

  .oq-gender-row {
    gap: 10px;
  }

  .oq-gender-btn {
    padding: 18px 12px;
  }

  .oq-results-banner {
    padding: 20px 16px;
  }

  .oq-results-banner h2 {
    font-size: 20px;
  }

  .oq-product-img {
    width: 64px;
    height: 64px;
  }

  .oq-calorie-value {
    font-size: 24px;
  }

  .oq-toggle-btn {
    font-size: 13px;
    padding: 10px 6px;
  }

  .oq-sub-badge {
    display: block;
    margin: 4px auto 0;
  }

  .oq-bottom-nav {
    padding: 10px 14px calc(8px + env(safe-area-inset-bottom));
    gap: 6px;
  }

  .oq-nav-timer {
    font-size: 11px;
  }
}

/* ── Fullscreen mode ──────────────────────────────── */

.oq-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.oq-fullscreen .oq-frame {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(140px + env(safe-area-inset-bottom));
}

@media (max-width: 480px) {
  .oq-fullscreen .oq-frame {
    padding: 16px 12px calc(90px + env(safe-area-inset-bottom));
  }
}

html.oq-fullscreen-lock,
body.oq-fullscreen-lock {
  overflow: hidden;
  overscroll-behavior: none;
  height: 100%;
}

.oq-header-offset {
  padding-top: 60px;
}

/* ── Modal mode ───────────────────────────────────── */

.oq-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.oq-modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  margin: 20px;
}

.oq-modal-wrapper .oq-frame {
  min-height: auto;
}

.oq-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  color: #676986;
  line-height: 1;
  padding: 4px 8px;
}

.oq-modal-close:hover {
  color: #272D45;
}

/* Fullscreen modal */
.oq-modal-overlay.oq-modal-fullscreen {
  background: #fff;
}

.oq-modal-overlay.oq-modal-fullscreen .oq-modal-wrapper {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
}
