/* ==========================================================================
   DreamyKit26 — Two-Step Starter Kit Wizard
   Step 1: Diffuser hero · Step 2: Fragrance picker + subscription upsell
   Mobile-first · CWV-safe · display:none/show architecture (no translateX clip)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Outer wrapper — natural document flow, no overflow clip
   -------------------------------------------------------------------------- */

.dsk26 {
  position: relative;
  width: 100%;
  background: #f8f6f3;
  -webkit-tap-highlight-color: transparent;
  /* NO overflow: hidden — that was clipping the CTA on mobile */
}

.dsk26-track {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Steps — show/hide via data-step attribute (not translateX)
   This lets the page scroll naturally; JS calls window.scrollTo(0,0) on switch
   -------------------------------------------------------------------------- */

/* Step 1: natural page flow — CTA bar is position:fixed */
.dsk26-s1 {
  position: relative;
  display: block;
  padding-bottom: 100px; /* clears the fixed CTA bar (no trust strip inside bar) */
}

/* Step 2: hidden by default */
.dsk26-s2 {
  display: none;
}

/* When wizard is on step 2 */
.dsk26[data-step="2"] .dsk26-s1 {
  display: none;
}

.dsk26[data-step="2"] .dsk26-s2 {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 40px);
  min-height: calc(100vh - 40px);
  animation: dsk26StepIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes dsk26StepIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* --------------------------------------------------------------------------
   STEP 1 — Image pane
   -------------------------------------------------------------------------- */

/* Image pane — square, clean neutral background */
.dsk26-s1-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f9f8f6;
}

.dsk26-s1-photo {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show full product, no cropping */
  display: block;
}

/* Pill badge — "Starter Kit Special" above title */
.dsk26-kit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184, 147, 90, 0.1);
  color: #b8935a;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   STEP 1 — Content panel
   Sits below the image in normal flow; overlaps it 20px with rounded corners.
   Product info scrolls inside; CTA + trust pinned at bottom, always visible.
   -------------------------------------------------------------------------- */

.dsk26-s1-content {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 28px 28px 0 0;
  margin-top: -20px;
  padding: 20px 20px 0;
}

/* Plain semantic wrapper — no scroll, no flex */
.dsk26-s1-scroll-body {}

.dsk26-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8935a;
  margin: 0 0 6px;
}

.dsk26-s1-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #050505;
  margin: 0 0 8px;
}

.dsk26-s1-desc {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.55;
  margin: 0 0 8px;
}

.dsk26-s1-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.dsk26-s1-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #050505;
}

.dsk26-s1-price-label {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.4);
  font-weight: 400;
  align-self: flex-end;
  padding-bottom: 3px;
}

.dsk26-s1-price del {
  font-size: 1rem;
  color: rgba(0,0,0,0.38);
  font-weight: 400;
  text-decoration: line-through;
}

.dsk26-s1-price ins {
  text-decoration: none;
}

/* Value proposition box */
.dsk26-value-prop {
  background: rgba(184, 147, 90, 0.07);
  border: 1px solid rgba(184, 147, 90, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.dsk26-value-prop-heading {
  font-size: 0.88rem;
  font-weight: 600;
  color: #050505;
  margin: 0 0 4px;
}

.dsk26-value-prop-sub {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.52);
  margin: 0;
  line-height: 1.5;
}

/* CTA button — always pinned outside scroll body, always visible */
.dsk26-s1-cta {
  width: 100%;
  height: 52px;
  border-radius: 8px;
  background: #050505;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s ease, gap 0.2s ease;
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.dsk26-s1-cta:hover {
  background: #1a1a1a;
  gap: 14px;
}

.dsk26-s1-cta:active {
  transform: scale(0.98);
}

.dsk26-s1-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  gap: 10px;
}

.dsk26-s1-cta-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Trust strip — legacy (kept for desktop override ref), hidden by default */
.dsk26-trust { display: none; }

/* Trust icon grid — 2×2 on mobile, 4-col on desktop */
.dsk26-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.dsk26-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: #b8935a;
}

