.store-builder-page {
  display: grid;
  gap: 28px;
  color: var(--store-builder-text);
}

.store-builder-hero,
.store-builder-section,
.store-builder-cta {
  border-radius: var(--store-builder-radius);
  background: var(--store-builder-bg);
}

.store-builder-hero {
  display: grid;
  gap: 28px;
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--store-builder-surface);
  padding: clamp(24px, 5vw, 54px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.store-builder-hero-copy {
  display: grid;
  gap: 18px;
}

.store-builder-kicker {
  color: var(--store-builder-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-builder-hero h1 {
  max-width: 780px;
  color: var(--store-builder-text);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .96;
}

.store-builder-lead {
  max-width: 680px;
  color: var(--store-builder-muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.55;
}

.store-builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-builder-hero-media {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--store-builder-radius) - 4px);
  background: var(--store-builder-surface);
}

.store-builder-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.store-builder-hero-media.is-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .55s ease;
}

.store-builder-hero-media.is-slider img.is-active {
  opacity: 1;
}

.store-builder-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.store-builder-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 1px 6px rgba(15, 23, 42, .22);
}

.store-builder-slider-dots span.is-active {
  width: 20px;
  background: #fff;
}

.store-builder-hero-media span {
  color: var(--store-builder-primary);
  font-size: 74px;
  font-weight: 950;
}

.store-builder-section {
  display: grid;
  gap: 18px;
}

.store-builder-section-head {
  display: grid;
  gap: 16px;
  align-items: end;
}

.store-builder-section h2,
.store-builder-cta h2,
.store-builder-rich-text h2 {
  color: var(--store-builder-text);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.store-builder-search {
  display: grid;
  gap: 8px;
}

.store-builder-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.store-builder-category-list a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
  color: var(--store-builder-text);
  font-size: 14px;
  font-weight: 900;
}

.store-builder-category-list a.active {
  border-color: var(--store-builder-primary);
  background: var(--store-builder-primary);
  color: #fff;
}

.store-builder-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.store-catalog-load-more {
  display: grid;
  min-height: 56px;
  place-items: center;
  margin-top: 18px;
  color: var(--store-builder-muted);
  font-size: 13px;
  font-weight: 900;
}

.store-catalog-load-more span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-catalog-load-more span::before {
  width: 14px;
  height: 14px;
  border: 2px solid #dfe5ef;
  border-top-color: var(--store-builder-primary);
  border-radius: 50%;
  content: "";
  animation: store-catalog-spin .8s linear infinite;
}

.store-catalog-load-more.has-error span::before {
  display: none;
}

@keyframes store-catalog-spin {
  to { transform: rotate(360deg); }
}

.store-builder-product-card {
  display: grid;
  gap: 16px;
  border: 1px solid #dfe5ef;
  border-radius: var(--store-builder-radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.store-builder-product-media {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--store-builder-radius) - 5px);
  background: var(--store-builder-surface);
}

.store-builder-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-builder-product-media span {
  color: var(--store-builder-primary);
  font-size: 42px;
  font-weight: 950;
}

.store-builder-product-card h3 {
  color: var(--store-builder-text);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.store-builder-product-card p,
.store-builder-product-card small {
  color: var(--store-builder-muted);
  font-size: 14px;
  font-weight: 700;
}

.store-builder-product-card strong {
  display: block;
  margin-top: 10px;
  color: var(--store-builder-primary);
  font-size: 24px;
  font-weight: 950;
}

.store-builder-product-form {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px;
}

.store-builder-rich-text,
.store-builder-cta {
  border: 1px solid #dfe5ef;
  padding: clamp(20px, 4vw, 36px);
}

.store-builder-rich-text {
  display: grid;
  gap: 14px;
  color: var(--store-builder-muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.store-builder-rich-text a {
  color: var(--store-builder-primary);
  font-weight: 900;
}

.store-builder-cta {
  display: grid;
  gap: 16px;
  align-items: center;
  background: var(--store-builder-surface);
}

.store-builder-cta p {
  margin-top: 8px;
  color: var(--store-builder-muted);
  font-size: 17px;
  font-weight: 700;
}

@media (min-width: 860px) {
  .store-builder-hero {
    grid-template-columns: 1.05fr .95fr;
  }

  .store-builder-section-head,
  .store-builder-cta {
    grid-template-columns: 1fr auto;
  }

  .store-builder-search {
    grid-template-columns: minmax(220px, 320px) auto;
  }
}

@media (max-width: 640px) {
  .store-builder-hero {
    min-height: auto;
  }

  .store-builder-product-form,
  .store-builder-search {
    grid-template-columns: 1fr;
  }
}

.store-product-detail {
  display: grid;
  gap: 28px;
  color: var(--store-builder-text);
}

.store-product-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--store-builder-primary);
  font-size: 14px;
  font-weight: 950;
}

.store-product-main {
  display: grid;
  gap: 28px;
}

.store-product-gallery,
.store-product-info,
.store-product-buybox,
.store-product-tabs,
.store-product-options,
.store-product-split-media,
.store-product-split-copy {
  border: 1px solid #dfe5ef;
  border-radius: var(--store-builder-radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.store-product-gallery,
.store-product-info,
.store-product-buybox,
.store-product-tabs,
.store-product-options,
.store-product-split-copy {
  padding: clamp(18px, 3vw, 28px);
}

.store-product-image {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--store-builder-radius) - 6px);
  background: var(--store-builder-surface);
}

.store-product-image img,
.store-product-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-product-image span,
.store-product-split-media span {
  color: var(--store-builder-primary);
  font-size: 86px;
  font-weight: 950;
}

.store-product-image em {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  background: #dcfce7;
  padding: 7px 12px;
  color: #15803d;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.store-product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
}

.store-product-thumbs button,
.store-product-thumbs a {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  background: #fff;
  color: var(--store-builder-text);
  font-weight: 950;
}

.store-product-thumbs .is-active {
  border-color: var(--store-builder-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--store-builder-primary) 14%, transparent);
}

.store-product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.store-product-category {
  color: var(--store-builder-primary);
  font-size: 15px;
  font-weight: 950;
}

.store-product-info h1,
.store-product-split-copy h1 {
  margin-top: 10px;
  color: var(--store-builder-text);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.store-product-summary,
.store-product-split-copy p {
  margin-top: 18px;
  color: var(--store-builder-muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.store-product-rating {
  margin-top: 22px;
  color: #f59e0b;
  font-size: 18px;
  font-weight: 950;
}

.store-product-rating span {
  color: var(--store-builder-muted);
  font-size: 14px;
}

.store-product-meta {
  display: grid;
  margin-top: 24px;
}

.store-product-meta div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid #e5edf8;
  padding: 14px 0;
}

.store-product-meta dt {
  color: var(--store-builder-muted);
  font-weight: 900;
}

.store-product-meta dd {
  margin: 0;
  color: var(--store-builder-text);
  font-weight: 950;
}

.store-product-status,
.store-product-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #dcfce7;
  padding: 4px 10px;
  color: #15803d;
  font-size: 12px;
  font-weight: 950;
}

.store-product-buybox {
  align-self: start;
}

.store-product-buybox > p {
  color: var(--store-builder-muted);
  font-size: 13px;
  font-weight: 950;
}

.store-product-buybox > strong,
.store-product-split-copy > strong {
  display: block;
  margin-top: 8px;
  color: var(--store-builder-primary);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 950;
}

.store-product-stock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0;
  border-top: 1px solid #e5edf8;
  border-bottom: 1px solid #e5edf8;
}

.store-product-stock-grid span {
  display: grid;
  gap: 6px;
  padding: 16px 10px;
  color: var(--store-builder-muted);
  font-size: 13px;
  font-weight: 900;
}

.store-product-stock-grid span + span {
  border-left: 1px solid #e5edf8;
}

.store-product-stock-grid b {
  color: var(--store-builder-text);
}

.store-product-buy-form {
  display: grid;
  gap: 12px;
}

.store-product-buy-form label {
  display: grid;
  gap: 7px;
  color: var(--store-builder-text);
  font-size: 13px;
  font-weight: 950;
}

.store-product-lower {
  display: grid;
  gap: 24px;
}

.store-product-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid #e5edf8;
}

.store-product-tab-nav span {
  padding-bottom: 14px;
  color: var(--store-builder-muted);
  font-weight: 950;
}

.store-product-tab-nav .is-active {
  border-bottom: 3px solid var(--store-builder-primary);
  color: var(--store-builder-primary);
}

.store-product-description {
  padding-top: 20px;
  color: var(--store-builder-muted);
  font-weight: 700;
  line-height: 1.75;
}

.store-product-variation-badge {
  width: fit-content;
  border: 1px solid color-mix(in srgb, var(--ikiway-blue) 48%, white);
  border-radius: 999px;
  background: var(--ikiway-blue-soft);
  padding: 5px 9px;
  color: var(--ikiway-ink);
  font-size: 11px;
  font-weight: 850;
}

.store-product-card-copy > strong small {
  color: var(--store-builder-muted);
  font-size: 11px;
  font-weight: 800;
}

.store-product-options-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.store-product-options h2 {
  color: var(--store-builder-text);
  font-size: 20px;
  font-weight: 950;
}

.store-product-variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.store-product-variant-list a,
.store-product-variant-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
  color: var(--store-builder-text);
  font-size: 13px;
  font-weight: 950;
}

.store-product-variant-list a.is-active {
  border-color: var(--store-builder-primary);
  background: var(--store-builder-primary);
  color: #fff;
}

.store-product-split-hero {
  display: grid;
  gap: 28px;
}

.store-product-split-media {
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  background: var(--store-builder-surface);
}

.store-product-split-copy {
  align-self: start;
}

.store-product-split-stats {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.store-product-split-stats span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #e5edf8;
  padding: 12px 0;
  color: var(--store-builder-muted);
  font-weight: 900;
}

.store-product-split-stats b {
  color: var(--store-builder-text);
}

.store-product-classic-v2 {
  gap: 26px;
}

.pd-classic-top {
  display: grid;
  gap: 16px;
  align-items: center;
}

.pd-back {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border: 1px solid #dfe5ef;
  border-radius: 10px;
  background: #fff;
  padding: 0 16px;
  color: #0f2a6b;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.pd-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
  font-weight: 850;
}

.pd-breadcrumbs strong {
  color: #2563eb;
}

.pd-classic-main {
  display: grid;
  gap: 28px;
}

.pd-gallery,
.pd-buybox,
.pd-detail-component,
.pd-related-card {
  border: 1px solid #dfe5ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.pd-gallery {
  border: 0;
  box-shadow: none;
}

.pd-image-stage {
  position: relative;
  display: grid;
  min-height: 490px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #f6f8fc;
}

.pd-image-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 46px;
}

.pd-image-stage > span {
  color: #2563eb;
  font-size: 86px;
  font-weight: 950;
}

.pd-image-stage em {
  position: absolute;
  top: 20px;
  right: 22px;
  border-radius: 999px;
  background: #dcfce7;
  padding: 7px 13px;
  color: #16a34a;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.pd-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid #dfe5ef;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.pd-gallery-arrow.is-left {
  left: 22px;
}

.pd-gallery-arrow.is-right {
  right: 22px;
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.pd-thumbs button,
.pd-thumbs a,
.pd-thumbs span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  background: #f6f8fc;
  color: #0f2a6b;
  font-weight: 950;
}

.pd-thumbs .is-active {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
}

.pd-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-info {
  align-self: center;
}

.pd-category {
  color: #2563eb;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
}

.pd-info h1 {
  margin-top: 20px;
  color: #0f172a;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.pd-summary {
  max-width: 560px;
  margin-top: 18px;
  color: #64748b;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.pd-rating span {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 1px;
}

.pd-rating strong {
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
}

.pd-meta {
  display: grid;
  margin-top: 24px;
}

.pd-meta div {
  display: grid;
  grid-template-columns: minmax(170px, .75fr) minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid #e5edf8;
  padding: 15px 0;
}

.pd-meta dt,
.pd-meta dd {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-meta dt {
  color: #64748b;
  font-weight: 950;
}

.pd-meta dd {
  justify-content: space-between;
  margin: 0;
  color: #0f172a;
  font-weight: 950;
}

.pd-meta dd button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #dfe5ef;
  border-radius: 7px;
  background: #fff;
  color: #64748b;
}

.pd-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 950;
}

.pd-pill.is-green {
  background: #dcfce7;
  color: #16a34a;
}

.pd-buybox {
  align-self: start;
  padding: 28px;
}

.pd-buybox > p {
  color: #64748b;
  font-size: 14px;
  font-weight: 950;
}

.pd-buybox > strong {
  display: block;
  margin-top: 12px;
  color: #2563eb;
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.pd-tax-note,
.store-product-tax-note {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.pd-stock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0 20px;
  border-top: 1px solid #e5edf8;
  border-bottom: 1px solid #e5edf8;
}

.pd-stock-row span {
  display: grid;
  gap: 8px;
  padding: 17px 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.pd-stock-row span + span {
  border-left: 1px solid #e5edf8;
}

.pd-stock-row b {
  color: #0f172a;
  font-size: 15px;
}

.pd-buy-form {
  display: grid;
  gap: 12px;
}

.pd-buy-form label {
  color: #64748b;
  font-size: 13px;
  font-weight: 950;
}

.pd-qty {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid #dfe5ef;
  border-radius: 10px;
}

.pd-qty button,
.pd-qty input {
  border: 0;
  background: #fff;
  color: #0f172a;
  text-align: center;
  font-weight: 950;
}

.pd-qty input {
  border-left: 1px solid #dfe5ef;
  border-right: 1px solid #dfe5ef;
}

.store-qty-inline {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  overflow: hidden;
  border: 1px solid #dfe5ef;
  border-radius: 10px;
}

.store-qty-inline button,
.store-qty-inline input {
  min-height: 44px;
  border: 0;
  text-align: center;
  font-weight: 950;
}

.store-qty-inline input {
  border-left: 1px solid #dfe5ef;
  border-right: 1px solid #dfe5ef;
}

.pd-add-cart,
.pd-continue {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-weight: 950;
}

.pd-add-cart {
  border: 0;
  background: #2457f5;
  color: #fff;
}

.pd-continue {
  border: 1px solid #dfe5ef;
  background: #fff;
  color: #0f172a;
}

.pd-benefits {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.pd-benefits div,
.pd-help-box div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.pd-benefits span,
.pd-help-box span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #eef3ff;
  color: #2563eb;
  font-weight: 950;
}

.pd-benefits strong,
.pd-help-box strong {
  display: block;
  color: #0f2a6b;
  font-size: 14px;
  font-weight: 950;
}

.pd-benefits small,
.pd-help-box small {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.pd-classic-bottom {
  display: grid;
  gap: 26px;
}

.pd-detail-component,
.pd-related-card {
  padding: 24px;
}

.pd-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  border-bottom: 1px solid #e5edf8;
}

.pd-tabbar button {
  padding: 0 18px 18px 0;
  border: 0;
  background: transparent;
  color: #64748b;
  font-weight: 950;
}

.pd-tabbar button.is-active {
  border-bottom: 3px solid #2563eb;
  color: #2563eb;
}

.pd-tab-panel {
  display: none;
  gap: 24px;
  margin-top: 18px;
}

.pd-tab-panel.is-active {
  display: grid;
}

.pd-tab-copy > p {
  color: #334155;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.6;
}

.pd-tab-copy ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #334155;
  font-size: 15px;
  font-weight: 850;
}

.pd-tab-copy li {
  position: relative;
  padding-left: 26px;
}

.pd-tab-copy li:before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  content: "✓";
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
}

