/* Grit & Garlic store module */

html:has(body.store-page) {
  background: #070706;
}

.store-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 44px;
  display: grid;
  gap: 28px;
  min-height: 100svh;
}

body.has-admin-dock .store-shell {
  padding-bottom: 112px;
}

body.store-page {
  --store-cart-admin-offset: calc(102px + env(safe-area-inset-bottom));
  --store-cart-admin-padding: 204px;
}

body.has-header-account .store-shell {
  padding-top: 158px;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0 8px;
}

.store-hero.compact {
  padding-bottom: 4px;
}

.store-hero h1,
.store-confirmation h1 {
  margin: 0;
  font-family: Anton, Inter, sans-serif;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  color: #fff4dc;
  text-transform: uppercase;
}

.store-hero p:not(.eyebrow),
.store-confirmation p,
.store-description {
  max-width: 680px;
  color: #d5ccbc;
  line-height: 1.7;
}

.store-cart-link span {
  display: inline-grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  margin-left: 8px;
  border-radius: 999px;
  background: #f26a21;
  color: #120b08;
  font-weight: 900;
}

.store-cart-link {
  align-self: center;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}

.store-cart-link svg {
  flex: 0 0 auto;
}

.store-cart-link.compact {
  min-height: 42px;
  padding-inline: 14px;
}

.store-tools,
.store-cart-layout,
.store-checkout-layout {
  display: grid;
  gap: 16px;
  margin: 0;
}

.store-tools {
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 200px) minmax(160px, 210px);
  align-items: end;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(18, 14, 10, 0.72);
  padding: 14px;
}

.store-tools label,
.store-quantity-control,
.store-checkout-form label,
.store-order-status-form label {
  display: grid;
  gap: 8px;
  color: #f2d7a0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.store-tools input,
.store-tools select,
.store-quantity-control input,
.store-checkout-form input,
.store-checkout-form select,
.store-order-status-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(242, 215, 160, 0.18);
  border-radius: 8px;
  background: rgba(16, 13, 10, 0.86);
  color: #fff4dc;
  padding: 10px 12px;
  font: inherit;
}

.store-quantity-control .number-stepper,
.store-tools .number-stepper,
.store-checkout-form .number-stepper {
  min-height: 44px;
  border-color: rgba(242, 215, 160, 0.18);
  border-radius: 8px;
  background: rgba(16, 13, 10, 0.86);
}

.store-cart-drawer-item .number-stepper {
  width: 96px;
  min-height: 32px;
  grid-template-columns: 28px minmax(28px, 1fr) 28px;
  border-color: rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.82);
}

.store-cart-item .number-stepper {
  max-width: 132px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.store-grid.is-refreshing .store-product-card {
  animation: recipePageIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.store-grid.is-refreshing .store-product-card:nth-child(2n) {
  animation-delay: 45ms;
}

.store-grid.is-refreshing .store-product-card:nth-child(3n) {
  animation-delay: 90ms;
}

.store-shop-footer {
  margin-top: 4px;
}

.store-product-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(18, 14, 10, 0.94);
}

.store-product-card-media,
.store-detail-media,
.store-cart-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #15100c;
}

.store-product-card-media {
  aspect-ratio: 4 / 3;
}

.store-product-card-media img,
.store-detail-media img,
.store-cart-image img,
.store-gallery img,
.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 190px;
  place-items: center;
  color: #f2d7a0;
  font-family: Anton, Inter, sans-serif;
  font-size: 2.2rem;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.18), rgba(242, 215, 160, 0.08)),
    #15100c;
}

.store-product-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.store-kicker,
.store-product-card .store-kicker {
  margin: 0;
  color: #f26a21;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-product-card h2,
.store-detail-copy h1,
.store-checkout-form h2,
.store-summary h2,
.store-cart-item h2 {
  margin: 0;
  color: #fff4dc;
  letter-spacing: 0;
}

.store-product-card h2 {
  font-size: 1.25rem;
}

.store-product-card h2 a {
  color: inherit;
  text-decoration: none;
}

.store-product-card p {
  margin: 0;
  color: #d5ccbc;
  line-height: 1.55;
}

.store-product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.store-product-card-foot strong,
.store-detail-price,
.store-confirmation-total strong {
  color: #f2d7a0;
  font-size: 1.15rem;
  font-weight: 900;
}

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

.store-price-stack.is-sale,
.store-detail-price.is-sale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-price-stack s,
.store-detail-price s {
  color: #9f9487;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration-color: rgba(242, 106, 33, 0.75);
  text-decoration-thickness: 2px;
}

.store-price-stack strong,
.store-detail-price strong {
  color: #f2d7a0;
  font-weight: 950;
}

.store-badge,
.store-admin-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(242, 215, 160, 0.12);
  color: #f2d7a0;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  backdrop-filter: blur(8px);
}

.store-badge.is-live,
.store-stock-line.is-live {
  color: #83e19d;
}

.store-badge.is-muted,
.store-stock-line.is-muted {
  color: #ff9d8b;
}

.store-empty-state,
.store-confirmation,
.store-checkout-form,
.store-summary,
.store-order-detail-panel {
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(18, 14, 10, 0.92);
  padding: 22px;
}

.store-checkout-form {
  align-content: start;
  gap: 16px;
}

.store-checkout-form .settings-help {
  margin: 0;
}

.store-payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 4, 3, 0.72);
  backdrop-filter: blur(10px);
}

.store-payment-overlay[hidden] {
  display: none;
}

.store-payment-dialog {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(420px, 100%);
  border: 1px solid rgba(242, 106, 33, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 106, 33, 0.22), transparent 48%),
    rgba(18, 14, 10, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  padding: 28px;
  text-align: center;
}

.store-payment-dialog h2,
.store-payment-dialog p {
  margin: 0;
}

.store-payment-dialog h2 {
  color: #fff4dc;
  font-family: Anton, Inter, sans-serif;
  font-size: 2.2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.store-payment-dialog p:not(.eyebrow) {
  color: #d5ccbc;
  line-height: 1.6;
}

.store-payment-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(242, 215, 160, 0.18);
  border-top-color: #f26a21;
  border-radius: 999px;
  animation: store-spin 900ms linear infinite;
}

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

.store-empty-state {
  grid-column: 1 / -1;
  text-align: center;
}

.store-empty-state h1,
.store-empty-state h2 {
  margin: 0 0 8px;
  color: #fff4dc;
}

.store-detail-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 4px;
}

.store-detail-topbar .back-link {
  align-self: flex-end;
  margin-bottom: 1px;
}

.store-detail-topbar .store-cart-link {
  align-self: flex-end;
}

.store-product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: 0;
}

.store-detail-story {
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(18, 14, 10, 0.9);
}

.store-product-gallery {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
}

.store-detail-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(360px, 44vw, 620px);
  border-radius: 8px;
  border: 1px solid rgba(242, 106, 33, 0.24);
  background:
    linear-gradient(145deg, rgba(242, 106, 33, 0.12), transparent 42%),
    rgba(8, 7, 6, 0.84);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 244, 220, 0.035);
}

.store-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 64%, rgba(7, 7, 6, 0.34)),
    linear-gradient(90deg, rgba(7, 7, 6, 0.2), transparent 18%, transparent 82%, rgba(7, 7, 6, 0.2));
}

.store-gallery-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  clip-path: inset(0 0 0 18%);
  filter: saturate(0.86) brightness(0.88);
  transform: translateX(14px) scale(1.018);
  transition: opacity 520ms ease, clip-path 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
  will-change: opacity, transform, clip-path, filter;
}

.store-gallery-frame.is-active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: saturate(1) brightness(1);
  transform: scale(1);
}

.store-gallery-frame.is-leaving {
  opacity: 0;
  clip-path: inset(0 18% 0 0);
  filter: blur(3px) saturate(0.75) brightness(0.82);
  transform: translateX(-12px) scale(0.992);
}

.store-detail-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(242, 106, 33, 0.08), transparent 40%),
    rgba(17, 16, 14, 0.62);
  padding: clamp(18px, 3vw, 32px);
}

.store-detail-copy h1 {
  font-family: Anton, Inter, sans-serif;
  font-size: 4rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.store-detail-lede {
  margin: 0;
  color: #d5ccbc;
  font-size: 1.02rem;
  line-height: 1.7;
}

.store-detail-support,
.store-detail-aside li {
  color: #a9a196;
}

.store-detail-price-stack {
  display: grid;
  gap: 4px;
}

.store-detail-price-stack .store-detail-price,
.store-detail-price-stack .store-stock-line {
  margin: 0;
}

.store-detail-support {
  margin: 0;
  border-top: 1px solid rgba(242, 215, 160, 0.12);
  padding-top: 12px;
  line-height: 1.6;
}

.store-detail-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 24px;
  padding: 24px;
}

.store-detail-story h2,
.store-detail-aside h2 {
  margin: 0 0 10px;
  color: #fff4dc;
}

.store-detail-aside ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.store-add-form,
.store-actions,
.store-order-status-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
}

.store-quantity-control {
  max-width: 132px;
}

.store-gallery-controls {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.055), rgba(8, 7, 6, 0.48)),
    rgba(13, 10, 8, 0.84);
  padding: 10px;
}

.store-gallery {
  display: flex;
  width: 100%;
  min-width: 0;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 2px 0 0;
  scroll-padding-inline: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.store-gallery.is-overflowing {
  justify-content: flex-start;
}

.store-gallery::-webkit-scrollbar {
  display: none;
  height: 0;
}

.store-gallery-scrollbar {
  position: relative;
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(242, 106, 33, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 244, 220, 0.075), rgba(242, 106, 33, 0.12), rgba(255, 244, 220, 0.055)),
    rgba(8, 7, 6, 0.7);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.48);
  cursor: grab;
  touch-action: none;
}

.store-gallery-scrollbar:active {
  cursor: grabbing;
}

.store-gallery-scrollbar[hidden] {
  display: none;
}

.store-gallery-scrollbar span {
  position: absolute;
  inset: 1px auto 1px 1px;
  min-width: 46px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(242, 215, 160, 0.92), rgba(242, 106, 33, 0.96)),
    var(--flame);
  box-shadow: 0 0 16px rgba(242, 106, 33, 0.24), inset 0 1px 0 rgba(255, 244, 220, 0.38);
  transform: translateX(0);
  transition: width 140ms ease, transform 120ms linear;
}

.store-gallery button {
  position: relative;
  flex: 0 0 clamp(78px, 17vw, 108px);
  aspect-ratio: 1;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(242, 215, 160, 0.2);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.04);
  padding: 0;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.store-gallery button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 rgba(242, 106, 33, 0);
  transition: box-shadow 180ms ease;
}