.dsk26-trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dsk26-trust-item span {
  font-size: 0.67rem;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* No diffuser fallback */
.dsk26-no-diffuser {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 40px 24px;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.55);
  text-align: center;
}

/* --------------------------------------------------------------------------
   STEP 2 — Sticky header
   -------------------------------------------------------------------------- */

.dsk26-s2-head {
  flex-shrink: 0;
  height: 76px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-end;
  padding: 0 20px 14px;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.dsk26-back {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  padding: 0;
  transition: color 0.15s ease;
}

.dsk26-back:hover {
  color: #050505;
}

.dsk26-back svg {
  transition: transform 0.15s ease;
}

.dsk26-back:hover svg {
  transform: translateX(-2px);
}

/* Centered brand name in Step 2 header */
.dsk26-s2-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #050505;
  flex: 1;
  text-align: center;
}

/* Spacer that mirrors back-button width to keep brand centered */
.dsk26-s2-head-spacer {
  width: 52px; /* approx width of Back button */
  flex-shrink: 0;
}

.dsk26-s2-step-info {
  text-align: right;
}

.dsk26-s2-step-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8935a;
  display: block;
  margin-bottom: 2px;
}

.dsk26-s2-step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #050505;
  display: block;
}

/* --------------------------------------------------------------------------
   STEP 2 — Scrollable body
   -------------------------------------------------------------------------- */

.dsk26-s2-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 16px 160px; /* bottom padding clears the fixed footer */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dsk26-s2-body::-webkit-scrollbar {
  display: none;
}

/* Grid section label */
.dsk26-grid-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Fragrance grid + cards
   -------------------------------------------------------------------------- */

.dsk26-frag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dsk26-frag-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.dsk26-frag-card:hover {
  border-color: rgba(184, 147, 90, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.dsk26-frag-card:hover .dsk26-frag-name {
  color: #b8935a;
}

.dsk26-frag-card:active {
  transform: scale(0.97);
}

.dsk26-frag-card--selected {
  box-shadow: 0 0 0 2px #050505, 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dsk26-frag-card--locked {
  opacity: 0.42;
  pointer-events: none;
}

.dsk26-frag-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #f4f4f4;
}

.dsk26-frag-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dsk26-frag-card:hover .dsk26-frag-photo {
  transform: scale(1.04);
}

/* Selected checkmark */
.dsk26-frag-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.dsk26-frag-check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0, -1px);
}

.dsk26-frag-card--selected .dsk26-frag-check {
  display: flex;
}

/* Card body */
.dsk26-frag-body {
  padding: 11px 12px 13px;
}

.dsk26-frag-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #050505;
  margin: 0 0 2px;
  line-height: 1.2;
}

.dsk26-frag-cat {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(0,0,0,0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* Scent notes — full text, no ellipsis */
.dsk26-frag-notes {
  font-size: 0.66rem;
  color: rgba(0,0,0,0.42);
  margin: 3px 0 0;
  display: block;
  font-style: italic;
  line-height: 1.5;
  white-space: normal;
  overflow: visible;
}

/* --------------------------------------------------------------------------
   STEP 2 — Fixed footer: order summary (mobile)
   -------------------------------------------------------------------------- */

.dsk26-s2-foot {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  z-index: 20;
}

/* --------------------------------------------------------------------------
   Order summary
   -------------------------------------------------------------------------- */

.dsk26-summary {
  margin-bottom: 12px;
}

.dsk26-summary-rows {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.dsk26-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.dsk26-summary-row--sub {
  margin-top: 2px;
  padding-top: 6px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.dsk26-sum-label {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dsk26-sum-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: #050505;
}

.dsk26-sum-price--free {
  color: #059669;
}

.dsk26-sum-price--sub {
  color: #b8935a;
  font-size: 0.7rem;
  font-weight: 500;
}

.dsk26-summary-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 8px 0;
}

.dsk26-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
}

.dsk26-summary-total span:first-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: #050505;
}

.dsk26-sum-total-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #050505;
}

