/* GRUBER cart experience. Every selector is scoped to the cart root. */
#cart-experience.cart26,
#cart-experience.cart26 * {
  box-sizing: border-box;
}

#cart-experience.cart26 {
  --cart-green: #287d42;
  --cart-green-dark: #18552b;
  --cart-ink: #17231b;
  --cart-muted: #5a6d60;
  --cart-line: #dbe7de;
  --cart-soft: #f4f8f4;
  --cart-soft-green: #eaf4ec;
  --cart-warning: #765914;
  --cart-warning-bg: #fff9e8;
  --cart-danger: #9b3a32;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 10px;
  color: var(--cart-ink);
  font-size: 1rem;
  line-height: 1.55;
}

#cart-experience.cart26 :where(h2, h3, p, ul, ol, dl) {
  margin-top: 0;
}

#cart-experience.cart26 h2,
#cart-experience.cart26 h3 {
  color: var(--cart-ink);
  letter-spacing: -.035em;
}

#cart-experience.cart26 h2 {
  margin-bottom: .45rem;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
}

#cart-experience.cart26 h3 {
  margin-bottom: .75rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

#cart-experience.cart26 p {
  color: var(--cart-muted);
}

#cart-experience.cart26 a {
  color: var(--cart-green-dark);
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

#cart-experience.cart26 a:hover,
#cart-experience.cart26 a:focus-visible {
  color: var(--cart-green);
}

#cart-experience .cart26__shell {
  min-width: 0;
}

#cart-experience .cart26__steps {
  margin: 0 0 clamp(22px, 4vw, 38px);
}

#cart-experience .cart26__steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#cart-experience .cart26__steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 16px 14px;
  color: #839187;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.2;
}

#cart-experience .cart26__steps li:first-child {
  padding-left: 0;
}

#cart-experience .cart26__steps li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cart-line);
}

#cart-experience .cart26__steps li:first-child::after {
  left: 0;
}

#cart-experience .cart26__steps li:last-child {
  padding-right: 0;
}

#cart-experience .cart26__steps li:last-child::after {
  right: 0;
}

#cart-experience .cart26__steps li.is-current,
#cart-experience .cart26__steps li.is-complete {
  color: var(--cart-green-dark);
}

#cart-experience .cart26__steps li.is-current::after {
  background: var(--cart-green);
}

#cart-experience .cart26__steps li.is-complete::after {
  background: #86b693;
}

#cart-experience .cart26__step-number {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid #cbd9ce;
  border-radius: 50%;
  background: #fff;
  font-size: .8rem;
}

#cart-experience .cart26__steps .is-current .cart26__step-number,
#cart-experience .cart26__steps .is-complete .cart26__step-number {
  color: #fff;
  border-color: var(--cart-green);
  background: var(--cart-green);
}

#cart-experience .cart26__notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--cart-line);
  border-radius: 14px;
  font-size: .95rem;
}

#cart-experience .cart26__notice strong {
  display: block;
  margin-bottom: 2px;
}

#cart-experience .cart26__notice ul {
  margin: 4px 0 0 18px;
  padding: 0;
}

#cart-experience .cart26__notice--success {
  color: #1e6031;
  border-color: #b8d9bf;
  background: #f0f9f1;
}

#cart-experience .cart26__notice--error {
  color: var(--cart-danger);
  border-color: #ecc4c0;
  background: #fff5f3;
}

#cart-experience .cart26__notice--warning {
  display: block;
  margin-bottom: 18px;
  color: var(--cart-warning);
  border-color: #eddda7;
  background: var(--cart-warning-bg);
}

#cart-experience .cart26__notice-icon {
  display: inline-grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  background: #b9dfc1;
  font-size: .85rem;
  font-weight: 900;
}

#cart-experience .cart26__status {
  min-height: 0;
  margin: 0;
  color: var(--cart-muted);
  font-size: .9rem;
}

