.dreamycarttemplate26 {
  --dc-bg: #ffffff;
  --dc-ink: #050505;
  --dc-muted: #6f6f6f;
  --dc-hair: rgba(0, 0, 0, .10);
  --dc-card: #ffffff;
  --dc-radius: 22px;
  --dc-radius-sm: 16px;
  --dc-shadow: 0 18px 40px rgba(0, 0, 0, .08);
  --dc-shadow-soft: 0 10px 28px rgba(0, 0, 0, .08);
  --dc-shadow-hover: 0 22px 56px rgba(0, 0, 0, .10);
  --dc-max: 1180px;
  --dc-gutter: clamp(16px, 4vw, 36px);
  --dc-section: clamp(28px, 5vw, 56px);
  --dc-ease: cubic-bezier(.16, 1, .3, 1);

  background: var(--dc-bg);
  color: var(--dc-ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

.dreamycarttemplate26,
.dreamycarttemplate26 * {
  box-sizing: border-box;
}

.dreamycarttemplate26 .wrap {
  max-width: var(--dc-max);
  margin: 0 auto;
  padding: 28px var(--dc-gutter) 80px;
}

.dreamycarttemplate26 .eyebrow {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dc-muted);
  font-size: 12px;
  font-weight: 600;
}

.dreamycarttemplate26 h1 {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.dreamycarttemplate26 .subcopy {
  margin: 10px auto 0;
  color: var(--dc-muted);
  max-width: 62ch;
  font-size: 15px;
}

.dreamycarttemplate26 .topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dc-hair);
}

.dreamycarttemplate26 .assist {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dc-muted);
  font-size: 13px;
  white-space: nowrap;
}

.dreamycarttemplate26 .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--dc-hair);
  background: rgba(0, 0, 0, .02);
}

.dreamycarttemplate26 .pill strong {
  color: var(--dc-ink);
  font-weight: 600;
}

.dreamycarttemplate26 .grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: clamp(16px, 3vw, 28px);
  margin-top: var(--dc-section);
  align-items: start;
}

@media (max-width: 960px) {
  .dreamycarttemplate26 .grid {
    grid-template-columns: 1fr;
  }

  .dreamycarttemplate26 .assist {
    display: none;
  }
}

.dreamycarttemplate26 .panel {
  background: var(--dc-card);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--dc-radius);
  box-shadow: var(--dc-shadow-soft);
  overflow: clip;
}

.dreamycarttemplate26 .panel-h {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dreamycarttemplate26 .panel-h h2 {
  margin: 0;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
}

.dreamycarttemplate26 .items {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dreamycarttemplate26 .items>* {
  min-width: 0;
}

.dreamycarttemplate26 .item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .02);
  border: 1px solid rgba(0, 0, 0, .06);
}

@media (max-width: 560px) {
  .dreamycarttemplate26 .item {
    grid-template-columns: 82px 1fr;
  }

  .dreamycarttemplate26 .item .right {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

/* Image stage with mirror shadow */
.dreamycarttemplate26 .stage {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .10), rgba(0, 0, 0, 0));
  padding: 10px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: visible;
}

.dreamycarttemplate26 .stage::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -10px;
  height: 18px;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .28), rgba(0, 0, 0, 0));
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
}

.dreamycarttemplate26 .img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .02)),
    radial-gradient(circle at 30% 20%, rgba(0, 0, 0, .08), rgba(0, 0, 0, 0));
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, .45);
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

.dreamycarttemplate26 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.dreamycarttemplate26 .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.dreamycarttemplate26 .meta a {
  color: var(--dc-ink);
  text-decoration: none;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
}

.dreamycarttemplate26 .micro {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.dreamycarttemplate26 .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .7);
  color: rgba(0, 0, 0, .70);
  white-space: nowrap;
}

.dreamycarttemplate26 .tag.sub {
  background: rgba(0, 0, 0, .92);
  color: #fff;
  border-color: rgba(0, 0, 0, .92);
}

.dreamycarttemplate26 .tag.save {
  background: rgba(0, 0, 0, .05);
  color: rgba(0, 0, 0, .85);
}

.dreamycarttemplate26 .price {
  font-weight: 600;
  font-size: 14px;
  margin-top: 2px;
}

.dreamycarttemplate26 .right {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dreamycarttemplate26 .qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  height: 38px;
}

.dreamycarttemplate26 .qty button {
  appearance: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 38px;
  cursor: pointer;
  font-weight: 700;
  color: rgba(0, 0, 0, .70);
}

.dreamycarttemplate26 .qty input {
  width: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: rgba(0, 0, 0, .85);
  border: 0;
  outline: none;
  padding: 0;
  background: transparent;
  appearance: textfield;
}