/* "Change" inline button */
.dsk26-sum-change {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 500;
  color: #b8935a;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dsk26-sum-change:hover {
  color: #8a6030;
}

.dsk26-summary-empty {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.38);
  text-align: center;
  padding: 2px 0 8px;
  margin: 0;
}

/* Checkout button */
.dsk26-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background: #050505;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  margin-bottom: 0;
}

.dsk26-checkout-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.dsk26-checkout-btn:active {
  transform: scale(0.98);
}

.dsk26-checkout-btn--disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Backdrop + Bottom sheet
   -------------------------------------------------------------------------- */

.dsk26-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 200;
  transition: background 0.3s ease;
  pointer-events: none;
}

.dsk26-backdrop.dsk26-backdrop--open {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: auto;
}

.dsk26-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  z-index: 210;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  padding-bottom: env(safe-area-inset-bottom);
  max-width: 640px;
  margin-inline: auto;
}

.dsk26-sheet.dsk26-sheet--open {
  transform: translateY(0);
}

/* Drag handle */
.dsk26-sheet-handle {
  width: 36px;
  height: 4px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  margin: 12px auto 20px;
}

.dsk26-sheet-inner {
  padding: 0 20px 28px;
  max-height: 90svh;
  max-height: 90vh;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dsk26-sheet-inner::-webkit-scrollbar {
  display: none;
}

/* Product preview in sheet — legacy (replaced by summary rows) */
.dsk26-sheet-product { display: none; }
.dsk26-sheet-img-wrap { display: none; }
.dsk26-sheet-name { display: none; }
.dsk26-sheet-cat { display: none; }

/* Sheet item summary — diffuser row + fragrance row */
.dsk26-sheet-summary {
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

.dsk26-sheet-summary-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px;
  border-radius: 10px;
}

.dsk26-sheet-summary-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
  flex-shrink: 0;
}

.dsk26-sheet-summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dsk26-sheet-summary-info {
  flex: 1;
  min-width: 0;
}

.dsk26-sheet-summary-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #050505;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dsk26-sheet-summary-sub {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.45);
  margin: 0;
}

.dsk26-sheet-summary-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #050505;
  flex-shrink: 0;
  margin: 0;
}

.dsk26-sheet-summary-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 1px;
}

.dsk26-sheet-summary-was {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.38);
  text-decoration: line-through;
}

.dsk26-sheet-summary-free {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2DBD6E;
}

.dsk26-sheet-question {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin: 0 0 12px;
}

/* --------------------------------------------------------------------------
   Choice options
   -------------------------------------------------------------------------- */

.dsk26-choice {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  background: #fff;
  width: 100%;
  text-align: left;
}

.dsk26-choice:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.dsk26-choice:active {
  transform: scale(0.99);
}

.dsk26-choice.dsk26-choice--selected {
  border-color: #b8935a;
  background: rgba(184, 147, 90, 0.05);
}

/* Name + pill inline row */
.dsk26-choice-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

/* Best Value inline pill */
.dsk26-best-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(184, 147, 90, 0.12);
  color: #b8935a;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1.6;
}

.dsk26-choice-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.dsk26-choice-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #050505;
}

.dsk26-choice-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #b8935a;
}

.dsk26-choice-desc {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.38);
  line-height: 1.4;
}

/* Radio indicator */
.dsk26-choice-radio {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
  margin-top: 2px; /* align with first line of text */
}

.dsk26-choice.dsk26-choice--selected .dsk26-choice-radio {
  border-color: #b8935a;
  background: #b8935a;
}

