/* WARNING: SHARED WIDGET. Changes propagate to ALL pages using this widget.
   WS: embarazo, Dia de la Madre, all /tools/* admin UIs.
   After editing .ws-co__card* selectors: run ssr_cli.py regen-all. Docs: Checkout/README.md */
/* =====================================================
   WS CHECKOUT WIDGET (unified) — CSS NAMESPACE: .ws-co__*
   ===================================================== */


@media (max-width: 1366px) {
  }
@media (max-width: 767px) {
  }

.ws-co {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 60px;
  scroll-margin-top: 80px;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: #292929;
  background: transparent;
  -webkit-font-smoothing: antialiased;
}
.ws-co *,
.ws-co *::before,
.ws-co *::after {
  box-sizing: border-box;
}

/* ---- Variables (YOULO = default) ---- */
.ws-co {
  --ws-co-accent: #DDC73F;
  --ws-co-accent-hover: #BEA81F;
  --ws-co-accent-bg: rgba(221, 199, 63, 0.1);
  --ws-co-accent-border: #DDC73F;
  --ws-co-bg: #F8F6F4;
  --ws-co-card-bg: #fff;
  --ws-co-text: #292929;
  --ws-co-muted: #7A7A7A;
  --ws-co-border: #E8E4DF;
  --ws-co-inactive: #D4D0CB;
  --ws-co-radius: 4px;
  --ws-co-radius-lg: 0;
  --ws-co-font-display: 'Bernoru-BlackMedium';
  --ws-co-font-body: 'Soleil';
  --ws-co-deposit: 20;
}

/* ---- WS brand override ---- */
.ws-co[data-brand="WS"] {
  max-width: 1200px;
  --ws-co-accent: #976338;
  --ws-co-accent-hover: #B5803C;
  --ws-co-accent-bg: rgba(151, 99, 56, 0.08);
  --ws-co-accent-border: #976338;
  --ws-co-text: #292929;
  --ws-co-muted: #7A7A7A;
  --ws-co-font-display: 'Marcellus';
  --ws-co-font-body: 'soleilLight';
  --ws-co-font-button: 'soleilBold';
  --ws-co-font-price: 'soleilBold';
  --ws-co-deposit: 50;
  --ws-co-radius-lg: 10px;
}

/* =====================================================
   PROGRESS BAR
   ===================================================== */
.ws-co__progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px 40px;
  max-width: 500px;
  margin: 0 auto;
}

.ws-co__progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ws-co__progress-line {
  height: 3px;
  flex: 1;
  background: var(--ws-co-inactive);
  margin-top: 6px;
  transition: background 0.3s ease;
  min-width: 40px;
}

.ws-co__progress-line.completed {
  background: var(--ws-co-accent);
}

.ws-co__step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ws-co-inactive);
  border: 2px solid var(--ws-co-inactive);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ws-co__step-dot.active {
  background: var(--ws-co-accent);
  border-color: var(--ws-co-accent);
  width: 16px;
  height: 16px;
}

.ws-co__step-dot.completed {
  background: var(--ws-co-accent);
  border-color: var(--ws-co-accent);
}

