:root {
  --black: #000;
  --ink: #111;
  --muted: rgba(0, 0, 0, 0.68);
  --line: #e6e3df;
  --paper: #fafaf9;
  --white: #fff;
  --accent: #0f7a5f;
  color: var(--ink);
  background: var(--paper);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 60px;
  padding: 0 50px;
  background: #000;
  color: #fafaf9;
}

.site-nav {
  align-items: center;
  gap: 28px;
}

.site-nav button,
.brand,
.site-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.site-nav button {
  color: rgba(250, 250, 249, 0.78);
  text-decoration: none;
}

.site-nav button.active,
.site-nav button:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand {
  justify-self: center;
  font-weight: 700;
  color: #fafaf9;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.icon-button.mobile-only {
  display: none;
}

.icon-button.desktop-only {
  display: inline-flex;
}

.cart-icon span {
  position: absolute;
  right: -4px;
  bottom: 0;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
}

.demo-notice-bar {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: #04724d;
  color: #fff;
  padding: 8px 50px;
  text-align: center;
  font-weight: 700;
}

.demo-notice-bar:hover {
  background: #036242;
}

.demo-notice-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  white-space: nowrap;
}

.demo-notice-bar__brand-word {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.demo-notice-bar__brand-plane {
  display: block;
  width: 44px;
  height: auto;
  flex: 0 0 auto;
  overflow: visible;
  transform: translateY(1px);
}

.demo-notice-bar__brand-plane path:first-child {
  fill: #d42d27;
}

.demo-notice-bar__brand-plane path:last-child {
  fill: #ab2924;
}

.demo-notice-bar__message {
  min-width: 0;
}

.demo-notice-bar__hint {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  white-space: nowrap;
}

.demo-eyebrow {
  margin: 0;
  color: #44615a;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-info-scrim {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.5);
}

.demo-info-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 121;
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.demo-info-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--line);
}

.demo-info-modal__header h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.14;
}

.demo-info-modal__body {
  padding: 22px 24px 26px;
}

.demo-info-modal__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.demo-info-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding-left: 20px;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.42;
}

.demo-info-panel {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid #d9e3df;
  border-radius: 6px;
  background: #f6faf8;
}

.demo-setting-group {
  display: grid;
  gap: 12px;
}

.demo-setting-group__heading h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.demo-setting-group__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.checkout-mode-options,
.flow-options,
.screen-options {
  display: grid;
  gap: 12px;
}

.checkout-mode-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-mode-option,
.flow-option,
.screen-option {
  min-height: 94px;
  border: 1px solid #cfd8d5;
  border-radius: 6px;
  background: #fff;
  padding: 14px;
  text-align: left;
}

.checkout-mode-option strong,
.checkout-mode-option span,
.flow-option strong,
.flow-option span,
.screen-option strong,
.screen-option span {
  display: block;
}

.checkout-mode-option strong,
.flow-option strong,
.screen-option strong {
  margin-bottom: 6px;
  font-size: 15px;
}

.checkout-mode-option span,
.flow-option span,
.screen-option span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.checkout-mode-option.selected,
.flow-option.selected,
.screen-option.selected {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.checkout-mode-option.is-disabled,
.flow-option.is-disabled,
.screen-option.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.demo-setting-group--details {
  border-top: 1px solid #d9e3df;
  border-bottom: 1px solid #d9e3df;
  padding: 16px 0;
}

.demo-widget-switcher {
  position: fixed;
  top: auto;
  bottom: clamp(72px, 7vh, 116px);
  z-index: 10020;
  display: grid;
  gap: 10px;
  width: min(520px, calc(100vw - 44px));
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(4, 114, 77, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.26);
  color: #111;
}

.demo-widget-switcher.is-docked-left {
  right: auto;
  left: clamp(18px, 4vw, 64px);
}

.demo-widget-switcher.is-docked-right {
  right: clamp(18px, 4vw, 64px);
  left: auto;
}

.demo-widget-switcher--minimized {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: calc(100vw - 44px);
  min-height: 46px;
  border-radius: 999px;
  padding: 10px 12px;
}

.demo-widget-switcher__intro {
  display: grid;
  gap: 6px;
}

.demo-widget-switcher__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.demo-widget-switcher__brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  color: #16a34a;
  line-height: 1;
}