.dsk26-choice.dsk26-choice--selected .dsk26-choice-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* "Most popular" badge */
.dsk26-popular-badge {
  position: absolute;
  top: -1px;
  right: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  background: #050505;
  color: #fff;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Confirm button */
.dsk26-sheet-confirm {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background: #050505;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.dsk26-sheet-confirm:hover {
  background: #1a1a1a;
}

.dsk26-sheet-confirm:active {
  transform: scale(0.98);
}

.dsk26-sheet-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Cart drawer slot (mini-cart integration)
   -------------------------------------------------------------------------- */

.dreamykit26-drawer {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(248, 246, 243, 0.5);
  padding: 14px;
  margin: 14px 0 0;
}

.dreamykit26-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dreamykit26-drawer-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #050505;
}

.dreamykit26-drawer-count {
  font-size: 0.68rem;
  color: rgba(0,0,0,0.38);
}

.dreamykit26-drawer-slots {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dreamykit26-slot {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
}

.dreamykit26-slot-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: #f4f4f4;
  display: block;
}

.dreamykit26-slot--selected .dreamykit26-slot-img {
  outline: 1.5px solid #050505;
  outline-offset: 2px;
}

.dreamykit26-slot-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #050505;
  line-height: 1.3;
}

.dreamykit26-slot--selected .dreamykit26-slot-name {
  font-weight: 600;
}

.dreamykit26-slot-remove {
  background: transparent;
  border: none;
  color: rgba(0,0,0,0.38);
  cursor: pointer;
  font-size: 1rem;
  padding: 6px 8px;
  line-height: 1;
  font-family: inherit;
  border-radius: 50%;
  transition: color 0.15s ease, background 0.15s ease;
}

.dreamykit26-slot-remove:hover {
  color: #050505;
  background: rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   Cart item styles
   -------------------------------------------------------------------------- */

.dreamykit26-free-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #050505;
}

#dreamyheader26-cart .dreamykit26-gift-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(0, 0, 0, 0.04);
  font-weight: 600;
  font-size: 0.72rem;
  color: #050505;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Unavailable state
   -------------------------------------------------------------------------- */

.dsk26-unavailable {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 40px 24px;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.55);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Desktop (≥ 900px)
   Step 1: true 50/50 CSS grid — image fills left, content right centered
   Step 2: sidebar grid — scrollable grid left, sticky order summary right
   Sheet: centered floating modal with scale+fade
   -------------------------------------------------------------------------- */

