:root {
  --store-bg: #fcf7f3;
  --store-surface: rgba(255, 255, 255, 0.84);
  --store-surface-strong: #ffffff;
  --store-line: rgba(104, 72, 57, 0.12);
  --store-line-strong: rgba(104, 72, 57, 0.18);
  --store-ink: #1f1714;
  --store-muted: #6d625d;
  --store-dark: #2b1712;
  --store-dark-soft: #4a261d;
  --store-accent: linear-gradient(135deg, #f03a2f 0%, #ff8d3a 100%);
  --store-shadow: 0 24px 60px rgba(54, 25, 18, 0.1);
  --store-shadow-strong: 0 28px 90px rgba(45, 20, 14, 0.16);
}

body.store-body {
  background:
    radial-gradient(circle at top center, rgba(255, 210, 188, 0.4), transparent 26%),
    linear-gradient(180deg, #fffaf6 0%, #fff4ed 34%, #fcf7f3 100%);
  color: var(--store-ink);
}

.store-shell {
  padding-top: 96px;
  padding-bottom: 80px;
}

.store-container {
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
}

.store-section {
  padding: 30px 0;
}

.store-section--compact {
  padding-top: 18px;
}

.store-hero {
  padding: 34px 0 28px;
}

.store-kicker,
.store-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(240, 58, 47, 0.08);
  border: 1px solid rgba(240, 58, 47, 0.14);
  color: #e14c37;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-page-title,
.store-hero-copy h1,
.store-collection-copy h1,
.store-product-copy h1,
.store-section-head h2 {
  color: var(--store-ink);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.store-hero-copy h1,
.store-collection-copy h1,
.store-product-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.store-page-title,
.store-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.store-hero-layout,
.store-collection-hero {
  display: grid;
  gap: 24px;
}

.store-hero-layout {
  grid-template-columns: 270px minmax(0, 1fr) 250px;
  align-items: stretch;
}

.store-hero-main,
.store-category-rail,
.store-hero-side,
.store-panel,
.store-card,
.store-success-panel,
.store-collection-hero {
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,248,242,0.84));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--store-shadow);
  backdrop-filter: blur(18px);
}

.store-hero-main,
.store-category-rail,
.store-hero-side,
.store-panel,
.store-success-panel,
.store-collection-hero {
  border-radius: 32px;
}

.store-category-rail,
.store-hero-side,
.store-panel,
.store-success-panel,
.store-collection-hero {
  padding: 22px;
}

.store-hero-main {
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.store-hero-main::before,
.store-collection-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 145, 77, 0.22), transparent 42%);
  pointer-events: none;
}

.store-hero-copy,
.store-collection-copy,
.store-product-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.store-hero-copy p,
.store-collection-copy p,
.store-panel-copy,
.store-section-head p,
.store-side-card p,
.store-side-stat span,
.store-trust-card p {
  color: var(--store-muted);
  line-height: 1.75;
}

.store-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--store-line);
  box-shadow: 0 18px 34px rgba(45, 21, 15, 0.07);
}

.store-search i {
  color: #cb5b3a;
  padding-inline-start: 6px;
}

.store-search input,
.store-sort select,
.store-field input,
.store-field textarea,
.store-field select {
  width: 100%;
  font: inherit;
  color: var(--store-ink);
  border: 1px solid var(--store-line);
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 14px 16px;
}

.store-search input {
  border: none;
  padding: 12px 4px;
  background: transparent;
  box-shadow: none;
}

.store-search input:focus,
.store-sort select:focus,
.store-field input:focus,
.store-field textarea:focus,
.store-field select:focus {
  outline: none;
  border-color: rgba(240, 58, 47, 0.24);
  box-shadow: 0 0 0 4px rgba(240, 58, 47, 0.08);
}