.store-gallery button:hover,
.store-gallery button.is-active {
  border-color: rgba(242, 106, 33, 0.65);
  opacity: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.store-gallery button.is-active::after {
  box-shadow: inset 0 0 0 3px rgba(242, 106, 33, 0.34);
}

.store-gallery-nav {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 16px;
}

.store-gallery-arrow {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 215, 160, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.12), rgba(242, 106, 33, 0.12)),
    rgba(8, 7, 6, 0.76);
  color: #fff4dc;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.store-gallery-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-gallery-arrow:hover {
  border-color: rgba(242, 106, 33, 0.72);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.24), rgba(255, 244, 220, 0.1)),
    rgba(14, 10, 7, 0.88);
  color: #f2d7a0;
  transform: translateY(-1px) scale(1.04);
}

.store-gallery-status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.store-gallery-status span {
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.72);
  color: #f2d7a0;
  font-size: 0.75rem;
  font-weight: 950;
  padding: 6px 9px;
}

.store-gallery-status i {
  position: relative;
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.16);
}

.store-gallery-status i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--store-gallery-progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #f26a21, #f2d7a0);
  transition: width 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ad-slot-shop-products,
.ad-slot-product-detail {
  margin: 0;
}

.ad-slot-product-detail {
  border: 0;
  background: transparent;
  padding: 0;
}

.store-cart-layout,
.store-checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
}

.store-cart-list {
  display: grid;
  gap: 12px;
  overflow-x: hidden;
  overflow-y: visible;
}

.store-cart-list > [data-store-clear-cart] {
  border-color: rgba(242, 215, 160, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.06), rgba(8, 7, 6, 0.92)),
    #14100d;
  color: #fff4dc;
}

.store-cart-drawer-clear {
  flex: 0 0 auto;
  width: 100%;
  min-height: 40px;
  border-color: rgba(242, 215, 160, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.06), rgba(8, 7, 6, 0.92)),
    #14100d;
  color: #fff4dc;
}

.store-cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 112px auto;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(18, 14, 10, 0.9);
  padding: 12px;
}

.store-cart-image {
  aspect-ratio: 1;
  border-radius: 8px;
}

.store-cart-item p {
  margin: 4px 0;
  color: #a9a196;
}

.store-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  overflow: visible;
}

.store-summary dl,
.store-order-items,
.store-stripe-refs {
  display: grid;
  gap: 10px;
  margin: 0;
}

.store-summary dl div,
.store-order-items div,
.store-confirmation-total,
.store-stripe-refs span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #d5ccbc;
}

.store-order-receipt-card .store-order-items {
  justify-self: center;
  width: min(100%, 690px);
  gap: 0;
  padding-block: 2px;
}

.store-order-receipt-card .store-order-confirmation-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 8px;
  width: 100%;
  padding: 10px 12px;
  text-align: center;
}

.store-order-receipt-card .store-order-confirmation-item:not(:last-child) {
  padding-bottom: 13px;
}

.store-order-receipt-card .store-order-confirmation-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, rgba(242, 215, 160, 0.32) 0 8px, transparent 8px 15px);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.store-order-receipt-card .store-order-confirmation-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #d5ccbc;
  font-weight: 850;
  white-space: nowrap;
}

.store-order-receipt-card .store-order-confirmation-price strong {
  color: #fff4dc;
  font-size: 1rem;
  font-weight: 950;
}

.store-order-receipt-card .store-order-confirmation-price em {
  color: #d5ccbc;
  font-style: normal;
  font-weight: 850;
}

.store-order-receipt-card .store-order-confirmation-product {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 8px;
  color: #d5ccbc;
  font-weight: 850;
}

.store-order-receipt-card .store-order-confirmation-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(242, 106, 33, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.2), rgba(242, 215, 160, 0.08)),
    rgba(18, 12, 8, 0.78);
  color: #fff4dc;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.store-order-receipt-card .store-order-confirmation-product b {
  color: #f2d7a0;
  font-weight: 950;
}

@media (min-width: 901px) {
  .store-order-receipt-card .store-order-confirmation-item {
    display: grid;
    grid-template-columns: 104px 24px minmax(0, 320px);
    align-items: baseline;
    justify-content: center;
    column-gap: 8px;
    text-align: left;
  }

  .store-order-receipt-card .store-order-confirmation-price {
    display: contents;
  }

  .store-order-receipt-card .store-order-confirmation-price strong {
    grid-column: 1;
    justify-self: end;
    text-align: right;
  }

  .store-order-receipt-card .store-order-confirmation-price em {
    grid-column: 2;
    justify-self: center;
  }

  .store-order-receipt-card .store-order-confirmation-product {
    grid-column: 3;
    justify-content: flex-start;
    text-align: left;
  }
}

.store-confirmation-total {
  justify-self: center;
  width: min(100%, 360px);
  align-items: center;
  margin-top: 2px;
  border: 1px solid rgba(242, 106, 33, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.14), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.06);
  padding: 13px 15px;
}

.store-confirmation-total span {
  color: #f2d7a0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-confirmation-total strong {
  color: #f7dfa8;
  font-size: 1.35rem;
  line-height: 1;
}

.store-order-item-line {
  align-items: center;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 11px 12px;
}

.store-order-items-table .store-order-item-line {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 88px 132px;
  gap: 14px;
}

.store-order-items-table .store-order-item-line em,
.store-order-items-table .store-order-item-line strong:last-child {
  text-align: right;
}

.store-order-items-table .store-order-item-head {
  border-color: rgba(242, 106, 33, 0.18);
  background: rgba(242, 106, 33, 0.08);
  color: #f2d7a0;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-order-item-line span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.store-order-item-line small,
.store-order-item-line em {
  color: #a9a196;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.store-order-total-lines {
  display: grid !important;
  gap: 8px;
  justify-self: end;
  width: min(100%, 380px);
  margin-top: 4px;
  margin-left: auto;
  border-top: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.025)),
    rgba(7, 7, 6, 0.34);
  padding: 12px;
}

.store-order-total-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #d5ccbc;
  text-align: right;
}

.store-order-total-final {
  margin-top: 2px;
  border-top: 1px solid rgba(242, 215, 160, 0.16);
  color: #fff4dc !important;
  font-weight: 950;
  padding-top: 10px;
}

.store-order-total-final span {
  color: #f2d7a0;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.store-order-total-final strong {
  color: #f7dfa8;
  font-size: 1.2rem;
}

.store-summary dt,
.store-summary dd {
  margin: 0;
}

.store-total {
  border-top: 1px solid rgba(242, 215, 160, 0.16);
  padding-top: 12px;
  color: #fff4dc !important;
  font-weight: 900;
}

.store-confirmation {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.store-order-loading-card {
  width: min(760px, 100%);
  min-height: 360px;
  align-content: center;
  justify-items: start;
  border: 1px solid rgba(242, 215, 160, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0, rgba(242, 106, 33, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 244, 220, 0.05), rgba(7, 7, 6, 0.35));
  padding: clamp(24px, 4vw, 44px);
}

.store-order-receipt-card {
  width: min(860px, 100%);
  border: 1px solid rgba(242, 215, 160, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0, rgba(242, 106, 33, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.34));
  padding: clamp(22px, 3.4vw, 38px);
}

.store-order-receipt-card h1 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.store-loading-mark {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(242, 215, 160, 0.18);
  border-top-color: #f26a21;
  border-radius: 999px;
  animation: store-spin 900ms linear infinite;
}

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

.store-order-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.store-order-status-grid.is-compact {
  gap: 8px;
}

.store-status-chip {
  --status-accent: #c8bba6;
  --status-bg: rgba(200, 187, 166, 0.1);
  --status-border: rgba(200, 187, 166, 0.18);
  --status-glow: rgba(200, 187, 166, 0.12);
  display: grid;
  gap: 4px;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid var(--status-border);
  background:
    linear-gradient(135deg, var(--status-bg), rgba(7, 7, 6, 0.22)),
    rgba(255, 244, 220, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 12px;
  color: #a9a196;
  overflow: hidden;
}

.store-order-status-grid .store-status-chip {
  justify-items: center;
  text-align: center;
}

.store-status-chip.is-pending {
  --status-accent: #d6ae66;
  --status-bg: rgba(214, 174, 102, 0.14);
  --status-border: rgba(214, 174, 102, 0.28);
  --status-glow: rgba(214, 174, 102, 0.12);
}

.store-status-chip.is-success {
  --status-accent: #88c99a;
  --status-bg: rgba(136, 201, 154, 0.13);
  --status-border: rgba(136, 201, 154, 0.26);
  --status-glow: rgba(136, 201, 154, 0.12);
}

.store-status-chip.is-danger {
  --status-accent: #cf7467;
  --status-bg: rgba(207, 116, 103, 0.13);
  --status-border: rgba(207, 116, 103, 0.28);
  --status-glow: rgba(207, 116, 103, 0.12);
}

.store-status-chip.is-refunded {
  --status-accent: #a5a7ce;
  --status-bg: rgba(165, 167, 206, 0.13);
  --status-border: rgba(165, 167, 206, 0.26);
  --status-glow: rgba(165, 167, 206, 0.12);
}

.store-status-chip em {
  color: #a9a196;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-status-chip strong {
  color: var(--status-accent);
  font-weight: 950;
  text-shadow: 0 0 18px var(--status-glow);
  overflow-wrap: anywhere;
}

.store-status-chip.is-admin {
  display: inline-grid;
  min-height: 30px;
  width: fit-content;
  padding: 6px 10px;
}

.store-status-chip.is-admin em {
  display: none;
}

.store-status-chip.is-admin strong {
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.store-status-chip.is-admin.is-small {
  min-height: 24px;
  padding: 5px 8px;
  opacity: 0.9;
}

.store-status-chip.is-admin.is-small strong {
  font-size: 0.68rem;
}

.store-admin-status-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.store-admin-request-indicator {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(242, 106, 33, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.18), rgba(255, 244, 220, 0.045)),
    #24150f;
  color: #f2d7a0;
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1;
  padding: 5px 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-admin-list {
  display: grid;
  gap: 12px;
  overflow-x: auto;
}

.management-page .store-admin-panel {
  display: grid;
  gap: 22px;
}

.management-page .store-admin-panel > .management-card-heading {
  margin-bottom: 0;
}

.management-page .store-admin-panel .management-recipe-tools {
  margin: 0;
}

.management-page .store-product-form,
.management-page .store-category-form,
.management-page .store-settings-form {
  width: 100%;
}

.management-page .store-product-form,
.management-page .store-category-form {
  border-top: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 244, 220, 0.045), rgba(255, 244, 220, 0.018));
  padding: 22px;
}

.management-page .store-product-form.is-revealing {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.management-page .store-product-form.is-revealing.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.management-page .store-admin-list + .store-product-form,
.management-page .store-category-form + .store-admin-list {
  margin-top: 4px;
}

.store-category-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.store-category-list-panel {
  min-width: 0;
}

.management-page .store-category-form {
  border: 1px solid rgba(242, 215, 160, 0.14);
  padding-top: 22px;
}

.management-page .store-product-form .management-card-heading {
  margin: 0 0 4px;
}

.management-page .store-product-form .form-grid,
.management-page .store-category-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.management-page .store-settings-form .control-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.store-email-server-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.032)),
    rgba(8, 7, 6, 0.54);
  padding: 16px;
}