#cart-experience.cart26[data-cart-busy="true"] .cart26__items-panel {
  opacity: .62;
  pointer-events: none;
}

#cart-experience .cart26__layout,
#cart-experience .cart26__checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

#cart-experience .cart26__items-panel,
#cart-experience .cart26__panel,
#cart-experience .cart26__summary-card,
#cart-experience .cart26__side-panel {
  min-width: 0;
  border: 1px solid var(--cart-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 11px 32px rgba(37, 86, 48, .065);
}

#cart-experience .cart26__items-panel {
  overflow: hidden;
}

#cart-experience .cart26__items-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px) clamp(18px, 3vw, 32px) 18px;
}

#cart-experience .cart26__kicker {
  margin-bottom: 8px !important;
  color: var(--cart-green-dark) !important;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

#cart-experience .cart26__autosave,
#cart-experience .cart26__hint {
  color: var(--cart-muted);
  font-size: .84rem;
  line-height: 1.45;
}

#cart-experience .cart26__autosave {
  display: none;
}

#cart-experience.cart26--js .cart26__autosave {
  display: inline;
}

#cart-experience.cart26.cart26--js [data-cart-quantity-form] > .cart26__items-footer > button[type="submit"] {
  display: none !important;
}

#cart-experience .cart26__items {
  min-width: 0;
  margin: 0;
  padding: 0 clamp(18px, 3vw, 32px);
  list-style: none;
}

#cart-experience .cart26__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 20px 0;
  border-top: 1px solid var(--cart-line);
}

#cart-experience .cart26__thumb {
  display: grid;
  width: 76px;
  height: 76px;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e2ebe4;
  border-radius: 13px;
  background: var(--cart-soft);
}

#cart-experience .cart26__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

#cart-experience .cart26__thumb-placeholder {
  color: #8fac97;
  font-size: 2rem;
  line-height: 1;
}

#cart-experience .cart26__item-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

#cart-experience .cart26__item-name {
  display: block;
  min-width: 0;
  color: var(--cart-ink) !important;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-decoration: none !important;
}

#cart-experience .cart26__item-name:hover,
#cart-experience .cart26__item-name:focus-visible {
  color: var(--cart-green) !important;
  text-decoration: underline !important;
}

#cart-experience .cart26__item-number,
#cart-experience .cart26__item-warning {
  color: var(--cart-muted);
  font-size: .84rem;
  line-height: 1.35;
}

#cart-experience .cart26__item-warning {
  color: var(--cart-warning);
}

#cart-experience .cart26__quantity-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#cart-experience .cart26__quantity-wrap > label {
  color: var(--cart-muted);
  font-size: .75rem;
  font-weight: 700;
}

#cart-experience .cart26__quantity {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid #bfd1c3;
  border-radius: 11px;
  background: #fff;
}

#cart-experience .cart26__quantity:focus-within {
  border-color: var(--cart-green);
  box-shadow: 0 0 0 3px rgba(40, 125, 66, .13);
}

#cart-experience .cart26__quantity-button {
  display: inline-grid;
  width: 38px;
  height: 40px;
  flex: 0 0 38px;
  place-items: center;
  padding: 0;
  color: var(--cart-green-dark);
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

#cart-experience .cart26__quantity-button:hover,
#cart-experience .cart26__quantity-button:focus-visible {
  background: var(--cart-soft-green);
}

#cart-experience .cart26__quantity input {
  width: 53px;
  min-height: 40px;
  padding: 6px 2px;
  color: var(--cart-ink);
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: center;
}

#cart-experience .cart26__quantity input::-webkit-outer-spin-button,
#cart-experience .cart26__quantity input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

#cart-experience .cart26__remove {
  align-self: end;
  padding: 6px 0;
  color: var(--cart-danger) !important;
  border: 0;
  background: transparent !important;
  font: inherit;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: #e0aaa5;
  text-underline-offset: .18em;
}

