/* OCC Wave 3 — Hostinger-like plan pricing cards + extras */

.occ-plans {
  margin-bottom: 0.75rem !important;
}

/* Horizontal plan scroller — avoids 2-row wrap when many packages */
.occ-plan-scroller {
  position: relative;
  margin: 0.15rem 0 1rem;
}

.occ-plan-scroller.is-at-start .occ-plan-nav--prev,
.occ-plan-scroller.is-at-end .occ-plan-nav--next {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.occ-plan-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  color: #0f172a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.occ-plan-nav:hover {
  border-color: #c7d2fe;
  background: #f8fafc;
}

.occ-plan-nav--prev { left: 0.35rem; }
.occ-plan-nav--next { right: 0.35rem; }

.occ-plan-nav i {
  font-size: 0.85rem;
  line-height: 1;
}

.occ-plan-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  /* proximity: avoid snapping the first card under the left nav/fade */
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Keep first/last cards clear of nav chevrons + edge fades */
  padding: 0.55rem 2.85rem 1rem 1.75rem;
  scroll-padding-inline: 1.75rem 2.85rem;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.occ-plan-grid::-webkit-scrollbar {
  height: 6px;
}

.occ-plan-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.occ-plan-scroller::before,
.occ-plan-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.95rem;
  width: 1.75rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.occ-plan-scroller::before {
  left: 0;
  background: linear-gradient(90deg, #fff 35%, rgba(255, 255, 255, 0));
}

.occ-plan-scroller::after {
  right: 0;
  background: linear-gradient(270deg, #fff 35%, rgba(255, 255, 255, 0));
}

/* Only show edge fades when content is clipped that side */
.occ-plan-scroller:not(.is-at-start)::before { opacity: 1; }
.occ-plan-scroller:not(.is-at-end)::after { opacity: 1; }

/* First card: a bit more presence when selected at the start of the row */
.occ-plan-grid > .occ-plan-card:first-child.is-active {
  box-shadow: 0 0 0 1px var(--occ-accent, #000e9c), 0 14px 32px rgba(0, 14, 156, 0.12);
}

.occ-plan-card {
  --occ-plan-radius: 0.9rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  flex: 0 0 min(220px, 78vw);
  width: min(220px, 78vw);
  max-width: 240px;
  min-height: 100%;
  scroll-snap-align: start;
  padding: 1.15rem 1rem 1.05rem;
  border: 1px solid #e8eaef;
  border-radius: var(--occ-plan-radius);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.04);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  overflow: hidden;
}

.occ-plan-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05), 0 12px 28px rgba(0, 14, 156, 0.08);
  transform: translateY(-1px);
}