.store-email-server-card .settings-section-heading-row {
  align-items: start;
}

.store-email-server-card h4,
.store-email-server-card p {
  margin: 0;
}

.store-email-server-card h4 {
  color: #fff4dc;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-email-server-card p {
  color: #a9a196;
  font-weight: 800;
  line-height: 1.5;
}

.store-email-server-card .settings-button-row.compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(242, 215, 160, 0.1);
  padding-top: 12px;
}

.store-email-server-card .settings-button-row.compact .button {
  width: 100%;
  justify-content: center;
}

.management-page .store-product-package {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 16px;
}

.management-page .store-product-package h3 {
  margin: 0 0 4px;
  color: #fff4dc;
}

.management-page .store-product-form label:not(.quick-action-choice):not(.file-picker),
.management-page .store-category-form label:not(.quick-action-choice):not(.file-picker),
.management-page .store-settings-form label:not(.quick-action-choice):not(.file-picker) {
  display: grid;
  gap: 8px;
  color: #d8c9b8;
  font-size: 0.9rem;
  font-weight: 800;
}

.management-page .store-product-form input:not([type="checkbox"]):not([type="file"]),
.management-page .store-product-form textarea,
.management-page .store-product-form select,
.management-page .store-category-form input,
.management-page .store-category-form textarea,
.management-page .store-category-form select,
.management-page .store-settings-form input:not([type="checkbox"]),
.management-page .store-settings-form textarea,
.management-page .store-settings-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.76);
  color: #fff4dc;
  padding: 11px 13px;
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.04);
}

.management-page .store-product-form textarea,
.management-page .store-category-form textarea,
.management-page .store-settings-form textarea {
  min-height: 116px;
  resize: vertical;
  line-height: 1.55;
}

.management-page .store-product-form > label:not(.quick-action-choice):not(.file-picker),
.management-page .store-category-form > label:not(.quick-action-choice):not(.file-picker) {
  max-width: none;
}

.management-page .store-product-form > label:not(.quick-action-choice):not(.file-picker):has(textarea),
.management-page .store-category-form > label:not(.quick-action-choice):not(.file-picker):has(textarea) {
  grid-column: 1 / -1;
}

.management-page .store-product-form .quick-action-choice,
.management-page .store-settings-form .quick-action-choice {
  margin: 0;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 14px;
}

.management-page .store-product-media {
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 14px;
}

.management-page .store-product-media .file-picker {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  min-height: 84px;
  border-radius: 8px;
  border: 1px dashed rgba(242, 106, 33, 0.35);
  background: linear-gradient(135deg, rgba(242, 106, 33, 0.13), rgba(255, 244, 220, 0.04));
  color: #fff4dc;
  cursor: pointer;
  padding: 16px;
}

.management-page .store-product-media .file-picker span {
  min-height: 34px;
  border-radius: 999px;
  background: rgba(242, 215, 160, 0.12);
  padding: 8px 12px;
  color: #f2d7a0;
  font-weight: 900;
}

.management-page .store-product-actions,
.management-page .store-category-form .settings-button-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.35fr) minmax(180px, 0.35fr);
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(242, 215, 160, 0.12);
  padding-top: 14px;
}

.management-page .store-category-form .settings-button-row {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 0.45fr);
}

.management-page .store-product-actions .button,
.management-page .store-category-form .settings-button-row .button,
.management-page .store-settings-form > .button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

.management-page .store-admin-table {
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  table-layout: fixed;
}

.store-admin-table {
  width: 100%;
  border-collapse: collapse;
}

.store-admin-table th,
.store-admin-table td {
  border-bottom: 1px solid rgba(242, 215, 160, 0.1);
  padding: 12px 10px;
  text-align: left;
  vertical-align: middle;
}

.store-admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.store-admin-table td:last-child,
.store-admin-table th:last-child {
  width: 190px;
  text-align: right;
}

.store-admin-table th,
.store-admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(242, 215, 160, 0.12);
  color: #d5ccbc;
  text-align: left;
  vertical-align: middle;
}

.store-admin-table tr:hover td {
  background: rgba(255, 244, 220, 0.025);
}

.store-check-cell {
  width: 44px;
  text-align: center !important;
}

.store-check-cell input {
  width: 18px;
  height: 18px;
  accent-color: #f26a21;
}

.store-bulk-toolbar {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 260px) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.58);
  padding: 10px;
}

.store-select-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d5ccbc;
  font-weight: 900;
}

.store-bulk-toolbar select {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.76);
  color: #fff4dc;
  padding: 8px 10px;
}

.store-admin-table th {
  color: #f2d7a0;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.store-admin-table strong {
  display: block;
  color: #fff4dc;
}

.store-admin-table small {
  display: block;
  color: #a9a196;
  margin-top: 4px;
}

.store-table-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.store-row-action-menu {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  z-index: 1;
}

.store-row-action-menu.is-open {
  z-index: 120;
}

.store-row-action-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 106px;
  justify-content: center;
}

.store-row-action-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  transition: transform 160ms ease;
}

.store-row-action-menu.is-open .store-row-action-toggle svg {
  transform: rotate(180deg);
}

.store-row-action-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 6px;
  min-width: 190px;
  border: 1px solid rgba(242, 215, 160, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(255, 244, 220, 0.055)),
    #15100c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
  padding: 8px;
}

.store-row-action-menu-panel[hidden] {
  display: none;
}

.store-row-action-item {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 7px;
  background: #211812;
  color: #fff4dc;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 8px 10px;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.store-row-action-item:hover,
.store-row-action-item:focus-visible {
  border-color: rgba(242, 106, 33, 0.45);
  background: rgba(242, 106, 33, 0.14);
  transform: translateX(-1px);
}

.store-row-action-item.is-primary {
  color: #f2d7a0;
}

.store-row-action-item.is-danger {
  color: #ffb09c;
}

.store-product-form,
.store-category-form,
.store-settings-form {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.store-product-form[hidden] {
  display: none;
}

.store-settings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.55);
  padding: 8px;
}

.store-settings-tab {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #d5ccbc;
  cursor: pointer;
  padding: 8px 12px;
  font-weight: 900;
}

.store-settings-tab:hover,
.store-settings-tab.is-active {
  border-color: rgba(242, 106, 33, 0.45);
  background: rgba(242, 106, 33, 0.14);
  color: #fff4dc;
}

.store-settings-panel[hidden] {
  display: none;
}

.store-pdf-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.store-pdf-controls {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.store-pdf-logo-card {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.55fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(255, 244, 220, 0.03)),
    rgba(7, 7, 6, 0.5);
  padding: 16px;
}

.store-pdf-logo-card h4,
.store-pdf-logo-card p {
  margin: 0;
}

.store-pdf-logo-card h4 {
  color: #fff4dc;
  font-size: 1rem;
}

.store-pdf-logo-controls {
  display: grid;
  gap: 10px;
}

.store-pdf-logo-picker {
  min-height: 76px;
}

.store-pdf-logo-preview {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: #18120e;
  padding: 12px;
}

.store-pdf-logo-preview img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.store-pdf-logo-card > .settings-help {
  grid-column: 1 / -1;
  color: #a9a196;
}

.store-receipt-preview {
  position: sticky;
  top: 88px;
  min-width: 0;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(7, 7, 6, 0.42);
  padding: 12px;
}