@media (min-width: 900px) {

  /* ── Step 1: 50/50 CSS grid ──────────────────────────────────────────── */

  .dsk26-s1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 0; /* remove mobile fixed-bar clearance */
    min-height: calc(100vh - 40px);
    min-height: calc(100svh - 40px);
    overflow: visible;
  }

  .dsk26-s1-img {
    position: static; /* normal grid item */
    inset: auto;
    width: auto;
    height: auto;      /* grid cell stretches to fill */
    aspect-ratio: auto;
    max-height: none;
    background: #f4f2ef; /* warm card bg on desktop */
  }

  .dsk26-s1-img::after {
    display: none; /* no gradient overlay on desktop */
  }

  .dsk26-s1-photo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full product on desktop too */
    padding: 10%;
  }

  .dsk26-offer-badge {
    top: auto;
    bottom: 40px;
    left: 40px;
    transform: none;
    white-space: normal;
  }

  .dsk26-s1-content {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    margin-top: 0;
    border-radius: 0;
    padding: 0 10%;
    max-width: 620px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .dsk26-s1-content::-webkit-scrollbar {
    display: none;
  }

  /* CTA bar: exit fixed mode on desktop — inline flow */
  .dsk26-s1-cta-bar {
    position: static;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .dsk26-s1-title {
    font-size: clamp(2.8rem, 3vw, 3.6rem);
  }

  .dsk26-s1-cta {
    width: auto;
    padding: 0 32px;
    min-width: 280px;
    margin-top: 14px;
  }

  .dsk26-trust {
    justify-content: flex-start;
    max-width: 400px;
    padding: 14px 0 0;
    margin-top: 24px;
  }

  /* ── Step 2: sidebar grid ────────────────────────────────────────────── */

  /* Override display:flex set by mobile [data-step="2"] rule */
  .dsk26[data-step="2"] .dsk26-s2 {
    display: grid;
    animation: none;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 380px;
    grid-template-areas:
      "head head"
      "body foot";
    height: 100vh;
    height: 100svh;
    min-height: 0;
    overflow: hidden;
  }

  .dsk26-s2-head {
    grid-area: head;
    position: static; /* override sticky on mobile */
    height: auto;
    padding: 16px 40px;
    max-width: none;
    margin: 0;
    width: auto;
    z-index: auto;
  }

  .dsk26-s2-body {
    grid-area: body;
    overflow-y: auto;
    padding: 36px 48px 40px;
    max-width: none;
    margin: 0;
    width: auto;
  }

  .dsk26-frag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* .dsk26-frag-notes already display:block globally — no override needed */

  /* Sidebar — overrides fixed mobile footer */
  .dsk26-s2-foot {
    position: static !important;
    grid-area: foot;
    bottom: auto;
    left: auto;
    right: auto;
    border-top: none;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: none;
    padding: 32px 28px;
    overflow-y: auto;
    background: rgba(248, 246, 243, 0.5);
    max-width: none;
    margin: 0;
    width: auto;
  }

  /* "Your Kit" sidebar heading */
  .dsk26-summary::before {
    content: 'Your Kit';
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #050505;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .dsk26-checkout-btn {
    margin-top: 16px;
  }

  /* ── Bottom sheet → centered modal ──────────────────────────────────── */

  .dsk26-sheet {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    margin: 0;
    width: calc(100% - 48px);
    max-width: 460px;
    border-radius: 20px;
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.18),
      0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translate(-50%, -44%) scale(0.94);
    transform-origin: center center;
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
    opacity: 0;
    pointer-events: none;
    padding-bottom: 0;
  }

  .dsk26-sheet.dsk26-sheet--open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  /* Handle is a mobile affordance only */
  .dsk26-sheet-handle {
    display: none;
  }

  .dsk26-sheet-inner {
    padding: 20px 24px 28px;
  }
}

/* --------------------------------------------------------------------------
   1200px: wider sidebar + 3-col grid
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) {

  .dsk26[data-step="2"] .dsk26-s2 {
    grid-template-columns: 1fr 400px;
  }

  .dsk26-frag-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dsk26-s2-body {
    padding: 40px 56px 40px;
  }

  .dsk26-s2-foot {
    padding: 40px 32px;
  }
}

/* ==========================================================================
   Conversion additions — stars · savings badge · social proof · section header
   progress dots · testimonial · best-value ribbon · subscription bullets
   ========================================================================== */

/* Brand meta row */
.dsk26-meta-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.dsk26-brand-name { font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(0,0,0,0.55); }
.dsk26-stars { display: inline-flex; align-items: center; gap: 1px; line-height: 1; }
.dsk26-review-count { font-size: .72rem; color: rgba(0,0,0,0.38); }

/* Savings pill */
.dsk26-savings-pill {
  display: inline-flex;
  align-items: center;
  background: #b8935a;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
  flex-shrink: 0;
}