.occ-plan-card.is-popular {
  border-color: var(--occ-accent, #000e9c);
  padding-top: 2.15rem;
}

.occ-plan-card.is-active {
  border-color: var(--occ-accent, #000e9c);
  box-shadow: 0 0 0 1px var(--occ-accent, #000e9c), 0 12px 28px rgba(0, 14, 156, 0.1);
}

.occ-plan-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.55rem;
  background: var(--occ-accent, #000e9c);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.occ-plan-name {
  display: block;
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.15;
  color: #111827;
}

.occ-plan-card.is-custom .occ-plan-name {
  margin-bottom: 0.35rem;
}

.occ-plan-blurb {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.35;
}

.occ-plan-priceblock {
  margin-bottom: 0.95rem;
}

.occ-plan-price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.2rem;
  color: #111827;
  line-height: 1;
}

.occ-plan-from {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 650;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

.occ-plan-amount {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.occ-plan-cur {
  font-size: 0.95rem;
  font-weight: 700;
}

.occ-plan-per {
  font-size: 0.95rem;
  font-weight: 650;
  color: #374151;
}

.occ-plan-price-sub {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.35;
}

.occ-plan-price-note {
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: #9ca3af;
}

.occ-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.55rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border: 1.5px solid var(--occ-accent, #000e9c);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--occ-accent, #000e9c);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.occ-plan-card:hover .occ-plan-cta,
.occ-plan-card.is-popular .occ-plan-cta {
  background: var(--occ-accent, #000e9c);
  color: #fff;
}

.occ-plan-card.is-active .occ-plan-cta {
  background: var(--occ-accent, #000e9c);
  color: #fff;
}

.occ-plan-card.is-custom .occ-plan-cta {
  background: #fff;
  color: var(--occ-accent, #000e9c);
}

.occ-plan-card.is-custom.is-active .occ-plan-cta,
.occ-plan-card.is-custom:hover .occ-plan-cta {
  background: var(--occ-accent-soft, #eef2ff);
  color: var(--occ-accent, #000e9c);
}

.occ-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.occ-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 550;
  color: #1f2937;
  line-height: 1.35;
}

.occ-plan-feat-ico {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.55rem;
}

.occ-plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border: 1px solid var(--occ-border, #e5e7eb);
  border-radius: 0.75rem;
  background: var(--occ-surface-2, #f8fafc);
  margin-bottom: 0.5rem;
}

.occ-plan-summary-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1 1 auto;
}

.occ-plan-summary-meta strong {
  font-size: 0.8rem;
  color: var(--occ-muted, #6b7280);
  font-weight: 600;
}

.occ-plan-summary-meta span {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--occ-text, #111827);
}

.occ-plan-customize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  height: 2.4rem;
  padding: 0 1.05rem;
  border: 1px solid #071736;
  border-radius: 0.55rem;
  background: #fff;
  color: #071736;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.occ-plan-customize i {
  font-size: 0.85rem;
  line-height: 1;
}

.occ-plan-customize:hover {
  background: #071736;
  color: #fff;
}

.occ-plan-customize[aria-expanded="true"] {
  background: #071736;
  color: #fff;
  border-color: #071736;
}

.occ-plan-customize[aria-expanded="true"]:hover {
  background: #0b2a5a;
}

.occ-plan-customize[hidden] {
  display: none !important;
}

/* Collapse resource sliders unless customizing */
.option-val.occ-plan-sliders-hidden {
  display: none !important;
}

/* —— Custom resource sliders (CPU / RAM / Disk) —— */
.occ-res-slider,
body.occ-wizard-active [data-occ-wiz-panel="plan"] .occ-res-slider {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  margin: 0 0 0.85rem !important;
  padding: 1rem 1.15rem 1.15rem !important;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.occ-res-slider .occ-res-head-row {
  display: flex !important;
  width: 100% !important;
  align-items: center;
  margin-bottom: 0.45rem !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

.occ-res-slider .occ-res-head,
.occ-res-slider h3.occ-res-head {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  flex: 1 1 auto;
  visibility: visible !important;
}

.occ-res-ico {
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--occ-accent-soft, #eef2ff);
  color: var(--occ-accent, #000e9c);
  font-size: 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.occ-res-cpu .occ-res-ico { background: #eef2ff; color: #000e9c; }
.occ-res-ram .occ-res-ico { background: #ecfdf5; color: #059669; }
.occ-res-disk .occ-res-ico { background: #fff7ed; color: #c2410c; }

.occ-res-cpu .occ-res-value { background: #eef2ff; color: #000e9c; }
.occ-res-ram .occ-res-value { background: #ecfdf5; color: #047857; }
.occ-res-disk .occ-res-value { background: #fff7ed; color: #c2410c; }

.occ-res-meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1 1 auto;
}

.occ-res-label {
  font-size: 1.08rem;
  font-weight: 750;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.occ-res-unit {
  font-size: 0.78rem;
  font-weight: 550;
  color: #6b7280;
}

.occ-res-value-slot {
  flex: 0 0 auto;
  margin-left: auto;
}

.occ-res-slider .slider-value-indicator,
.occ-res-slider .occ-res-value {
  margin: 0 !important;
  padding: 0.35rem 0.75rem !important;
  border-radius: 0.55rem;
  background: var(--occ-accent-soft, #eef2ff);
  color: var(--occ-accent, #000e9c);
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  line-height: 1.2;
  min-width: 3rem;
  text-align: center;
}

.occ-res-slider-body,
.occ-res-slider .slider-group,
.occ-res-slider .slider-seq,
.occ-res-slider [class*="custom_field_"] {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both;
}

.occ-res-slider .ui-slider,
.occ-res-slider .slides,
.occ-res-slider .slides.left,
.occ-res-slider .slides.ui-slider,
.occ-res-slider [id^="custom_slider_"].ui-slider,
.occ-res-slider [id^="custom_slider_"].slides {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0.45rem 0 0.2rem !important;
  box-sizing: border-box;
}

.occ-res-slider .slider-group::after {
  content: '';
  display: table;
  clear: both;
}

.occ-res-slider .cart-products-scount,
.occ-res-slider .cart-products-scount_js {
  display: none !important;
}

/* —— Extras —— */
.occ-extras-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0 0.75rem;
}

.occ-extra-block {
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid var(--occ-border, #e5e7eb);
  border-radius: 0.85rem;
  background: var(--occ-surface-2, #f8fafc);
}

/* Hostinger-style Data Protection / Auto Backup */
.occ-backup-toggle {
  padding: 1.15rem 1.25rem 1.35rem;
  background: #fff;
  border-color: #e8eaef;
}

.occ-backup-toggle.is-checked {
  border-color: #e8eaef;
  box-shadow: none;
}

.occ-backup-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
}

.occ-backup-heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  color: #1f2937;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.occ-backup-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border: 1px solid #c5cde0;
  border-radius: 999px;
  background: #f3f6fb;
  color: #7b879c;
  font-size: 0.62rem;
  line-height: 1;
  cursor: help;
}

.occ-backup-help:hover {
  color: var(--occ-accent, #000e9c);
  border-color: var(--occ-accent, #000e9c);
  background: #eef2ff;
}

.occ-backup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: stretch;
}

.occ-backup-benefits {
  display: flex;
  align-items: center;
  gap: 1rem 1.15rem;
  min-width: 0;
}

.occ-backup-art {
  flex: 0 0 auto;
  width: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.occ-backup-shield {
  width: 4.4rem;
  height: auto;
  display: block;
}

.occ-backup-files {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
}

.occ-backup-file {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.22rem;
  font-size: 0.58rem;
  color: #fff;
}

.occ-backup-file.is-doc { background: #64748b; }
.occ-backup-file.is-sheet { background: #16a34a; }
.occ-backup-file.is-img { background: #0ea5e9; }
.occ-backup-file.is-folder { background: #f59e0b; }
.occ-backup-file.is-video { background: #8b5cf6; }

.occ-backup-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.occ-backup-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #374151;
  font-weight: 500;
}

.occ-backup-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #111827;
}

.occ-backup-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  min-width: 0;
}

.occ-backup-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 7.5rem;
  margin: 0;
  padding: 1.35rem 0.85rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.occ-backup-choice:hover {
  border-color: #c7d2fe;
  background: #fafbff;
}

.occ-backup-choice.is-active {
  border-color: #67b7ff;
  box-shadow: 0 0 0 1px #67b7ff;
  background: #fff;
}

.occ-backup-rec {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #ea580c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}

.occ-backup-choice-title {
  font-size: 0.98rem;
  font-weight: 750;
  color: #1f2937;
  line-height: 1.25;
}

.occ-backup-choice-price {
  font-size: 0.98rem;
  font-weight: 750;
  color: #1f2937;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.occ-backup-choice-tag {
  margin-top: 0.35rem;
  max-width: 11.5rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #6b7280;
  font-weight: 450;
}

@media (max-width: 991.98px) {
  .occ-backup-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .occ-backup-toggle {
    padding: 1rem;
  }
  .occ-backup-benefits {
    flex-direction: column;
    align-items: flex-start;
  }
  .occ-backup-choices {
    grid-template-columns: 1fr;
  }
  .occ-backup-choice {
    min-height: 5.5rem;
    padding: 1.25rem 1rem 1rem;
  }
}

.occ-extra-title {
  margin: 0 0 0.2rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--occ-text, #111827) !important;
}

.occ-extra-sub {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--occ-muted, #6b7280);
}

.occ-extra-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.occ-extra-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .occ-extra-grid,
  .occ-extra-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.occ-extra-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-height: 3.4rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--occ-border, #e5e7eb);
  border-radius: 0.65rem;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.occ-extra-card-lg {
  min-height: 4.2rem;
}

.occ-extra-card:hover {
  border-color: var(--occ-accent-border, #c7d2fe);
  background: #f8f9ff;
}

.occ-extra-card.is-active {
  border-color: var(--occ-accent, #000e9c);
  background: var(--occ-accent-soft, #eef2ff);
  box-shadow: 0 0 0 1px var(--occ-accent, #000e9c);
}

.occ-extra-card strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--occ-text, #111827);
}

.occ-extra-card span {
  font-size: 0.75rem;
  color: var(--occ-muted, #6b7280);
}

.occ-extra-card .occ-extra-price {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 650;
  color: var(--occ-text, #111827);
  letter-spacing: -0.01em;
}

.occ-extra-card .occ-extra-price.is-free {
  font-weight: 500;
  color: var(--occ-muted, #6b7280);
}

.occ-extra-native-slider {
  display: none;
  margin-top: 0.75rem;
  clear: both;
}

.occ-extra-native-slider.is-open {
  display: block;
}

/* HostBill native backup / port CF — replaced by occ-extra cards */
body.occ-wizard-active [data-occ-backup-moved],
body.occ-wizard-active [data-occ-port-moved],
body.occ-wizard-active [data-occ-extra-moved] {
  display: none !important;
}

.occ-extra-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Additional Features accordion (Hostinger-style) */
.occ-addl {
  margin-top: 0.35rem;
  padding: 0.15rem 0.15rem 0.35rem;
  background: #fff;
  border: 1px solid #e8eaef;
  border-radius: 0.85rem;
}

.occ-addl-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0.95rem 1.05rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.occ-addl-toggle-left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.occ-addl-toggle-left strong {
  font-size: 1.02rem;
  font-weight: 750;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.occ-addl-toggle-right {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 550;
  white-space: nowrap;
}

.occ-addl-toggle-right i {
  font-size: 0.85rem;
  transition: transform 0.15s ease;
}

.occ-addl.is-open .occ-addl-toggle-right i {
  transform: rotate(180deg);
}

.occ-addl-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid #c5cde0;
  border-radius: 999px;
  background: #f3f6fb;
  color: #7b879c;
  font-size: 0.55rem;
  line-height: 1;
  cursor: help;
}

.occ-addl-body {
  padding: 0 1.05rem 1.15rem;
}

.occ-addl-section-title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 750;
  color: #111827;
}

.occ-addl-divider {
  height: 1px;
  margin: 1.15rem 0 1rem;
  background: #e5e7eb;
}

.occ-addl-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.occ-addl-row {
  display: grid;
  grid-template-columns: minmax(9rem, 12.5rem) minmax(0, 1fr);
  gap: 0.85rem 1.25rem;
  align-items: center;
  position: relative;
}

.occ-addl-label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 650;
  color: #374151;
  text-align: right;
}

.occ-addl-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.1rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 0.55rem;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.occ-addl-select:hover:not(:disabled),
.occ-addl-select.is-open {
  border-color: #67b7ff;
  box-shadow: 0 0 0 1px rgba(103, 183, 255, 0.35);
}

.occ-addl-select:disabled {
  cursor: not-allowed;
  opacity: 0.92;
  background: #fafafa;
}

.occ-addl-select-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.occ-addl-select-text strong {
  font-size: 0.92rem;
  font-weight: 650;
  color: #111827;
}

.occ-addl-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 450;
}

.occ-addl-select-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  color: #4b5563;
  font-size: 0.88rem;
  font-weight: 600;
}

.occ-addl-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #ea580c;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.occ-addl-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.35rem);
  left: 12.5rem;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.4rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.65rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.occ-addl-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.occ-addl-option:hover,
.occ-addl-option.is-active {
  background: #eef2ff;
}

.occ-addl-option-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.occ-addl-option-main strong {
  font-size: 0.9rem;
  font-weight: 650;
  color: #111827;
}

.occ-addl-option-main small {
  font-size: 0.75rem;
  color: #9ca3af;
}

.occ-addl-option-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .occ-addl-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .occ-addl-label {
    justify-content: flex-start;
    text-align: left;
  }
  .occ-addl-menu {
    left: 0;
  }
}

body.occ-wizard-active [data-occ-extra-moved],
body.occ-wizard-active [data-occ-port-moved] {
  display: none !important;
}

/* —— Sticky summary polish —— */
.orderpage .orderpage-summary.occ-summary-polished.orderpage-summary-sticky {
  padding: 0.75rem 1rem 0.65rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--occ-border, #e5e7eb);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
}

.orderpage .orderpage-summary.occ-summary-polished .orderpage-summary_title h3 {
  font-size: 0.7rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--occ-muted, #6b7280) !important;
  margin-bottom: 0.25rem !important;
}

.orderpage .orderpage-summary.occ-summary-polished .occ-cycle-select,
.orderpage .orderpage-summary.occ-summary-polished select[name="cycle"] {
  min-width: 9rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  border: 1px solid var(--occ-border, #e5e7eb);
  font-weight: 600;
  color: var(--occ-text, #111827);
  background: #fff;
}

.orderpage .orderpage-summary.occ-summary-polished .orderpage-summary_total .h1,
.orderpage .orderpage-summary.occ-summary-polished .orderpage-summary_total .text-primary {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.orderpage .orderpage-summary.occ-summary-polished .orderpage-summary_submit .btn,
.orderpage .orderpage-summary.occ-summary-polished button.btn-success {
  min-height: 2.75rem;
  border-radius: 0.65rem !important;
  font-weight: 700 !important;
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
  background: var(--occ-accent, #000e9c) !important;
  border-color: var(--occ-accent, #000e9c) !important;
}

.orderpage .orderpage-summary.occ-summary-polished .orderpage-summary_submit .btn:hover,
.orderpage .orderpage-summary.occ-summary-polished button.btn-success:hover {
  background: var(--occ-accent-hover, #0018a8) !important;
  border-color: var(--occ-accent-hover, #0018a8) !important;
}