.store-hero-actions,
.store-product-actions,
.store-inline-links,
.store-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn,
.store-chip,
.store-meta-pill,
.store-link-btn,
.store-card__count,
.store-card__badge {
  border-radius: 999px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-btn:hover,
.store-link-btn:hover,
.store-chip:hover,
.store-rail-link:hover,
.store-floating-cart:hover {
  transform: translateY(-2px);
}

.store-btn-primary {
  background: var(--store-accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(240, 58, 47, 0.18);
}

.store-btn-secondary {
  background: rgba(255,255,255,0.85);
  border-color: var(--store-line);
  color: var(--store-ink);
}

.store-btn-dark {
  background: linear-gradient(145deg, #2c1711, #4e251b);
  color: #fff;
}

.store-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--store-line);
  background: rgba(255,255,255,0.84);
  color: var(--store-ink);
  font-weight: 700;
}

.store-hero-meta,
.store-trust-grid,
.store-product-grid,
.store-category-grid,
.store-form-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.store-hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-meta-card,
.store-trust-card,
.store-side-stat,
.store-side-card {
  border-radius: 24px;
  border: 1px solid var(--store-line);
  background: rgba(255,255,255,0.76);
}

.store-meta-card,
.store-trust-card {
  padding: 18px;
}

.store-meta-card strong,
.store-side-card h3,
.store-side-stat strong,
.store-trust-card h3 {
  color: var(--store-ink);
  font-size: 1.12rem;
}

.store-side-card,
.store-side-stat {
  padding: 18px;
}

.store-rail-head h2 {
  color: var(--store-ink);
  font-size: 1.6rem;
  line-height: 1.05;
  margin-top: 10px;
}

.store-rail-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.store-rail-link {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--store-line);
  color: var(--store-ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-rail-link.is-active {
  border-color: rgba(240,58,47,0.24);
  box-shadow: 0 16px 28px rgba(46, 23, 17, 0.09);
}

.store-rail-link__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,141,58,0.16), rgba(240,58,47,0.08));
  color: #d8573a;
}

.store-rail-link__copy {
  display: grid;
  gap: 2px;
}

.store-rail-link__copy strong {
  font-size: 0.98rem;
}

.store-rail-link__copy small {
  color: var(--store-muted);
  font-size: 0.8rem;
}

.store-meta-card span {
  margin-top: 4px;
  color: var(--store-muted);
  display: block;
  line-height: 1.55;
}

.store-showcase {
  position: relative;
  z-index: 1;
  min-height: 100%;
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(180deg, #431713 0%, #1d100d 100%);
  box-shadow: var(--store-shadow-strong);
  overflow: hidden;
}

.store-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 141, 58, 0.3), transparent 34%);
  pointer-events: none;
}

.store-showcase-band {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
}