/* Fragrance teaser strip */
.dsk26-scent-strip { margin: 14px 0 0; }
.dsk26-scent-strip-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.45); margin: 0 0 8px; }
.dsk26-scent-thumbs { display: flex; align-items: center; gap: 6px; overflow: hidden; }
.dsk26-scent-thumb { width: 44px; height: 44px; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; background: #f4f4f4; border: 1.5px solid rgba(0,0,0,0.07); flex-shrink: 0; }
.dsk26-scent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dsk26-scent-thumb--more { display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 600; color: rgba(0,0,0,0.5); background: #ece9e4; border: none; }

/* Fixed CTA bar — pinned to bottom on mobile */
.dsk26-s1-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 -1px 0 rgba(0,0,0,0.08);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
}

/* Hide Step 1 bar when Step 2 is active */
.dsk26[data-step="2"] .dsk26-s1-cta-bar {
  display: none;
}

/* Step 2 section header */
.dsk26-s2-section-header { margin-bottom: 22px; }
.dsk26-s2-eyebrow { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #b8935a; margin: 0 0 6px; }
.dsk26-s2-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #050505;
  margin: 0 0 8px;
}
.dsk26-s2-subhead { font-size: .82rem; color: rgba(0,0,0,0.55); line-height: 1.55; margin: 0; max-width: 480px; }

/* Progress dots */
.dsk26-progress-dots { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.dsk26-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,.15); display: block; }
.dsk26-dot--done { background: #b8935a; }
.dsk26-dot--active { width: 16px; border-radius: 3px; background: #050505; }

/* Testimonial */
.dsk26-testimonial {
  margin: 28px 0 0;
  padding: 18px 18px 18px 22px;
  border-left: 3px solid #b8935a;
  background: rgba(184, 147, 90, .05);
  border-radius: 0 8px 8px 0;
}
.dsk26-testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: #3a3630;
  line-height: 1.6;
  margin: 0 0 10px;
}
.dsk26-testimonial-footer { display: flex; flex-direction: column; gap: 2px; }
.dsk26-testimonial-name { font-size: .72rem; font-weight: 600; color: #050505; letter-spacing: .04em; }
.dsk26-testimonial-meta { font-size: .65rem; color: rgba(0,0,0,0.38); }

/* Best Value corner ribbon — replaced by inline pill, hidden */
.dsk26-best-value-ribbon { display: none; }

/* Subscription bullet list — SVG check icons */
.dsk26-sub-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dsk26-sub-bullets li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.4;
}
.dsk26-sub-bullets li svg {
  flex-shrink: 0;
  color: #b8935a;
  width: 13px;
  height: 13px;
}

/* Desktop overrides for new elements */
@media (min-width: 900px) {
  .dsk26-s2-heading { font-size: 2.2rem; }
  .dsk26-s2-section-header { margin-bottom: 28px; }
  .dsk26-testimonial { margin: 36px 0 0; padding: 22px 24px 22px 28px; }

  /* CTA bar: exit fixed mode — must be here (AFTER the unconditional fixed rule above) */
  .dsk26-s1-cta-bar {
    position: static;
    box-shadow: none;
    padding: 16px 0 0;
    background: transparent;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
  }

  /* Trust icon grid: 4 columns on desktop */
  .dsk26-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Step 2 header: brand name block-level for centering */
  .dsk26-s2-brand {
    font-size: 1.2rem;
  }

  /* Fragrance card: slightly larger corner radius on desktop */
  .dsk26-frag-card {
    border-radius: 18px;
  }
}

/* --------------------------------------------------------------------------
   Round 4 conversion additions
   -------------------------------------------------------------------------- */

/* Guarantee strip — between CTA and trust strip */
.dsk26-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.55);
  margin: 10px 0 0;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.dsk26-guarantee svg { color: #b8935a; flex-shrink: 0; }

/* Sheet scent description */
.dsk26-sheet-desc {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.55);
  font-style: italic;
  line-height: 1.5;
  margin: 2px 0 14px;
  min-height: 0;
}

/* Sheet close button */
.dsk26-sheet-inner { position: relative; }

.dsk26-sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.55);
  flex-shrink: 0;
  z-index: 1;
}
.dsk26-sheet-close:hover { background: rgba(0, 0, 0, 0.1); }

/* Subscription choice — gold tint when selected */
#dsk26ChoiceSub.dsk26-choice--selected {
  border-color: #b8935a;
  background: rgba(184, 147, 90, 0.07);
}

/* Value anchor in sheet one-time choice */
.dsk26-choice-value {
  font-size: 0.7rem;
  color: #b8935a;
  font-weight: 600;
}

/* Savings line in order summary */
.dsk26-summary-savings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0 2px;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.55);
}
.dsk26-sum-savings-amt {
  color: #2DBD6E;
  font-weight: 600;
}