.ws-co__step-label {
  font-size: 12px;
  color: var(--ws-co-text);
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ws-co__step-label.active {
  color: var(--ws-co-text);
  font-weight: 700;
}

/* =====================================================
   PANELS
   ===================================================== */
.ws-co__panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ws-co__panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   STEP 1 — SESSION
   ===================================================== */
.ws-co__step1-inner {
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Field blocks ---- */
.ws-co__field {
  background: var(--ws-co-card-bg);
  border-radius: var(--ws-co-radius-lg);
  border: 1px solid var(--ws-co-border);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.ws-co__field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ws-co-muted);
  margin-bottom: 4px;
}

.ws-co__field-note {
  font-size: 12px;
  color: var(--ws-co-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ---- People big circle slider ---- */
.ws-co__people-wrap {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}

.ws-co__people-bubble {
  position: absolute;
  top: 4px;
  width: 44px;
  height: 44px;
  background: #292929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0.05s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
}

input[type="range"].ws-co__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--ws-co-border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

input[type="range"].ws-co__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ws-co-accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--ws-co-accent), 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

input[type="range"].ws-co__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ws-co-accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--ws-co-accent), 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* People range: invisible thumb — bubble replaces it visually */
input[type="range"].ws-co__range--people {
  height: 4px;
}

input[type="range"].ws-co__range--people::-webkit-slider-thumb {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

input[type="range"].ws-co__range--people::-moz-range-thumb {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.ws-co__slider-marks {
  position: relative;
  display: flex;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ws-co-muted);
  height: 16px;
}

.ws-co__slider-marks span {
  position: absolute;
  transform: translateX(-50%);
}

.ws-co__slider-marks span:nth-child(1) { left: 22px; }
.ws-co__slider-marks span:nth-child(2) { left: calc(22px + 0.2857 * (100% - 44px)); }
.ws-co__slider-marks span:nth-child(3) { left: calc(22px + 0.6429 * (100% - 44px)); }
.ws-co__slider-marks span:nth-child(4) { left: calc(100% - 22px); }

/* ---- Duration pills ---- */
.ws-co__duration-row {
  display: flex;
  gap: 8px;
}

.ws-co__dur-label {
  flex: 1;
  cursor: pointer;
}

.ws-co__dur-label.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.ws-co__dur-label input[type="radio"] {
  display: none;
}

.ws-co__dur-pill {
  display: block;
  text-align: center;
  padding: 10px 0;
  border: 1.5px solid var(--ws-co-border);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ws-co-text);
  transition: all 0.2s ease;
  min-height: 44px;
  line-height: 1.5;
}

.ws-co__dur-label input[type="radio"]:checked + .ws-co__dur-pill {
  background: var(--ws-co-accent);
  border-color: var(--ws-co-accent);
  color: var(--ws-co-text);
}

.ws-co__dur-label:not(.disabled):hover .ws-co__dur-pill {
  border-color: var(--ws-co-accent);
}

.ws-co__dur-hint {
  font-size: 12px;
  color: var(--ws-co-accent);
  margin-top: 8px;
  font-weight: 600;
  display: none;
}

/* ---- Price display (Step 1) ---- */
.ws-co__price-display {
  text-align: center;
  margin-bottom: 20px;
  padding: 36px 24px 32px;
  background: var(--ws-co-card-bg);
  border-radius: var(--ws-co-radius-lg);
  border: none;
}

.ws-co__price-main {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--ws-co-text);
  letter-spacing: -1px;
  font-style: normal;
}

.ws-co__price-main::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--ws-co-accent);
  border-radius: 2px;
  margin: 12px auto 0;
}

.ws-co__price-per {
  font-size: 14px;
  color: var(--ws-co-muted);
  margin-top: 10px;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
}

/* ---- Tooltip ---- */
.ws-co__help {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--ws-co-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ws-co-muted);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.ws-co__help:hover,
.ws-co__help.active {
  border-color: var(--ws-co-accent);
  color: var(--ws-co-accent);
  background: var(--ws-co-accent-bg);
}

.ws-co__tooltip {
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: var(--ws-co-text);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 6px;
  width: 220px;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  z-index: 100;
  pointer-events: none;
}

.ws-co__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ws-co-text);
}

.ws-co__help.active .ws-co__tooltip {
  display: block;
}

/* ---- CTA Button ---- */
.ws-co__btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--ws-co-accent);
  color: #fff;
  font-family: var(--ws-co-font-button, var(--ws-co-font-display, 'Bernoru-BlackMedium')), 'Helvetica Neue', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--ws-co-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 52px;
}

.ws-co[data-brand="YOULO"] .ws-co__btn { color: #292929; }

.ws-co__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--ws-co-accent) 40%, transparent);
}

.ws-co__btn:active {
  transform: translateY(0);
}

.ws-co__btn--nav {
  width: auto;
  padding: 10px 24px;
  font-size: 13px;
}

.ws-co__btn--muted {
  background: #fff;
  border: 1.5px solid var(--ws-co-text);
  color: var(--ws-co-text);
}

.ws-co__btn--muted:hover {
  background: var(--ws-co-text);
  color: #fff;
  filter: none;
  box-shadow: none;
}

.ws-co__step1-inner .ws-co__btn {
  margin-top: 20px;
}

/* =====================================================
   STEP 2 — EXTRAS
   ===================================================== */
.ws-co__step2-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 767px) {
  .ws-co__step2-layout {
    grid-template-columns: 1fr;
  }
}

/* ---- Navigation row (back/next) ---- */
.ws-co__nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ws-co-border);
}

.ws-co__back {
  background: none;
  border: none;
  color: var(--ws-co-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
  transition: color 0.2s;
  min-height: 44px;
}

.ws-co__back:hover {
  color: var(--ws-co-text);
}

/* ---- Section heading ---- */
.ws-co__section-heading {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--ws-co-text);
  margin-bottom: 10px;
  letter-spacing: 0;
}

/* ---- Addon card (selling card) ---- */
.ws-co__addon-card {
  background: var(--ws-co-card-bg);
  border: 1.5px solid var(--ws-co-border);
  border-radius: var(--ws-co-radius-lg);
  padding: 0;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
  overflow: hidden;
}