#cart-experience .cart26__remove:hover,
#cart-experience .cart26__remove:focus-visible {
  color: #72241f;
}

#cart-experience .cart26__items-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 18px;
  padding: 18px clamp(18px, 3vw, 32px) 24px;
  border-top: 1px solid var(--cart-line);
  background: #fbfdfb;
}

#cart-experience .cart26__summary {
  position: sticky;
  top: 18px;
  min-width: 0;
}

#cart-experience .cart26__summary-card,
#cart-experience .cart26__side-panel {
  padding: clamp(20px, 3vw, 28px);
}

#cart-experience .cart26__summary-list {
  margin: 22px 0 18px;
}

#cart-experience .cart26__summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cart-line);
}

#cart-experience .cart26__summary-list dt,
#cart-experience .cart26__summary-list dd {
  margin: 0;
}

#cart-experience .cart26__summary-list dt {
  color: var(--cart-muted);
}

#cart-experience .cart26__summary-list dd {
  font-weight: 800;
}

#cart-experience .cart26__quote-note {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 20px 0;
  padding: 14px;
  border-radius: 13px;
  background: var(--cart-soft-green);
}

#cart-experience .cart26__quote-note strong {
  color: var(--cart-green-dark);
  font-size: .94rem;
}

#cart-experience .cart26__quote-note span {
  color: var(--cart-muted);
  font-size: .84rem;
}

#cart-experience .cart26__summary-footnote {
  margin: 13px 0 0;
  color: var(--cart-muted) !important;
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

#cart-experience .cart26__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  font: inherit;
  font-size: .94rem;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

#cart-experience .cart26__button:hover,
#cart-experience .cart26__button:focus-visible {
  transform: translateY(-1px);
}

#cart-experience .cart26__button--primary {
  color: #fff !important;
  border-color: var(--cart-green);
  background: var(--cart-green);
}

#cart-experience .cart26__button--primary:hover,
#cart-experience .cart26__button--primary:focus-visible {
  color: #fff !important;
  border-color: var(--cart-green-dark);
  background: var(--cart-green-dark);
}

#cart-experience .cart26__button--secondary {
  color: var(--cart-green-dark) !important;
  border-color: #9fc5a8;
  background: #fff;
}

#cart-experience .cart26__button--secondary:hover,
#cart-experience .cart26__button--secondary:focus-visible {
  color: var(--cart-green-dark) !important;
  border-color: var(--cart-green);
  background: var(--cart-soft-green);
}

#cart-experience .cart26__button--quiet {
  color: var(--cart-green-dark) !important;
  border-color: #bfd1c3 !important;
  background: #fff !important;
}

#cart-experience .cart26__button--quiet:hover,
#cart-experience .cart26__button--quiet:focus-visible {
  border-color: #8db39a;
  background: var(--cart-soft-green);
}

#cart-experience .cart26__button--wide {
  width: 100%;
}

#cart-experience .cart26__button--disabled {
  color: #8a968d !important;
  border-color: #d6ded8;
  background: #eef2ee;
  cursor: not-allowed;
}

#cart-experience .cart26__text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: .94rem;
  font-weight: 700;
}

#cart-experience .cart26__checkout-grid {
  align-items: stretch;
}

#cart-experience .cart26__panel {
  padding: clamp(20px, 4vw, 38px);
}

#cart-experience .cart26__panel-header {
  margin-bottom: 26px;
}

#cart-experience .cart26__panel-header p:not(.cart26__kicker) {
  max-width: 650px;
  margin-bottom: 0;
}

#cart-experience .cart26__panel-header--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

#cart-experience .cart26__pill {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 7px 11px;
  color: var(--cart-green-dark);
  border: 1px solid #c7ddcc;
  border-radius: 999px;
  background: var(--cart-soft-green);
  font-size: .78rem;
  font-weight: 800;
}