.demo-widget-switcher__brand-word {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.demo-widget-switcher__brand-plane {
  display: block;
  width: 28px;
  height: auto;
  flex: 0 0 auto;
  overflow: visible;
  transform: translateY(1px);
}

.demo-widget-switcher__brand-plane path:first-child {
  fill: #d42d27;
}

.demo-widget-switcher__brand-plane path:last-child {
  fill: #ab2924;
}

.demo-widget-switcher__mode {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 999px;
  background: #04724d;
  color: #fff;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.demo-widget-switcher__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.demo-widget-switcher .demo-widget-switcher__close {
  display: grid;
  width: 28px;
  min-width: 28px;
  min-height: 28px;
  place-items: center;
  border: 1px solid #d9dfdc;
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 0;
}

.demo-widget-switcher .demo-widget-switcher__minimize {
  display: grid;
  width: 28px;
  min-width: 28px;
  min-height: 28px;
  place-items: center;
  border: 1px solid #d9dfdc;
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 0;
}

.demo-widget-switcher .demo-widget-switcher__close:hover,
.demo-widget-switcher .demo-widget-switcher__minimize:hover {
  border-color: #bbc6c1;
  background: #f4f6f5;
}

.demo-widget-switcher .demo-widget-switcher__minimize span {
  display: block;
  margin-top: -2px;
  font-size: 20px;
  line-height: 1;
}

.demo-widget-switcher .demo-widget-switcher__close svg {
  width: 15px;
  height: 15px;
}

.demo-widget-switcher__minimized-mode {
  color: #34433f;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.demo-widget-switcher__intro p {
  margin: 0;
  color: #59615e;
  font-size: 12px;
  line-height: 1.35;
}

.demo-widget-switcher__row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.demo-widget-switcher__row.is-disabled {
  opacity: 0.56;
}

.demo-widget-switcher__label {
  color: #5f6368;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.demo-widget-switcher__segmented {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 3px;
  min-width: 0;
  border-radius: 999px;
  background: #f1f2f1;
  padding: 4px;
}

.demo-widget-switcher__row.is-disabled .demo-widget-switcher__segmented {
  background: #f6f6f6;
}

.demo-widget-switcher button {
  min-width: 0;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111;
  padding: 0 9px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-widget-switcher button.active {
  background: #111;
  color: #fff;
}

.demo-widget-switcher button:disabled {
  cursor: not-allowed;
  color: #858b88;
}

.demo-widget-switcher button:disabled.active {
  background: #d8dbd9;
  color: #4c514f;
}

.demo-widget-switcher__notes {
  display: grid;
  gap: 6px;
  border-top: 1px solid #e4e7e5;
  padding-top: 8px;
}

.demo-widget-switcher__notes article {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(4, 114, 77, 0.28);
  border-radius: 8px;
  background: #f3faf6;
  padding: 7px 8px;
}

.demo-widget-switcher__notes strong {
  font-size: 12px;
  line-height: 1.2;
}

.demo-widget-switcher__notes span,
.demo-widget-switcher__notes em {
  color: #59615e;
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}

.demo-widget-switcher__notes em {
  color: #34433f;
}

.demo-widget-switcher.is-switching {
  opacity: 0.72;
  pointer-events: none;
}

.octava-size-compact .demo-widget-switcher {
  padding: 12px;
}

.octava-size-compact .demo-widget-switcher__row {
  grid-template-columns: 1fr;
  gap: 6px;
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 60px 50px;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-panel {
  width: min(700px, 62vw);
  background: #fff;
  padding: 44px 34px 38px;
  border-radius: 2px;
}

.hero-panel h2,
.section h2,
.hydrated-section h2 {
  margin: 0;
  color: #000;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.hero-panel p,
.hydrated-section p {
  margin: 18px 0 24px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 2px;
  padding: 0 30px;
  font-weight: 700;
  text-decoration: none;
}

.button-dark {
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.button-light {
  border: 1px solid #fff;
  background: #fff;
  color: #111;
}

.button-outline {
  border: 1px solid #111;
  background: #fff;
  color: #111;
}

.section {
  padding: 60px 50px;
}

.products-section {
  overflow: hidden;
}

.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31vw);
  gap: 16px;
  margin-top: 34px;
  overflow: hidden;
}

.product-card {
  min-width: 0;
}

.product-card__media {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  border-radius: 999px;
  background: #69beb2;
  color: #fff;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
}

.product-card h3 {
  margin: 16px 0 8px;
  font-size: 15px;
  line-height: 1.35;
}

.product-card h3 button {
  border: 0;
  background: transparent;
  color: #000;
  padding: 0;
  font-weight: 700;
  text-align: left;
}

.product-card p {
  margin: 0;
  font-size: 17px;
}

.sale-price {
  display: inline-flex;
  gap: 12px;
}

.slider-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
  color: #555;
}

.slider-status button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 20px;
}

.hydrated-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 50px;
  background: #111;
  color: #fff;
}