.store-receipt-preview-page {
  display: grid;
  gap: 12px;
  min-height: 520px;
  border: 1px solid var(--receipt-preview-accent, #f26a21);
  background: var(--receipt-preview-bg, #0d0a07);
  color: var(--receipt-preview-text, #fff4dc);
  padding: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.store-receipt-preview-page header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 5px solid var(--receipt-preview-accent, #f26a21);
  background: var(--receipt-preview-surface, #1d130d);
  margin: -18px -18px 0;
  padding: 18px;
}

.store-receipt-preview-logo {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.store-receipt-preview-logo img {
  max-width: 170px;
  max-height: 56px;
  object-fit: contain;
}

.store-receipt-preview-page h4,
.store-receipt-preview-page h5,
.store-receipt-preview-page p,
.store-receipt-preview-page dl,
.store-receipt-preview-page footer {
  margin: 0;
}

.store-receipt-preview-page h4 {
  font-size: 2rem;
  line-height: 1;
}

.store-receipt-preview-title {
  display: grid;
  gap: 3px;
  justify-self: center;
  max-width: 92%;
  color: var(--receipt-preview-text, #fff4dc);
  text-align: center;
}

.store-receipt-preview-order {
  color: var(--receipt-preview-muted, #c8bba6);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-receipt-preview-page header span,
.store-receipt-preview-page section span,
.store-receipt-preview-page header small,
.store-receipt-preview-reference {
  color: var(--receipt-preview-accent, #f26a21);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-receipt-preview-page p,
.store-receipt-preview-page small,
.store-receipt-preview-status,
.store-receipt-preview-page footer {
  color: var(--receipt-preview-muted, #c8bba6);
}

.store-receipt-preview-cards,
.store-receipt-preview-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-receipt-preview-cards section,
.store-receipt-preview-bottom section {
  display: grid;
  gap: 5px;
  border-radius: 8px;
  background: var(--receipt-preview-panel, #17120d);
  padding: 12px;
}

.store-receipt-preview-status,
.store-receipt-preview-items div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 92px;
  gap: 8px;
  align-items: center;
}

.store-receipt-preview-status {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.store-receipt-preview-status span {
  --preview-status-accent: var(--receipt-preview-muted, #c8bba6);
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--preview-status-accent) 42%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--preview-status-accent) 15%, transparent), rgba(7, 7, 6, 0.22)),
    var(--receipt-preview-panel, #17120d);
  padding: 9px;
  text-align: center;
}

.store-receipt-preview-status span::before {
  content: "";
  height: 3px;
  border-radius: 999px;
  background: var(--preview-status-accent);
}

.store-receipt-preview-status .is-pending {
  --preview-status-accent: #d6ae66;
}

.store-receipt-preview-status .is-success {
  --preview-status-accent: #88c99a;
}

.store-receipt-preview-status em {
  color: var(--receipt-preview-muted, #c8bba6);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-receipt-preview-status strong {
  color: var(--preview-status-accent);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.store-receipt-preview-items {
  display: grid;
  gap: 8px;
}

.store-receipt-preview-items h5 {
  border-bottom: 1px solid rgba(200, 187, 166, 0.28);
  padding-bottom: 8px;
}

.store-receipt-preview-items div em,
.store-receipt-preview-items div strong {
  text-align: right;
}

.store-product-media {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px;
  gap: 16px;
  align-items: stretch;
}

.image-preview {
  min-height: 120px;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: #15100c;
}

.store-webhook-url,
.store-stripe-refs {
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.04);
  padding: 12px;
}

.store-webhook-url span,
.store-stripe-refs span {
  color: #f2d7a0;
  font-weight: 900;
}

.store-webhook-url code,
.store-stripe-refs code {
  display: block;
  margin-top: 6px;
  white-space: normal;
  word-break: break-word;
  color: #fff4dc;
}

.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.store-hero {
  min-height: 210px;
}

.store-hero .store-cart-link--hero {
  justify-self: end;
}

.store-cart-link {
  gap: 10px;
  border-color: rgba(242, 106, 33, 0.28);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.13), rgba(255, 244, 220, 0.045)),
    rgba(17, 16, 14, 0.72);
  color: #fff4dc;
  font-weight: 950;
  text-decoration: none;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.store-cart-link svg,
.store-add-card-button svg,
.store-add-detail-button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.store-cart-link--hero {
  min-width: 142px;
  border-color: rgba(242, 106, 33, 0.38);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.store-cart-link:hover,
.store-cart-link:focus-visible {
  border-color: rgba(242, 106, 33, 0.62);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.2), rgba(255, 244, 220, 0.055)),
    rgba(17, 16, 14, 0.86);
  transform: translateY(-2px);
}

.store-product-card {
  position: relative;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.store-product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(242, 106, 33, 0.9), rgba(242, 215, 160, 0.14), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.store-product-card-media img {
  transition: transform 240ms ease, filter 240ms ease;
}

.store-product-card:hover,
.store-product-card:focus-within {
  border-color: rgba(242, 106, 33, 0.45);
  background:
    linear-gradient(145deg, rgba(242, 106, 33, 0.08), rgba(18, 14, 10, 0.96) 42%),
    rgba(18, 14, 10, 0.96);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.store-product-card:hover::before,
.store-product-card:focus-within::before {
  opacity: 1;
}

.store-product-card:hover .store-product-card-media img,
.store-product-card:focus-within .store-product-card-media img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.035);
}

.store-add-card-button,
.store-add-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.store-add-card-button {
  min-width: 118px;
  white-space: nowrap;
}

.store-add-card-button.is-added,
.store-add-detail-button.is-added {
  border-color: rgba(131, 225, 157, 0.7);
  background: linear-gradient(135deg, rgba(131, 225, 157, 0.92), rgba(242, 215, 160, 0.9));
  color: #10100d;
  box-shadow: 0 12px 34px rgba(131, 225, 157, 0.18);
  transform: translateY(-1px) scale(1.02);
}

.store-add-card-button.is-adding,
.store-add-detail-button.is-adding {
  border-color: rgba(242, 106, 33, 0.58);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.24), rgba(255, 244, 220, 0.08)),
    rgba(242, 106, 33, 0.14);
  color: #fff4dc;
  cursor: wait;
  box-shadow: 0 12px 30px rgba(242, 106, 33, 0.16);
}

.store-add-spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 244, 220, 0.32);
  border-top-color: currentColor;
  border-radius: 999px;
  animation: store-spin 760ms linear infinite;
}

.store-add-card-button.is-error,
.store-add-detail-button.is-error {
  border-color: rgba(255, 157, 139, 0.7);
  background: rgba(255, 157, 139, 0.14);
  color: #ffcfbf;
}

.store-detail-topbar .back-link {
  width: fit-content;
}

.store-detail-content {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  border-right: 1px solid rgba(242, 215, 160, 0.12);
  padding-right: 24px;
}

.store-note-list {
  list-style: none;
  padding: 0 !important;
}

.store-note-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}

.store-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(242, 106, 33, 0.78);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.22);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.08);
}

.store-checkout-form {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.store-checkout-shell {
  align-content: start;
}

.store-checkout-shell .store-hero {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 154px;
  text-align: center;
}

.store-checkout-shell .store-hero p:not(.eyebrow) {
  margin-inline: auto;
}

.store-checkout-choice {
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.06), rgba(7, 7, 6, 0.3)),
    rgba(7, 7, 6, 0.34);
  padding: 24px;
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease;
}

.store-checkout-choice.is-leaving {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
}

.store-checkout-form.is-revealing {
  animation: storeCheckoutFormIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.store-checkout-choice h2,
.store-checkout-auth-form h2 {
  margin: 0;
  color: #fff4dc;
  font-size: 1.45rem;
}

.store-checkout-choice > p:not(.eyebrow) {
  color: #cfc7b9;
  line-height: 1.65;
}

.store-checkout-choice-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-checkout-choice-actions .button {
  width: 100%;
  min-height: 50px;
}

.store-checkout-auth-form {
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(242, 106, 33, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 244, 220, 0.065), rgba(7, 7, 6, 0.16)),
    rgba(13, 10, 8, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.08), 0 18px 38px rgba(0, 0, 0, 0.18);
  margin-top: 6px;
  padding: 20px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 210ms ease,
    transform 210ms cubic-bezier(0.16, 1, 0.3, 1);
}

.store-checkout-auth-form.is-visible {
  animation: storeCheckoutPanelIn 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.store-checkout-auth-form.is-closing {
  opacity: 0;
  transform: translateY(-8px);
}

.store-checkout-auth-form[hidden] {
  display: none;
}

.store-checkout-auth-form > .eyebrow {
  margin: 0;
}

.store-checkout-auth-form > .settings-help {
  margin: -4px 0 2px;
}

.store-checkout-auth-form label,
.store-checkout-login-form [data-login-step] label {
  display: grid;
  gap: 8px;
  color: #f2d7a0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.store-checkout-auth-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(242, 215, 160, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.05), rgba(255, 244, 220, 0.015)),
    rgba(10, 8, 6, 0.9);
  color: #fff4dc;
  padding: 10px 12px;
  font: inherit;
}

.store-checkout-auth-form input:focus {
  outline: none;
  border-color: rgba(242, 106, 33, 0.64);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.16);
}

.store-checkout-login-form.contact-form {
  margin-top: 6px;
}

.store-checkout-login-form [data-login-step] {
  display: grid;
  gap: 14px;
}

.store-checkout-login-form.is-two-factor-login,
.store-checkout-login-form.is-recovery-login {
  grid-template-columns: 1fr;
}

.store-checkout-login-form.is-two-factor-login [data-login-step="two-factor"],
.store-checkout-login-form.is-recovery-login [data-login-step="recovery"] {
  display: grid;
  gap: 14px;
}

.store-checkout-login-form.is-two-factor-login button[type="submit"],
.store-checkout-login-form.is-recovery-login button[type="submit"],
.store-checkout-login-form.is-two-factor-login .login-back-button,
.store-checkout-login-form.is-recovery-login .login-back-button {
  grid-column: auto;
  grid-row: auto;
}

.store-wallet-checkout {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(255, 244, 220, 0.035)),
    rgba(9, 8, 7, 0.72);
  padding: 16px;
}

.store-wallet-checkout[hidden],
.store-checkout-divider[hidden] {
  display: none;
}

.store-wallet-checkout.is-probing {
  position: absolute;
  left: -10000px;
  width: min(640px, calc(100vw - 32px));
  max-height: 1px;
  overflow: hidden;
  border: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}

.store-wallet-copy {
  display: grid;
  gap: 3px;
}

.store-wallet-copy strong {
  color: #fff4dc;
  font-size: 1rem;
  font-weight: 950;
}

.store-wallet-copy span {
  color: #cfc7b9;
  line-height: 1.45;
}

.store-express-checkout-element {
  min-height: 48px;
}

.store-checkout-divider {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 12px;
  color: #f2d7a0;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-checkout-divider::before,
.store-checkout-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 215, 160, 0.32), transparent);
}

.store-checkout-divider span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.92);
}

.store-checkout-register-form.is-processing > * {
  filter: blur(1.4px);
  opacity: 0.38;
}

.store-checkout-register-form.is-processing::before,
.store-checkout-register-form.is-processing::after {
  position: absolute;
  z-index: 8;
  pointer-events: auto;
}

.store-checkout-register-form.is-processing::before {
  content: "";
  inset: -26px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.46), rgba(12, 9, 7, 0.9) 50%, rgba(8, 7, 6, 0.5)),
    radial-gradient(circle at 50% 38%, rgba(242, 106, 33, 0.13), transparent 56%);
  box-shadow:
    0 0 42px 24px rgba(8, 7, 6, 0.56),
    inset 0 0 38px rgba(242, 106, 33, 0.07);
  filter: blur(9px);
  -webkit-mask-image: none;
  mask-image: none;
  backdrop-filter: blur(6px);
}

.store-checkout-register-form.is-processing::after {
  content: attr(data-auth-overlay-message);
  top: 50%;
  left: 50%;
  width: min(330px, calc(100% - 30px));
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 244, 220, 0.08), transparent 56%),
    linear-gradient(90deg, rgba(242, 106, 33, 0.14), rgba(255, 244, 220, 0.075), rgba(242, 106, 33, 0.14)),
    rgba(23, 17, 12, 0.9);
  background-size: 220% 100%;
  color: #fff4dc;
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 220, 0.045),
    0 18px 48px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(242, 106, 33, 0.1);
  font-weight: 950;
  line-height: 1.35;
  padding: 14px 18px;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: authOverlayPulse 1150ms ease-in-out infinite;
}

.store-checkout-section {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.045), rgba(7, 7, 6, 0.22)),
    rgba(7, 7, 6, 0.3);
  padding: 18px;
}

@keyframes storeCheckoutPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes storeCheckoutFormIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.store-checkout-section h2 {
  font-size: 1.45rem;
}

.store-checkout-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

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

.store-checkout-fields.three label:last-child {
  grid-column: span 3;
}