.pd-help-box {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  border-radius: 14px;
  background: #f3f6ff;
  padding: 18px;
}

.pd-spec-grid {
  display: grid;
  gap: 12px;
}

.pd-spec-grid div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #e5edf8;
  border-radius: 12px;
  background: #fbfcff;
  padding: 14px;
}

.pd-spec-grid span {
  color: #64748b;
  font-weight: 900;
}

.pd-spec-grid strong {
  color: #0f172a;
  font-weight: 950;
}

.pd-media-grid {
  display: grid;
  gap: 18px;
  align-items: center;
}

.pd-media-grid figure {
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #f6f8fc;
}

.pd-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.pd-media-grid figure span {
  color: #2563eb;
  font-size: 54px;
  font-weight: 950;
}

.pd-media-grid h3,
.pd-review-list h3,
.pd-review-form-card h3 {
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

.pd-media-grid p,
.pd-review-form-card p {
  margin-top: 8px;
  color: #64748b;
  font-weight: 800;
  line-height: 1.55;
}

.pd-review-layout {
  display: grid;
  gap: 22px;
}

.pd-review-list {
  display: grid;
  gap: 14px;
}

.pd-review-list header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.pd-review-list header strong {
  color: #2563eb;
  font-size: 22px;
  font-weight: 950;
}

.pd-review-item,
.pd-review-form-card,
.pd-review-empty {
  border: 1px solid #e5edf8;
  border-radius: 14px;
  background: #fbfcff;
  padding: 16px;
}

.pd-review-item div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.pd-review-item strong {
  color: #0f172a;
  font-weight: 950;
}

.pd-review-item span {
  color: #f59e0b;
  font-weight: 950;
}

.pd-review-item p {
  margin-top: 8px;
  color: #334155;
  font-weight: 750;
  line-height: 1.55;
}

.pd-review-item small,
.pd-review-empty {
  color: #64748b;
  font-weight: 800;
}

.pd-review-form-card form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.pd-review-form-card label {
  display: grid;
  gap: 7px;
  color: #0f2a6b;
  font-size: 13px;
  font-weight: 950;
}

.pd-related-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.pd-related-card h2 {
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

.pd-related-card header a {
  color: #2563eb;
  font-weight: 950;
}

.pd-related-grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.pd-related-product {
  display: grid;
  gap: 9px;
  color: #0f172a;
}

.pd-related-product span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #f6f8fc;
  color: #2563eb;
  font-size: 32px;
  font-weight: 950;
}

.pd-related-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-related-product strong {
  font-size: 13px;
  font-weight: 950;
}

.pd-related-product b {
  color: #2563eb;
  font-size: 18px;
  font-weight: 950;
}

.pd-related-product small {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

@media (min-width: 1080px) {
  .store-product-main {
    grid-template-columns: minmax(0, .95fr) minmax(0, .95fr) 360px;
  }

  .store-product-lower {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  }

  .store-product-split-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  }

  .pd-classic-top {
    grid-template-columns: auto 1fr auto;
  }

  .pd-breadcrumbs {
    grid-column: 2;
  }

  .pd-classic-main {
    grid-template-columns: minmax(360px, .92fr) minmax(360px, .96fr) minmax(300px, .72fr);
  }

  .pd-classic-bottom {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  }

  .pd-tab-panel[data-product-panel="description"].is-active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    column-gap: 28px;
  }

  .pd-tab-copy {
    grid-column: 1;
  }

  .pd-help-box {
    grid-column: 2;
    align-self: end;
  }

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

  .pd-media-grid,
  .pd-review-layout {
    grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  }

  .pd-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .store-product-meta div,
  .store-product-stock-grid {
    grid-template-columns: 1fr;
  }

  .store-product-stock-grid span + span {
    border-top: 1px solid #e5edf8;
    border-left: 0;
  }

  .pd-stock-row,
  .pd-meta div {
    grid-template-columns: 1fr;
  }

  .pd-stock-row span + span {
    border-top: 1px solid #e5edf8;
    border-left: 0;
  }

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

/* Public ecommerce identity. All brand colors come from builder variables. */
.ikiway-storefront {
  margin: 0;
  color: var(--ikiway-ink);
  background: var(--storefront-background, #FFFFFF);
}

.ikiway-storefront *,
.ikiway-storefront *::before,
.ikiway-storefront *::after {
  box-sizing: border-box;
}

.store-promo-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--ikiway-yellow);
  padding: 7px 18px;
  color: var(--ikiway-ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.store-promo-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ikiway-purple);
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 28%, white);
  background: color-mix(in srgb, var(--ikiway-white) 94%, transparent);
  backdrop-filter: blur(14px);
}

.store-header-inner {
  display: flex;
  width: min(100% - 32px, 1380px);
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ikiway-ink);
  font-size: 21px;
  font-weight: 950;
}

.store-brand img,
.store-brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid var(--ikiway-pink-soft);
  border-radius: 50%;
  object-fit: cover;
}

.store-brand-mark {
  display: grid;
  place-items: center;
  background: var(--ikiway-pink-soft);
  color: var(--ikiway-pink);
  font-size: 14px;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ikiway-ink);
  font-size: 14px;
  font-weight: 850;
}

.store-nav > a:not(.store-cart-link):hover {
  color: var(--ikiway-pink);
}

.store-cart-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--ikiway-pink);
  padding: 0 17px;
  color: white;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--ikiway-pink) 23%, transparent);
}

.store-cart-link span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--ikiway-pink);
  font-size: 11px;
}

.store-main {
  display: grid;
  width: min(100% - 32px, 1380px);
  gap: 34px;
  margin: 0 auto;
  padding: 24px 0 64px;
}

.store-messages {
  display: grid;
  gap: 8px;
}

.store-messages > div {
  border: 1px solid color-mix(in srgb, var(--ikiway-blue) 42%, white);
  border-radius: 14px;
  background: var(--ikiway-blue-soft);
  padding: 12px 16px;
  color: var(--ikiway-ink);
  font-size: 14px;
  font-weight: 800;
}

.store-cart-toast {
  position: fixed;
  z-index: 140;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  width: min(calc(100% - 32px), 430px);
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--ikiway-blue) 42%, white);
  border-radius: 16px;
  background: white;
  padding: 13px 14px;
  box-shadow: 0 18px 50px rgba(23, 33, 58, .16);
  color: var(--ikiway-ink);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.store-cart-toast[hidden] { display: none; }
.store-cart-toast.is-visible { opacity: 1; transform: translateY(0); }
.store-cart-toast.is-error { border-color: color-mix(in srgb, #d92d20 35%, white); }
.store-cart-toast-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--ikiway-blue-soft); color: var(--ikiway-blue); font-size: 20px; font-weight: 950; }
.store-cart-toast.is-error .store-cart-toast-icon { background: #fff1f1; color: #d92d20; }
.store-cart-toast-copy { min-width: 0; font-size: 13px; font-weight: 850; line-height: 1.35; }
.store-cart-toast-link { color: var(--ikiway-pink); font-size: 12px; font-weight: 950; white-space: nowrap; text-decoration: none; }
.store-cart-toast-link:hover { text-decoration: underline; }

[data-store-cart-add].is-busy { pointer-events: none; }
[data-store-cart-add].is-busy button[type="submit"] { opacity: .72; }

@media (max-width: 620px) {
  .store-cart-toast { right: 16px; bottom: 16px; grid-template-columns: 36px minmax(0, 1fr); }
  .store-cart-toast-link { grid-column: 2; }
}

.store-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 950;
  transition: transform .16s ease, box-shadow .16s ease;
}

.store-button:hover {
  transform: translateY(-1px);
}

.store-button-primary,
.store-btn-primary,
.pd-add-cart {
  border-color: var(--ikiway-pink);
  background: var(--ikiway-pink);
  color: white;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--ikiway-pink) 22%, transparent);
}

.store-button-secondary,
.pd-continue {
  border-color: color-mix(in srgb, var(--ikiway-blue) 55%, white);
  background: var(--ikiway-blue-soft);
  color: var(--ikiway-ink);
}

.store-button-quiet {
  width: 100%;
  border-color: color-mix(in srgb, var(--ikiway-pink) 30%, white);
  background: white;
  color: var(--ikiway-pink);
}

.store-button-wide {
  width: 100%;
}

.store-input,
.ikiway-storefront .iki-input,
.ikiway-storefront input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.ikiway-storefront select,
.ikiway-storefront textarea {
  min-height: 46px;
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--ikiway-blue) 38%, white);
  border-radius: 14px;
  background: white;
  padding: 10px 13px;
  color: var(--ikiway-ink);
  outline: none;
}

.ikiway-storefront input:focus,
.ikiway-storefront select:focus,
.ikiway-storefront textarea:focus {
  border-color: var(--ikiway-pink);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ikiway-pink) 12%, transparent);
}

.store-builder-page {
  gap: 58px;
}

.store-builder-hero {
  position: relative;
  min-height: 470px;
  border: 0;
  border-radius: var(--store-builder-radius);
  background: var(--ikiway-pink-soft);
  padding: 52px;
  box-shadow: none;
}

.store-builder-hero::before,
.store-builder-hero::after {
  position: absolute;
  z-index: 0;
  color: var(--ikiway-purple);
  content: "+";
  font-size: 26px;
  font-weight: 950;
}

.store-builder-hero::before {
  top: 32px;
  left: 48%;
}

.store-builder-hero::after {
  right: 32px;
  bottom: 24px;
  color: var(--ikiway-blue);
}

.store-builder-hero-copy,
.store-builder-hero-media {
  position: relative;
  z-index: 1;
}

.store-builder-kicker {
  color: var(--ikiway-purple);
  font-size: 12px;
  letter-spacing: 0;
}

.store-builder-hero h1 {
  max-width: 680px;
  color: var(--ikiway-ink);
  font-size: 58px;
  line-height: 1.04;
}

.store-builder-lead {
  color: var(--store-builder-muted);
  font-size: 19px;
}

.store-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.store-hero-benefits span {
  border: 1px solid color-mix(in srgb, var(--ikiway-pink) 24%, white);
  border-radius: 999px;
  background: white;
  padding: 7px 11px;
  color: var(--ikiway-ink);
  font-size: 11px;
  font-weight: 850;
}

.store-builder-hero-media {
  min-height: 350px;
  border: 6px solid white;
  background: var(--ikiway-blue-soft);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--ikiway-purple) 13%, transparent);
}

.store-builder-hero-media img {
  min-height: 350px;
}

.store-builder-section {
  gap: 22px;
  border-radius: 0;
  background: transparent;
}

.store-builder-section h2,
.store-builder-cta h2,
.store-builder-rich-text h2,
.store-page-heading h1 {
  color: var(--ikiway-ink);
  font-size: 34px;
  line-height: 1.15;
}

.store-builder-category-list {
  gap: 10px;
}

.store-builder-category-list a {
  min-height: 46px;
  border-color: color-mix(in srgb, var(--ikiway-blue) 38%, white);
  border-radius: 999px;
  background: var(--ikiway-blue-soft);
  color: var(--ikiway-ink);
}

.store-builder-category-list a:nth-child(3n + 2) {
  border-color: color-mix(in srgb, var(--ikiway-pink) 32%, white);
  background: var(--ikiway-pink-soft);
}

.store-builder-category-list a.active {
  border-color: var(--ikiway-pink);
  background: var(--ikiway-pink);
  color: white;
}

.store-builder-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-builder-product-card {
  align-content: start;
  border-color: color-mix(in srgb, var(--ikiway-blue) 24%, white);
  border-radius: var(--store-builder-radius);
  padding: 12px;
  box-shadow: 0 12px 30px rgba(23, 33, 58, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.store-builder-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(23, 33, 58, .11);
}

.store-builder-product-media {
  background: var(--ikiway-blue-soft);
}

.store-builder-product-media img {
  object-fit: contain;
  padding: 8px;
}

.store-product-card-copy {
  display: grid;
  gap: 6px;
}

.store-product-category-tag {
  width: fit-content;
  border-radius: 999px;
  background: var(--ikiway-yellow);
  padding: 4px 8px;
  color: var(--ikiway-ink);
  font-size: 10px;
  font-weight: 950;
}

.store-builder-product-card h3 {
  min-height: 43px;
  color: var(--ikiway-ink);
  font-size: 17px;
}

.store-builder-product-card strong,
.store-product-buybox > strong,
.store-product-split-copy > strong,
.pd-buybox > strong,
.pd-related-product b {
  color: var(--ikiway-pink);
}

.store-builder-product-form {
  grid-template-columns: 68px minmax(0, 1fr);
}

.store-builder-cta {
  border: 0;
  background: var(--ikiway-blue-soft);
  padding: 34px;
}

.store-builder-rich-text {
  border-color: color-mix(in srgb, var(--ikiway-blue) 28%, white);
  background: white;
}

.store-page-heading {
  display: grid;
  max-width: 760px;
  gap: 8px;
  padding: 18px 0 2px;
}

.store-page-heading > p:last-child {
  color: var(--store-builder-muted);
  font-size: 16px;
  font-weight: 700;
}

.store-checkout-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
}

.store-surface-card,
.store-summary-card,
.store-success-card {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ikiway-blue) 28%, white);
  border-radius: var(--store-builder-radius);
  background: white;
  box-shadow: 0 14px 34px rgba(23, 33, 58, .07);
}

.store-card-heading {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 24%, white);
  padding: 18px 22px;
}

.store-card-heading h2 {
  color: var(--ikiway-ink);
  font-size: 20px;
  font-weight: 950;
}

.store-card-heading span {
  color: var(--store-builder-muted);
  font-size: 12px;
  font-weight: 850;
}

.store-cart-lines,
.store-form-body,
.store-summary-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.store-cart-line {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px 110px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 20%, white);
  padding-bottom: 16px;
}

.store-cart-product {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.store-cart-thumb {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--ikiway-pink-soft);
  color: var(--ikiway-pink);
  font-weight: 950;
}