#cart-experience .cart26__mode-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: -8px 0 24px;
  padding: 12px 14px;
  border: 1px solid var(--cart-line);
  border-radius: 12px;
  background: var(--cart-soft);
}

#cart-experience .cart26__auth-required {
  color: var(--cart-muted);
  font-size: .88rem;
  line-height: 1.5;
}

#cart-experience .cart26__auth-required a {
  margin-left: 8px;
  font-weight: 800;
}

#cart-experience .cart26__auth-required--summary {
  margin-top: 12px;
  padding: 12px 13px;
  border: 1px solid #c7ddcc;
  border-radius: 11px;
  background: var(--cart-soft-green);
}

#cart-experience .cart26__auth-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

#cart-experience .cart26__auth-links .cart26__button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: .86rem;
}

#cart-experience .cart26__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#cart-experience .cart26__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

#cart-experience .cart26__field--full {
  grid-column: 1 / -1;
}

#cart-experience .cart26__field label {
  color: var(--cart-ink);
  font-size: .88rem;
  font-weight: 750;
}

#cart-experience .cart26__field input,
#cart-experience .cart26__field textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 13px;
  color: var(--cart-ink);
  border: 1px solid #c8d7cb;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  font: inherit;
  line-height: 1.4;
}

#cart-experience .cart26__field textarea {
  min-height: 120px;
  resize: vertical;
}

#cart-experience .cart26__field input:focus,
#cart-experience .cart26__field textarea:focus {
  border-color: var(--cart-green);
  box-shadow: 0 0 0 3px rgba(40, 125, 66, .13);
}

#cart-experience .cart26__field input[readonly] {
  color: var(--cart-muted);
  background: var(--cart-soft);
}

#cart-experience .cart26__agreement label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid #c7ddcc;
  border-radius: 11px;
  background: var(--cart-soft-green);
  font-weight: 700;
  line-height: 1.45;
}

#cart-experience .cart26__agreement input {
  width: auto;
  min-height: 1.1rem;
  flex: 0 0 auto;
  margin-top: .16rem;
}

#cart-experience .cart26__agreement-note {
  margin-top: 14px;
  color: var(--cart-green-dark) !important;
  font-size: .88rem;
  font-weight: 800;
}

#cart-experience .cart26__form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 18px;
  margin-top: 25px;
}

#cart-experience .cart26__form-actions form {
  margin: 0;
}

#cart-experience .cart26__side-panel {
  background: var(--cart-soft);
}

#cart-experience .cart26__side-panel > p:not(.cart26__kicker) {
  margin-bottom: 0;
}

#cart-experience .cart26__side-divider {
  height: 1px;
  margin: 22px 0;
  background: var(--cart-line);
}

#cart-experience .cart26__side-meta {
  font-size: .9rem;
}

#cart-experience .cart26__side-note {
  margin-top: 14px !important;
  color: var(--cart-green-dark) !important;
  font-weight: 800;
}

#cart-experience .cart26__review {
  max-width: 900px;
  margin: 0 auto;
}

#cart-experience .cart26__review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--cart-line);
  border-bottom: 1px solid var(--cart-line);
}

#cart-experience .cart26__details {
  display: grid;
  grid-template-columns: minmax(90px, .35fr) minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
  font-size: .92rem;
}

#cart-experience .cart26__details dt,
#cart-experience .cart26__details dd {
  margin: 0;
}

#cart-experience .cart26__details dt {
  color: var(--cart-muted);
}

#cart-experience .cart26__details dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

#cart-experience .cart26__preserve-lines {
  white-space: pre-line;
}

#cart-experience .cart26__review-items h3 {
  margin-bottom: 10px;
}

#cart-experience .cart26__review-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#cart-experience .cart26__review-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cart-line);
}

#cart-experience .cart26__review-list li > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

#cart-experience .cart26__review-list li span {
  color: var(--cart-muted);
  font-size: .83rem;
}