.store-checkout-submit-row {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.store-checkout-submit-row .button {
  min-width: min(260px, 100%);
  min-height: 50px;
  justify-content: center;
}

.store-checkout-form [data-store-checkout-notice] {
  max-width: 620px;
  margin: 0 auto;
  color: #a9a196;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.store-checkout-form .store-checkout-submit-row {
  display: none;
}

.store-checkout-layout .store-summary [data-store-checkout-submit] {
  width: 100%;
  min-height: 50px;
  justify-content: center;
}

.store-shipping-disclosure {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(242, 215, 160, 0.12);
  padding-top: 8px;
}

.store-shipping-toggle {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f2d7a0;
  cursor: pointer;
  padding: 4px 1px;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.store-shipping-toggle:hover {
  color: #fff4dc;
  transform: translateY(-1px);
}

.store-shipping-toggle i {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.store-shipping-disclosure.is-open .store-shipping-toggle i {
  transform: rotate(225deg) translate(-2px, -2px);
}

.store-shipping-quote {
  display: grid;
  gap: 10px;
  max-height: 0;
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.12), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.38);
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 12px;
  transform: translateY(-6px);
  transition: max-height 280ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, transform 260ms ease, margin-top 260ms ease, padding 260ms ease;
}

.store-shipping-disclosure.is-open {
  gap: 8px;
}

.store-shipping-disclosure.is-open .store-shipping-quote {
  max-height: 360px;
  margin-top: 6px;
  opacity: 1;
  overflow: visible;
  padding: 12px;
  transform: translateY(0);
}

.store-shipping-quote[hidden] {
  display: none;
}

.store-shipping-quote h3 {
  margin: 0;
  color: #fff4dc;
  font-family: Anton, Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.store-shipping-quote label {
  display: grid;
  gap: 7px;
  color: #f2d7a0;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-shipping-quote input,
.store-shipping-quote select {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.82);
  color: #fff4dc;
  padding: 9px 11px;
}

.store-shipping-quote p {
  margin: 0;
  color: #d5ccbc;
  line-height: 1.5;
}

.store-confirmation-breakdown,
.store-payment-proof {
  display: grid;
  gap: 10px;
}

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

.store-confirmation-breakdown.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-confirmation-breakdown article,
.store-receipt-download-card,
.store-payment-proof,
.store-my-order-card {
  border: 1px solid rgba(242, 215, 160, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.04), rgba(7, 7, 6, 0.38)),
    rgba(7, 7, 6, 0.34);
  padding: 14px;
}

.store-confirmation-breakdown article,
.store-receipt-download-card {
  align-content: center;
  justify-items: center;
  min-height: 118px;
  text-align: center;
}

.store-confirmation-breakdown article > span,
.store-payment-proof span {
  display: block;
  color: #a9a196;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-confirmation-breakdown article > strong,
.store-payment-proof code {
  display: block;
  margin-top: 5px;
  color: #fff4dc;
  font: inherit;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.store-proof-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 6px;
  border: 1px solid rgba(242, 106, 33, 0.35);
  border-radius: 8px;
  background: rgba(242, 106, 33, 0.12);
  color: #fff4dc;
  font-weight: 950;
  padding: 8px 12px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.store-receipt-download-card {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 100%;
  border-color: rgba(242, 106, 33, 0.36);
  background:
    radial-gradient(circle at 18% 22%, rgba(242, 106, 33, 0.28), transparent 8rem),
    linear-gradient(135deg, rgba(242, 106, 33, 0.18), rgba(255, 244, 220, 0.055)),
    rgba(18, 12, 8, 0.78);
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.store-receipt-download-icon {
  display: grid;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f2d7a0;
  box-shadow: none;
}

.store-receipt-download-card svg,
.store-receipt-action svg,
.store-view-order-action svg,
.store-proof-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.store-receipt-download-card svg {
  width: 27px;
  height: 27px;
}

.store-receipt-download-card strong {
  margin: 0;
  color: #fff4dc;
  font-weight: 950;
}

.store-receipt-download-card:hover,
.store-receipt-download-card:focus-visible {
  border-color: rgba(242, 106, 33, 0.52);
  background:
    radial-gradient(circle at 18% 22%, rgba(242, 106, 33, 0.34), transparent 8rem),
    linear-gradient(135deg, rgba(242, 106, 33, 0.24), rgba(255, 244, 220, 0.075)),
    rgba(18, 12, 8, 0.86);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.store-receipt-download-card:hover .store-receipt-download-icon,
.store-receipt-download-card:focus-visible .store-receipt-download-icon {
  color: #fff4dc;
}

.store-actions-centered {
  justify-content: center;
}

.store-fulfillment-track-card {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) minmax(120px, 160px);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.1), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.38);
  padding: 14px;
}

.store-fulfillment-track-card span,
.store-fulfillment-track-card dt {
  display: block;
  color: #a9a196;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-fulfillment-track-card h3,
.store-fulfillment-track-card dl,
.store-fulfillment-track-card dd,
.store-fulfillment-track-card p {
  margin: 0;
}

.store-fulfillment-track-card h3 {
  color: #fff4dc;
}

.store-fulfillment-track-card dl {
  display: grid;
  gap: 8px;
}

.store-fulfillment-track-card dd,
.store-fulfillment-track-card a {
  color: #fff4dc;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.store-fulfillment-proof {
  display: grid;
  gap: 6px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #f2d7a0;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

.store-fulfillment-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  object-fit: cover;
  transition: border-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.store-fulfillment-proof span {
  color: #f2d7a0;
}

.store-fulfillment-proof:hover img,
.store-fulfillment-proof:focus-visible img {
  border-color: rgba(242, 106, 33, 0.48);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

body.store-proof-viewer-is-open {
  overflow: hidden;
}

.store-proof-viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.store-proof-viewer-modal[hidden] {
  display: none;
}

.store-proof-viewer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.store-proof-viewer-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(242, 106, 33, 0.18), transparent 32rem),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.store-proof-viewer-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(940px, 100%);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  border: 1px solid rgba(242, 106, 33, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0, rgba(242, 106, 33, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.44)),
    #11100e;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
  padding: clamp(18px, 3vw, 28px);
  transform: translateY(12px) scale(0.985);
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.store-proof-viewer-modal.is-open .store-proof-viewer-dialog {
  transform: translateY(0) scale(1);
}

.store-proof-viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(242, 215, 160, 0.2);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.78);
  color: #fff4dc;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.store-proof-viewer-dialog h2 {
  margin: 0;
  max-width: calc(100% - 52px);
  color: #fff4dc;
  font-family: Anton, Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.store-proof-viewer-frame {
  display: grid;
  min-height: min(52dvh, 540px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(7, 7, 6, 0.68);
}

.store-proof-viewer-frame img {
  display: block;
  width: 100%;
  max-height: 68dvh;
  object-fit: contain;
}

.store-proof-viewer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.store-proof-viewer-actions .button {
  min-width: 188px;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}

.store-proof-viewer-actions .button.primary {
  border-color: rgba(242, 106, 33, 0.64);
  background:
    linear-gradient(135deg, #f26a21, #f08a3b),
    var(--flame);
  box-shadow: 0 14px 34px rgba(242, 106, 33, 0.24);
  color: #120b08;
}

.store-proof-viewer-actions .button.primary:hover,
.store-proof-viewer-actions .button.primary:focus-visible {
  background:
    linear-gradient(135deg, #ff8235, #f2a456),
    var(--flame);
  box-shadow: 0 18px 42px rgba(242, 106, 33, 0.28);
}

.store-proof-viewer-actions svg {
  width: 19px;
  height: 19px;
}

.store-receipt-action {
  gap: 8px;
  border-color: rgba(242, 106, 33, 0.42);
}

.store-view-order-action {
  gap: 8px;
}

.store-proof-link:hover {
  border-color: rgba(242, 106, 33, 0.72);
  background: rgba(242, 106, 33, 0.2);
  transform: translateY(-1px);
}

.store-my-orders {
  display: grid;
  gap: 14px;
  min-height: clamp(320px, 42vh, 520px);
  align-content: start;
}

.store-my-orders.is-empty {
  align-content: center;
}

.store-my-orders.is-empty .store-empty-state {
  display: grid;
  min-height: clamp(240px, 32vh, 420px);
  align-content: center;
  justify-items: center;
  gap: 8px;
}

.store-my-orders-list {
  display: grid;
  gap: 14px;
}

.store-my-order-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.6fr) minmax(300px, 1fr) minmax(220px, 0.38fr);
  gap: 16px;
  align-items: stretch;
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.store-my-order-card:hover {
  border-color: rgba(242, 106, 33, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.store-my-order-card .store-order-status-grid {
  align-self: stretch;
  align-items: stretch;
  height: 100%;
}

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

.store-my-order-status-primary {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  min-height: 100%;
}

.store-my-order-status-primary.has-action {
  grid-template-rows: minmax(0, 1fr) auto;
}

.store-my-order-status-primary .store-status-chip {
  height: 100%;
}

.store-my-order-status-primary.has-action .store-status-chip {
  height: auto;
}

.store-my-order-status-cancel {
  min-width: 0;
}

.store-my-order-status-cancel .store-cancel-order-action {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  padding-inline: 10px;
}

.store-my-order-status-wrap {
  display: grid;
  gap: 10px;
  align-content: stretch;
}

.store-my-order-summary {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 0;
  border: 1px solid rgba(242, 215, 160, 0.1);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.025);
  padding: 12px;
}

.store-my-order-summary .store-kicker span {
  color: #fff4dc;
  overflow-wrap: anywhere;
}

.store-my-order-summary h2,
.store-my-order-summary p {
  margin: 0;
}

.store-my-order-date {
  display: grid;
  gap: 4px;
  color: #f2d7a0;
  font-weight: 850;
  line-height: 1.35;
}

.store-my-order-date span {
  color: #a9a196;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-my-order-date time {
  display: block;
}

.store-my-order-card .store-status-chip {
  align-content: center;
  min-height: 0;
  height: 100%;
  padding: 8px 10px;
}

.store-my-order-card .store-my-order-status-primary.has-action .store-status-chip {
  height: auto;
}

.store-my-order-actions {
  display: grid;
  grid-auto-rows: minmax(48px, 1fr);
  gap: 10px;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-height: 100%;
}

.store-my-order-actions.is-single .button {
  min-height: 104px;
}

.store-my-order-actions .button {
  width: 100%;
  min-height: 0;
  height: 100%;
  justify-content: center;
  white-space: nowrap;
  padding-inline: 12px;
}

.store-my-order-actions .store-receipt-action {
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.18), rgba(255, 244, 220, 0.045)),
    rgba(242, 106, 33, 0.1);
}

.store-cancel-order-action,
.store-table-actions .danger-subtle {
  border-color: rgba(207, 116, 103, 0.34);
}

.store-public-disputes {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.09), rgba(255, 244, 220, 0.035)),
    rgba(8, 7, 6, 0.52);
  padding: 16px;
}

.store-public-disputes-head {
  display: grid;
  gap: 4px;
}

.store-public-disputes-head h2 {
  margin: 0;
  color: #fff4dc;
  font-size: 1.35rem;
}

.store-problem-order-action {
  border-color: rgba(104, 167, 199, 0.34);
  background:
    linear-gradient(135deg, rgba(104, 167, 199, 0.16), rgba(255, 244, 220, 0.025)),
    rgba(9, 13, 16, 0.66);
  color: #d9f0ff;
}

.store-problem-order-action:hover,
.store-problem-order-action:focus-visible {
  border-color: rgba(104, 167, 199, 0.56);
  background:
    linear-gradient(135deg, rgba(104, 167, 199, 0.25), rgba(242, 106, 33, 0.08)),
    rgba(9, 13, 16, 0.78);
  color: #fff4dc;
}

.store-public-dispute-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 14px;
}

.store-public-dispute-card.is-solved {
  border-color: rgba(126, 191, 148, 0.24);
  background:
    linear-gradient(135deg, rgba(126, 191, 148, 0.1), rgba(255, 244, 220, 0.025)),
    rgba(255, 244, 220, 0.03);
}

.store-public-dispute-top,
.store-public-dispute-reply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-public-dispute-top strong {
  display: block;
  color: #fff4dc;
}

.store-public-dispute-top small,
.store-public-dispute-outcome {
  color: #a9a196;
}

.store-public-dispute-card p {
  margin: 0;
}

.store-dispute-archive {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(126, 191, 148, 0.24);
  border-radius: 8px;
  background: rgba(126, 191, 148, 0.08);
  padding: 12px;
}

.store-dispute-archive > strong {
  color: #b8e8c9;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-dispute-archive > p {
  color: #d5ccbc;
}

.store-dispute-public-reply {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(242, 215, 160, 0.12);
  padding-top: 12px;
}

.store-dispute-public-reply .control-field {
  display: grid;
  gap: 8px;
  color: #f2d7a0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-dispute-public-reply textarea,
.store-problem-order-form textarea {
  line-height: 1.5;
}

.store-dispute-public-reply textarea {
  width: 100%;
  min-height: 104px;
  border: 1px solid rgba(242, 215, 160, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.04), rgba(242, 106, 33, 0.035)),
    rgba(8, 7, 6, 0.82);
  color: #fff4dc;
  padding: 12px 14px;
  resize: vertical;
}

.store-public-dispute-reply-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
}