.store-cart-product strong {
  display: block;
  color: var(--ikiway-ink);
}

.store-cart-product p {
  margin-top: 3px;
  color: var(--store-builder-muted);
  font-size: 12px;
}

.store-cart-quantity {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px;
}

.store-line-total {
  color: var(--ikiway-ink);
  font-size: 18px;
  text-align: right;
}

.store-summary-card {
  position: sticky;
  top: 130px;
}

.store-summary-body > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  color: var(--store-builder-muted);
  font-size: 14px;
}

.store-summary-body strong {
  color: var(--ikiway-ink);
}

.store-summary-body small {
  color: var(--store-builder-muted);
  line-height: 1.5;
}

.store-summary-total {
  border-top: 1px solid color-mix(in srgb, var(--ikiway-blue) 28%, white);
  padding-top: 16px;
  font-size: 18px !important;
  font-weight: 950;
}

.store-summary-total strong {
  color: var(--ikiway-pink);
}

.store-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-field {
  display: grid;
  gap: 7px;
}

.store-field > span {
  color: var(--ikiway-ink);
  font-size: 12px;
  font-weight: 900;
}

.store-field .errorlist {
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
}

.store-empty {
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px dashed color-mix(in srgb, var(--ikiway-pink) 45%, white);
  border-radius: 16px;
  background: var(--ikiway-pink-soft);
  color: var(--store-builder-muted);
  font-weight: 850;
}

.store-success-wrap {
  width: min(100%, 780px);
  margin: 40px auto;
}

.store-success-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 34px;
}

.store-success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--ikiway-blue-soft);
  color: var(--ikiway-purple);
  font-size: 28px;
  font-weight: 950;
}

.store-success-card h1 {
  margin-top: 8px;
  color: var(--ikiway-ink);
  font-size: 34px;
  font-weight: 950;
}

.store-success-card > div > p:not(.store-builder-kicker) {
  margin-top: 10px;
  color: var(--store-builder-muted);
  line-height: 1.6;
}

.store-success-summary {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  border-radius: 16px;
  background: var(--ikiway-pink-soft);
  padding: 18px;
}

.store-success-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.store-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid color-mix(in srgb, var(--ikiway-blue) 28%, white);
  background: var(--ikiway-blue-soft);
  padding: 38px max(24px, calc((100vw - 1380px) / 2));
  color: var(--ikiway-ink);
}

.store-footer strong {
  font-size: 20px;
  font-weight: 950;
}

.store-footer p,
.store-footer small {
  margin-top: 5px;
  color: var(--store-builder-muted);
  font-size: 13px;
  font-weight: 750;
}

.store-footer nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 900;
}

.store-footer-commerce {
  margin-top: 56px;
  border-top: 1px solid color-mix(in srgb, var(--store-builder-primary) 18%, white);
  background: var(--store-footer-background, var(--store-builder-bg));
  color: var(--store-builder-text);
}

.store-footer-inner {
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: 64px 0 30px;
}

.store-footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 1.15fr) minmax(120px, .7fr) minmax(150px, .9fr) minmax(125px, .72fr) minmax(310px, 1.45fr);
  gap: clamp(24px, 3vw, 54px);
  align-items: start;
}

.store-footer-brand > a {
  display: block;
  width: min(100%, 220px);
  max-width: 220px;
  height: 90px;
  overflow: hidden;
}

.store-footer-brand img {
  width: 100%;
  height: auto;
  max-height: none;
  transform: translateY(-34%);
}

.store-footer-brand > a strong {
  font-size: 24px;
  font-weight: 950;
}

.store-footer-brand > p {
  max-width: 280px;
  margin-top: 18px;
  color: var(--store-builder-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.store-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.store-footer-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--ikiway-pink-soft);
  color: var(--store-builder-primary);
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.store-footer-socials a:hover {
  background: color-mix(in srgb, var(--store-builder-primary) 18%, white);
  transform: translateY(-2px);
}

.store-footer-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.store-footer-column > strong {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 950;
}

.store-footer-column ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-footer-column a,
.store-footer-legal a {
  color: var(--store-builder-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  transition: color .18s ease;
}

.store-footer-column a:hover,
.store-footer-legal a:hover {
  color: var(--store-builder-primary);
}

.store-footer-newsletter {
  position: relative;
  grid-column: -3 / -1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--store-builder-primary) 20%, white);
  border-radius: min(var(--store-builder-radius), 24px);
  background: var(--ikiway-pink-soft);
  padding: 24px;
}

.store-footer-newsletter-cta {
  position: relative;
  display: block;
  min-width: 0;
}

.store-footer-newsletter form.has-illustration {
  margin-top: 22px;
}

.store-footer-newsletter-cta > img {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: calc(100% + 2px);
  width: min(112px, 90%);
  height: auto;
  max-width: none;
  max-height: 72px;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  transform: translateX(50%);
}

.store-footer-newsletter-cta > button {
  position: relative;
  z-index: 1;
  width: 100%;
}

.store-footer-newsletter-copy strong {
  display: block;
  color: var(--store-builder-primary);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.15;
}

.store-footer-newsletter-copy p {
  max-width: 330px;
  margin-top: 10px;
  color: var(--store-builder-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.store-footer-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .58fr);
  gap: 10px;
  margin-top: 22px;
}

.store-footer-newsletter input,
.store-footer-newsletter button {
  min-height: 48px;
  border-radius: 999px;
  font-size: 14px;
}

.store-footer-newsletter input {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--store-builder-primary) 30%, white);
  background: var(--store-builder-bg);
  padding: 0 18px;
  color: var(--store-builder-text);
  outline: none;
}

.store-footer-newsletter button {
  border: 0;
  background: var(--store-builder-primary);
  padding: 0 24px;
  color: white;
  font-weight: 900;
  transition: filter .18s ease, transform .18s ease;
}

.store-footer-newsletter button:hover {
  filter: brightness(.94);
  transform: translateY(-1px);
}

.store-footer-newsletter small {
  display: block;
  margin-top: 12px;
  color: var(--store-builder-muted);
  font-size: 11px;
  line-height: 1.45;
}

.store-footer-commerce a:focus-visible,
.store-footer-commerce button:focus-visible,
.store-footer-commerce input:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--store-builder-primary) 35%, transparent);
  outline-offset: 3px;
}

.store-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--store-builder-primary) 18%, white);
  padding-top: 24px;
}

.store-footer-payments {
  display: flex;
  align-items: center;
  gap: 30px;
}

.store-footer-payments > strong {
  font-size: 13px;
  font-weight: 950;
}

.store-footer-payments > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.store-payment-logo {
  width: auto;
  height: 32px;
  color: var(--store-builder-text);
  object-fit: contain;
}

.store-payment-logo-visa {
  color: #1434CB;
}

.store-footer-copyright {
  margin-left: auto;
  color: var(--store-builder-muted);
  font-size: 13px;
  font-weight: 650;
  text-align: right;
}

/* Keep the final social/store section visually close to the commerce footer. */
body:has(.store-builder-page .store-presence) .store-main { padding-bottom: 24px; }
body:has(.store-builder-page .store-presence) .store-footer-commerce { margin-top: 24px; }

@media (max-width: 1180px) {
  .store-footer-main {
    grid-template-columns: 1.2fr repeat(3, minmax(130px, .7fr));
  }

  .store-footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .store-footer-inner {
    width: min(100% - 32px, 1380px);
    padding-top: 42px;
  }

  .store-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .store-footer-brand,
  .store-footer-newsletter {
    grid-column: 1 / -1;
  }

  .store-footer-newsletter {
    grid-row: 2;
    padding: 24px;
  }

  .store-footer-newsletter form {
    grid-template-columns: 1fr;
  }

  .store-footer-newsletter button {
    width: 100%;
  }

  .store-footer-newsletter form.has-illustration {
    margin-top: 22px;
  }

  .store-footer-newsletter-cta.has-illustration {
    margin-top: 90px;
  }

  .store-footer-newsletter-cta > img {
    width: min(140px, 100%);
    max-width: none;
    max-height: 88px;
  }

  .store-footer-payments {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-footer-bottom {
    flex-wrap: wrap;
    align-items: flex-end;
  }

  .store-footer-copyright {
    flex-basis: 100%;
  }
}

@media (max-width: 440px) {
  .store-footer-main {
    grid-template-columns: 1fr;
  }

  .store-footer-brand,
  .store-footer-newsletter {
    grid-column: auto;
  }

  .store-footer-newsletter {
    grid-row: auto;
  }
}

.store-product-gallery,
.store-product-info,
.store-product-buybox,
.store-product-tabs,
.store-product-options,
.store-product-split-media,
.store-product-split-copy,
.pd-gallery,
.pd-buybox,
.pd-detail-component,
.pd-related-card {
  border-color: color-mix(in srgb, var(--ikiway-blue) 28%, white);
  border-radius: var(--store-builder-radius);
  box-shadow: 0 14px 34px rgba(23, 33, 58, .07);
}

.store-product-category,
.pd-category,
.pd-breadcrumbs strong,
.pd-related-card header a,
.store-product-nav a {
  color: var(--ikiway-purple);
}

.pd-tabbar button.is-active,
.store-product-tab-nav .is-active {
  border-color: var(--ikiway-pink);
  color: var(--ikiway-pink);
}

.pd-image-stage,
.store-product-image,
.store-product-split-media,
.pd-related-product span {
  background: var(--ikiway-blue-soft);
}

.pd-help-box,
.pd-review-item,
.pd-review-form-card,
.pd-review-empty {
  background: var(--ikiway-pink-soft);
}

@media (max-width: 980px) {
  .store-builder-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-checkout-layout {
    grid-template-columns: 1fr;
  }

  .store-summary-card {
    position: static;
  }

  .store-cart-line {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .store-line-total {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .store-promo-bar span:nth-child(n + 2) {
    display: none;
  }

  .store-header-inner {
    min-height: 68px;
  }

  .store-brand {
    font-size: 17px;
  }

  .store-brand img,
  .store-brand-mark {
    width: 42px;
    height: 42px;
  }

  .store-nav {
    gap: 8px;
  }

  .store-nav > a:not(.store-cart-link) {
    display: none;
  }

  .store-main {
    width: min(100% - 24px, 1380px);
    padding-top: 12px;
  }

  .store-builder-page {
    gap: 42px;
  }

  .store-builder-hero {
    gap: 24px;
    padding: 28px 20px 20px;
  }

  .store-builder-hero h1 {
    font-size: 38px;
  }

  .store-builder-lead {
    font-size: 16px;
  }

  .store-builder-hero-media,
  .store-builder-hero-media img {
    min-height: 240px;
  }

  .store-builder-section h2,
  .store-builder-cta h2,
  .store-builder-rich-text h2,
  .store-page-heading h1 {
    font-size: 28px;
  }

  .store-builder-product-grid,
  .store-form-grid {
    grid-template-columns: 1fr;
  }

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

  .store-cart-quantity,
  .store-line-total {
    grid-column: 1;
  }

  .store-line-total {
    text-align: left;
  }

  .store-success-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .store-footer {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

/* Storefront checkout */
.store-checkout-page { width: min(100%, 1360px); margin: 0 auto; padding: 10px 0 64px; }
.store-checkout-breadcrumb { margin-bottom: 14px; }
.store-checkout-heading { display: grid; gap: 5px; margin-bottom: 20px; }
.store-checkout-heading h1 { color: var(--ikiway-ink); font-size: clamp(32px, 4vw, 46px); font-weight: 950; letter-spacing: 0; }
.store-checkout-heading > p:last-child { color: var(--store-builder-muted); font-size: 17px; font-weight: 650; }
.store-checkout-modern-layout { display: grid; grid-template-columns: minmax(0, 1.58fr) minmax(340px, .92fr); gap: 22px; align-items: start; }
.store-checkout-form,
.store-checkout-order,
.store-checkout-provider,
.store-checkout-help { border: 1px solid color-mix(in srgb, var(--ikiway-blue) 22%, white); border-radius: 18px; background: white; box-shadow: 0 12px 32px rgba(23, 33, 58, .06); }
.store-checkout-form { display: grid; padding: 24px; }
.store-checkout-form-section { display: grid; gap: 16px; border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 18%, white); padding: 0 0 22px; margin: 0 0 22px; }
.store-checkout-section-title { display: flex; align-items: center; gap: 12px; }
.store-checkout-section-title > span { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; color: var(--ikiway-pink); }
.store-checkout-section-title svg,
.store-checkout-provider svg,
.store-checkout-help svg,
.store-checkout-order header svg,
.store-checkout-submit svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.store-checkout-section-title h2,
.store-checkout-order h2,
.store-checkout-help h2 { color: var(--ikiway-ink); font-size: 20px; font-weight: 950; }
.store-checkout-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px 18px; }
.store-checkout-field { display: grid; min-width: 0; gap: 7px; }
.store-checkout-field-wide { grid-column: 1 / -1; }
.store-checkout-field > span { color: var(--ikiway-ink); font-size: 13px; font-weight: 900; }
.store-checkout-field .iki-input { width: 100%; min-height: 46px; border: 1px solid color-mix(in srgb, var(--ikiway-blue) 42%, white); border-radius: 11px; background: white; padding: 0 14px; color: var(--ikiway-ink); outline: none; }
.store-checkout-field select.iki-input { cursor: pointer; }
.store-checkout-field .iki-input:focus { border-color: var(--ikiway-pink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ikiway-pink) 15%, transparent); }
.store-checkout-field .iki-input:disabled { background: color-mix(in srgb, var(--store-builder-surface) 55%, white); color: var(--store-builder-muted); cursor: not-allowed; }
.store-checkout-field .errorlist,
.store-checkout-form-section > .errorlist,
.store-checkout-form-error { margin: 0; color: #b42318; font-size: 12px; font-weight: 800; list-style: none; }
.store-checkout-delivery-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.store-checkout-delivery-option { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr) 20px; min-height: 72px; align-items: center; gap: 11px; border: 1px solid color-mix(in srgb, var(--ikiway-blue) 32%, white); border-radius: 13px; background: white; padding: 12px 14px; cursor: pointer; }
.store-checkout-delivery-option:hover { border-color: color-mix(in srgb, var(--ikiway-pink) 65%, white); }
.store-checkout-delivery-option.is-selected { border-color: var(--ikiway-pink); background: var(--ikiway-pink-soft); }
.store-checkout-delivery-option > input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.store-checkout-delivery-icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--ikiway-pink); }
.store-checkout-delivery-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.store-checkout-delivery-option > span:nth-of-type(2) { display: grid; gap: 3px; }
.store-checkout-delivery-option strong { color: var(--ikiway-ink); font-size: 14px; font-weight: 900; }
.store-checkout-delivery-option small { color: var(--store-builder-muted); font-size: 12px; font-weight: 650; }
.store-checkout-delivery-option > i { display: block; width: 19px; height: 19px; border: 2px solid color-mix(in srgb, var(--ikiway-blue) 42%, white); border-radius: 50%; background: white; }
.store-checkout-delivery-option.is-selected > i { border: 5px solid var(--ikiway-pink); }
.store-checkout-address[hidden], .store-checkout-pickup[hidden], .store-checkout-provider[hidden] { display: none; }
.store-checkout-shipping-note { display: flex; align-items: flex-start; gap: 12px; border-radius: 12px; background: var(--ikiway-blue-soft); padding: 13px 15px; color: color-mix(in srgb, var(--ikiway-blue) 75%, var(--ikiway-ink)); }
.store-checkout-shipping-note > span { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; }
.store-checkout-shipping-note svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.store-checkout-shipping-note p { display: grid; gap: 2px; }
.store-checkout-shipping-note strong { color: var(--ikiway-ink); font-size: 12px; }
.store-checkout-shipping-note small { color: var(--store-builder-muted); font-size: 11px; }
.store-checkout-pickup-details { display: grid; gap: 4px; border-radius: 12px; background: var(--ikiway-pink-soft); padding: 15px; }
.store-checkout-pickup-details strong { color: var(--ikiway-ink); }
.store-checkout-pickup-details span { color: var(--store-builder-muted); font-size: 13px; }
.store-checkout-submit { min-height: 52px; border-radius: 999px; }
.store-checkout-submit svg { width: 19px; height: 19px; }
.store-checkout-sidebar { display: grid; gap: 14px; min-width: 0; }
.store-checkout-sidebar.is-sticky { position: sticky; top: 24px; }
.store-checkout-order { overflow: hidden; }
.store-checkout-order > header { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 18%, white); padding: 16px 20px; }
.store-checkout-order h2 { display: flex; align-items: center; gap: 9px; font-size: 18px; }
.store-checkout-order h2 > span { color: var(--ikiway-pink); }
.store-checkout-order header svg { width: 25px; height: 25px; }
.store-checkout-order > header a { color: var(--ikiway-pink); font-size: 12px; font-weight: 900; text-decoration: underline; }
.store-checkout-order-lines { display: grid; padding: 0 20px; }
.store-checkout-order-lines article { display: grid; grid-template-columns: 70px minmax(0, 1fr) auto; align-items: center; gap: 12px; border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 16%, white); padding: 13px 0; }
.store-checkout-order-lines article:has(.store-checkout-order-image[hidden]),
.store-checkout-order-lines article:not(:has(.store-checkout-order-image)) { grid-template-columns: minmax(0, 1fr) auto; }
.store-checkout-order-image { display: grid; width: 70px; height: 70px; place-items: center; overflow: hidden; border-radius: 11px; background: var(--ikiway-pink-soft); color: var(--ikiway-pink); }
.store-checkout-order-image img { width: 100%; height: 100%; object-fit: cover; }
.store-checkout-order-image svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.store-checkout-order-lines article > div { display: grid; min-width: 0; gap: 4px; }
.store-checkout-order-lines article strong { overflow-wrap: anywhere; color: var(--ikiway-ink); font-size: 13px; font-weight: 900; }
.store-checkout-order-lines article small { overflow: hidden; color: var(--store-builder-muted); font-size: 11px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.store-checkout-order-lines article > b { color: var(--ikiway-ink); font-size: 15px; white-space: nowrap; }
.store-checkout-totals { display: grid; gap: 13px; padding: 18px 20px 20px; }
.store-checkout-totals > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--store-builder-muted); font-size: 13px; }
.store-checkout-totals > div > strong { color: var(--ikiway-ink); text-align: right; }
.store-checkout-totals [data-checkout-shipping-value] { max-width: 190px; font-size: 12px; font-weight: 750; }
.store-checkout-total { margin-top: 3px; border-top: 1px solid color-mix(in srgb, var(--ikiway-pink) 22%, white); border-radius: 11px; background: var(--ikiway-pink-soft); padding: 14px 12px; }
.store-checkout-total > span { display: grid; gap: 2px; color: var(--ikiway-ink); }
.store-checkout-total b { font-size: 20px; font-weight: 950; }
.store-checkout-total small { color: var(--store-builder-muted); font-size: 10px; }
.store-checkout-total > strong { color: var(--ikiway-pink) !important; font-size: 27px; font-weight: 950; }
.store-checkout-provider { display: grid; grid-template-columns: minmax(0, 1fr) 42px minmax(140px, auto); align-items: center; gap: 12px; border-color: color-mix(in srgb, var(--ikiway-blue) 35%, white); background: var(--ikiway-blue-soft); padding: 17px 20px; }
.store-checkout-provider > strong { color: color-mix(in srgb, var(--ikiway-blue) 75%, var(--ikiway-ink)); font-size: 21px; font-weight: 950; }
.store-checkout-provider > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: white; color: var(--ikiway-blue); }
.store-checkout-provider p { display: grid; gap: 2px; color: var(--ikiway-ink); }
.store-checkout-provider b { font-size: 12px; }
.store-checkout-provider small { color: var(--store-builder-muted); font-size: 10px; }
.store-checkout-help { position: relative; min-height: 160px; overflow: hidden; border-color: color-mix(in srgb, var(--ikiway-pink) 24%, white); background: var(--ikiway-pink-soft); padding: 20px; }
.store-checkout-help > div { position: relative; z-index: 1; display: grid; width: 65%; gap: 8px; }
.store-checkout-help:not(.has-mascot) > div { width: 100%; }
.store-checkout-help h2 { color: var(--ikiway-pink); font-size: 19px; }
.store-checkout-help p { color: var(--store-builder-muted); font-size: 12px; font-weight: 650; line-height: 1.5; }
.store-checkout-help a { display: inline-flex; width: fit-content; min-height: 38px; align-items: center; gap: 7px; border: 1px solid var(--ikiway-pink); border-radius: 999px; padding: 0 14px; background: white; color: var(--ikiway-pink); font-size: 12px; font-weight: 900; }
.store-checkout-help a svg { width: 18px; height: 18px; }
.store-checkout-help > img { position: absolute; right: -8px; bottom: -8px; width: 42%; max-height: 155px; object-fit: contain; object-position: center bottom; }