.hydrated-section img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.hydrated-section div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.hydrated-section h2,
.hydrated-section p {
  color: #fff;
}

.collections-section {
  padding-top: 28px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}

.collection-grid button {
  min-height: 320px;
  border: 0;
  border-radius: 4px;
  background: #70706e;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.product-page {
  background: #fafaf9;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: 70px;
  align-items: start;
  padding: 58px 50px 70px;
}

.product-gallery {
  display: flex;
  min-height: 680px;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-gallery img {
  width: min(680px, 100%);
  object-fit: contain;
}

.product-info {
  padding: 72px 0 0;
}

.product-info h1 {
  margin: 0;
  max-width: 430px;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.08;
}

.vendor {
  margin: 24px 0;
  font-size: 18px;
}

.variant-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.variant-fieldset legend {
  margin-bottom: 12px;
  font-size: 14px;
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.variant-pill {
  min-width: 62px;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  padding: 0 14px;
  color: #111;
}

.variant-pill.selected {
  background: #000;
  color: #fff;
}

.product-price {
  margin: 28px 0;
  font-size: 22px;
}

.add-button,
.product-info .button-dark {
  width: 100%;
  margin-bottom: 12px;
}

.product-copy {
  max-width: 430px;
  font-size: 18px;
  line-height: 1.55;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.drawer-scrim.visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(490px, 100vw);
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.2);
}

.cart-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 18px 26px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 28px;
}

.cart-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 0 16px 16px 26px;
  border-bottom: 1px solid var(--line);
  color: #555;
  font-size: 11px;
  text-transform: uppercase;
}

.cart-lines {
  overflow-y: auto;
  padding: 24px 16px 24px 26px;
}

.cart-line {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 18px;
  align-items: start;
}

.cart-line + .cart-line {
  margin-top: 24px;
}

.cart-line img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: #fafafa;
}

.cart-line h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}

.cart-line p {
  margin: 0 0 8px;
  color: #555;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 54px 42px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.quantity-control button {
  border: 0;
  background: #fff;
}

.quantity-control span {
  display: grid;
  place-items: center;
}

.cart-line-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.trash-button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #555;
}

.trash-button svg {
  width: 19px;
  height: 19px;
}

.drawer-footer {
  padding: 20px 16px 16px 26px;
  border-top: 1px solid var(--line);
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 19px;
}

.drawer-footer p {
  margin: 0 0 16px;
  color: #555;
  font-size: 14px;
}

.checkout-button {
  width: 100%;
}

.empty-cart {
  padding: 28px;
}

.ccs-checkout-page {
  min-height: calc(100vh - 34px);
  background: #f5f5f3;
  color: #171717;
}

.ccs-checkout-header {
  position: sticky;
  top: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid #dedbd6;
  background: rgba(255, 255, 255, 0.96);
  padding: 0 42px;
}

.ccs-back-link,
.ccs-checkout-brand,
.ccs-checkout-header__right button {
  border: 0;
  background: transparent;
  color: inherit;
}

.ccs-back-link {
  justify-self: start;
  padding: 0;
  color: #444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ccs-checkout-brand {
  justify-self: center;
  padding: 0;
  font-size: 22px;
  font-weight: 800;
}

.ccs-checkout-header__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #444;
  font-size: 13px;
  font-weight: 700;
}

.ccs-checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(340px, 430px);
  gap: 64px;
  width: min(1180px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 46px 0 72px;
  align-items: start;
}