.store-dispute-reply-submit {
  width: 100%;
  min-height: 48px;
  min-width: 0;
  justify-content: center;
  border-color: rgba(126, 191, 148, 0.4);
  background:
    linear-gradient(135deg, rgba(126, 191, 148, 0.18), rgba(255, 244, 220, 0.035)),
    rgba(10, 16, 12, 0.9);
  color: #e5f7ea;
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.06);
}

.store-dispute-reply-submit:hover,
.store-dispute-reply-submit:focus-visible {
  border-color: rgba(126, 191, 148, 0.66);
  background:
    linear-gradient(135deg, rgba(126, 191, 148, 0.26), rgba(255, 244, 220, 0.055)),
    rgba(10, 16, 12, 0.96);
  color: #fff4dc;
}

.store-cancellation-note {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(214, 174, 102, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 174, 102, 0.13), rgba(255, 244, 220, 0.035)),
    rgba(15, 12, 9, 0.62);
  color: #d5ccbc;
  padding: 11px 12px;
}

.store-cancellation-note strong {
  color: #f2d7a0;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-cancellation-note span {
  color: #d5ccbc;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.store-cancellation-note.is-refused {
  border-color: rgba(207, 116, 103, 0.28);
  background:
    linear-gradient(135deg, rgba(207, 116, 103, 0.12), rgba(255, 244, 220, 0.035)),
    rgba(15, 12, 9, 0.62);
}

.store-cancellation-note.is-refused strong {
  color: #ffb09c;
}

.store-action-modal {
  max-width: 620px;
  display: grid;
  gap: 18px;
  overflow: visible;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.035) 42%, transparent),
    #11100e;
  padding: clamp(26px, 4vw, 40px);
}

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

.store-action-modal-head {
  display: grid;
  gap: 10px;
  max-width: 94%;
}

.store-action-modal-head .eyebrow,
.store-action-modal-head p,
.store-action-modal-head h2 {
  margin: 0;
}

.store-action-modal-head h2 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.86;
}

.store-action-modal-head p:not(.eyebrow) {
  color: #d5ccbc;
  font-weight: 800;
  line-height: 1.55;
}

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

.store-action-form .control-field > span {
  display: flex;
  gap: 5px;
  align-items: baseline;
  color: #fff4dc;
  font-weight: 900;
}

.store-action-form .control-field small {
  color: #a9a196;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-action-form :is(input, textarea, select) {
  width: 100%;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.03)),
    rgba(7, 7, 6, 0.72);
  color: #fff4dc;
  font: inherit;
  font-weight: 850;
  padding: 12px 13px;
}

.store-action-form textarea {
  min-height: 110px;
  resize: vertical;
}

.store-action-form :is(input, textarea, select):focus {
  outline: none;
  border-color: rgba(242, 106, 33, 0.62);
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.13);
}

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

.store-action-form .confirm-actions .button {
  min-height: 48px;
  justify-content: center;
}

.store-action-form .number-stepper {
  min-height: 48px;
  grid-template-columns: 42px minmax(92px, 1fr) 42px;
  border-color: rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.03)),
    rgba(7, 7, 6, 0.72);
}

.store-action-form .number-stepper-input[type="number"] {
  min-width: 92px !important;
  min-height: 46px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fff4dc;
  font-weight: 950;
  padding: 0 8px;
  text-align: center;
  appearance: textfield;
}

.store-action-form .number-stepper-input[type="number"]::-webkit-outer-spin-button,
.store-action-form .number-stepper-input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.store-action-form .number-stepper-button {
  color: #f2d7a0;
  background: rgba(255, 244, 220, 0.045);
}

.store-action-modal-refund .control-grid.two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
}

.store-action-modal-refund .store-refund-amount-field {
  min-width: 0;
  max-width: none;
}

.store-action-modal-refund .control-field > .store-refund-stepper {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.035), rgba(255, 244, 220, 0.01)),
    rgba(7, 7, 6, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 244, 220, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.store-action-modal-refund .store-refund-stepper:focus-within {
  border-color: rgba(242, 106, 33, 0.65);
  box-shadow:
    0 0 0 3px rgba(242, 106, 33, 0.12),
    inset 0 1px 0 rgba(255, 244, 220, 0.055);
}

.store-action-modal-refund .store-refund-amount-input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff4dc;
  font: inherit;
  font-weight: 950;
  line-height: 1.2;
  outline: 0;
  padding: 0 8px;
  text-align: center;
}

.store-action-modal-refund .store-refund-amount-input:hover,
.store-action-modal-refund .store-refund-amount-input:focus {
  border-color: transparent;
  outline: none;
  box-shadow: none;
}

.store-action-modal-refund .store-refund-stepper-button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 100%;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: rgba(255, 244, 220, 0.045);
  color: #f2d7a0;
  cursor: pointer;
  padding: 0;
  transition: background 160ms ease, color 160ms ease;
}

.store-action-modal-refund .store-refund-stepper-button--decrease {
  border-right: 1px solid rgba(255, 244, 220, 0.1);
}

.store-action-modal-refund .store-refund-stepper-button--increase {
  border-left: 1px solid rgba(255, 244, 220, 0.1);
}

.store-action-modal-refund .store-refund-stepper-button::before,
.store-action-modal-refund .store-refund-stepper-button--increase::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.store-action-modal-refund .store-refund-stepper-button--increase::after {
  transform: rotate(90deg);
}

.store-action-modal-refund .store-refund-stepper-button.is-hovered,
.store-action-modal-refund .store-refund-stepper-button:focus-visible {
  background: rgba(242, 106, 33, 0.2);
  color: #fff4dc;
  outline: 0;
}

.store-action-modal-refund .store-refund-stepper.has-pointer-hover .store-refund-stepper-button:focus-visible:not(.is-hovered) {
  background: rgba(255, 244, 220, 0.045);
  color: #f2d7a0;
}

.management-page .store-admin-list {
  overflow: visible;
}

.store-management-table {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 7, 6, 0.22);
}

.store-order-management-table {
  overflow: visible;
}

.store-management-row {
  display: grid;
  gap: 12px;
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid rgba(242, 215, 160, 0.1);
  padding: 12px 10px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.store-product-management-table .store-management-row {
  grid-template-columns: 42px minmax(260px, 1.35fr) minmax(120px, 0.45fr) minmax(110px, 0.35fr) minmax(120px, 0.45fr) minmax(210px, auto);
}

.store-order-management-table .store-management-row {
  grid-template-columns: 42px minmax(170px, 0.9fr) minmax(220px, 1fr) minmax(150px, 0.58fr) minmax(100px, 0.32fr) minmax(120px, auto);
  overflow: visible;
}

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

.store-management-row:not(.store-management-head):hover {
  background: rgba(255, 244, 220, 0.035);
  transform: translateY(-1px);
}

.store-management-row.is-editing,
.store-management-row.is-detailing {
  border-color: rgba(242, 106, 33, 0.36);
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.18), rgba(255, 244, 220, 0.035) 34%, rgba(7, 7, 6, 0.22));
  box-shadow: inset 3px 0 0 rgba(242, 106, 33, 0.88);
}

.store-management-head {
  background: rgba(255, 244, 220, 0.035);
  color: #f2d7a0;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-management-row strong {
  color: #fff4dc;
}

.store-management-row small {
  display: block;
  margin-top: 4px;
  color: #a9a196;
  overflow-wrap: anywhere;
}

.store-management-title {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.store-management-thumb {
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.035)),
    rgba(255, 244, 220, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 244, 220, 0.03);
}

.store-management-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-management-thumb .store-image-placeholder {
  min-height: 68px;
  font-size: 0.86rem;
}

.store-row-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  line-height: 0;
}

.store-row-check input,
.store-select-all input {
  width: 18px;
  height: 18px;
  accent-color: #f26a21;
}