@media (max-width: 1040px) {
  .store-checkout-page { padding-right: 16px; padding-left: 16px; }
  .store-checkout-modern-layout { grid-template-columns: minmax(0, 1.35fr) minmax(310px, .8fr); }
  .store-checkout-order-lines article { grid-template-columns: 58px minmax(0, 1fr); }
  .store-checkout-order-image { width: 58px; height: 58px; }
  .store-checkout-order-lines article > b { grid-column: 2; }
  .store-checkout-provider { grid-template-columns: 1fr 38px; }
  .store-checkout-provider p { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .store-checkout-modern-layout { grid-template-columns: minmax(0, 1fr); }
  .store-checkout-sidebar.is-sticky { position: static; }
  .store-checkout-order-lines article { grid-template-columns: 70px minmax(0, 1fr) auto; }
  .store-checkout-order-lines article > b { grid-column: auto; }
  .store-checkout-provider { grid-template-columns: minmax(0, 1fr) 42px minmax(140px, auto); }
  .store-checkout-provider p { grid-column: auto; }
}

@media (max-width: 560px) {
  .store-checkout-page { padding: 4px 8px 42px; }
  .store-checkout-heading h1 { font-size: 32px; }
  .store-checkout-heading > p:last-child { font-size: 14px; }
  .store-checkout-form { padding: 18px 15px; }
  .store-checkout-fields, .store-checkout-delivery-options { grid-template-columns: minmax(0, 1fr); }
  .store-checkout-field-wide { grid-column: auto; }
  .store-checkout-section-title h2 { font-size: 18px; }
  .store-checkout-order > header { align-items: flex-start; }
  .store-checkout-order h2 { font-size: 16px; }
  .store-checkout-order-lines { padding: 0 14px; }
  .store-checkout-order-lines article { grid-template-columns: 58px minmax(0, 1fr); gap: 10px; }
  .store-checkout-order-image { width: 58px; height: 58px; }
  .store-checkout-order-lines article > b { grid-column: 2; }
  .store-checkout-provider { grid-template-columns: minmax(0, 1fr) 38px; padding: 15px; }
  .store-checkout-provider p { grid-column: 1 / -1; }
  .store-checkout-help > div { width: 68%; }
  .store-checkout-help > img { width: 42%; }
}

/* Cart view */
.store-cart-page { max-width: 1440px; margin: 0 auto; padding: 10px 0 56px; }
.store-cart-status { min-height: 0; color: var(--ikiway-pink); font-size: 13px; font-weight: 850; }
.store-cart-status:not(:empty) { margin: 0 0 12px; }
.store-breadcrumb { display: flex; align-items: center; gap: 10px; margin: 8px 0 18px; color: var(--store-builder-muted); font-size: 14px; font-weight: 750; }
.store-breadcrumb a { color: var(--store-builder-muted); }
.store-breadcrumb strong { color: var(--ikiway-pink); }
.store-cart-heading { margin-bottom: 22px; }
.store-cart-heading h1 { margin: 2px 0 6px; color: var(--ikiway-ink); font-size: clamp(30px, 4vw, 48px); font-weight: 950; letter-spacing: 0; }
.store-cart-heading > p:last-child { color: var(--store-builder-muted); font-size: 17px; font-weight: 650; }
.store-cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 400px); gap: 24px; align-items: start; }
.store-cart-primary { display: grid; gap: 24px; min-width: 0; }
.store-cart-surface, .store-cart-summary { border: 1px solid color-mix(in srgb, var(--ikiway-blue) 23%, white); border-radius: 18px; background: white; box-shadow: 0 12px 32px rgba(23,33,58,.06); }
.store-cart-section-head { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 18%, white); padding: 16px 24px; }
.store-cart-section-head > div { display: flex; align-items: baseline; gap: 12px; }
.store-cart-section-head h2, .store-cart-summary h2, .store-cart-recommendations h2 { color: var(--ikiway-ink); font-size: 22px; font-weight: 950; }
.store-cart-section-head span { color: var(--store-builder-muted); font-size: 13px; font-weight: 750; }
.store-cart-text-action, .store-cart-remove, .store-cart-coupon-remove { display: inline-flex; align-items: center; gap: 7px; border: 0; background: transparent; color: var(--ikiway-pink); font-weight: 900; cursor: pointer; }
.store-cart-text-action svg, .store-cart-remove svg, .store-cart-coupon strong svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.store-cart-lines { display: grid; gap: 0; padding: 0 24px; }
.store-cart-item { display: grid; grid-template-columns: 106px minmax(170px, 1fr) minmax(92px, auto) 166px minmax(116px, auto); gap: 16px; min-width: 0; align-items: center; border-bottom: 1px solid color-mix(in srgb, var(--ikiway-blue) 17%, white); padding: 16px 0; }
.store-cart-item:last-child { border-bottom: 0; }
.store-cart-item-media { display: grid; width: 106px; height: 106px; place-items: center; overflow: hidden; border-radius: 14px; background: var(--ikiway-pink-soft); }
.store-cart-item-media img { width: 100%; height: 100%; object-fit: cover; }
.store-cart-item-media > span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--ikiway-pink); }
.store-cart-item-media svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.store-cart-item-copy { display: grid; min-width: 0; gap: 4px; }
.store-cart-item-copy a { color: var(--ikiway-ink); }
.store-cart-item-copy strong { font-size: 16px; font-weight: 900; }
.store-cart-item-copy small { overflow: hidden; color: var(--store-builder-muted); font-size: 12px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.store-cart-stock { width: fit-content; border-radius: 999px; background: #e7faef; padding: 5px 9px; color: #16834b; font-size: 11px; font-weight: 900; }
.store-cart-item-unit, .store-cart-item-total { color: var(--ikiway-ink); font-size: 17px; white-space: nowrap; }
.store-cart-item-unit small { color: var(--store-builder-muted); font-size: 11px; font-weight: 700; }
.store-cart-item-total { text-align: right; }
.store-cart-item-actions { display: grid; min-width: 0; justify-items: end; gap: 8px; }
.store-cart-quantity { display: grid; grid-template-columns: 38px 1fr 38px; width: 166px; min-height: 44px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--ikiway-blue) 40%, white); border-radius: 999px; background: white; }
.store-cart-quantity button { border: 0; background: transparent; color: var(--ikiway-pink); font-size: 22px; font-weight: 900; cursor: pointer; }
.store-cart-quantity input { width: 100%; min-width: 0; border: 0 !important; border-radius: 0 !important; padding: 0 !important; color: var(--ikiway-ink); font-size: 16px; font-weight: 900; text-align: center; }
.store-cart-quantity input::-webkit-inner-spin-button, .store-cart-quantity input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.store-cart-remove { min-height: 36px; justify-self: end; border: 1px solid color-mix(in srgb, var(--ikiway-pink) 35%, white); border-radius: 999px; background: var(--ikiway-pink-soft); padding: 7px 12px; white-space: nowrap; }
.store-cart-remove:hover { border-color: var(--ikiway-pink); background: color-mix(in srgb, var(--ikiway-pink) 14%, white); }
.store-cart-section-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid color-mix(in srgb, var(--ikiway-blue) 18%, white); padding: 18px 24px; color: var(--store-builder-muted); }
.store-cart-section-foot a { color: var(--ikiway-pink); font-weight: 850; }
.store-cart-section-foot strong { display: flex; gap: 10px; font-size: 13px; }
.store-cart-section-foot strong span { color: var(--ikiway-ink); font-size: 18px; }
.store-cart-empty { display: grid; min-height: 270px; place-items: center; align-content: center; gap: 8px; padding: 32px; text-align: center; }
.store-cart-empty > span { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 50%; background: var(--ikiway-pink-soft); color: var(--ikiway-pink); }
.store-cart-empty svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.store-cart-empty h3 { color: var(--ikiway-ink); font-size: 19px; font-weight: 950; }
.store-cart-empty p { color: var(--store-builder-muted); font-weight: 650; }
.store-cart-empty .store-button { margin-top: 8px; }
.store-cart-summary-wrap.is-sticky { position: sticky; top: 24px; }
.store-cart-summary { display: grid; gap: 20px; padding: 24px; }
.store-cart-summary > header { padding-bottom: 2px; }
.store-cart-coupon { display: grid; gap: 12px; border-radius: 14px; background: var(--ikiway-blue-soft); padding: 15px; }
.store-cart-coupon > strong { display: flex; align-items: center; gap: 8px; color: var(--ikiway-ink); font-size: 14px; }
.store-cart-coupon form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.store-cart-coupon input { min-height: 44px; }
.store-cart-coupon .store-button { min-height: 44px; padding: 0 17px; }
.store-cart-feedback { min-height: 15px; margin: 0; color: #16834b; font-size: 12px; font-weight: 800; }
.store-cart-feedback.is-error { color: #d92d20; }
.store-cart-coupon-remove { justify-self: start; padding: 0; font-size: 12px; }
.store-cart-totals { display: grid; gap: 14px; }
.store-cart-totals > div { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--store-builder-muted); font-size: 15px; }
.store-cart-totals strong { color: var(--ikiway-ink); }
.store-cart-totals .is-discount { color: var(--ikiway-pink); }
.store-cart-totals .store-cart-total { margin-top: 2px; border-top: 1px solid color-mix(in srgb, var(--ikiway-blue) 22%, white); padding-top: 17px; color: var(--ikiway-ink); font-size: 22px; font-weight: 950; }
.store-cart-total strong { color: var(--ikiway-pink); font-size: 28px; }
.store-cart-summary .store-button-wide { width: 100%; }
.store-cart-summary .store-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.store-cart-summary .is-disabled { cursor: not-allowed; opacity: .5; }
.store-cart-payments { display: grid; gap: 10px; border-top: 1px solid color-mix(in srgb, var(--ikiway-blue) 18%, white); padding-top: 18px; }
.store-cart-payments > span { color: var(--store-builder-muted); font-size: 12px; font-weight: 750; }
.store-cart-payments > div { display: flex; align-items: center; gap: 14px; min-height: 26px; }
.store-cart-payments .store-payment-logo { max-width: 72px; max-height: 27px; }
.store-cart-recommendations { display: grid; gap: 14px; }
.store-cart-recommendations > header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.store-cart-recommendations h2 { display: flex; align-items: center; gap: 9px; }
.store-cart-recommendations h2 svg { width: 23px; height: 23px; fill: none; stroke: var(--ikiway-pink); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.store-cart-recommendations > header a { color: var(--ikiway-pink); font-size: 13px; font-weight: 900; }
.store-cart-recommendation-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.store-cart-recommendation-grid .store-builder-product-card { min-width: 0; }
.store-cart-page [data-cart-form].is-busy { pointer-events: none; opacity: .6; }
.store-cart-modal-open { overflow: hidden; }
.store-cart-confirm[hidden] { display: none; }
.store-cart-confirm { position: fixed; z-index: 120; inset: 0; display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .18s ease; }
.store-cart-confirm.is-open { opacity: 1; }
.store-cart-confirm-backdrop { position: absolute; inset: 0; border: 0; background: rgba(23, 33, 58, .48); cursor: pointer; }
.store-cart-confirm-panel { position: relative; display: grid; width: min(100%, 430px); justify-items: center; gap: 12px; border: 1px solid color-mix(in srgb, var(--ikiway-pink) 24%, white); border-radius: 20px; background: white; padding: 30px; box-shadow: 0 24px 70px rgba(23, 33, 58, .2); text-align: center; transform: translateY(10px) scale(.98); transition: transform .18s ease; }
.store-cart-confirm.is-open .store-cart-confirm-panel { transform: translateY(0) scale(1); }
.store-cart-confirm-close { position: absolute; top: 12px; right: 14px; display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 50%; background: var(--ikiway-pink-soft); color: var(--store-builder-muted); font-size: 24px; line-height: 1; cursor: pointer; }
.store-cart-confirm-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: var(--ikiway-pink-soft); color: var(--ikiway-pink); }
.store-cart-confirm-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.store-cart-confirm-panel h2 { color: var(--ikiway-ink); font-size: 24px; font-weight: 950; }
.store-cart-confirm-panel p { max-width: 350px; color: var(--store-builder-muted); font-size: 14px; font-weight: 650; line-height: 1.55; }
.store-cart-confirm-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 10px; margin-top: 6px; }
.store-cart-confirm-actions .store-button { min-height: 46px; padding: 0 16px; }