.ws-co__addon-card.highlighted {
  border-color: var(--ws-co-accent);
  background: var(--ws-co-accent-bg);
}

.ws-co__addon-card-body {
  padding: 16px 20px;
}

/* ---- Addon accordion row (WS toggle cards) ---- */
.ws-co__addon-row {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.ws-co__addon-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: auto;
}
.ws-co__addon-card.expanded .ws-co__addon-chevron {
  transform: rotate(-135deg);
}
.ws-co__addon-card.no-detail .ws-co__addon-chevron {
  display: none;
}
.ws-co__addon-card.no-detail .ws-co__addon-row {
  cursor: default;
}
.ws-co__addon-checkbox {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid #D4D0CB;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ws-co__addon-checkbox.checked {
  background: var(--ws-co-accent);
  border-color: var(--ws-co-accent);
}
.ws-co__addon-checkbox.checked::after {
  content: '\2713';
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.ws-co__addon-info {
  flex: 1 1 0%;
}
.ws-co__addon-name {
  font-family: var(--ws-co-font-display, 'Marcellus'), Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ws-co-text);
}
.ws-co__addon-price {
  font-size: 16px;
  font-weight: 300;
  color: var(--ws-co-accent);
  flex-shrink: 0;
}
.ws-co__addon-price.included {
  color: var(--ws-co-accent);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(151, 99, 56, 0.12);
  padding: 3px 10px;
  border-radius: 4px;
}
.ws-co__addon-row-subtitle {
  font-size: 12px;
  color: var(--ws-co-muted);
  margin-top: 2px;
}

/* ---- Addon detail (expandable content) ---- */
.ws-co__addon-detail {
  padding: 0 20px 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.ws-co__addon-card.expanded .ws-co__addon-detail {
  max-height: 400px;
  padding: 0 20px 20px;
}
.ws-co__addon-detail-content {
  margin-top: 16px;
  overflow: hidden;
}
.ws-co__addon-detail-media {
  float: left;
  width: 140px;
  margin: 0 16px 8px 0;
  border-radius: 8px;
  overflow: hidden;
}
.ws-co__addon-detail-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.ws-co__addon-detail-text {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.6;
}

/* ---- Retoque: selling card with big before/after ---- */
.ws-co__retoque-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ws-co__retoque-hero .ws-co__ba-before,
.ws-co__retoque-hero .ws-co__ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ws-co__retoque-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  pointer-events: none;
}

.ws-co__retoque-hero .ws-co__ba-after {
  clip-path: inset(0 0 0 50%);
}

.ws-co__retoque-hero .ws-co__ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.4);
  z-index: 2;
}

.ws-co__retoque-hero .ws-co__ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
}

.ws-co__retoque-hero .ws-co__ba-label {
  position: absolute;
  bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  z-index: 2;
  pointer-events: none;
}

.ws-co__retoque-hero .ws-co__ba-label--before {
  left: 12px;
}

.ws-co__retoque-hero .ws-co__ba-label--after {
  right: 12px;
}

/* ---- Option pills (for retoque and print) ---- */
.ws-co__option-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ws-co__option-pill {
  flex: 1;
  min-width: 0;
  padding: 4px 8px;
  border: 1.5px solid var(--ws-co-border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.ws-co__option-pill:hover {
  border-color: var(--ws-co-accent);
}

.ws-co__option-pill.selected {
  background: var(--ws-co-accent);
  border-color: var(--ws-co-accent);
  color: #fff;
}

.ws-co__option-pill-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ws-co-text);
}

.ws-co__option-pill-price {
  font-size: 12px;
  color: var(--ws-co-muted);
}

.ws-co__option-pill.selected .ws-co__option-pill-price {
  color: #fff;
}

.ws-co__option-pill-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ws-co-accent);
  background: var(--ws-co-accent-bg);
  padding: 1px 5px;
  border-radius: 3px;
  position: absolute;
  bottom: 3px;
}

.ws-co__option-pill {
  position: relative;
}

.ws-co__option-pill.selected .ws-co__option-pill-badge {
  background: rgba(0,0,0,0.15);
  color: #fff;
}

/* ---- Addon heading inside card ---- */
.ws-co__addon-title {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--ws-co-text);
  margin-bottom: 4px;
}