.store-order-detail-panel {
  display: grid;
  gap: 16px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.store-order-control-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 220px) minmax(150px, 220px) auto;
  align-items: end;
  gap: 14px;
  border: 1px solid rgba(242, 106, 33, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.1), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.5);
  padding: 16px;
}

.store-order-status-form.store-order-control-panel {
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px) minmax(160px, 220px) minmax(140px, auto);
}

.store-order-status-form.store-order-control-panel .button {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

.store-order-control-copy {
  display: grid;
  gap: 5px;
}

.store-order-control-copy h3,
.store-order-control-copy p {
  margin: 0;
}

.store-order-control-copy h3 {
  color: #fff4dc;
  font-family: Anton, Inter, sans-serif;
  font-size: 1.65rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.store-order-control-copy p:not(.store-kicker) {
  color: #a9a196;
}

.store-order-fulfillment-form {
  display: grid;
  gap: 14px;
  max-height: 0;
  border: 1px solid rgba(242, 106, 33, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.09), rgba(255, 244, 220, 0.035)),
    rgba(7, 7, 6, 0.46);
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transform: translateY(-6px);
  transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, transform 260ms ease, padding 260ms ease;
}

.store-order-fulfillment-form[hidden] {
  display: none;
}

.store-order-fulfillment-form.is-visible {
  max-height: 820px;
  opacity: 1;
  padding: 16px;
  transform: translateY(0);
}

.store-order-fulfillment-form label:not(.file-picker) {
  display: grid;
  gap: 8px;
  color: #d8c9b8;
  font-size: 0.9rem;
  font-weight: 800;
}

.store-order-fulfillment-form input:not([type="file"]),
.store-order-fulfillment-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.76);
  color: #fff4dc;
  padding: 10px 12px;
}

.store-order-fulfillment-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.store-fulfillment-proof-picker {
  border: 1px dashed rgba(242, 106, 33, 0.36);
  border-radius: 8px;
  background: rgba(242, 106, 33, 0.08);
  color: #f2d7a0;
  cursor: pointer;
  padding: 14px;
}

.store-fulfillment-proof-picker input {
  display: none;
}

.store-fulfillment-form-actions {
  display: flex;
  justify-content: flex-end;
}

.store-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 900;
  overflow: hidden;
  pointer-events: none;
}

body.store-cart-drawer-active {
  overflow: hidden;
}

.store-cart-drawer[hidden] {
  display: none;
}

.store-cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(242, 106, 33, 0.14), transparent 30rem),
    rgba(4, 3, 2, 0.72);
  backdrop-filter: blur(3px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms ease, backdrop-filter 300ms ease;
}

.store-cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(96px, 1fr) auto;
  gap: 14px;
  width: min(420px, calc(100vw - 22px));
  height: 100svh;
  max-height: 100svh;
  min-height: 0;
  overflow: hidden;
  border-left: 1px solid rgba(242, 106, 33, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(242, 106, 33, 0.18), transparent 22rem),
    rgba(12, 10, 8, 0.98);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.45);
  padding: 18px;
  transform: translate3d(110%, 0, 0);
  will-change: transform;
  transition: transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-cart-drawer.is-open {
  pointer-events: auto;
}

.store-cart-drawer.is-open .store-cart-drawer-backdrop {
  opacity: 1;
}

.store-cart-drawer.is-open .store-cart-drawer-panel {
  transform: translateX(0);
}

.store-cart-drawer-head,
.store-cart-drawer-item {
  display: grid;
  gap: 12px;
}

.store-cart-drawer-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid rgba(242, 215, 160, 0.12);
  padding-bottom: 12px;
}

.store-cart-drawer-head h2,
.store-cart-drawer-item h3 {
  margin: 0;
  color: #fff4dc;
}

.store-cart-drawer-head h2 {
  font-family: Anton, Inter, sans-serif;
  font-size: 2.4rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.store-cart-drawer-close,
.store-order-detail-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 215, 160, 0.18);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.05);
  color: #fff4dc;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.store-cart-drawer-close svg,
.store-order-detail-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.store-cart-drawer-close:hover,
.store-order-detail-close:hover {
  border-color: rgba(242, 106, 33, 0.68);
  background: rgba(242, 106, 33, 0.14);
  color: #f2d7a0;
  transform: translateY(-1px);
}

.store-cart-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 7px 10px 0;
  scroll-padding-top: 8px;
  scrollbar-gutter: auto;
  scrollbar-color: rgba(242, 106, 33, 0.82) rgba(255, 244, 220, 0.055);
  scrollbar-width: thin;
}

.store-cart-drawer-items::-webkit-scrollbar {
  width: 9px;
}

.store-cart-drawer-items::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.08);
}

.store-cart-drawer-items::-webkit-scrollbar-thumb {
  border: 2px solid rgba(12, 10, 8, 0.98);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--garlic), var(--flame));
}

.store-cart-drawer-item {
  flex: 0 0 auto;
  grid-template-columns: 58px minmax(0, 1fr) 104px;
  align-items: start;
  gap: 8px;
  min-height: 78px;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 244, 220, 0.055), rgba(7, 7, 6, 0.42)),
    rgba(255, 244, 220, 0.022);
  padding: 7px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.store-cart-drawer-item:hover {
  border-color: rgba(242, 106, 33, 0.4);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(7, 7, 6, 0.3)),
    rgba(255, 244, 220, 0.035);
  box-shadow: inset 0 0 0 1px rgba(242, 106, 33, 0.18), 0 8px 24px rgba(0, 0, 0, 0.22);
}

.store-cart-item.is-removing,
.store-cart-drawer-item.is-removing {
  box-sizing: border-box;
  max-height: var(--store-cart-remove-height, none);
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center top;
  will-change: max-height, opacity, transform, margin, padding;
  transition: none;
}

.store-cart-drawer-item .store-cart-image {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(242, 215, 160, 0.12);
}

.store-cart-drawer-item-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.store-cart-drawer-item h3 {
  font-size: 0.95rem;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.store-cart-drawer-item p {
  justify-self: start;
  margin: 0;
  border: 1px solid rgba(242, 106, 33, 0.18);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.09);
  color: #f2d7a0;
  font-size: 0.82rem;
  font-weight: 950;
  padding: 3px 8px;
}

.store-cart-drawer-item-actions {
  display: grid;
  gap: 6px;
  width: 100%;
  min-width: 0;
  align-items: end;
  justify-items: end;
}

.store-cart-drawer-item-actions label {
  display: grid;
  width: 100%;
  gap: 4px;
  justify-items: end;
  color: #a9a196;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-cart-drawer-item input {
  width: 72px;
  min-height: 32px;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.82);
  color: #fff4dc;
  padding: 6px 8px;
}

.store-cart-drawer-item .button {
  width: 100%;
  justify-self: end;
  min-height: 30px;
  overflow: hidden;
  padding: 6px 9px;
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-cart-drawer-summary {
  position: static;
  max-height: none;
  overflow: visible;
  gap: 10px;
}

.store-cart-drawer-summary h2 {
  font-size: 1.45rem;
}

.store-cart-drawer-summary .store-shipping-quote {
  gap: 8px;
  padding: 0 10px;
}

.store-cart-drawer-summary .store-shipping-disclosure.is-open .store-shipping-quote {
  padding: 10px;
}

.store-cart-drawer-summary .store-shipping-toggle {
  min-height: 32px;
  padding: 4px 1px;
}

.store-cart-drawer-summary .store-shipping-quote h3 {
  font-size: 1.1rem;
}

.store-cart-drawer-summary .store-shipping-quote label {
  gap: 5px;
}

.store-cart-drawer-summary .store-shipping-quote input,
.store-cart-drawer-summary .store-shipping-quote select {
  min-height: 36px;
}

.store-cart-drawer-summary .custom-select-trigger {
  min-height: 36px;
  border-color: rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.82);
  padding: 8px 10px;
}

.store-cart-drawer-summary .custom-select-menu {
  border-color: rgba(242, 106, 33, 0.42);
  background:
    linear-gradient(180deg, rgba(242, 106, 33, 0.12), rgba(16, 13, 10, 0.98) 42%),
    #100d0a;
}

.store-order-detail-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.store-fulfill-toggle {
  min-width: 128px;
  box-shadow: 0 12px 30px rgba(242, 106, 33, 0.18);
}

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

.store-order-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 12px;
}

.store-order-detail-grid section {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 14px;
}

.store-order-detail-grid > .store-fulfillment-track-card.is-admin {
  grid-column: 1 / -1;
}

.store-order-detail-grid h3,
.store-order-detail-grid p,
.store-order-detail-grid small {
  margin: 0;
}

.store-order-detail-grid h3 {
  color: #fff4dc;
}

.store-order-detail-grid code {
  color: #f2d7a0;
  overflow-wrap: anywhere;
}

.store-gallery-manager {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 14px;
}

.store-gallery-upload-button {
  position: relative;
  justify-content: center;
  min-height: 44px;
  overflow: hidden;
  cursor: pointer;
}

.store-gallery-upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.store-gallery-admin-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 10px;
}

.store-gallery-admin-item {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background: #15100c;
}

.store-gallery-admin-item img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  display: block;
}

.store-gallery-admin-item button {
  position: absolute;
  right: 8px;
  top: 8px;
  min-height: 30px;
  border: 1px solid rgba(255, 244, 220, 0.22);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.86);
  color: #fff4dc;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 950;
  padding: 5px 9px;
}

.store-admin-table {
  overflow: hidden;
  border-radius: 8px;
}

.management-page .store-admin-table:has(.store-order-management-table) {
  overflow: visible;
}

.store-management-row:has(.store-row-action-menu.is-open) {
  position: relative;
  z-index: 140;
}

.store-row-action-menu-panel {
  z-index: 160;
}

.store-disputes-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 14px;
  align-items: start;
}

.management-page .store-admin-panel .store-disputes-tools {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.32fr);
  width: 100%;
}

.management-page .store-admin-panel .store-disputes-tools label,
.management-page .store-admin-panel .store-disputes-tools input,
.management-page .store-admin-panel .store-disputes-tools select {
  min-width: 0;
  width: 100%;
}

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

.store-dispute-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 11px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.store-dispute-row.is-active,
.store-dispute-row:hover {
  border-color: rgba(242, 106, 33, 0.36);
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.12), rgba(255, 244, 220, 0.035)),
    rgba(255, 244, 220, 0.035);
  transform: translateY(-1px);
}

.store-dispute-row strong {
  display: block;
  color: #fff4dc;
}

.store-dispute-row small {
  display: block;
  margin-top: 4px;
  color: #a9a196;
  overflow-wrap: anywhere;
}