@media (max-width: 1160px) {
  .store-cart-page { padding-right: 16px; padding-left: 16px; }
  .store-cart-item { grid-template-columns: 88px minmax(170px, 1fr) 150px minmax(116px, auto); }
  .store-cart-item-media { width: 88px; height: 88px; }
  .store-cart-item-unit { display: none; }
  .store-cart-recommendation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .store-cart-layout { grid-template-columns: minmax(0, 1fr); }
  .store-cart-summary-wrap.is-sticky { position: static; }
  .store-cart-recommendation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .store-cart-page { padding: 4px 10px 38px; }
  .store-cart-heading h1 { font-size: 32px; }
  .store-cart-heading > p:last-child { font-size: 14px; }
  .store-cart-section-head { align-items: flex-start; flex-direction: column; padding: 16px; }
  .store-cart-lines { padding: 0 16px; }
  .store-cart-item { grid-template-columns: 68px minmax(0, 1fr) auto; gap: 10px; align-items: start; padding: 14px 0; }
  .store-cart-item-media { width: 68px; height: 68px; }
  .store-cart-item-copy strong { font-size: 14px; }
  .store-cart-item-actions { grid-column: 2 / span 2; grid-row: 2; display: flex; align-items: center; justify-content: space-between; justify-self: stretch; }
  .store-cart-item-total { text-align: left; font-size: 16px; }
  .store-cart-quantity { grid-column: 1 / span 2; grid-row: 3; width: 134px; min-height: 38px; }
  .store-cart-quantity button { font-size: 18px; }
  .store-cart-remove { align-self: center; padding: 7px 10px; }
  .store-cart-remove span { display: none; }
  .store-cart-remove svg { width: 18px; height: 18px; }
  .store-cart-section-foot { align-items: flex-start; flex-direction: column; padding: 16px; }
  .store-cart-summary { padding: 18px 16px; }
  .store-cart-recommendations > header { align-items: flex-start; flex-direction: column; }
  .store-cart-recommendation-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 5px; }
  .store-cart-recommendation-grid .store-builder-product-card { flex: 0 0 min(76vw, 250px); }
  .store-cart-confirm-panel { padding: 26px 18px 20px; }
  .store-cart-confirm-actions { grid-template-columns: 1fr; }
}

@media (min-width: 621px) and (max-width: 1100px) {
  .store-cart-item { grid-template-columns: 88px minmax(0, 1fr) auto; gap: 10px 14px; align-items: center; }
  .store-cart-item-media { grid-column: 1; grid-row: 1 / span 2; }
  .store-cart-item-copy { grid-column: 2; grid-row: 1; }
  .store-cart-item-unit { grid-column: 3; grid-row: 1; }
  .store-cart-quantity { grid-column: 2; grid-row: 2; width: 150px; }
  .store-cart-item-actions { grid-column: 3; grid-row: 2; }
}

.ikiway-storefront .store-payment-logo {
  height: 32px;
  fill: initial;
  stroke: none;
}

.ikiway-storefront .store-payment-logo-visa { width: 90px; }
.ikiway-storefront .store-payment-logo-mastercard { width: 116px; }
.ikiway-storefront .store-payment-logo-mercadopago {
  width: 68px;
  height: 40px;
  object-fit: cover;
}

/* Configurable public product detail */
.pd-modern {
  display: grid;
  gap: 24px;
  color: var(--store-builder-text);
}

.pd-modern-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--store-builder-muted);
  font-size: 13px;
  font-weight: 750;
}

.pd-modern-breadcrumb a:hover,
.pd-modern-breadcrumb strong { color: var(--store-builder-primary); }

.pd-modern-hero {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.pd-modern-gallery,
.pd-modern-summary,
.pd-modern-details,
.pd-modern-reviews {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 24%, white);
  border-radius: var(--store-builder-radius);
  background: white;
  box-shadow: 0 14px 34px rgba(23, 33, 58, .06);
}

.pd-modern-gallery {
  display: grid;
  gap: 12px;
  padding: 10px;
}

.pd-modern-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.pd-modern-thumbs button {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 28%, white);
  border-radius: calc(var(--store-builder-radius) * .55);
  background: var(--store-builder-surface);
  padding: 4px;
}

.pd-modern-thumbs button.is-active {
  border-color: var(--store-builder-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--store-builder-primary) 20%, transparent);
}

.pd-modern-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pd-modern-stage {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--store-builder-radius) - 6px);
  background: var(--store-builder-surface);
}

.pd-modern-stage > img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: clamp(18px, 4vw, 42px);
}

.pd-modern-placeholder { display: grid; gap: 8px; place-items: center; color: var(--store-builder-primary); }
.pd-modern-placeholder svg { width: 54px; height: 54px; }
.pd-modern-placeholder small { color: var(--store-builder-muted); font-weight: 850; }

.pd-modern-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 24%, white);
  border-radius: 50%;
  background: white;
  color: var(--store-builder-primary);
  box-shadow: 0 8px 18px rgba(23, 33, 58, .08);
}
.pd-modern-arrow.is-previous { left: 14px; }
.pd-modern-arrow.is-next { right: 14px; }
.pd-modern-arrow svg { width: 20px; height: 20px; }

.pd-modern-stock-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: #dcfce7;
  padding: 7px 12px;
  color: #08783e;
  font-size: 12px;
  font-weight: 900;
}
.pd-modern-stock-badge.is-low { background: var(--store-builder-highlight); color: var(--store-builder-text); }
.pd-modern-stock-badge.is-out { background: #fee2e2; color: #b42318; }

.pd-modern-summary { display: grid; gap: 18px; align-content: start; padding: clamp(22px, 3vw, 34px); }
.pd-modern-title-row { display: flex; gap: 18px; align-items: flex-start; justify-content: space-between; }
.pd-modern-eyebrow { color: var(--store-builder-primary); font-size: 12px; font-weight: 950; text-transform: uppercase; }
.pd-modern-summary h1 { margin-top: 7px; font-size: clamp(30px, 3vw, 42px); font-weight: 950; line-height: 1.08; }

.pd-modern-favorite button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 5px;
  color: var(--store-builder-muted);
  font-weight: 850;
  white-space: nowrap;
}
.pd-modern-favorite button.is-active,
.pd-modern-favorite button:hover { color: var(--store-builder-primary); }
.pd-modern-favorite svg { width: 22px; height: 22px; }
.pd-modern-favorite button.is-active svg { fill: currentColor; }

.pd-modern-rating { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.pd-modern-rating span { color: var(--store-builder-highlight); font-size: 20px; }
.pd-modern-rating a { color: var(--store-builder-muted); font-size: 13px; font-weight: 800; }
.pd-modern-price { color: var(--store-builder-primary); font-size: clamp(36px, 4vw, 48px); font-weight: 950; line-height: 1; }
.pd-modern-short-description { color: var(--store-builder-muted); font-size: 15px; font-weight: 650; line-height: 1.65; }

.pd-modern-variants { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-modern-variants a { border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 28%, white); border-radius: 999px; padding: 8px 12px; color: var(--store-builder-text); font-size: 12px; font-weight: 850; }
.pd-modern-variants a.is-active { border-color: var(--store-builder-primary); background: var(--store-builder-surface); color: var(--store-builder-primary); }

.pd-modern-availability { display: flex; gap: 8px; align-items: center; color: #08783e; font-size: 13px; font-weight: 850; }
.pd-modern-availability i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.pd-modern-availability.is-out { color: #b42318; }

.pd-modern-buy-form { display: grid; grid-template-columns: 144px minmax(190px, 1fr); gap: 12px; }
.pd-modern-buy-form label > span:first-child { display: none; }
.pd-modern-buy-form .store-qty-inline { height: 52px; border-radius: 999px; }
.ikiway-storefront .pd-modern-buy-form .store-qty-inline input[type="number"] {
  width: auto;
  min-width: 0;
  min-height: 50px;
  border-width: 0 1px;
  border-radius: 0;
  padding: 0;
  appearance: textfield;
}
.pd-modern-buy-form .store-qty-inline input::-webkit-inner-spin-button,
.pd-modern-buy-form .store-qty-inline input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.pd-modern-buy-form .store-button { min-height: 52px; }
.pd-modern-buy-form .store-button svg { width: 20px; height: 20px; }
.pd-modern-sold-out { width: 100%; min-height: 52px; background: #e5e7eb; color: #667085; }

.pd-modern-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 4px; }
.pd-modern-benefits > div { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 8px; align-items: center; border-radius: calc(var(--store-builder-radius) * .6); background: var(--store-builder-surface); padding: 10px; }
.pd-modern-benefits > div > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: white; color: var(--store-builder-primary); }
.pd-modern-benefits svg { width: 20px; height: 20px; }
.pd-modern-benefits strong,
.pd-modern-benefits small { display: block; }
.pd-modern-benefits strong { font-size: 11px; font-weight: 900; line-height: 1.25; }
.pd-modern-benefits small { margin-top: 2px; color: var(--store-builder-muted); font-size: 9px; line-height: 1.3; }

.pd-modern-details { display: grid; gap: 0; padding: clamp(22px, 3vw, 34px); }
.pd-modern-details h2,
.pd-modern-reviews h2,
.pd-modern-related h2 { font-size: 21px; font-weight: 950; }
.pd-modern-description { padding-right: clamp(20px, 4vw, 52px); }
.pd-modern-description > div { margin-top: 18px; color: var(--store-builder-muted); font-size: 15px; line-height: 1.75; }
.pd-modern-specifications { border-left: 1px solid color-mix(in srgb, var(--store-builder-secondary) 22%, white); padding-left: clamp(20px, 4vw, 52px); }
.pd-modern-specifications dl { display: grid; margin-top: 14px; }
.pd-modern-specifications dl > div { display: grid; grid-template-columns: minmax(110px, .8fr) minmax(0, 1fr); gap: 14px; border-bottom: 1px solid color-mix(in srgb, var(--store-builder-secondary) 18%, white); padding: 11px 0; }
.pd-modern-specifications dt { color: var(--store-builder-muted); font-size: 13px; font-weight: 750; }
.pd-modern-specifications dd { margin: 0; color: var(--store-builder-text); font-size: 13px; font-weight: 900; overflow-wrap: anywhere; }
.pd-modern-details.is-single .pd-modern-description { padding-right: 0; }
.pd-modern-details.is-single .pd-modern-specifications { border-left: 0; padding-left: 0; }

.pd-modern-tabs {
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 24%, white);
  border-radius: var(--store-builder-radius);
  background: white;
  box-shadow: 0 14px 34px rgba(23, 33, 58, .06);
  scroll-margin-top: 20px;
}

.pd-modern-tab-list {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  border-bottom: 1px solid color-mix(in srgb, var(--store-builder-secondary) 20%, white);
  padding: 0 clamp(20px, 3vw, 34px);
  scrollbar-width: none;
}

.pd-modern-tab-list::-webkit-scrollbar { display: none; }
.pd-modern-tab-list button { position: relative; min-height: 58px; flex: 0 0 auto; border: 0; background: transparent; padding: 0 5px; color: var(--store-builder-muted); font-size: 14px; font-weight: 900; }
.pd-modern-tab-list button::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--store-builder-primary); content: ""; opacity: 0; transform: scaleX(.55); transition: opacity .16s ease, transform .16s ease; }
.pd-modern-tab-list button:hover { color: var(--store-builder-text); }
.pd-modern-tab-list button.is-active { color: var(--store-builder-primary); }
.pd-modern-tab-list button.is-active::after { opacity: 1; transform: scaleX(1); }
.pd-modern-tab-list button:focus-visible { outline: 3px solid color-mix(in srgb, var(--store-builder-primary) 25%, transparent); outline-offset: -4px; }
.pd-modern-tab-panel { min-height: 190px; padding: clamp(22px, 3vw, 34px); transition: opacity .15s ease; }
.pd-modern-tabs.is-loading .pd-modern-tab-panel { opacity: .42; }
.pd-modern-tabs.is-loading .pd-modern-tab-list { pointer-events: none; }
.pd-modern-tab-status { min-height: 0; margin: 0; padding: 0 clamp(22px, 3vw, 34px); color: #b42318; font-size: 13px; font-weight: 800; }
.pd-modern-tab-status:not(:empty) { padding-bottom: 22px; }
.pd-modern-tabs .pd-modern-description { padding: 0; }
.pd-modern-tabs .pd-modern-description > div { margin-top: 0; }
.pd-modern-tabs .pd-modern-specifications { max-width: 760px; border: 0; padding: 0; }
.pd-modern-tabs .pd-modern-specifications dl { margin-top: 0; }
.pd-modern-reviews-content h2 { font-size: 21px; font-weight: 950; }
.pd-modern-reviews-content > header { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.pd-modern-reviews-content > header > strong { color: var(--store-builder-primary); font-size: 24px; }
.pd-modern-reviews-empty { margin: 18px 0 0; color: var(--store-builder-muted); font-size: 14px; }
.pd-modern-review-restriction { width: fit-content; margin: 20px 0 0; border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 24%, white); border-radius: 12px; background: var(--ikiway-blue-soft); padding: 12px 14px; color: var(--store-builder-muted); font-size: 13px; font-weight: 750; }
.pd-modern-review-restriction a { color: var(--store-builder-primary); font-weight: 950; }

.pd-modern-reviews { padding: clamp(22px, 3vw, 34px); }
.pd-modern-reviews > header,
.pd-modern-related > header { display: flex; gap: 18px; align-items: center; justify-content: space-between; }
.pd-modern-reviews > header > strong { color: var(--store-builder-primary); font-size: 24px; }
.pd-modern-review-grid { display: grid; gap: 12px; margin-top: 18px; }
.pd-modern-review-grid article { border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 18%, white); border-radius: calc(var(--store-builder-radius) * .65); padding: 16px; }
.pd-modern-review-grid article > span { color: var(--store-builder-highlight); }
.pd-modern-review-grid h3 { margin-top: 6px; font-size: 15px; }
.pd-modern-review-grid p { margin-top: 6px; color: var(--store-builder-muted); font-size: 13px; line-height: 1.55; }
.pd-modern-review-grid small { display: block; margin-top: 9px; color: var(--store-builder-muted); font-weight: 750; }
.pd-modern-review-form { display: grid; gap: 12px; max-width: 620px; margin-top: 20px; }
.pd-modern-review-form p { display: grid; gap: 6px; color: var(--store-builder-text); font-size: 13px; font-weight: 850; }
.pd-modern-review-form .helptext { color: var(--store-builder-muted); font-size: 11px; }