.dreamycarttemplate26 .qty input::-webkit-outer-spin-button,
.dreamycarttemplate26 .qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dreamycarttemplate26 .remove {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  height: 38px;
  padding: 0 12px;
  cursor: pointer;
  font-weight: 600;
  color: rgba(0, 0, 0, .70);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.dreamycarttemplate26 .remove:hover {
  background: #fff;
}

/* Summary */
.dreamycarttemplate26 .summary {
  padding: 18px 18px 16px;
}

.dreamycarttemplate26 .dc-summary-toggle {
  display: none;
}

@media (max-width: 960px) {
  .dreamycarttemplate26 .panel[data-dc-summary-panel][data-collapsed="1"] .dc-summary-breakdown {
    display: none;
  }

  .dreamycarttemplate26 .dc-summary-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .92);
    font-weight: 800;
    font-size: 12px;
    color: rgba(0, 0, 0, .82);
    cursor: pointer;
    white-space: nowrap;
    margin-left: auto;
  }
}

.dreamycarttemplate26 .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 14px;
  color: rgba(0, 0, 0, .86);
}

.dreamycarttemplate26 .row:last-child {
  border-bottom: 0;
}

.dreamycarttemplate26 .row strong {
  font-weight: 600;
}

.dreamycarttemplate26 .row.total {
  padding-top: 14px;
  border-bottom: 0;
  font-size: 16px;
  color: rgba(0, 0, 0, .94);
}

.dreamycarttemplate26 .row.total strong {
  font-weight: 700;
  font-size: 18px;
}

.dreamycarttemplate26 .dc-express {
  margin-top: 14px;
}

.dreamycarttemplate26 .dc-express:empty {
  display: none;
}

/* Stripe / Express Checkout: keep full-width and visually calm */
.dreamycarttemplate26 .dc-express .wc-stripe-payment-request-wrapper,
.dreamycarttemplate26 .dc-express .wcpay-payment-request-wrapper,
.dreamycarttemplate26 .dc-express .woocommerce-payments-payment-request-button,
.dreamycarttemplate26 .dc-express .wc-stripe-payment-request-button,
.dreamycarttemplate26 .dc-express .payment-request-button,
.dreamycarttemplate26 .dc-express button {
  width: 100% !important;
  max-width: 100% !important;
}

.dreamycarttemplate26 .dc-express .wc-stripe-payment-request-wrapper,
.dreamycarttemplate26 .dc-express .wcpay-payment-request-wrapper {
  margin: 0 !important;
}

.dreamycarttemplate26 .dc-express .wc-stripe-payment-request-button,
.dreamycarttemplate26 .dc-express .woocommerce-payments-payment-request-button,
.dreamycarttemplate26 .dc-express .payment-request-button {
  border-radius: 999px !important;
  overflow: hidden;
}

/* OR divider between Express and Checkout */
.dreamycarttemplate26 .dc-or {
  margin: 14px 0 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, .45);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
}

.dreamycarttemplate26 .dc-or::before,
.dreamycarttemplate26 .dc-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, .10);
}

.dreamycarttemplate26 .dc-or span {
  padding: 0 6px;
}

.dreamycarttemplate26 .dc-express:empty+.dc-or {
  display: none;
}

.dreamycarttemplate26 .dc-express:empty+.dc-or+.btn.primary {
  margin-top: 14px;
}

.dreamycarttemplate26 .dc-express+.dc-or+.btn.primary {
  margin-top: 8px;
}

/* Safety: remove legacy placeholder payment boxes (no longer rendered) */
.dreamycarttemplate26 .pay {
  display: none !important;
}

.dreamycarttemplate26 .shipnote {
  margin: 14px 0 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .02);
  border-radius: 16px;
  color: rgba(0, 0, 0, .78);
  font-size: 13px;
}

.dreamycarttemplate26 .bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .08);
  overflow: hidden;
  margin-top: 10px;
}

.dreamycarttemplate26 .bar>i {
  display: block;
  height: 100%;
  width: 64%;
  background: rgba(0, 0, 0, .92);
  border-radius: 999px;
}

.dreamycarttemplate26 .coupon {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.dreamycarttemplate26 .coupon input {
  flex: 1;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.dreamycarttemplate26 .btn {
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: rgba(0, 0, 0, .85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dreamycarttemplate26 .btn.primary {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .92);
  color: #fff;
  border-color: rgba(0, 0, 0, .92);
  margin-top: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.dreamycarttemplate26 .btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.dreamycarttemplate26 .btn[aria-busy="true"] {
  cursor: wait;
  opacity: 0.7 !important;
  pointer-events: none !important;
  animation: dc-pulse 1.5s ease-in-out infinite;
}

@keyframes dc-pulse {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 0.7;
  }
}

.dreamycarttemplate26 .btn.ghost {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .02);
  margin-top: 10px;
}

.dreamycarttemplate26 .pay {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(0, 0, 0, .55);
  font-size: 12px;
}

.dreamycarttemplate26 .pay i {
  display: inline-block;
  height: 28px;
  width: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .02);
}

/* Cross-sells (curated) */
.dreamycarttemplate26 .section {
  margin-top: clamp(22px, 4vw, 36px);
}

.dreamycarttemplate26 .section-head {
  text-align: left;
  padding: 0 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.dreamycarttemplate26 .section-head h3 {
  margin: 0;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 500;
  letter-spacing: -.01em;
  font-size: 22px;
}

.dreamycarttemplate26 .section-head p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 13px;
  max-width: 56ch;
}

.dreamycarttemplate26 .rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 760px) {
  .dreamycarttemplate26 .rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: unset;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .dreamycarttemplate26 .rail>.cs {
    scroll-snap-align: start;
  }

  .dreamycarttemplate26 .rail::-webkit-scrollbar {
    height: 6px;
  }
}