.ccs-checkout-form {
  min-width: 0;
}

.ccs-section {
  margin-bottom: 30px;
}

.ccs-section h1,
.ccs-section h2 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.2;
}

.ccs-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.ccs-section-heading button {
  border: 0;
  background: transparent;
  color: #1155cc;
  padding: 0;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ccs-section-heading--stacked {
  align-items: flex-start;
}

.ccs-section-heading--stacked h2 {
  margin-bottom: 4px;
}

.ccs-section-heading--stacked p,
.ccs-section-copy {
  margin: 0 0 12px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}

.ccs-muted-label {
  margin: 0 0 10px;
  color: #777;
  font-size: 13px;
  text-align: center;
}

.ccs-wallets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ccs-wallets button {
  min-height: 46px;
  border: 0;
  border-radius: 5px;
  background: #5a31f4;
  color: #fff;
  font-weight: 800;
}

.ccs-wallets button + button {
  background: #111;
}

.ccs-field {
  display: block;
  position: relative;
  margin-bottom: 12px;
}

.ccs-field span {
  position: absolute;
  top: 7px;
  left: 12px;
  z-index: 1;
  color: #666;
  font-size: 11px;
  pointer-events: none;
}

.ccs-field input,
.ccs-field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  background: #fff;
  color: #111;
  padding: 20px 12px 6px;
  outline: none;
}

.ccs-field select {
  appearance: none;
}

.ccs-field--error input {
  border-color: #d71920;
  box-shadow: inset 0 0 0 1px #d71920;
}

.ccs-error {
  margin: -5px 0 14px;
  color: #d71920;
  font-size: 12px;
  line-height: 1.3;
}

.ccs-two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ccs-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 0;
  color: #333;
  font-size: 13px;
  line-height: 1.35;
}

.ccs-check-row input,
.ccs-payment-head input,
.ccs-payment-line input,
.ccs-billing-box input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
}

.ccs-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid #bed8cd;
  border-radius: 999px;
  background: #eef8f3;
  color: #0f7a5f;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.ccs-shipping-list,
.ccs-payment-box,
.ccs-billing-box {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.ccs-shipping-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  background: #fff;
  color: #111;
  padding: 15px 14px;
  text-align: left;
}

.ccs-shipping-option:last-child {
  border-bottom: 0;
}

.ccs-shipping-option.selected {
  background: #f8f7ee;
}

.ccs-radio-dot {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  background: #fff;
}

.ccs-shipping-option.selected .ccs-radio-dot {
  border: 5px solid #111;
}

.ccs-shipping-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.ccs-shipping-title {
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.ccs-shipping-detail,
.ccs-shipping-meta {
  color: #555;
  font-size: 12px;
  line-height: 1.25;
}

.ccs-shipping-meta {
  color: #0f7a5f;
  font-weight: 700;
}

.ccs-shipping-carrier {
  display: inline-flex;
  width: auto;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdfdf;
  border-radius: 999px;
  padding: 0 10px;
  color: #333;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ccs-shipping-option strong {
  min-width: 72px;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.ccs-payment-head,
.ccs-payment-line,
.ccs-billing-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px;
  border-bottom: 1px solid #e7e7e7;
  font-size: 14px;
  font-weight: 700;
}

.ccs-payment-head {
  justify-content: space-between;
  background: #f6f9ff;
  box-shadow: inset 3px 0 0 #1b66d2;
}

.ccs-payment-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ccs-card-icons {
  color: #284d9f;
  font-size: 12px;
}

.ccs-payment-fields {
  padding: 14px;
  background: #f7f7f7;
}

.ccs-payment-line {
  border-bottom: 0;
  background: #fff;
}

.ccs-billing-box label {
  border-bottom: 1px solid #e7e7e7;
}

.ccs-billing-box label:last-child {
  border-bottom: 0;
}

.ccs-review-button {
  width: 100%;
}

.ccs-checkout-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #d9d6d0;
}

.ccs-checkout-footer a {
  color: #555;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ccs-order-summary {
  position: sticky;
  top: 94px;
  min-width: 0;
  border-left: 1px solid #dfdcd8;
  padding-left: 42px;
}