.pd-modern-related { min-width: 0; }
.pd-modern-related > header a { color: var(--store-builder-primary); font-size: 13px; font-weight: 900; }
.pd-modern-related-grid { grid-template-columns: repeat(min(var(--pd-related-columns), 6), minmax(0, 1fr)); margin-top: 16px; }

@media (min-width: 900px) {
  .pd-modern-hero { grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); }
  .pd-modern.gallery-normal .pd-modern-hero { grid-template-columns: minmax(0, .92fr) minmax(400px, 1.08fr); }
  .pd-modern.thumbs-left .pd-modern-gallery { grid-template-columns: 82px minmax(0, 1fr); }
  .pd-modern.thumbs-left .pd-modern-thumbs { flex-direction: column; overflow-x: visible; overflow-y: auto; }
  .pd-modern.thumbs-left .pd-modern-stage { min-height: 510px; }
  .pd-modern.thumbs-left .pd-modern-gallery.has-no-thumbs { grid-template-columns: 1fr; }
  .pd-modern-details { grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); }
  .pd-modern-details.is-single { grid-template-columns: 1fr; }
  .pd-modern-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .pd-modern-related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pd-modern-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 899px) {
  .pd-modern-stage { min-height: 390px; }
  .pd-modern-thumbs { order: 2; }
  .pd-modern-gallery { grid-template-columns: 1fr; }
  .pd-modern-details { grid-template-columns: 1fr; gap: 28px; }
  .pd-modern-description { padding-right: 0; }
  .pd-modern-specifications { border-top: 1px solid color-mix(in srgb, var(--store-builder-secondary) 22%, white); border-left: 0; padding-top: 28px; padding-left: 0; }
}

@media (max-width: 600px) {
  .pd-modern { gap: 18px; }
  .pd-modern-breadcrumb strong { max-width: 46vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pd-modern-stage { min-height: 300px; }
  .pd-modern-stage > img { max-height: 390px; padding: 18px; }
  .pd-modern-tab-list { gap: 16px; padding: 0 16px; }
  .pd-modern-tab-list button { min-height: 52px; font-size: 13px; }
  .pd-modern-tab-panel { min-height: 170px; padding: 20px 16px; }
  .pd-modern-thumbs button { flex-basis: 62px; width: 62px; height: 62px; }
  .pd-modern-summary { padding: 20px; }
  .pd-modern-title-row { align-items: flex-start; }
  .pd-modern-favorite button span { display: none; }
  .pd-modern-buy-form { grid-template-columns: 118px minmax(0, 1fr); }
  .pd-modern-buy-form .store-button { padding: 0 14px; }
  .pd-modern-related-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 12px; }
  .pd-modern-related-grid > * { flex: 0 0 min(78vw, 280px); scroll-snap-align: start; }
}

/* Storefront commerce header and configurable hero */
.ikiway-storefront svg {
  width: 1.5em;
  height: 1.5em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.store-promo-bar {
  display: grid;
  min-height: 38px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 6px max(24px, calc((100vw - 1380px) / 2));
  background: var(--ikiway-yellow);
  color: var(--ikiway-ink);
  font-size: 13px;
}

.store-promo-item,
.store-socials {
  display: flex;
  align-items: center;
  gap: 9px;
}

.store-promo-item svg { font-size: 16px; }
.store-promo-center { font-weight: 750; text-align: center; }
.store-promo-actions { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: 14px; }
.store-socials { justify-content: flex-end; }
.store-socials a { display: grid; width: 30px; height: 30px; place-items: center; color: inherit; }
.store-socials svg { font-size: 15px; }
.store-socials span { border-left: 1px solid rgba(23, 33, 58, .22); padding-left: 12px; font-weight: 750; }
.store-promo-register {
  flex: 0 0 auto;
  border-left: 1px solid rgba(23, 33, 58, .22);
  padding-left: 14px;
  color: var(--ikiway-ink);
  font-weight: 900;
  text-decoration: none;
}
.store-promo-register:hover { color: var(--ikiway-purple); }

.store-header-commerce {
  position: relative;
  border-bottom: 0;
  background: var(--ikiway-white);
}

.store-header-commerce .store-header-inner {
  display: grid;
  max-width: 1380px;
  min-height: 118px;
  grid-template-columns: minmax(190px, 250px) minmax(320px, 1fr) auto;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  margin: 0 auto;
  padding: 14px 24px;
}

.store-header-commerce .store-brand {
  display: block;
  min-width: 0;
  color: var(--ikiway-ink);
}

.store-brand-image {
  display: block;
  width: min(100%, 245px);
  height: 84px;
  overflow: hidden;
}

.store-brand-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  transform: translateY(-34%);
}

.store-header-search {
  display: grid;
  min-width: 0;
  min-height: 56px;
  grid-template-columns: 46px minmax(0, 1fr) 54px;
  align-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ikiway-pink) 24%, white);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(244, 91, 181, .07);
}

.store-header-search > span { display: grid; place-items: center; color: var(--ikiway-ink); }
.store-header-search input { width: 100%; min-width: 0; border: 0 !important; outline: 0; padding: 0 !important; box-shadow: none !important; color: var(--ikiway-ink); font-size: 15px; }
.store-header-search button { display: grid; width: 46px; height: 46px; place-items: center; justify-self: end; margin-right: 5px; border: 0; border-radius: 14px; background: var(--ikiway-pink); color: #fff; }

.store-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.store-header-action {
  position: relative;
  display: grid;
  min-width: 62px;
  justify-items: center;
  gap: 5px;
  color: var(--ikiway-ink);
  font-size: 21px;
}

.store-header-action small { font-size: 12px; font-weight: 750; white-space: nowrap; }
.store-header-action.is-disabled { cursor: not-allowed; opacity: .55; }
.store-cart-action > span { position: absolute; top: -7px; right: 5px; display: grid; min-width: 20px; height: 20px; place-items: center; border-radius: 999px; background: var(--ikiway-pink); padding: 0 5px; color: #fff; font-size: 10px; font-weight: 900; }

.store-category-nav {
  display: flex;
  width: 100%;
  max-width: 1380px;
  min-height: 54px;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  margin: 0 auto 24px;
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--ikiway-blue) 34%, white);
  background: var(--ikiway-blue-soft);
  padding: 5px;
  scrollbar-width: none;
}

.store-builder-page[data-storefront-page][aria-busy="true"] {
  cursor: progress;
  opacity: .68;
  transition: opacity .15s ease;
}

.store-category-nav::-webkit-scrollbar { display: none; }
.store-category-nav a { display: inline-flex; min-height: 44px; flex: 0 0 auto; align-items: center; gap: 8px; border-radius: 22px; padding: 0 17px; color: var(--ikiway-ink); font-size: 13px; font-weight: 800; white-space: nowrap; }
.store-category-nav a.store-category-all { margin-left: auto; border-left: 1px solid color-mix(in srgb, var(--ikiway-blue) 36%, white); }
.store-category-nav a:hover { color: color-mix(in srgb, var(--ikiway-blue) 78%, var(--ikiway-ink)); }
.store-category-nav a.is-active { background: var(--ikiway-blue); color: var(--ikiway-ink); }
.store-category-nav svg { font-size: 15px; }

.store-main { max-width: 1380px; padding: 14px 24px 72px; }
.store-builder-page { gap: 24px; }

.store-builder-hero {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--store-builder-surface);
  box-shadow: 0 14px 38px rgba(23, 33, 58, .08);
}

.store-hero-slide {
  display: none;
  min-height: 390px;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  background: var(--hero-background, var(--ikiway-yellow));
}

.store-hero-slide.is-active { display: grid; }
.store-builder-hero-copy { position: relative; z-index: 1; align-content: center; gap: 15px; padding: clamp(30px, 4vw, 62px); }
.store-builder-hero-copy.is-center { justify-items: center; text-align: center; }
.store-builder-hero-copy .store-builder-kicker { color: var(--ikiway-pink); }
.store-builder-hero h1 { display: grid; max-width: 620px; gap: 0; font-size: clamp(42px, 4.4vw, 68px); line-height: .98; }
.store-builder-hero h1 span { color: var(--hero-title, var(--ikiway-pink)); }
.store-builder-hero h1 strong { color: var(--hero-highlight, var(--ikiway-blue)); font-weight: inherit; }
.store-builder-lead { max-width: 560px; color: var(--ikiway-ink); font-size: clamp(16px, 1.5vw, 19px); font-weight: 650; line-height: 1.5; }
.store-builder-actions { margin-top: 4px; }
.store-builder-actions .store-button { min-height: 52px; border-radius: 999px; padding: 0 28px; }
.store-builder-actions .store-button-secondary { border-color: var(--ikiway-pink); background: #fff; color: var(--ikiway-ink); }

.store-builder-hero-media { min-height: 390px; border-radius: 0; background: var(--ikiway-pink-soft); }
.store-builder-hero-media img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }

.store-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--ikiway-ink);
  font-size: 29px;
  box-shadow: 0 8px 24px rgba(23, 33, 58, .13);
}
.store-hero-arrow.is-previous { left: 14px; }
.store-hero-arrow.is-next { right: 14px; }
.store-builder-slider-dots { bottom: 12px; }
.store-builder-slider-dots button { width: 9px; height: 9px; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .65); padding: 0; box-shadow: 0 1px 5px rgba(23, 33, 58, .18); }
.store-builder-slider-dots button.is-active { width: 24px; background: var(--ikiway-pink); }

.store-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--ikiway-pink-soft);
  border-radius: var(--store-builder-radius);
  background: color-mix(in srgb, var(--ikiway-pink-soft) 58%, white);
  padding: 16px 12px;
}
.store-benefits article { display: grid; min-width: 0; grid-template-columns: 54px minmax(0, 1fr); gap: 13px; align-items: center; padding: 4px 24px; }
.store-benefits article + article { border-left: 1px solid color-mix(in srgb, var(--ikiway-pink) 18%, white); }
.store-benefits article > span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--ikiway-pink); font-size: 25px; }
.store-benefits strong, .store-benefits small { display: block; }
.store-benefits strong { color: var(--ikiway-ink); font-size: 14px; font-weight: 900; }
.store-benefits small { margin-top: 3px; color: var(--store-builder-muted); font-size: 12px; font-weight: 650; }

.ikiway-storefront :is(a, button, input, select, textarea):focus-visible { outline: 3px solid color-mix(in srgb, var(--ikiway-blue) 65%, white); outline-offset: 3px; }

@media (max-width: 1080px) {
  .store-promo-bar { grid-template-columns: 1fr auto; }
  .store-socials { display: none; }
  .store-header-commerce .store-header-inner { grid-template-columns: 190px minmax(260px, 1fr) auto; gap: 16px; }
  .store-header-actions { gap: 10px; }
  .store-header-action { min-width: 50px; }
  .store-header-action small { display: none; }
  .store-benefits article { grid-template-columns: 42px minmax(0, 1fr); padding: 4px 14px; }
  .store-benefits article > span { width: 38px; height: 38px; font-size: 20px; }
}