.ws-co__addon-subtitle {
  font-size: 13px;
  color: var(--ws-co-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* ---- Print card placeholder ---- */
.ws-co__print-visual {
  background: linear-gradient(135deg, #F8F6F4 0%, #EDE9E3 100%);
  padding: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 100px;
}

.ws-co__print-icon {
  flex-shrink: 0;
  line-height: 1;
}

.ws-co__print-text {
  text-align: left;
  font-size: 14px;
  color: var(--ws-co-text);
  line-height: 1.4;
}

.ws-co__print-text strong {
  display: block;
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 16px;
  margin-bottom: 2px;
}

/* ---- Print fan (polaroid cards) ---- */
.ws-co__print-fan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px 20px;
  background: linear-gradient(135deg, #F8F6F4 0%, #EDE9E3 100%);
  overflow: hidden;
}

.ws-co__print-fan-photo {
  background: #fff;
  padding: 5px;
  width: 140px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
}

.ws-co__print-fan-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.ws-co__print-fan-photo--1 {
  transform: rotate(-12deg);
  z-index: 1;
  margin-right: -18px;
}

.ws-co__print-fan-photo--2 {
  transform: rotate(2deg);
  z-index: 3;
  margin-right: -18px;
}

.ws-co__print-fan-photo--3 {
  transform: rotate(14deg);
  z-index: 2;
}

@media (max-width: 600px) {
  .ws-co__print-fan-photo {
    width: 100px;
    padding: 4px;
  }
  .ws-co__print-fan {
    padding: 24px 12px 16px;
  }
}

@media (max-width: 767px) {
  .ws-co__retoque-hero {
    height: 260px;
  }

  .ws-co__retoque-hero img {
    height: 260px;
  }

  .ws-co__option-pills {
    gap: 6px;
  }

  .ws-co__option-pill {
    padding: 5px 6px;
    min-height: 38px;
  }

  .ws-co__option-pill-label {
    font-size: 12px;
  }
}

/* ---- Color selector (both rooms) ---- */
.ws-co__colors-wrap {
  background: var(--ws-co-card-bg);
  border: 1.5px solid var(--ws-co-border);
  border-radius: var(--ws-co-radius-lg);
  padding: 16px 20px;
  margin-bottom: 10px;
}

.ws-co__room-block {
  margin-bottom: 14px;
}

.ws-co__room-block:last-child {
  margin-bottom: 0;
}

.ws-co__room-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ws-co-muted);
  margin-bottom: 10px;
}

.ws-co__room-title.disabled-room {
  opacity: 0.4;
}

.ws-co__swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ws-co__swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  border: 2px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.ws-co__swatch:hover:not(.disabled-swatch) {
  transform: scale(1.15);
}

.ws-co__swatch.selected {
  outline: 3px solid var(--ws-co-accent);
  outline-offset: 2px;
}

.ws-co__swatch.disabled-swatch {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.ws-co__swatch--white { background: #fff; border-color: #d0d0d0; }
.ws-co__swatch--black { background: #292929; }
.ws-co__swatch--green { background: #034632; }
.ws-co__swatch--gray { background: #8E8E93; }
.ws-co__swatch--red { background: #88272e; }
.ws-co__swatch--yellow { background: #DDC73F; }
.ws-co__swatch--brown { background: #753d29; }

.ws-co__room-surcharge {
  font-size: 12px;
  color: var(--ws-co-muted);
  margin-top: 6px;
  font-weight: 400;
  display: none;
}

.ws-co__room-surcharge.visible {
  display: block;
  color: var(--ws-co-text);
  font-weight: 700;
  background: var(--ws-co-accent-bg);
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 10px;
}

/* slider marks: using absolute positioning from main block (lines 243-260) */

/* (old retoque-inner/controls/ba-handle removed — replaced by retoque-hero + option-pills) */

/* ---- Sticky sidebar ---- */
.ws-co__sidebar {
  background: var(--ws-co-card-bg);
  border: 1.5px solid var(--ws-co-border);
  border-radius: var(--ws-co-radius-lg);
  padding: 20px;
  position: sticky;
  top: 24px;
}

.ws-co__sidebar-title {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--ws-co-text);
  letter-spacing: 0;
}

.ws-co__summary-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  padding: 5px 0;
  color: var(--ws-co-text);
  gap: 8px;
}

.ws-co__summary-item span:first-child {
  flex: 1;
  min-width: 0;
}

.ws-co__summary-item.muted {
  color: var(--ws-co-muted);
}

.ws-co__summary-sep {
  height: 1px;
  background: var(--ws-co-border);
  margin: 10px 0;
}

.ws-co__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 18px;
  font-weight: 700;
  color: var(--ws-co-text);
  padding: 8px 0 0;
}

.ws-co__sidebar .ws-co__btn {
  margin-top: 16px;
}

/* Nav CTA button in Step 2 top bar (mobile) */
.ws-co__nav-top--step2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ws-co-card-bg);
  border-radius: 0 0 12px 12px;
  padding: 8px 0;
}

.ws-co__nav-cta {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--ws-co-accent);
  color: #1A1A1A;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  min-height: 44px;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  box-sizing: border-box;
}

.ws-co__nav-cta:hover {
  background: var(--ws-co-accent-hover, #C9A800);
}

.ws-co__nav-cta-price {
  display: none;
}

.ws-co__nav-cta-label {
  font-weight: 500;
}

@media (max-width: 767px) {
  .ws-co__nav-cta {
    display: flex;
  }

  .ws-co__sidebar--desktop {
    order: -1;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
  }

  .ws-co__sidebar--desktop .ws-co__sidebar-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .ws-co__sidebar--desktop .ws-co__summary-total {
    font-size: 15px;
  }

  .ws-co__sidebar--desktop .ws-co__btn {
    display: none;
  }
}

/* =====================================================
   STEP 3 — DATE & PAYMENT
   ===================================================== */
.ws-co__step3-main {
}

.ws-co__step3-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 767px) {
  .ws-co__step3-layout {
    grid-template-columns: 1fr;
  }
  .ws-co__step3-aside {
    order: -1;
  }
}

/* ---- Calendar ---- */
.ws-co__cal-wrap {
  background: var(--ws-co-card-bg);
  border: 1px solid var(--ws-co-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.ws-co__cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ws-co__cal-month {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--ws-co-text);
}

.ws-co__cal-nav {
  background: none;
  border: 1px solid var(--ws-co-border);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 16px;
  color: var(--ws-co-text);
  transition: border-color 0.2s;
  line-height: 1;
}

.ws-co__cal-nav:hover {
  border-color: var(--ws-co-accent);
  background: var(--ws-co-accent-bg);
}

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

.ws-co__cal-dow {
  font-size: 12px;
  color: var(--ws-co-muted);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ws-co__cal-day {
  padding: 10px 4px;
  border-radius: 8px;
  font-size: 15px;
  cursor: default;
  transition: all 0.2s;
  border: none;
  background: none;
  color: var(--ws-co-inactive);
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
}

.ws-co__cal-day.available {
  color: var(--ws-co-text);
  cursor: pointer;
  font-weight: 600;
}

.ws-co__cal-day.available:hover {
  background: var(--ws-co-accent-bg);
}

.ws-co__cal-day.today {
  font-weight: 700;
}

.ws-co__cal-day.selected {
  background: var(--ws-co-accent);
  color: #fff;
  font-weight: 700;
}

.ws-co__cal-day.empty {
  visibility: hidden;
}

/* ---- Time slots (separate block below calendar) ---- */
.ws-co__times-wrap {
  background: var(--ws-co-card-bg);
  border: 1.5px solid var(--ws-co-accent-border);
  border-radius: var(--ws-co-radius-lg);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: none;
}

.ws-co__times-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ws-co-muted);
  margin-bottom: 10px;
}

.ws-co__times-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ws-co__time-slot {
  padding: 10px 20px;
  border: 2px solid var(--ws-co-border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  color: var(--ws-co-text);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
}

.ws-co__time-slot:hover {
  border-color: var(--ws-co-accent);
  background: var(--ws-co-accent-bg);
}

.ws-co__time-slot.selected {
  background: var(--ws-co-accent);
  border-color: var(--ws-co-accent);
  color: #fff;
}

/* ---- Contact form ---- */
.ws-co__form-wrap {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

.ws-co__form-card {
  background: var(--ws-co-card-bg);
  border: 1px solid var(--ws-co-border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ws-co__form-title {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--ws-co-text);
  margin-bottom: 24px;
}

.ws-co__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.ws-co__form-row:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 540px) {
  .ws-co__form-row {
    grid-template-columns: 1fr;
  }
  .ws-co__form-title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .ws-co__form-card {
    padding: 16px;
  }
}

.ws-co__form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  border: 1.5px solid var(--ws-co-border);
  border-radius: 8px;
  padding: 10px 14px 8px;
  transition: border-color .2s;
  background: #fff;
  min-height: 58px;
}

.ws-co__form-group:focus-within {
  border-color: var(--ws-co-accent);
}

.ws-co__form-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.ws-co__form-input,
.ws-co__form-select {
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: var(--ws-co-text);
  background: transparent;
  outline: none;
  min-height: 24px;
  -webkit-appearance: none;
  appearance: none;
}

.ws-co__form-input:focus,
.ws-co__form-select:focus {
  outline: none;
}

.ws-co__form-input::placeholder {
  color: #D4D0CB;
}

.ws-co__phone-row {
  display: flex;
}

.ws-co__phone-prefix {
  padding: 0 8px 0 0;
  border: none;
  border-radius: 0;
  font-size: 14px;
  color: var(--ws-co-muted);
  background: transparent;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.ws-co__phone-row .ws-co__form-input {
  border-radius: 0;
}

/* ---- Certificate ---- */
.ws-co__certificate-section {
  margin-bottom: 24px;
}

.ws-co__certificate-toggle {
  font-size: 14px;
  color: var(--ws-co-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ws-co__certificate-toggle:hover {
  color: var(--ws-co-accent);
}

.ws-co__certificate-form {
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--ws-co-border);
  border-radius: 8px;
  padding: 16px;
}

.ws-co__cert-apply {
  padding: 10px 20px;
  background: var(--ws-co-accent);
  color: var(--ws-co-text);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
}

.ws-co__cert-apply:hover { opacity: 0.9; }

/* ---- Payment label ---- */
.ws-co__form-label--payment {
  font-size: 12px;
  font-weight: 400;
  color: var(--ws-co-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- CTA pair ---- */
.ws-co__cta-pair {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  margin-top: 40px;
  align-items: stretch;
}

.ws-co__cta-pair .ws-co__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.ws-co__cta-pair .ws-co__btn--muted {
  flex-direction: row;
  gap: 8px;
}

@media (max-width: 480px) {
  .ws-co__cta-pair {
    grid-template-columns: 1fr;
  }
  .ws-co__cta-pair .ws-co__btn:not(.ws-co__btn--muted) {
    order: -1;
  }
}

/* ---- Step 3 heading ---- */
.ws-co__step3-heading {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), 'Georgia', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--ws-co-text);
  text-align: center;
  margin-bottom: 32px;
}

/* ---- Calendar reassurance ---- */
.ws-co__cal-reassurance {
  font-size: 13px;
  color: var(--ws-co-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--ws-co-border);
  text-align: center;
  line-height: 1.5;
}

/* ---- Button sub-text ---- */
.ws-co__btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* ---- Reassurance ---- */
.ws-co__reassurance {
  font-size: 12px;
  color: var(--ws-co-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ---- Deposit note ---- */
.ws-co__deposit-note {
  font-size: 13px;
  color: var(--ws-co-muted);
  background: none;
  border: none;
  border-radius: 0;
  padding: 6px 0 0;
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

/* ---- Step 3 sidebar datetime ---- */
.ws-co__summary-dt {
  font-size: 13px;
  color: var(--ws-co-accent);
  font-weight: 600;
  padding: 5px 0;
}

/* Confirmation panel: generated dynamically by showConfirmation() */

/* =====================================================
   UTILITY
   ===================================================== */
.ws-co__hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .ws-co__price-main {
    font-size: 56px;
  }
}

/* ---- Badge ---- */
.ws-co__badge {
  display: inline-block;
  background: var(--ws-co-accent);
  color: var(--ws-co-text);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 6px;
}

/* Fix: visible borders for pills after --border became transparent */
.ws-co__dur-pill,
.ws-co__option-pill,
.ws-co__sidebar,
.ws-co__cert-reveal,
.ws-co__summary-sep {
  border-color: #D4D0CB;
}
.ws-co__summary-sep {
  background: #D4D0CB;
}

/* ---- Toggle addon button ---- */
.ws-co__toggle-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--ws-co-border);
  border-radius: 8px;
  background: transparent;
  color: var(--ws-co-text);
  font-family: var(--ws-co-font-body, 'Soleil'), 'Helvetica Neue', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 44px;
}
.ws-co__toggle-btn:hover {
  border-color: var(--ws-co-accent);
}
.ws-co__toggle-btn.selected {
  background: var(--ws-co-accent);
  border-color: var(--ws-co-accent);
  color: #fff;
}
.ws-co__toggle-btn.included {
  background: var(--ws-co-accent-bg);
  border-color: var(--ws-co-accent);
  cursor: default;
  opacity: 0.8;
}

/* ---- WS brand: sidebar & card overrides ---- */
.ws-co[data-brand="WS"] .ws-co__sidebar {
  background: #FAF7F4;
  border: none;
  border-radius: 12px;
  padding: 24px;
}
.ws-co[data-brand="WS"] .ws-co__sidebar-title {
  font-size: 18px;
  font-weight: 400;
}
.ws-co[data-brand="WS"] .ws-co__addon-card {
  border-width: 2px;
}
.ws-co[data-brand="WS"] .ws-co__btn {
  font-family: var(--ws-co-font-button, var(--ws-co-font-body, 'Soleil')), 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  padding: 18px 20px;
  border-radius: 6px;
}
.ws-co[data-brand="WS"] .ws-co__addon-title {
  font-weight: 400;
}
.ws-co__customize-title {
  font-size: 20px;
  font-family: var(--ws-co-font-body), sans-serif;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ws-co-text);
  text-align: center;
  margin: 0 0 4px;
}
.ws-co__customize-subtitle {
  font-size: 16px;
  font-family: var(--ws-co-font-body), sans-serif;
  color: var(--ws-co-muted);
  text-align: center;
  margin: 0 0 24px;
}

/* ---- Video overlay (WS accordion) ---- */
.ws-co__video-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.ws-co__video-overlay.active {
  display: flex;
}
.ws-co__video-modal {
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.ws-co__video-modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}
.ws-co__video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* ---- Addon media block ---- */
.ws-co__addon-media img {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* =====================================================
   WS PACKAGE CARDS (Step 1 for brand=WS)
   ===================================================== */
.ws-co__step1-inner--ws {
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================================================
   CAROUSEL + CARDS (copied from staging regalos)
   ===================================================== */
.ws-co__carousel-wrapper {
  position: relative;
  margin-bottom: 32px;
  overflow: visible;
}
.ws-co__carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 16px;
}
.ws-co__carousel::-webkit-scrollbar { display: none; }
/* Auto-center cards + hide nav when all cards fit without scroll */
.ws-co__carousel-wrapper--no-scroll .ws-co__carousel { justify-content: center; }
.ws-co__carousel-wrapper--no-scroll .ws-co__carousel-arrow,
.ws-co__carousel-wrapper--no-scroll .ws-co__carousel-dots { display: none !important; }
/* CSS-only: hide arrows+dots instantly when <=2 cards (no JS flash).
   For 3+ cards JS _updateCarouselNav measures real overflow on resize. */
.ws-co__carousel:not(:has(.ws-co__card:nth-child(3))) { justify-content: center; }
.ws-co__carousel-wrapper:has(.ws-co__carousel:not(:has(.ws-co__card:nth-child(3)))) .ws-co__carousel-arrow,
.ws-co__carousel-wrapper:has(.ws-co__carousel:not(:has(.ws-co__card:nth-child(3)))) .ws-co__carousel-dots { display: none !important; }
.ws-co__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.ws-co__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4D0CB;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.ws-co__carousel-dot.active {
  background: var(--ws-co-accent, #976338);
  width: 24px;
  border-radius: 4px;
}
.ws-co__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid #E8E4DF;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
  color: #292929;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ws-co__carousel-arrow:hover {
  border-color: var(--ws-co-accent, #976338);
  color: var(--ws-co-accent, #976338);
}
.ws-co__carousel-arrow--left { left: -24px; }
.ws-co__carousel-arrow--right { right: -24px; }

/* === WS card (white bg, copper accent) === */
.ws-co__card {
  container-type: inline-size;
  border: 2px solid #E8E4DF;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  scroll-snap-align: center;
  flex: 0 0 min(80vw, 336px);
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ws-co__card:hover { border-color: #C4A882; box-shadow: 0 4px 20px rgba(151,99,56,0.1) }
.ws-co__card.selected { border-color: #976338; box-shadow: 0 4px 20px rgba(151,99,56,0.15) }
.ws-co__card-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block }
.ws-co__card-body { padding: 7.1cqi; display: flex; flex-direction: column; flex: 1 }
.ws-co__card-name { font-family: 'Marcellus', Georgia, serif; font-size: 5.4cqi; margin-bottom: 1.25cqi; white-space: nowrap }
.ws-co__card-price { font-family: var(--ws-co-font-price, inherit); font-size: 8.4cqi; font-weight: 700; color: #976338; margin-bottom: 3.6cqi; white-space: nowrap }
.ws-co__card-old-price { text-decoration: line-through; color: #B0A89E; font-size: 4.1cqi; font-weight: 400; margin-left: 1.5cqi; vertical-align: middle }
.ws-co__card-saving { font-size: 3.2cqi; font-weight: 600; color: #976338; background: #F5F1EC; border: 1px solid #C4A882; padding: 0.5cqi 2cqi; border-radius: 4px; margin-left: 1.5cqi; vertical-align: middle }
.ws-co__card-desc { font-size: max(12px, 3.6cqi); color: #7A7A7A; margin-bottom: 3.6cqi; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden }
.ws-co__card-features { list-style: none; padding: 0; margin: 0; flex: 1 }
.ws-co__card-features li { font-size: max(13px, 4.1cqi); padding: 1.75cqi 0; border-bottom: 1px solid #F0ECE8; display: flex; align-items: flex-start; gap: 2.4cqi; line-height: 1.4 }
.ws-co__card-features li:last-child { border-bottom: none }
.ws-co__card-features li::before { content: '\2713'; color: #976338; font-weight: 700; flex-shrink: 0; margin-top: 1px }
.ws-co__card-select { display: block; width: 100%; margin-top: auto; padding: 4.1cqi; padding-top: 6cqi; background: #976338; border: 2px solid #976338; color: #fff; font-family: var(--ws-co-font-button, 'Marcellus'), 'Helvetica Neue', sans-serif; font-size: 4.1cqi; font-weight: 700; letter-spacing: 0.3cqi; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; border-radius: 4px }
.ws-co__card-select:hover { background: #976338; color: #fff }
.ws-co__card.selected .ws-co__card-select { background: #976338; color: #fff }

/* === YOULO card (dark bg, yellow accent) === */
.ws-co__card--youlo {
  background: #292929;
  border-color: #3A3A3A;
}
.ws-co__card--youlo:hover { border-color: #DDC73F; box-shadow: 0 4px 20px rgba(221,199,63,0.15) }
.ws-co__card--youlo .ws-co__card-img-wrap { position: relative; overflow: hidden }
.ws-co__card--youlo .ws-co__card-name { font-family: 'soleilBold', sans-serif; color: #fff }
.ws-co__card--youlo .ws-co__card-price { color: #DDC73F }
.ws-co__card--youlo .ws-co__card-desc { color: rgba(255,255,255,0.5) }
.ws-co__card--youlo .ws-co__card-features li { border-bottom-color: #3A3A3A; color: rgba(255,255,255,0.75) }
.ws-co__card--youlo .ws-co__card-features li::before { color: #DDC73F }
.ws-co__card--youlo .ws-co__card-select { background: #DDC73F; border-color: #DDC73F; color: #292929; font-family: 'Soleil', sans-serif; font-weight: 700 }
.ws-co__card--youlo .ws-co__card-select:hover { background: #DDC73F; color: #292929 }

/* === Gift cards: square photo (1:1) for Google Merchant + gift card visuals === */
/* Gift cards use square photo but must match total height of session cards
   (which use 4:5 portrait). Body grows to fill via flex:1 + features flex:1.
   Aspect ratio matches session card: ~336:843 desktop.
   Features distribute evenly to fill body space (no bottom whitespace). */
.ws-co__card--gift .ws-co__card-img { aspect-ratio: 1/1; }
.ws-co__card--gift { aspect-ratio: 336 / 843; }
@media (max-width: 768px) {
  .ws-co__card--gift { aspect-ratio: auto; }
}

/* === Mobile layout — only structural overrides, typography stays in cqi === */
@media (max-width: 768px) {
  .ws-co__carousel-arrow { display: none; }
  .ws-co__card { flex: 0 0 min(92%, 336px); }
  .ws-co__carousel { padding: 4px 16px 16px; gap: 12px; }
}

/* =====================================================
   OVERLAY MODE (gift checkout)
   ===================================================== */
body.ws-co-open {
  overflow: hidden;
}

.ws-co__overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-co__overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ws-co__modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--ws-co-bg, #F8F6F4);
  border-radius: 16px;
  padding: 0 20px 40px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .ws-co__modal {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
}

.ws-co__modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ws-co-card-bg);
  border: 1px solid var(--ws-co-border);
  border-radius: 50%;
  font-size: 24px;
  color: var(--ws-co-text);
  cursor: pointer;
  margin: 16px 0 0;
  transition: background 0.2s;
}
.ws-co__modal-close:hover {
  background: var(--ws-co-border);
}

.ws-co__modal-inner {
  clear: both;
}

/* Gift header */
.ws-co__gift-header {
  text-align: center;
  padding: 8px 0 24px;
}
.ws-co__gift-title {
  font-family: var(--ws-co-font-display, 'Bernoru-BlackMedium'), serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--ws-co-text);
  margin: 0 0 4px;
}
.ws-co__gift-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--ws-co-text);
}
.ws-co__gift-validity {
  font-size: 13px;
  color: var(--ws-co-muted);
  margin-top: 8px;
}

/* Close confirmation */
.ws-co__close-confirm {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: 16px;
}
.ws-co__close-confirm-inner {
  background: var(--ws-co-card-bg);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.ws-co__close-confirm-inner p {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--ws-co-text);
  line-height: 1.5;
}
.ws-co__close-confirm-btns {
  display: flex;
  gap: 12px;
}
.ws-co__close-confirm-btns .ws-co__btn {
  flex: 1;
  min-height: 44px;
  font-size: 14px;
}

/* Nav CTA visible in overlay on all viewports */
.ws-co__overlay .ws-co__nav-cta {
  display: flex;
}