.ccs-summary-brand {
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.ccs-summary-lines {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.ccs-summary-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.ccs-summary-image {
  position: relative;
  width: 62px;
  height: 62px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
}

.ccs-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ccs-summary-image span {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.ccs-summary-item h2 {
  margin: 0 0 4px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ccs-summary-item p {
  margin: 0;
  color: #666;
  font-size: 12px;
}

.ccs-summary-item strong {
  font-size: 14px;
  white-space: nowrap;
}

.ccs-discount-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 22px;
}

.ccs-discount-row input,
.ccs-discount-row button {
  min-height: 46px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  background: #fff;
  padding: 0 12px;
}

.ccs-discount-row button {
  font-weight: 800;
}

.ccs-total-lines {
  display: grid;
  gap: 12px;
  border-top: 1px solid #dedbd6;
  padding-top: 18px;
}

.ccs-total-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #333;
  font-size: 14px;
}

.ccs-total-lines .ccs-total-line {
  margin-top: 4px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
}

.ccs-total-lines p {
  margin: -6px 0 0;
  color: #777;
  font-size: 12px;
  text-align: right;
}

.native-checkout-mode-plus {
  background: #fff;
  color: #111;
}

.native-checkout-mode-plus .ccs-checkout-header {
  min-height: 58px;
  border-bottom-color: #dedede;
  background: rgba(255, 255, 255, 0.98);
}

.native-checkout-mode-plus .ccs-checkout-shell {
  grid-template-columns: minmax(0, 480px) minmax(300px, 360px);
  gap: 58px;
  width: min(930px, calc(100vw - 56px));
  padding-top: 32px;
}

.plus-checkout-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 22px;
  border: 1px solid #f4b7b7;
  border-radius: 5px;
  background: #fff3f3;
  color: #9b1c1c;
  padding: 14px;
}

.plus-checkout-alert span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.plus-checkout-alert p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.native-checkout-mode-plus .ccs-pill {
  display: none;
}

.native-checkout-mode-plus .ccs-section {
  margin-bottom: 28px;
}

.native-checkout-mode-plus .ccs-section h1,
.native-checkout-mode-plus .ccs-section h2 {
  font-size: 18px;
}

.native-checkout-mode-plus .ccs-shipping-list {
  border-radius: 5px;
}

.native-checkout-mode-plus .plus-shipping-option {
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  padding: 14px;
}

.native-checkout-mode-plus .plus-shipping-option.selected {
  position: relative;
  z-index: 1;
  border: 1px solid #1263df;
  background: #f3f6ff;
  box-shadow: 0 0 0 1px #1263df;
}

.native-checkout-mode-plus .plus-shipping-option + .plus-shipping-option {
  margin-top: -1px;
}

.native-checkout-mode-plus .plus-shipping-option .ccs-radio-dot {
  margin-top: 3px;
}

.native-checkout-mode-plus .plus-shipping-option > strong {
  padding-top: 2px;
}

.native-checkout-mode-plus .plus-shipping-option .ccs-shipping-title {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.native-checkout-mode-plus .ccs-shipping-meta {
  color: #333;
  font-weight: 700;
}

.native-checkout-mode-plus .plus-selected-pickup {
  display: grid;
  gap: 4px;
  color: #111;
}

.native-checkout-mode-plus .plus-selected-pickup span {
  color: #555;
}

.native-checkout-mode-plus .plus-pickup-search {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  justify-items: stretch;
  text-align: left;
}

.native-checkout-mode-plus .plus-pickup-search__label {
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.native-checkout-mode-plus .plus-pickup-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  background: #fff;
  color: #111;
  padding: 0 12px;
}

.native-checkout-mode-plus .plus-pickup-results {
  display: grid;
  gap: 8px;
}

.native-checkout-mode-plus .plus-pickup-result {
  display: grid;
  gap: 4px;
  justify-items: start;
  border-radius: 4px;
  background: #e9eafe;
  padding: 12px;
  text-align: left;
}

.native-checkout-mode-plus .plus-pickup-result strong {
  color: #111;
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
}

.native-checkout-mode-plus .plus-pickup-result em {
  color: #585b6f;
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
  text-align: left;
}

.native-checkout-mode-plus .plus-pickup-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 12px;
}

.native-checkout-mode-plus .plus-pickup-pagination span:first-child,
.native-checkout-mode-plus .plus-pickup-pagination span:last-child {
  border: 1px solid #d3d8e7;
  border-radius: 5px;
  background: #fff;
  padding: 9px 12px;
}

.native-checkout-mode-plus .plus-pickup-pagination span:last-child {
  color: #1263df;
  font-weight: 800;
}

.native-checkout-mode-ccs .ccs-express {
  display: none;
}

.native-checkout-mode-ccs .ccs-pill {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 44px 50px 30px;
  background: #000;
  color: rgba(250, 250, 249, 0.78);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer a,
.site-footer button {
  display: block;
  margin: 9px 0;
  color: inherit;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .powered {
  grid-column: 1 / -1;
  margin: 18px 0 0;
}

.site-footer .powered button {
  display: inline;
}

@media (max-width: 800px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .icon-button.mobile-only {
    display: inline-flex;
  }

  .icon-button.desktop-only {
    display: none;
  }

  .site-header {
    grid-template-columns: 44px 1fr auto;
    min-height: 53px;
    padding: 0 14px;
  }

  .brand {
    justify-self: center;
  }

  .header-actions {
    gap: 10px;
  }

  .demo-notice-bar {
    flex-wrap: wrap;
    gap: 5px 10px;
    min-height: 48px;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1.2;
  }

  .flow-options,
  .screen-options {
    grid-template-columns: 1fr;
  }

  .demo-info-modal {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 6px;
  }

  .demo-info-modal__header,
  .demo-info-modal__body {
    padding-right: 18px;
    padding-left: 18px;
  }

  .demo-info-modal__header h2 {
    font-size: 24px;
  }

  .demo-widget-switcher__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .demo-widget-switcher {
    bottom: 76px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 88px);
    overflow: auto;
  }

  .demo-widget-switcher.is-docked-left {
    right: auto;
    left: 12px;
  }

  .demo-widget-switcher.is-docked-right {
    right: 12px;
    left: auto;
  }

  .demo-widget-switcher--minimized {
    width: auto;
  }

  .demo-widget-switcher__topline {
    align-items: flex-start;
  }

  .hero {
    min-height: 640px;
    align-items: flex-end;
    padding: 0;
    background-position: center top;
  }

  .hero::before {
    content: "";
    display: block;
    position: absolute;
  }

  .hero-panel {
    width: 100%;
    margin-top: 340px;
    padding: 34px 26px 44px;
    text-align: center;
  }

  .section {
    padding: 46px 16px;
  }

  .product-row {
    grid-auto-columns: minmax(176px, 48vw);
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hydrated-section {
    grid-template-columns: 1fr;
    margin: 20px 16px 40px;
  }

  .hydrated-section div {
    padding: 40px 28px;
  }

  .collection-grid,
  .site-footer,
  .product-shell,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid button {
    min-height: 190px;
  }

  .product-shell {
    gap: 24px;
    padding: 28px 16px 44px;
  }

  .product-gallery {
    min-height: auto;
  }

  .product-info {
    padding: 0;
  }

  .product-info h1 {
    font-size: 42px;
  }

  .cart-line {
    grid-template-columns: 74px 1fr;
  }

  .cart-line-total {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .ccs-checkout-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: auto;
    padding: 16px;
  }

  .ccs-back-link {
    grid-column: 1;
  }

  .ccs-checkout-brand {
    grid-column: 2;
  }

  .ccs-checkout-header__right {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
  }

  .ccs-checkout-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100%, calc(100vw - 32px));
    padding: 28px 0 46px;
  }

  .ccs-order-summary {
    position: static;
    order: -1;
    border-left: 0;
    border-bottom: 1px solid #dfdcd8;
    padding: 0 0 26px;
  }

  .ccs-summary-brand {
    text-align: left;
  }

  .ccs-two-fields,
  .ccs-wallets {
    grid-template-columns: 1fr;
  }

  .ccs-shipping-option {
    grid-template-columns: 18px minmax(0, 1fr) auto;
  }

  .ccs-shipping-carrier {
    grid-column: 2;
    justify-content: flex-start;
  }

  .ccs-shipping-option strong {
    grid-column: 3;
    grid-row: 1;
  }

  .ccs-payment-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