@media (max-width: 780px) {
  .store-promo-bar { display: flex; min-height: 34px; justify-content: space-between; padding: 5px 16px; font-size: 11px; }
  .store-promo-center { display: none; }
  .store-promo-actions { margin-left: auto; }
  .store-promo-register { border-left: 0; padding-left: 0; }
  .store-header-commerce .store-header-inner { min-height: auto; grid-template-columns: minmax(120px, 1fr) auto; padding: 8px 16px 12px; }
  .store-brand-image { width: 160px; height: 58px; }
  .store-header-search { min-height: 50px; grid-column: 1 / -1; grid-row: 2; }
  .store-header-actions { grid-column: 2; grid-row: 1; }
  .store-header-action.is-disabled, .store-header-action:not(.store-cart-action) { display: none; }
  .store-category-nav { width: calc(100% - 24px); margin: 0 12px 20px; border-radius: 22px; }
  .store-main { padding: 10px 14px 56px; }
  .store-hero-slide { min-height: 0; grid-template-columns: 1fr; }
  .store-builder-hero-copy { min-height: 330px; padding: 32px 26px; }
  .store-builder-hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .store-builder-hero-media, .store-builder-hero-media img { min-height: 250px; }
  .store-builder-hero-media { aspect-ratio: 16 / 10; }
  .store-benefits { grid-template-columns: 1fr 1fr; }
  .store-benefits article:nth-child(odd) { border-left: 0; }
  .store-benefits article:nth-child(n + 3) { border-top: 1px solid color-mix(in srgb, var(--ikiway-pink) 18%, white); }
  .store-benefits article { min-height: 82px; }
}

@media (max-width: 780px) {
  body:has(.store-builder-page .store-presence) .store-main { padding-bottom: 20px; }
  body:has(.store-builder-page .store-presence) .store-footer-commerce { margin-top: 20px; }
}

@media (max-width: 430px) {
  .store-header-commerce .store-header-inner { grid-template-columns: minmax(100px, 1fr) 58px; }
  .store-brand-image { width: 142px; height: 54px; }
  .store-header-search { grid-template-columns: 40px minmax(0, 1fr) 48px; }
  .store-category-nav a { min-height: 40px; padding: 0 14px; }
  .store-builder-hero-copy { min-height: 310px; padding: 28px 22px; }
  .store-builder-actions { display: grid; width: 100%; }
  .store-builder-actions .store-button { width: 100%; }
  .store-builder-hero-media, .store-builder-hero-media img { min-height: 220px; }
  .store-benefits article { grid-template-columns: 34px minmax(0, 1fr); gap: 8px; padding: 8px; }
  .store-benefits article > span { width: 32px; height: 32px; font-size: 18px; }
  .store-benefits strong { font-size: 12px; }
  .store-benefits small { font-size: 10px; line-height: 1.35; }
}

/* Product cards: clean Ikiway presentation with the shared storefront contract. */
.store-builder-product-grid {
  grid-template-columns: repeat(var(--store-card-desktop-columns, 4), minmax(0, 1fr));
}

.store-builder-product-card {
  gap: 12px;
  border-color: color-mix(in srgb, var(--ikiway-blue) 24%, white);
  border-radius: var(--store-builder-radius);
  padding: 12px;
  box-shadow: 0 8px 24px rgba(23, 33, 58, .055);
  transition: transform .22s ease, box-shadow .22s ease;
}

.store-builder-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 33, 58, .09);
}

.store-builder-product-media-shell { position: relative; }
.store-product-favorite-form { position: absolute; top: 10px; right: 10px; z-index: 2; }
.store-product-favorite {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--ikiway-pink) 28%, white);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--ikiway-pink);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(23, 33, 58, .08);
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.store-product-favorite:hover { transform: translateY(-1px); }
.store-product-favorite svg { width: 20px; height: 20px; }
.store-product-favorite.is-active { background: var(--ikiway-pink); color: white; }
.store-product-favorite.is-active svg { fill: currentColor; }
.store-product-favorite[disabled] { cursor: progress; opacity: .65; }

.store-builder-product-media {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--ikiway-blue-soft);
}

.store-builder-product-media img {
  transition: transform .22s ease;
}

.store-builder-product-media:hover img {
  transform: scale(1.02);
}

.store-builder-product-media.image-fit-contain img { object-fit: contain; padding: 10px; }
.store-builder-product-media.image-fit-cover img { object-fit: cover; padding: 0; }

.store-product-placeholder {
  display: grid !important;
  width: 100%;
  height: 100%;
  place-content: center;
  gap: 8px;
  color: color-mix(in srgb, var(--ikiway-blue) 70%, var(--ikiway-ink));
  text-align: center;
}

.store-product-placeholder svg {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  stroke: currentColor;
  stroke-width: 1.4;
}

.store-product-placeholder small {
  color: var(--store-builder-muted);
  font-size: 11px;
  font-weight: 800;
}

.store-product-card-copy {
  min-width: 0;
  gap: 7px;
}

.store-builder-product-card.is-clean .store-product-category-tag,
.store-builder-product-card.is-compact .store-product-category-tag {
  width: fit-content;
  margin-top: -1px;
  border-radius: 999px;
  background: var(--ikiway-yellow);
  padding: 4px 9px;
  color: var(--ikiway-ink);
  font-size: 10px;
  font-weight: 900;
}

.store-builder-product-card h3 {
  min-height: 40px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.store-product-card-copy > strong {
  margin-top: 2px;
  font-size: 23px;
  line-height: 1.1;
}

.store-product-variant,
.store-product-description {
  overflow: hidden;
  color: var(--store-builder-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-product-description {
  display: -webkit-box;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.store-product-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--store-builder-muted) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.store-product-stock i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #20a464;
}

.store-product-stock.is-low i { background: var(--ikiway-yellow); }
.store-product-stock.is-out i { background: #98a2b3; }

.store-builder-product-form {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.store-card-quantity {
  display: grid;
  min-width: 98px;
  min-height: 46px;
  grid-template-columns: 30px minmax(38px, 1fr) 30px;
  overflow: hidden;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--ikiway-blue) 45%, white);
  border-radius: 13px;
  background: white;
}

.store-card-quantity button {
  display: grid;
  height: 100%;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ikiway-ink);
  font-size: 16px;
  font-weight: 900;
}

.store-card-quantity button:hover { background: var(--ikiway-blue-soft); }
.ikiway-storefront .store-card-quantity input.store-input[type="number"] {
  width: auto;
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0 !important;
  appearance: textfield;
  color: var(--ikiway-ink);
  font-size: 14px;
  line-height: normal;
  text-align: center;
}
.store-card-quantity .store-input::-webkit-inner-spin-button,
.store-card-quantity .store-input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.store-builder-product-form .store-button { min-width: 0; padding: 0 12px; }
.store-builder-product-form .store-button svg { width: 17px; height: 17px; }

.store-builder-product-form.is-disabled { grid-template-columns: 1fr; }
.store-builder-product-form.is-add-only,
.store-builder-product-form.is-quantity-only { grid-template-columns: 1fr; }
.store-builder-product-form.is-disabled .store-button { background: var(--ikiway-blue-soft); color: var(--store-builder-muted); cursor: not-allowed; box-shadow: none; }

.store-builder-product-card.is-compact { gap: 9px; padding: 9px; }
.store-builder-product-card.is-compact .store-builder-product-media { border-radius: 12px; }
.store-builder-product-card.is-compact h3 { min-height: 36px; font-size: 14px; }
.store-builder-product-card.is-compact .store-product-card-copy > strong { font-size: 19px; }
.store-builder-product-card.is-compact .store-product-stock { font-size: 11px !important; }

@media (max-width: 1180px) {
  .store-builder-product-grid[style*="--store-card-desktop-columns: 4"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .store-builder-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .store-builder-product-grid { grid-template-columns: repeat(var(--store-card-mobile-columns, 2), minmax(0, 1fr)) !important; }
  .store-builder-product-card { padding: 10px; }
  .store-builder-product-form { grid-template-columns: 1fr; }
  .store-card-quantity { width: 100%; }
  .store-builder-product-form .store-button { width: 100%; }
}

@media (max-width: 430px) {
  .store-builder-product-card h3 { font-size: 14px; }
  .store-product-card-copy > strong { font-size: 20px; }
  .store-product-stock { font-size: 11px !important; }
}

/* Reusable product showcase and social gallery sections. */
.store-product-showcase {
  padding-top: 18px;
}

.store-presence {
  border-radius: var(--store-builder-radius);
  background: color-mix(in srgb, var(--store-builder-primary) 6%, white);
  padding: clamp(28px, 4vw, 54px);
}

.store-presence-head h2 {
  margin: 0;
  color: var(--store-builder-primary);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.05;
}

.store-presence-head p {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--store-builder-muted);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 650;
  line-height: 1.5;
}

.store-presence-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(24px, 3vw, 34px);
}

.store-presence.has-single-card .store-presence-grid { grid-template-columns: 1fr; }

.store-presence-social,
.store-presence-location {
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--store-builder-primary) 12%, white);
  border-radius: min(var(--store-builder-radius), 26px);
}

.store-presence-social {
  position: relative;
  display: grid;
  min-height: 370px;
  grid-template-columns: minmax(250px, 1fr) minmax(180px, .8fr);
  align-items: center;
  background: color-mix(in srgb, var(--store-builder-primary) 7%, white);
  padding: clamp(28px, 3vw, 44px);
}

.store-presence-social-copy { position: relative; z-index: 1; }
.store-presence-social-heading { display: flex; align-items: center; gap: 18px; }
.store-presence-social-heading > div { display: grid; gap: 5px; }
.store-presence-social-heading small,
.store-presence-location-heading small { color: var(--store-builder-primary); font-size: 14px; font-weight: 950; }
.store-presence-social-heading strong { color: var(--store-builder-text); font-size: clamp(27px, 2.5vw, 38px); font-weight: 950; line-height: 1; }

.store-presence-instagram-icon {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #6a35ff 4%, #d62976 48%, #ff7a35 78%, #ffd35a 100%);
  color: white;
}
.store-presence-instagram-icon svg { width: 45px; height: 45px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.store-presence-social-copy > a,
.store-presence-location-copy > a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  margin-top: 32px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 900;
}
.store-presence-social-copy > a { background: var(--store-builder-primary); color: white; }
.store-presence-location-copy > a { border: 1px solid var(--store-builder-primary); background: white; color: var(--store-builder-primary); }
.store-presence-social-copy > a svg,
.store-presence-location-copy > a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.store-presence-social > img {
  position: relative;
  z-index: 0;
  width: min(100%, 260px);
  max-height: 320px;
  justify-self: end;
  object-fit: contain;
  transform: translateX(20px);
}

.store-presence-location {
  display: grid;
  background: color-mix(in srgb, var(--store-builder-secondary) 10%, white);
  padding: clamp(20px, 2.5vw, 30px);
}
.store-presence-location-main { display: grid; grid-template-columns: minmax(235px, .85fr) minmax(260px, 1.15fr); gap: 22px; align-items: center; }
.store-presence-location.has-no-map .store-presence-location-main { grid-template-columns: 1fr; }
.store-presence-location-heading { display: flex; align-items: center; gap: 12px; }
.store-presence-location-heading > span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--store-builder-secondary) 16%, white); color: var(--store-builder-secondary); }
.store-presence-location-heading svg,
.store-presence-location > footer svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.store-presence-location h3 { margin: 18px 0 10px; color: var(--store-builder-text); font-size: clamp(23px, 2.1vw, 32px); font-weight: 950; line-height: 1.12; }
.store-presence-location-copy p { margin: 3px 0; color: var(--store-builder-muted); font-size: 16px; font-weight: 650; line-height: 1.4; }
.store-presence-map { width: 100%; aspect-ratio: 16 / 10; border: 0; border-radius: min(var(--store-builder-radius), 18px); background: white; }
.store-presence-location > footer { display: flex; min-height: 64px; align-items: center; gap: 14px; border-radius: 16px; margin-top: 22px; background: color-mix(in srgb, var(--store-builder-secondary) 15%, white); padding: 12px 20px; color: var(--store-builder-text); }
.store-presence-location > footer span { color: var(--store-builder-secondary); }
.store-presence-location > footer strong { font-size: 14px; font-weight: 850; }

.store-presence a { transition: transform .18s ease, box-shadow .18s ease; }
.store-presence a:hover { transform: translateY(-1px); box-shadow: 0 7px 18px color-mix(in srgb, var(--store-builder-primary) 16%, transparent); }
.store-presence a:focus-visible { outline: 3px solid color-mix(in srgb, var(--store-builder-primary) 35%, transparent); outline-offset: 3px; }

@media (max-width: 1120px) {
  .store-presence-social { grid-template-columns: 1fr; padding-right: 220px; }
  .store-presence-social > img { position: absolute; right: 12px; bottom: -12px; width: 190px; opacity: .82; }
  .store-presence-social-copy { max-width: 100%; }
  .store-presence-location-main { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .store-presence-grid { grid-template-columns: 1fr; }
  .store-presence-social { min-height: 330px; }
  .store-presence-social > img { width: 200px; }
  .store-presence-location-main { grid-template-columns: minmax(200px, .8fr) minmax(280px, 1.2fr); }
}

@media (max-width: 620px) {
  .store-presence { padding: 24px 16px; }
  .store-presence-social { min-height: 530px; padding: 24px; }
  .store-presence-social-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .store-presence-instagram-icon { width: 60px; height: 60px; flex-basis: 60px; border-radius: 17px; }
  .store-presence-instagram-icon svg { width: 36px; height: 36px; }
  .store-presence-social-copy { max-width: 100%; }
  .store-presence-social-copy > a { min-height: 46px; max-width: 158px; margin-top: 22px; padding: 0 12px; font-size: 12px; }
  .store-presence-social > img { right: 12px; bottom: 12px; width: 160px; max-height: 160px; transform: none; }
  .store-presence-location { padding: 20px; }
  .store-presence-location-main { grid-template-columns: 1fr; }
  .store-presence-location-copy > a { width: 100%; margin-top: 20px; }
  .store-presence-map { aspect-ratio: 16 / 11; }
}

.store-section-description,
.store-social-gallery-head > div > p:not(.store-builder-kicker) {
  max-width: 700px;
  margin-top: 8px;
  color: var(--store-builder-muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.store-product-context-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border: 2px solid white;
  border-radius: 999px;
  background: var(--store-builder-primary);
  padding: 5px 10px;
  color: white;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 5px 14px color-mix(in srgb, var(--store-builder-primary) 24%, transparent);
}

.store-showcase-view-all {
  display: inline-flex;
  min-height: 48px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 0;
  border: 1px solid var(--store-builder-primary);
  border-radius: 999px;
  background: white;
  padding: 0 30px;
  color: var(--store-builder-primary);
  font-size: 14px;
  font-weight: 900;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.store-showcase-view-all:hover {
  background: var(--store-builder-primary);
  color: white;
  transform: translateY(-1px);
}

.store-social-gallery {
  width: calc(100% + 32px);
  margin-left: -16px;
  border-radius: var(--store-builder-radius);
  background: color-mix(in srgb, var(--store-builder-primary) 7%, white);
  padding: clamp(28px, 4vw, 54px) max(16px, 3vw);
}

.store-social-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.store-social-gallery h2 {
  margin-top: 3px;
  color: var(--store-builder-text);
  font-size: 34px;
  font-weight: 950;
  line-height: 1.15;
}

.store-social-gallery-head > a {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--store-builder-primary);
  border-radius: 999px;
  background: white;
  padding: 0 22px;
  color: var(--store-builder-primary);
  font-size: 14px;
  font-weight: 900;
}

.store-social-gallery-head > a svg,
.store-social-gallery-item > span svg {
  width: 21px;
  height: 21px;
}

.store-social-gallery-shell {
  position: relative;
}

.store-social-gallery-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  outline: none;
}

.store-social-gallery.is-carousel .store-social-gallery-track {
  display: flex;
  overflow-x: auto;
  padding: 3px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--store-builder-primary) 40%, transparent) transparent;
}