.store-showcase-band span,
.store-showcase-label,
.store-side-eyebrow {
  display: inline-flex;
  color: rgba(255, 198, 173, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-showcase-band strong {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
}

.store-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.store-showcase-card {
  min-height: 150px;
  padding: 18px;
  border-radius: 24px;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.store-showcase-card strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.store-card {
  overflow: hidden;
}

.store-card__media {
  position: relative;
  min-height: 280px;
  display: block;
  padding: 18px;
  background: linear-gradient(180deg, #fff6f0 0%, #f7ebdf 100%);
}

.store-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-card__body h3 {
  color: var(--store-ink);
  font-size: 1.22rem;
  line-height: 1.22;
}

.store-card__body p {
  color: var(--store-muted);
  line-height: 1.65;
}

.store-card__meta,
.store-card__footer,
.store-card__footer--product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-card__footer--product {
  align-items: flex-end;
}

.store-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  background: rgba(243, 237, 231, 0.94);
  color: var(--store-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.store-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.store-price-block strong,
.store-price {
  color: var(--store-ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.store-price-block span,
.store-compare {
  color: #9a8b84;
  text-decoration: line-through;
  font-weight: 600;
}

.store-card__count,
.store-card__badge {
  position: absolute;
  z-index: 2;
  min-height: 38px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  background: rgba(36, 18, 12, 0.8);
  color: #fff;
  box-shadow: 0 12px 28px rgba(45, 19, 14, 0.16);
}

.store-card__count {
  top: 18px;
  left: 18px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 207, 191, 0.94);
}

.store-card__badge {
  top: 18px;
  left: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-placeholder {
  position: absolute;
  inset: 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  border-radius: 26px;
  border: 1px solid var(--store-line);
  text-align: center;
  padding: 18px;
}

.store-placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px dashed rgba(122,79,62,0.16);
}

.store-placeholder__badge {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 28px rgba(47, 21, 16, 0.08);
  color: #d95d3f;
  font-size: 1.25rem;
}

.store-placeholder strong {
  position: relative;
  z-index: 1;
  max-width: 280px;
  color: var(--store-ink);
  font-size: 1.06rem;
  line-height: 1.28;
}

.store-placeholder--large {
  min-height: 320px;
}

.store-placeholder--sunrise {
  background: linear-gradient(180deg, #fff6ef 0%, #fae7d8 100%);
}

.store-placeholder--clay {
  background: linear-gradient(180deg, #fff7f2 0%, #f4e5dc 100%);
}

.store-placeholder--gold {
  background: linear-gradient(180deg, #fff8ea 0%, #f3e3c0 100%);
}

.store-placeholder--sand {
  background: linear-gradient(180deg, #fff7ef 0%, #f2e7d7 100%);
}

.store-placeholder--berry {
  background: linear-gradient(180deg, #fff4f6 0%, #f6dde4 100%);
}

.store-placeholder--spice {
  background: linear-gradient(180deg, #fff5ed 0%, #f6dfcf 100%);
}

.store-placeholder--forest {
  background: linear-gradient(180deg, #f5fbf6 0%, #deeee1 100%);
}

.store-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--store-line);
  background: rgba(255,255,255,0.84);
  color: var(--store-ink);
  font-weight: 700;
}

.store-chip.is-active {
  background: var(--store-accent);
  color: #fff;
  border-color: transparent;
}

.store-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.store-collection-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  overflow: hidden;
}

.store-collection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-collection-visual {
  position: relative;
  z-index: 1;
}

.store-category-placeholder,
.store-product-main {
  min-height: 320px;
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--store-line);
  overflow: hidden;
}

.store-product-layout,
.store-cart-layout,
.store-checkout-layout {
  display: grid;
  gap: 24px;
}

.store-product-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
}

.store-product-media {
  display: grid;
  gap: 14px;
}

.store-product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-product-thumbs button {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--store-line);
  background: rgba(255,255,255,0.84);
  color: var(--store-ink);
  font-weight: 700;
}

.store-product-thumbs button.is-active {
  background: var(--store-accent);
  color: #fff;
  border-color: transparent;
}

.store-product-copy {
  position: sticky;
  top: 104px;
  align-self: start;
}

.store-product-short,
.store-product-description {
  color: var(--store-muted);
  line-height: 1.75;
}

.store-price-panel {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--store-line);
}

.store-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-feature-list {
  display: grid;
  gap: 10px;
}

.store-feature-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--store-muted);
}

.store-feature-list i {
  color: #ef6137;
  margin-top: 6px;
}

.store-quantity-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--store-line);
}

.store-qty-picker,
.store-qty-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 238, 232, 0.94);
  border: 1px solid var(--store-line);
}

.store-qty-picker button,
.store-qty-inline button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--store-line);
  background: #fff;
  color: var(--store-ink);
  font-size: 1rem;
  font-weight: 800;
}

.store-qty-picker span,
.store-qty-inline span {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
}

.store-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.store-total span {
  color: var(--store-muted);
  font-size: 0.88rem;
}

.store-total strong {
  color: var(--store-ink);
  font-size: 1.32rem;
}

.store-inline-links a {
  color: #c84a2d;
  font-weight: 700;
}

.store-line-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(122,79,62,0.1);
}

.store-line-item:last-child {
  border-bottom: none;
}