.store-dispute-row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.store-dispute-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.055);
  color: #f2d7a0;
  font-size: 0.72rem;
  font-weight: 950;
  padding: 5px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-dispute-chip.is-new {
  border-color: rgba(242, 106, 33, 0.36);
  background: rgba(242, 106, 33, 0.14);
  color: #ffd2ae;
}

.store-dispute-chip.is-in-progress {
  border-color: rgba(214, 174, 102, 0.36);
  background: rgba(214, 174, 102, 0.13);
  color: #f2d7a0;
}

.store-dispute-chip.is-finished {
  border-color: rgba(126, 191, 148, 0.38);
  background: rgba(126, 191, 148, 0.13);
  color: #b8e8c9;
}

.store-dispute-detail-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(242, 215, 160, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.08), rgba(255, 244, 220, 0.03)),
    rgba(8, 7, 6, 0.54);
  padding: 16px;
}

.store-dispute-detail-panel[hidden] {
  display: none;
}

.store-dispute-detail-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #a9a196;
  font-size: 0.88rem;
}

.store-dispute-summary-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 13px;
}

.store-dispute-summary-card h3,
.store-dispute-summary-card p {
  margin: 0;
}

.store-dispute-summary-card h3 {
  color: #fff4dc;
}

.store-dispute-summary-card small {
  color: #f2d7a0;
}

.store-dispute-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
}

.store-dispute-images a,
.store-dispute-images button {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 215, 160, 0.16);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.76);
  cursor: zoom-in;
  padding: 0;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.store-dispute-images a:hover,
.store-dispute-images a:focus-visible,
.store-dispute-images button:hover,
.store-dispute-images button:focus-visible {
  border-color: rgba(242, 106, 33, 0.48);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  outline: 0;
  transform: translateY(-1px);
}

.store-dispute-images img,
.store-dispute-images .store-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-dispute-thread {
  display: grid;
  gap: 9px;
}

.store-dispute-thread.has-scroll {
  max-height: 478px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  scrollbar-color: rgba(242, 106, 33, 0.58) rgba(255, 244, 220, 0.06);
  scrollbar-width: thin;
}

.store-dispute-thread.has-scroll::-webkit-scrollbar {
  width: 9px;
}

.store-dispute-thread.has-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.055);
}

.store-dispute-thread.has-scroll::-webkit-scrollbar-thumb {
  border: 2px solid rgba(20, 16, 12, 0.92);
  border-radius: 999px;
  background: rgba(242, 106, 33, 0.72);
}

.store-dispute-message {
  display: grid;
  gap: 7px;
  max-width: min(92%, 760px);
  border: 1px solid rgba(242, 215, 160, 0.12);
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.035);
  padding: 11px;
}

.store-dispute-message.is-admin {
  justify-self: end;
  border-color: rgba(242, 106, 33, 0.22);
  background: rgba(242, 106, 33, 0.1);
}

.store-dispute-message.is-outcome {
  border-color: rgba(126, 191, 148, 0.36);
  background:
    linear-gradient(135deg, rgba(126, 191, 148, 0.16), rgba(255, 244, 220, 0.035)),
    rgba(8, 7, 6, 0.48);
}

.store-dispute-message div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #a9a196;
}

.store-dispute-message strong {
  color: #fff4dc;
}

.store-dispute-message p {
  margin: 0;
  color: #d5ccbc;
  line-height: 1.55;
}

.store-dispute-message-outcome {
  display: block;
  border-top: 1px solid rgba(242, 215, 160, 0.1);
  color: #f2d7a0;
  font-weight: 850;
  padding-top: 7px;
}

.store-dispute-reply-form {
  display: grid;
  gap: 12px;
}

.store-dispute-reply-form textarea {
  min-height: 118px;
  resize: vertical;
}

.store-outcome-choice {
  min-height: 100%;
}

.store-dispute-image-picker {
  border: 1px dashed rgba(242, 106, 33, 0.36);
  border-radius: 8px;
  background: rgba(242, 106, 33, 0.08);
  color: #f2d7a0;
  cursor: pointer;
  padding: 14px;
}

.store-dispute-image-picker input {
  display: none;
}

@media (max-width: 900px) {
  .store-shell {
    width: min(100% - 22px, 760px);
    padding-top: 106px;
    padding-bottom: 56px;
  }

  body.store-page:has(.store-cart-link) .store-shell {
    padding-bottom: 112px;
  }

  body.has-admin-dock .store-shell {
    padding-bottom: 168px;
  }

  body.store-page.has-admin-dock:has(.store-cart-link) .store-shell {
    padding-bottom: var(--store-cart-admin-padding, 204px);
  }

  body.has-header-account .store-shell {
    padding-top: 126px;
  }

  .store-hero,
  .store-product-detail,
  .store-detail-story,
  .store-cart-layout,
  .store-checkout-layout,
  .store-product-media,
  .store-category-workspace,
  .store-pdf-editor-layout,
  .store-disputes-workspace,
  .store-checkout-fields.two,
  .store-checkout-fields.three,
  .store-confirmation-breakdown,
  .store-fulfillment-track-card,
  .store-my-order-card,
  .store-order-detail-grid {
    grid-template-columns: 1fr;
  }

  .store-pdf-logo-card {
    grid-template-columns: 1fr;
  }

  .store-checkout-fields.three label:last-child {
    grid-column: auto;
  }

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

  .store-checkout-shell .store-hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .store-hero {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  body.store-page:has(.store-hero .store-cart-link) .store-hero {
    min-height: auto;
  }

  .store-hero h1,
  .store-confirmation h1 {
    font-size: clamp(56px, 12vw, 132px);
    line-height: 0.88;
  }

  body.store-page .store-cart-link {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    z-index: 120;
    justify-self: stretch;
    width: auto;
    max-width: none;
    min-height: 64px;
    border-color: rgba(255, 244, 220, 0.22);
    border-top-color: rgba(255, 244, 220, 0.34);
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(255, 244, 220, 0.08), transparent 17%, transparent 83%, rgba(255, 244, 220, 0.06)),
      linear-gradient(135deg, rgba(242, 106, 33, 0.82), rgba(86, 34, 16, 0.98) 42%, rgba(18, 12, 8, 0.98));
    box-shadow:
      0 0 0 1px rgba(242, 106, 33, 0.22),
      0 -10px 30px rgba(242, 106, 33, 0.18),
      0 22px 54px rgba(0, 0, 0, 0.62),
      inset 0 1px 0 rgba(255, 244, 220, 0.16);
    padding-inline: 18px;
    color: #fff4dc;
    overflow: visible;
    backdrop-filter: blur(18px) saturate(1.15);
  }

  body.store-page .store-cart-link::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border: 1px solid rgba(242, 106, 33, 0.22);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(242, 106, 33, 0.1), rgba(8, 7, 6, 0.28));
    box-shadow:
      0 0 34px rgba(242, 106, 33, 0.18),
      0 20px 44px rgba(0, 0, 0, 0.34);
    pointer-events: none;
  }

  body.store-page .store-cart-link span {
    min-width: 32px;
    height: 32px;
    margin-left: 8px;
    border: 1px solid rgba(255, 244, 220, 0.26);
    background: #fff4dc;
    color: #150905;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      0 8px 20px rgba(0, 0, 0, 0.26);
  }

  body.store-page.has-admin-dock .store-cart-link {
    bottom: var(--store-cart-admin-offset, calc(102px + env(safe-area-inset-bottom)));
  }

  .store-receipt-preview {
    position: static;
  }

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

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

  .store-cart-item .store-quantity-control,
  .store-cart-item .button {
    grid-column: 2;
  }

  .store-summary {
    position: static;
  }

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

  .management-page .store-product-form .form-grid,
  .management-page .store-product-form .form-grid.four,
  .management-page .store-category-form .form-grid {
    grid-template-columns: 1fr;
  }

  .store-detail-topbar,
  .store-bulk-toolbar,
  .store-gallery-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-detail-content {
    border-right: 0;
    border-bottom: 1px solid rgba(242, 215, 160, 0.12);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .store-order-control-panel {
    grid-template-columns: 1fr;
  }

  .store-order-status-form.store-order-control-panel,
  .store-order-items-table .store-order-item-line {
    grid-template-columns: 1fr;
  }

  .store-order-items-table .store-order-item-line em,
  .store-order-items-table .store-order-item-line strong:last-child {
    text-align: left;
  }

  .store-confirmation-total {
    justify-self: stretch;
    width: 100%;
  }

  .store-my-order-actions {
    justify-content: stretch;
  }

  .store-confirmation-breakdown.is-two {
    grid-template-columns: 1fr;
  }

  .store-my-order-status-grid {
    grid-template-columns: 1fr;
  }

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

  .store-dispute-row-actions {
    justify-content: flex-start;
  }

  .store-product-management-table .store-management-row,
  .store-order-management-table .store-management-row {
    grid-template-columns: 1fr;
  }

  .store-management-head {
    display: none;
  }

  .store-row-check {
    justify-content: start;
  }

  .store-row-action-menu {
    justify-content: stretch;
  }

  .store-row-action-toggle,
  .store-row-action-menu-panel {
    width: 100%;
  }

  .store-row-action-menu-panel {
    position: static;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .store-shell {
    width: min(100% - 22px, 760px);
  }

  .store-hero h1,
  .store-confirmation h1 {
    font-size: clamp(56px, 13vw, 74px);
  }

  .store-detail-copy h1 {
    font-size: 2.55rem;
  }

  body.store-page .store-cart-link {
    right: max(12px, env(safe-area-inset-right));
    left: max(12px, env(safe-area-inset-left));
  }

  .store-cart-link span {
    min-width: 32px;
    height: 32px;
    margin-left: 8px;
  }

  .store-cart-drawer-panel {
    width: min(100vw - 12px, 390px);
    padding: 14px;
  }

  .store-action-form .confirm-actions,
  .store-action-form .control-grid.two,
  .store-public-dispute-top,
  .store-public-dispute-reply-actions {
    grid-template-columns: 1fr;
  }

  .store-public-dispute-top,
  .store-public-dispute-reply-actions {
    display: grid;
    justify-items: start;
  }

  .store-action-modal-head h2 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .store-cart-drawer-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .store-cart-drawer-item .store-cart-image {
    width: 56px;
    height: 56px;
  }

  .store-cart-drawer-item-actions {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    justify-items: stretch;
  }

  .store-add-form,
  .store-actions,
  .store-order-status-form,
  .store-table-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-detail-copy,
  .store-detail-story {
    padding: 16px;
  }

  .store-quantity-control {
    max-width: none;
  }
}