/* ---------------------------------------------------------
  Cart cross-sells — Mobile swipe rail (Option 2) + row cards
  - Hidden by default on mobile (toggle)
  - Swipe left/right (scroll-snap) with "peek" cue
  - Row layout: image left, title+price stack, circular + right
--------------------------------------------------------- */

.dreamycarttemplate26 .dc-cs-toggle {
  display: none;
}

@media (max-width: 760px) {
  .dreamycarttemplate26 .dc-cs .section-head {
    align-items: flex-start;
  }

  .dreamycarttemplate26 .dc-cs-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .92);
    font-weight: 800;
    font-size: 12px;
    color: rgba(0, 0, 0, .82);
    cursor: pointer;
    white-space: nowrap;
  }

  .dreamycarttemplate26 .dc-cs[data-collapsed="1"] .rail {
    display: none;
  }

  .dreamycarttemplate26 .dc-cs {
    max-width: 100%;
    min-width: 0;
  }

  /* Force horizontal swipe + peek cue */
  .dreamycarttemplate26 .dc-cs .rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: unset;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 6px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overscroll-behavior-x: contain;
  }

  .dreamycarttemplate26 .dc-cs .rail>.cs {
    scroll-snap-align: start;
  }

  .dreamycarttemplate26 .dc-cs .rail::-webkit-scrollbar {
    height: 6px;
  }

  /* Row card layout */
  .dreamycarttemplate26 .dc-cs .cs {
    padding: 12px;
    display: grid;
    grid-template-columns: 56px 1fr 44px;
    grid-template-areas:
      "img title cta"
      "img price cta";
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
  }

  .dreamycarttemplate26 .dc-cs .cs .stage {
    grid-area: img;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 14px;
  }

  .dreamycarttemplate26 .dc-cs .cs .img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, .03);
    display: block;
  }

  .dreamycarttemplate26 .dc-cs .cs .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .dreamycarttemplate26 .dc-cs .cs .title {
    grid-area: title;
    margin: 0;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .dreamycarttemplate26 .dc-cs .cs .price {
    grid-area: price;
    margin: 0;
    font-size: 12px;
    color: var(--dc-muted);
  }

  /* Circular + button (keeps real link behavior) */
  .dreamycarttemplate26 .dc-cs .cs .dc-cs-act {
    grid-area: cta;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    padding: 0;
    margin: 0;
    align-self: center;
    justify-self: end;
    background: rgba(0, 0, 0, .92);
    border-color: rgba(0, 0, 0, .92);
    color: #fff;
    text-decoration: none;
    font-size: 0;
    /* hide text */
  }

  .dreamycarttemplate26 .dc-cs .cs .dc-cs-act::before {
    content: "+";
    font-size: 22px;
    line-height: 1;
    color: #fff;
    display: block;
  }
}

.dreamycarttemplate26 .cs {
  border-radius: var(--dc-radius-sm);
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .18s var(--dc-ease), box-shadow .18s var(--dc-ease);
}

.dreamycarttemplate26 .cs:hover {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-hover);
}

.dreamycarttemplate26 .cs .stage {
  padding: 12px;
  border-radius: 18px;
}

.dreamycarttemplate26 .cs .img {
  border-radius: 14px;
}

.dreamycarttemplate26 .cs .title {
  font-weight: 650;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}

.dreamycarttemplate26 .cs .price {
  margin-top: auto;
}

.dreamycarttemplate26 .cs .btn {
  width: 100%;
  border-radius: 999px;
  height: 42px;
  font-weight: 800;
  background: rgba(0, 0, 0, .92);
  border-color: rgba(0, 0, 0, .92);
  color: #fff;
}

/* Hidden update button (functional, but not visible) */
.dreamycarttemplate26 .dreamycarttemplate26-update-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dreamycarttemplate26 * {
    scroll-behavior: auto !important;
  }

  .dreamycarttemplate26 .btn.primary:hover,
  .dreamycarttemplate26 .cs:hover {
    transform: none;
  }

  .dreamycarttemplate26 .cs,
  .dreamycarttemplate26 .btn {
    transition: none !important;
  }
}


/* ---------------------------------------------------------
  FIX: prevent cross-sell rail from widening the page on mobile
  Root cause: CSS grid/flex min-content sizing + horizontal overflow
--------------------------------------------------------- */

.dreamycarttemplate26 .grid>* {
  min-width: 0;
}

@media (max-width: 760px) {

  .dreamycarttemplate26,
  .dreamycarttemplate26 .wrap,
  .dreamycarttemplate26 .grid {
    overflow-x: hidden;
    overflow-x: clip;
  }

  /* Isolate internal layout/paint so scroll width can't influence outer sizing */
  .dreamycarttemplate26 .dc-cs .rail {
    contain: layout paint;
  }
}