.store-line-item__media .store-placeholder {
  position: relative;
  inset: auto;
  min-height: 92px;
  border-radius: 22px;
}

.store-line-item__media .store-placeholder strong {
  font-size: 0.74rem;
}

.store-line-item__media .store-placeholder__badge {
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
}

.store-line-item__meta {
  display: grid;
  gap: 10px;
}

.store-line-item__meta h3 {
  color: var(--store-ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.store-line-item__meta p {
  color: var(--store-muted);
}

.store-line-item__price {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.store-summary {
  display: grid;
  gap: 16px;
}

.store-summary h2 {
  color: var(--store-ink);
  font-size: 1.4rem;
}

.store-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--store-muted);
}

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

.store-checkout-layout,
.store-cart-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.store-panel--sticky {
  position: sticky;
  top: 104px;
  align-self: start;
}

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

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

.store-field span {
  color: var(--store-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.store-field textarea {
  resize: vertical;
}

.store-field--full {
  grid-column: 1 / -1;
}

.store-success-panel {
  max-width: 760px;
  padding: 28px;
}

.store-empty {
  padding: 28px;
  border-radius: 26px;
  border: 1px dashed var(--store-line-strong);
  background: rgba(255,255,255,0.76);
  text-align: center;
  color: var(--store-muted);
}

.store-empty h3 {
  color: var(--store-ink);
  margin-bottom: 8px;
}

.store-sort {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--store-muted);
  font-weight: 700;
}

.store-sort select {
  min-width: 220px;
}

.store-collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

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

.store-trust-card {
  padding: 22px;
}

.store-trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,141,58,0.16), rgba(240,58,47,0.08));
  color: #df5d3c;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.store-floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(145deg, #2f1712, #4e241b);
  color: #fff;
  box-shadow: var(--store-shadow-strong);
}

.store-floating-cart span {
  min-width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  font-size: 0.84rem;
  font-weight: 800;
}

.store-toast {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 1300;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--store-dark);
  color: #fff;
  box-shadow: var(--store-shadow-strong);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.store-admin-product {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--store-line);
  background: rgba(255,255,255,0.74);
}

.store-admin-product header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

@media (max-width: 1180px) {
  .store-hero-layout,
  .store-product-layout,
  .store-checkout-layout,
  .store-cart-layout,
  .store-collection-hero {
    grid-template-columns: 1fr;
  }

  .store-hero-main {
    grid-template-columns: 1fr;
  }

  .store-product-copy,
  .store-panel--sticky {
    position: static;
  }

  .store-hero-meta,
  .store-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 768px) {
  .store-shell {
    padding-top: 84px;
    padding-bottom: 110px;
  }

  .store-container {
    width: min(100vw - 24px, 100%);
  }

  .store-section,
  .store-hero {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .store-category-rail,
  .store-hero-side,
  .store-hero-main,
  .store-panel,
  .store-collection-hero,
  .store-success-panel {
    padding: 18px;
    border-radius: 26px;
  }

  .store-hero-copy h1,
  .store-collection-copy h1,
  .store-product-copy h1,
  .store-page-title,
  .store-section-head h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .store-hero-meta,
  .store-product-grid,
  .store-category-grid,
  .store-trust-grid,
  .store-form-grid,
  .store-showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .store-search i {
    display: none;
  }

  .store-category-rail {
    order: 2;
  }

  .store-hero-main {
    order: 1;
  }

  .store-hero-side {
    order: 3;
  }

  .store-collection-toolbar,
  .store-section-head,
  .store-quantity-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .store-product-grid,
  .store-category-grid {
    gap: 16px;
  }

  .store-card__media {
    min-height: 230px;
  }

  .store-placeholder {
    inset: 14px;
  }

  .store-placeholder strong {
    font-size: 0.98rem;
  }

  .store-product-main,
  .store-category-placeholder {
    min-height: 260px;
  }

  .store-product-thumbs {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .store-line-item__price {
    justify-items: start;
  }

  .store-sort select {
    min-width: 0;
  }
}