#cart-experience .cart26__empty {
  display: flex;
  min-height: 360px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 8vw, 80px) 22px;
  border: 1px solid var(--cart-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 11px 32px rgba(37, 86, 48, .065);
  text-align: center;
}

#cart-experience .cart26__empty-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--cart-green-dark);
  border-radius: 50%;
  background: var(--cart-soft-green);
  font-size: 1.6rem;
  font-weight: 850;
}

#cart-experience .cart26__empty h2 {
  margin-bottom: 10px;
}

#cart-experience .cart26__empty > p:not(.cart26__kicker) {
  max-width: 520px;
  margin-bottom: 24px;
}

#cart-experience .cart26__empty .cart26__undo {
  margin-top: 14px;
}

#cart-experience .cart26__error-block {
  margin: 24px;
  padding: 16px;
  color: var(--cart-danger);
  border: 1px solid #ecc4c0;
  border-radius: 12px;
  background: #fff5f3;
}

#cart-experience .cart26__undo {
  margin-top: 14px;
  text-align: center;
}

#cart-experience .cart26__undo button {
  padding: 4px 0;
  color: var(--cart-green-dark);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .88rem;
  font-weight: 750;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: .18em;
}

#cart-experience .cart26__undo button:hover,
#cart-experience .cart26__undo button:focus-visible {
  color: var(--cart-green);
}

@media (max-width: 960px) {
  #cart-experience .cart26__layout,
  #cart-experience .cart26__checkout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #cart-experience .cart26__summary {
    position: static;
  }

  #cart-experience .cart26__summary-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
    gap: 0 24px;
    align-items: center;
  }

  #cart-experience .cart26__summary-card > .cart26__kicker,
  #cart-experience .cart26__summary-card > h2,
  #cart-experience .cart26__summary-card > .cart26__summary-list,
  #cart-experience .cart26__summary-card > .cart26__summary-footnote {
    grid-column: 1;
  }

  #cart-experience .cart26__summary-card > .cart26__quote-note,
  #cart-experience .cart26__summary-card > .cart26__button {
    grid-column: 2;
  }

  #cart-experience .cart26__summary-card > .cart26__quote-note {
    grid-row: 1 / span 3;
  }

  #cart-experience .cart26__summary-card > .cart26__button {
    grid-row: 4;
  }
}

@media (max-width: 680px) {
  #cart-experience.cart26 {
    padding-right: 16px;
    padding-left: 16px;
  }

  #cart-experience .cart26__steps li {
    gap: 7px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: .78rem;
  }

  #cart-experience .cart26__steps li:first-child {
    padding-left: 0;
  }

  #cart-experience .cart26__steps li:last-child {
    padding-right: 0;
  }

  #cart-experience .cart26__step-number {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: .72rem;
  }

  #cart-experience .cart26__items-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  #cart-experience .cart26__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  #cart-experience .cart26__thumb {
    width: 64px;
    height: 64px;
  }

  #cart-experience .cart26__quantity-wrap {
    grid-column: 2;
  }

  #cart-experience .cart26__remove {
    grid-column: 2;
    justify-self: start;
    margin-top: -3px;
  }

  #cart-experience .cart26__summary-card {
    display: block;
  }

  #cart-experience .cart26__summary-card > .cart26__quote-note {
    margin-top: 20px;
  }

  #cart-experience .cart26__summary-card > .cart26__button {
    display: inline-flex;
  }

  #cart-experience .cart26__panel-header--split,
  #cart-experience .cart26__review-grid {
    display: block;
  }

  #cart-experience .cart26__pill {
    margin-top: 16px;
  }

  #cart-experience .cart26__review-grid > div + div {
    margin-top: 22px;
  }

  #cart-experience .cart26__form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #cart-experience .cart26__field--full {
    grid-column: auto;
  }

  #cart-experience .cart26__review-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cart-experience .cart26__button {
    transition: none;
  }
}