.store-social-gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: min(var(--store-builder-radius), 18px);
  background: white;
  aspect-ratio: 1;
  scroll-snap-align: start;
}

.store-social-gallery.is-carousel .store-social-gallery-item {
  flex: 0 0 calc((100% - 72px) / 5);
}

.store-social-gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.store-social-gallery-item > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--store-builder-primary) 22%, transparent);
  color: white;
  opacity: 0;
  transition: opacity .2s ease;
}

.store-social-gallery-item:hover img { transform: scale(1.025); filter: saturate(.92); }
.store-social-gallery-item:hover > span,
.store-social-gallery-item:focus-visible > span { opacity: 1; }

.store-social-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--store-builder-primary) 35%, white);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--store-builder-primary);
  font-size: 24px;
  transform: translateY(-50%);
  box-shadow: 0 6px 18px rgba(23, 33, 58, .1);
}

.store-social-arrow.is-previous { left: -14px; }
.store-social-arrow.is-next { right: -14px; }
.store-social-gallery.is-grid .store-social-arrow { display: none; }

.store-social-indicators {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.store-social-indicators i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--store-builder-muted) 28%, white);
}

.store-social-indicators i.is-active { background: var(--store-builder-primary); }

.store-account-auth,
.store-account-page {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 32px 0 68px;
}

.store-account-auth {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  align-items: center;
  gap: 64px;
}

.store-account-auth-copy > span,
.store-account-heading > div > span {
  color: var(--store-builder-primary);
  font-size: 13px;
  font-weight: 950;
}

.store-account-auth-copy h1,
.store-account-heading h1 {
  margin: 8px 0 10px;
  color: var(--store-builder-text);
  font-size: 40px;
  line-height: 1.08;
}

.store-account-auth-copy p,
.store-account-heading p {
  margin: 0;
  color: var(--store-builder-muted);
  font-size: 17px;
  line-height: 1.6;
}

.store-account-form,
.store-account-profile,
.store-account-orders {
  border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 28%, white);
  border-radius: var(--store-builder-radius);
  background: white;
  box-shadow: 0 12px 34px rgba(23, 33, 58, .06);
}

.store-account-form { display: grid; gap: 18px; padding: 30px; }
.store-account-form > header { display: flex; align-items: center; gap: 14px; }
.store-account-form > header > span,
.store-account-profile > span,
.store-account-empty > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ikiway-pink-soft);
  color: var(--store-builder-primary);
}
.store-account-form svg,
.store-account-profile svg,
.store-account-empty svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.store-account-form h2 { margin: 0; color: var(--store-builder-text); font-size: 23px; }
.store-account-form header p { margin: 3px 0 0; color: var(--store-builder-muted); font-size: 13px; }
.store-account-form label { display: grid; gap: 7px; color: var(--store-builder-text); font-size: 13px; font-weight: 850; }
.store-account-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid color-mix(in srgb, var(--store-builder-secondary) 38%, white);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--store-builder-text);
  outline: none;
}
.store-account-form input:focus { border-color: var(--store-builder-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--store-builder-primary) 14%, transparent); }
.store-account-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.store-account-form-grid .is-wide { grid-column: 1 / -1; }
.store-account-form .errorlist,
.store-account-errors { margin: 0; color: #b42318; font-size: 12px; font-weight: 750; }
.store-account-errors { border-radius: 10px; padding: 10px 12px; background: #fff1f0; }
.store-account-errors ul { margin: 0; padding-left: 18px; }
.store-account-form-switch { margin: 0; text-align: center; color: var(--store-builder-muted); font-size: 13px; }
.store-account-form-switch a { color: var(--store-builder-primary); font-weight: 900; }

.store-account-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.store-account-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); align-items: start; gap: 24px; }
.store-account-profile { display: grid; justify-items: center; padding: 28px 20px; text-align: center; }
.store-account-profile h2 { margin: 14px 0 4px; color: var(--store-builder-text); font-size: 18px; overflow-wrap: anywhere; }
.store-account-profile p,
.store-account-profile small { margin: 0; color: var(--store-builder-muted); overflow-wrap: anywhere; }
.store-account-orders { padding: 26px; }
.store-account-orders > h2 { margin: 0 0 18px; color: var(--store-builder-text); font-size: 24px; }
.store-account-orders > article { display: grid; grid-template-columns: 150px minmax(0, 1fr) 130px; gap: 20px; align-items: center; border-top: 1px solid #e8edf5; padding: 18px 0; }
.store-account-orders > article > div { display: grid; gap: 4px; min-width: 0; }
.store-account-orders > article > div:last-child { justify-items: end; }
.store-account-orders article strong { color: var(--store-builder-text); }
.store-account-orders article span { color: var(--store-builder-muted); font-size: 13px; }
.store-account-orders article small { border-radius: 999px; padding: 5px 9px; background: var(--ikiway-blue-soft); color: var(--store-builder-text); font-weight: 850; }
.store-account-empty { display: grid; justify-items: center; padding: 42px 20px; text-align: center; }
.store-account-empty h3 { margin: 14px 0 5px; color: var(--store-builder-text); }
.store-account-empty p { margin: 0 0 18px; color: var(--store-builder-muted); }

.store-login-auth {
  display: grid;
  width: min(100%, 1240px);
  min-height: 620px;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  grid-template-areas: "intro form" "benefits form";
  align-content: center;
  align-items: center;
  gap: 34px 72px;
  margin: 0 auto;
  padding: 64px 20px 78px;
}

.store-login-auth.is-form-only { display: flex; justify-content: center; }
.store-login-intro { grid-area: intro; align-self: end; }
.store-login-intro h1 {
  max-width: 540px;
  margin: 0;
  color: var(--store-builder-text);
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: 0;
}
.store-login-intro h1 strong { color: var(--store-builder-primary); font-weight: inherit; }
.store-login-intro > p { max-width: 560px; margin: 20px 0 0; color: var(--store-builder-muted); font-size: 19px; line-height: 1.55; }

.store-login-benefits { display: grid; grid-area: benefits; align-self: start; gap: 20px; }
.store-login-benefits article { display: grid; grid-template-columns: 66px minmax(0, 1fr); align-items: center; gap: 18px; }
.store-login-benefits article > span { display: grid; width: 66px; height: 66px; place-items: center; border-radius: 50%; }
.store-login-benefits article.is-orders > span { background: var(--ikiway-pink-soft); color: var(--store-builder-primary); }
.store-login-benefits article.is-favorites > span { background: var(--ikiway-blue-soft); color: color-mix(in srgb, var(--store-builder-secondary) 82%, var(--store-builder-text)); }
.store-login-benefits article.is-news > span { background: color-mix(in srgb, var(--store-builder-highlight) 34%, white); color: color-mix(in srgb, var(--store-builder-highlight) 72%, #8a6500); }
.store-login-benefits svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.store-login-benefits strong { display: block; color: var(--store-builder-text); font-size: 16px; }
.store-login-benefits p { margin: 4px 0 0; color: var(--store-builder-muted); font-size: 14px; line-height: 1.4; }

.store-login-form { grid-area: form; width: 100%; max-width: 590px; justify-self: end; gap: 20px; padding: 40px; }
.store-login-form > header > span { width: 64px; height: 64px; flex-basis: 64px; }
.store-login-form > header > span svg { width: 31px; height: 31px; }
.store-login-form h2 { font-size: 29px; }
.store-login-form header p { margin-top: 6px; font-size: 15px; }
.store-login-input { position: relative; display: flex; min-height: 54px; align-items: center; border: 1px solid color-mix(in srgb, var(--store-builder-muted) 30%, white); border-radius: 14px; background: white; transition: border-color .16s ease, box-shadow .16s ease; }
.store-login-input:focus-within { border-color: var(--store-builder-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--store-builder-primary) 14%, transparent); }
.store-login-input > i { display: grid; width: 52px; flex: 0 0 52px; place-items: center; color: var(--store-builder-muted); }
.store-login-input > i svg,
.store-login-input button svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.store-account-form .store-login-input input { min-height: 52px; border: 0 !important; border-radius: 0 !important; padding: 0 14px 0 0 !important; background: transparent; box-shadow: none !important; outline: 0; }
.store-account-form .store-login-input.has-password-toggle input { padding-right: 4px; }
.store-login-input button { display: grid; width: 50px; height: 50px; flex: 0 0 50px; place-items: center; border: 0; background: transparent; color: var(--store-builder-muted); cursor: pointer; }
.store-login-input button:hover { color: var(--store-builder-primary); }
.store-login-input button [hidden] { display: none; }
.store-login-submit { min-height: 54px; margin-top: 4px; font-size: 16px; }
.store-login-submit:disabled { cursor: wait; opacity: .72; }
.store-login-separator { display: flex; align-items: center; gap: 14px; color: var(--store-builder-muted); font-size: 13px; font-weight: 850; }
.store-login-separator::before,
.store-login-separator::after { height: 1px; flex: 1; background: color-mix(in srgb, var(--store-builder-muted) 24%, white); content: ""; }
.store-login-form .store-account-form-switch { font-size: 14px; }

.store-register-auth {
  min-height: 720px;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  grid-template-areas: "intro form" "benefits form";
  align-content: center;
  align-items: start;
  gap: 30px 70px;
}

.store-register-intro { align-self: start; padding-top: 40px; }
.store-register-intro h1 { max-width: 500px; }
.store-register-intro > p { max-width: 470px; }
.store-register-benefits { align-self: start; gap: 22px; }
.store-register-benefits article.is-orders > span { background: color-mix(in srgb, var(--store-builder-primary) 13%, white); }
.store-register-benefits article.is-favorites > span { background: color-mix(in srgb, var(--store-builder-secondary) 20%, white); }
.store-register-benefits article.is-news > span { background: color-mix(in srgb, var(--store-builder-highlight) 35%, white); }
.store-register-form { max-width: 680px; gap: 17px; padding: 34px 36px; }
.store-register-form-grid { gap: 15px 16px; }
.store-register-form .store-login-input { min-height: 52px; }
.store-register-form .store-login-input > i { width: 48px; flex-basis: 48px; }
.store-register-form .store-login-input input { min-height: 50px; }
.store-register-form .store-login-input button { width: 46px; height: 46px; flex-basis: 46px; }
.store-field-errors:empty { display: none; }
.store-field-errors .errorlist { margin: 0; padding: 0; list-style: none; }

@media (max-width: 1024px) {
  .store-login-auth { grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr); gap: 28px 40px; padding-right: 8px; padding-left: 8px; }
  .store-login-intro h1 { font-size: 43px; }
  .store-login-form { padding: 34px; }
  .store-register-auth { grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr); gap: 26px 34px; }
  .store-register-form { padding: 30px; }
}

@media (max-width: 900px) {
  .store-register-auth {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "form" "benefits";
    gap: 28px;
    padding: 40px 12px 58px;
  }
  .store-register-intro { padding-top: 0; }
  .store-register-form { max-width: none; justify-self: stretch; }
}

.store-social-gallery a:focus-visible,
.store-social-gallery-track:focus-visible,
.store-showcase-view-all:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--store-builder-primary) 35%, transparent);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .store-social-gallery-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .store-social-gallery.is-carousel .store-social-gallery-item { flex-basis: calc((100% - 36px) / 3); }
}

@media (max-width: 700px) {
  .store-login-auth,
  .store-login-auth.is-form-only { display: grid; min-height: 0; grid-template-columns: 1fr; grid-template-areas: "intro" "form" "benefits"; gap: 26px; padding: 30px 2px 50px; }
  .store-login-intro { align-self: auto; }
  .store-login-intro h1 { font-size: 36px; }
  .store-login-intro > p { margin-top: 14px; font-size: 16px; }
  .store-login-form { max-width: none; justify-self: stretch; padding: 26px 20px; }
  .store-login-form > header > span { width: 54px; height: 54px; flex-basis: 54px; }
  .store-login-form h2 { font-size: 24px; }
  .store-login-benefits { gap: 15px; }
  .store-login-benefits article { grid-template-columns: 54px minmax(0, 1fr); gap: 14px; }
  .store-login-benefits article > span { width: 54px; height: 54px; }
  .store-login-benefits article > span svg { width: 25px; height: 25px; }
  .store-register-auth { gap: 24px; padding: 30px 2px 50px; }
  .store-register-form { padding: 24px 18px; }
  .store-register-form-grid { gap: 14px; }
  .store-account-auth { grid-template-columns: 1fr; gap: 24px; padding: 18px 4px 46px; }
  .store-account-auth-copy h1,
  .store-account-heading h1 { font-size: 31px; }
  .store-account-form { padding: 22px 18px; }
  .store-account-form-grid,
  .store-account-layout { grid-template-columns: 1fr; }
  .store-account-form-grid .is-wide { grid-column: auto; }
  .store-account-heading { align-items: stretch; flex-direction: column; }
  .store-account-heading form,
  .store-account-heading button { width: 100%; }
  .store-account-orders { padding: 20px 16px; }
  .store-account-orders > article { grid-template-columns: 1fr; gap: 10px; }
  .store-account-orders > article > div:last-child { grid-auto-flow: column; justify-content: space-between; justify-items: start; }
  .store-social-gallery { width: calc(100% + 16px); margin-left: -8px; }
  .store-social-gallery-head { align-items: flex-start; flex-direction: column; }
  .store-social-gallery-head > a { width: 100%; }
  .store-social-gallery h2 { font-size: 29px; }
  .store-social-gallery-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-social-gallery.is-carousel .store-social-gallery-item { flex-basis: 58%; }
  .store-social-arrow { display: none; }
}
