:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6d6a64;
  --line: #ececec;
  --paper: #ffffff;
  --white: #ffffff;
  --red: #111111;
  --acid: #f0f0f0;
  --blue: #2457d6;
  --sand: #f6f6f6;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

.promo-stack {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid var(--ink);
}

.promo-line {
  display: grid;
  min-height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.ticker,
.marquee-band {
  display: flex;
  gap: 28px;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}

.ticker span,
.marquee-band span {
  padding: 8px 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 70px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 96px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  grid-column: 2;
  justify-content: center;
  gap: 0;
  align-items: center;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  display: none;
}

.main-nav,
.site-footer nav {
  display: flex;
  justify-content: start;
  gap: 28px;
  color: #222222;
  font-size: 17px;
  font-weight: 650;
}

.main-nav a,
.site-footer a {
  padding: 10px 0;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.cart-link {
  display: inline-flex;
  justify-self: end;
  min-width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  font-weight: 900;
}

.cart-icon {
  font-size: 0;
}

.cart-icon::before {
  content: "Cart";
  font-size: 15px;
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.page {
  min-height: 70vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 54px 32px 34px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(216, 255, 62, 0.34), transparent 34%),
    linear-gradient(315deg, rgba(228, 61, 48, 0.12), transparent 45%),
    var(--paper);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: #373737;
  font-size: 20px;
  line-height: 1.5;
}

.rating-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.rating-strip strong,
.rating-strip span,
.detail-bullets span,
.mini-trust span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 0 10px;
  font-weight: 900;
}

.hero-actions,
.page-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-button {
  background: var(--ink);
  color: var(--white);
}

.secondary-button {
  background: var(--acid);
  color: var(--ink);
}

.ghost-button {
  background: var(--white);
  color: var(--ink);
}

.hero-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-product {
  align-self: stretch;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 241, 0.9)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.04) 0 1px, transparent 1px 42px);
}

.hero-product-media {
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: 34px;
}

.hero-product .shirt-visual {
  width: min(100%, 500px);
  min-height: 0;
  background: transparent;
}

.hero-product .mockup-img,
.hero-product .mockup-svg {
  max-width: 500px;
}

.hero-product-caption {
  display: grid;
  gap: 5px;
  padding: 18px 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  background: var(--white);
}

.hero-product-caption span,
.hero-product-caption em {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product-caption strong {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

.shirt-visual {
  position: relative;
  display: grid;
  aspect-ratio: 720 / 780;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.chaos-board .shirt-visual {
  min-height: 300px;
  transform: rotate(var(--tilt, -1deg));
}

.chaos-board .shirt-visual:nth-child(2) {
  --tilt: 2deg;
}

.chaos-board .shirt-visual:nth-child(3) {
  --tilt: -2deg;
}

.chaos-board .shirt-visual:nth-child(4) {
  --tilt: 1deg;
}

.mockup-img,
.mockup-svg {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 720 / 780;
  object-fit: cover;
  border: 0;
  background: transparent;
  mix-blend-mode: multiply;
}

.mockup-print text {
  font-family: Impact, "Arial Black", Inter, sans-serif;
  font-size: 23px;
  font-weight: 950;
  letter-spacing: 0;
}

.section {
  padding: 58px clamp(18px, 5vw, 72px);
}

.marquee-band {
  justify-content: center;
  border-bottom: 2px solid var(--ink);
  background: var(--red);
}

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

.section-head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.product-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0 0 20px;
  border: 0;
  background: var(--white);
  box-shadow: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.sale-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card .shirt-visual {
  aspect-ratio: 1 / 1.18;
  min-height: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 58%, rgba(17, 17, 17, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  box-shadow: inset 0 0 0 1px #eeeeee;
}

.real-product-mockup {
  background:
    radial-gradient(circle at 50% 58%, rgba(17, 17, 17, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}

.real-mockup-img {
  width: 112%;
  max-width: none;
  height: 112%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 18px 20px rgba(17, 17, 17, 0.12));
}

.product-card h3 {
  min-height: 44px;
  margin-bottom: 0;
  padding-inline: 4px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.22;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 900;
  padding-inline: 4px;
}

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

.sale-price {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.compare-price {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

.badge {
  padding: 4px 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tabs button {
  min-height: 42px;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.custom-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.9fr) auto;
  gap: 24px;
  align-items: center;
  padding: 44px 32px;
  border-block: 2px solid var(--ink);
  background: var(--acid);
}

.custom-band p {
  max-width: 680px;
}

.custom-band ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.custom-band li {
  display: flex;
  gap: 10px;
}

.collection-grid,
.reviews-grid,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 20px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.collection-card span {
  font-size: 24px;
  font-weight: 950;
}

.collection-card strong,
.collection-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.review-score {
  display: grid;
  min-width: 170px;
  padding: 16px;
  border: 2px solid var(--ink);
  background: var(--white);
  text-align: center;
}

.review-score strong {
  font-size: 46px;
  line-height: 1;
}

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

.review-card {
  padding: 22px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.stars {
  color: var(--red);
  font-weight: 950;
}

.trust-strip {
  padding: 24px 32px;
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.trust-strip div {
  display: grid;
  gap: 4px;
}

.trust-strip strong {
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--muted);
}

.feature {
  padding: 24px;
  border-top: 4px solid var(--ink);
  background: var(--white);
}

.feature p,
.text-page p,
.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.result-count {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 900;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.search-box,
.select-box,
.field {
  min-height: 46px;
  border: 1px solid #cfcfcf;
  background: var(--white);
  padding: 0 12px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
  padding: clamp(34px, 5vw, 70px) clamp(18px, 7vw, 96px);
  background:
    linear-gradient(90deg, #f5f5f5 0 50%, #ffffff 50% 100%);
}

.product-detail .shirt-visual {
  aspect-ratio: 1 / 1.12;
  min-height: 0;
  background:
    radial-gradient(circle at 50% 58%, rgba(17, 17, 17, 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
  box-shadow: inset 0 0 0 1px #eeeeee;
}

.product-detail .mockup-img,
.product-detail .mockup-svg {
  max-width: none;
}

.detail-panel {
  max-width: 640px;
  padding-top: 26px;
}

.detail-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 0.95;
}

.detail-panel > .price-stack {
  margin-bottom: 18px;
}

.detail-panel > .price-stack .sale-price {
  font-size: 34px;
  color: var(--ink);
}

.detail-bullets,
.mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.detail-bullets {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
}

.detail-bullets span {
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: #2e2e2e;
  font-size: 19px;
  font-weight: 800;
  text-transform: none;
}

.detail-bullets span::before {
  content: "•";
  margin-right: 10px;
}

.bundle-box {
  margin: 24px 0;
}

.bundle-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.bundle-title span {
  height: 2px;
  background: var(--ink);
}

.bundle-title strong {
  font-size: 16px;
  font-weight: 950;
}

.bundle-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  margin-bottom: 12px;
  padding: 16px;
  border: 2px solid #b9b9b9;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.bundle-option.is-selected {
  border-color: var(--ink);
  background: #f3f3f3;
}

.bundle-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--ink);
}

.bundle-option span {
  display: grid;
  gap: 3px;
}

.bundle-option strong {
  font-size: 21px;
  font-weight: 950;
}

.bundle-option em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

.bundle-option b {
  font-size: 20px;
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.size-grid button,
.color-grid button {
  width: 56px;
  height: 44px;
  border: 1px solid #b7b7b7;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.size-grid button.is-active {
  background: var(--ink);
  color: var(--white);
}

.color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.color-grid button {
  width: auto;
  gap: 8px;
  padding: 0 14px;
}

.color-grid button span {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b7b7b7;
  border-radius: 50%;
}

.color-grid button.is-active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.product-detail .page-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.product-detail .primary-button {
  min-height: 64px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-size: 20px;
}

.product-detail .ghost-button {
  border: 0;
  background: transparent;
  color: #555555;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.cart-item .shirt-visual {
  min-height: 0;
}

.cart-item .mockup-img,
.cart-item .mockup-svg {
  max-width: 92px;
}

.quantity {
  display: inline-flex;
  border: 2px solid var(--ink);
}

.quantity button,
.quantity span {
  display: grid;
  width: 38px;
  height: 36px;
  place-items: center;
  border: 0;
  background: var(--white);
  font-weight: 900;
}

.quantity button {
  cursor: pointer;
}

.cart-summary {
  margin-top: 24px;
  padding: 20px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
  padding: 58px 32px;
  background: #ffffff;
}

.checkout-form,
.checkout-summary {
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid #d8d8d8;
}

.checkout-form legend {
  padding: 0 8px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  font-weight: 850;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 12px;
}

.choice-line {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.choice-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

.delivery-choice {
  grid-template-columns: auto auto 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
}

.delivery-choice:has(input:checked) {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.delivery-logo {
  display: grid;
  width: 58px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1;
}

.image-logo {
  overflow: hidden;
  background: #ffffff;
}

.image-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.choice-copy {
  display: grid;
  gap: 2px;
}

.choice-copy strong {
  font-size: 1rem;
}

.choice-copy em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.choice-price {
  font-weight: 950;
  white-space: nowrap;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pickup-helper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -4px;
}

.pickup-helper[hidden] {
  display: none;
}

.pickup-status {
  min-height: 18px;
  font-weight: 800;
}

.checkout-lines {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.checkout-lines div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-lines em {
  color: var(--muted);
  font-style: normal;
}

.order-result {
  max-width: 860px;
}

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

.orders-admin .section-head {
  align-items: end;
}

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

.section-copy {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 26px;
}

.admin-summary div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.admin-summary span,
.order-number {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-summary strong {
  font-size: 2rem;
  line-height: 1;
}

.order-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.order-card div {
  display: grid;
  gap: 4px;
}

.order-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-card strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.order-card .wide {
  grid-column: span 2;
}

.order-actions {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.order-admin-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.order-admin-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.order-admin-head h2,
.order-admin-head p,
.packeta-fields h3 {
  margin: 0;
}

.order-admin-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.order-admin-head p {
  color: var(--muted);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 2px solid var(--ink);
  background: #f4f4f4;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-pill.is-paid,
.status-pill.is-cod {
  background: #d9ffd8;
}

.status-pill.is-packed {
  background: #fff1b8;
}

.status-pill.is-shipped {
  background: #d8ecff;
}

.order-admin-grid,
.packeta-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.order-admin-grid div,
.packeta-fields div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbfbfb;
}

.order-admin-grid .wide {
  grid-column: span 2;
}

.order-admin-grid span,
.packeta-fields span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.order-admin-grid strong,
.packeta-fields strong {
  overflow-wrap: anywhere;
  font-size: 0.96rem;
}

.packeta-fields {
  padding: 16px;
  border: 2px solid var(--ink);
  background: #f6f6f6;
}

.packeta-fields h3 {
  grid-column: 1 / -1;
  font-size: 1.2rem;
}

.packeta-api-box {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px) auto;
  gap: 10px;
  align-items: end;
  padding: 16px;
  border: 2px solid var(--ink);
  background: #eef8ff;
}

.packeta-api-box div,
.packeta-api-box label {
  display: grid;
  gap: 6px;
}

.packeta-api-box span,
.packeta-api-box label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.packeta-api-box strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.packeta-api-box p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.next-action {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  background: #fff8d7;
}

.next-action span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.next-action strong {
  font-size: 1rem;
  line-height: 1.35;
}

.mini-fulfillment {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px 16px 16px 34px;
  border: 1px solid var(--line);
  background: #fbfbfb;
  font-weight: 800;
}

.fulfillment-panel {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
  border: 2px solid var(--ink);
  background: #f7f7f7;
}

.fulfillment-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
}

.fulfillment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.compact-button {
  width: max-content;
  max-width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
}

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

.fulfillment-grid div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.fulfillment-grid .wide {
  grid-column: 1 / -1;
}

.fulfillment-grid span,
.fulfillment-steps li::marker {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.fulfillment-grid span {
  font-size: 0.76rem;
}

.fulfillment-grid strong {
  overflow-wrap: anywhere;
}

.fulfillment-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
  font-weight: 800;
}

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

.setup-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.setup-panel h2,
.setup-panel p {
  margin: 0;
}

.setup-panel ul,
.setup-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.setup-panel code {
  padding: 2px 5px;
  background: #eeeeee;
  font-weight: 900;
}

.warning-panel {
  grid-column: 1 / -1;
  background: #fff4d6;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-weight: 800;
}

.summary-line.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  font-size: 22px;
}

.text-page {
  max-width: 900px;
  padding: 58px 32px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  padding: 58px 32px;
}

.contact-card,
.contact-form {
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

textarea.field {
  min-height: 140px;
  padding-top: 10px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr minmax(280px, 0.8fr);
  gap: 18px;
  padding: 36px 32px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.site-footer > *,
.newsletter-form,
.newsletter-form div {
  min-width: 0;
}

.site-footer h2 {
  max-width: 620px;
  margin-bottom: 10px;
}

.site-footer nav {
  justify-content: start;
  color: #c9c9c9;
}

.site-footer p {
  margin-bottom: 0;
  color: #c9c9c9;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  align-content: start;
}

.newsletter-form label {
  font-weight: 950;
  text-transform: uppercase;
}

.newsletter-form div {
  display: flex;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 46px;
  border: 2px solid var(--white);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
  background: transparent;
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: #c9c9c9;
}

.newsletter-form button {
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.cookie-bar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: none;
  max-width: 520px;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.cookie-bar.is-visible {
  display: grid;
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  margin: 0;
  color: var(--muted);
}

.cookie-bar div {
  display: flex;
  gap: 8px;
}

.cookie-bar button {
  position: relative;
  z-index: 1;
}

.empty-state {
  padding: 42px;
  border: 2px dashed var(--ink);
  background: var(--white);
  text-align: center;
}

@media (max-width: 800px) {
  .promo-stack,
  .site-header {
    position: static;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 18px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .cart-link {
    grid-column: 2;
    grid-row: 1;
    min-width: 78px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    overflow-x: auto;
  }

  .hero,
  .product-detail,
  .contact-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .hero-board,
  .features,
  .collection-grid,
  .reviews-grid,
  .trust-strip,
  .custom-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-product-media {
    min-height: 330px;
    padding: 18px;
  }

  .section,
  .text-page {
    padding-inline: 18px;
  }

  .section-head,
  .shop-toolbar,
  .cart-item,
  .order-card,
  .admin-summary,
  .order-admin-grid,
  .packeta-fields,
  .packeta-api-box,
  .fulfillment-grid,
  .setup-grid,
  .cookie-bar,
  .form-row {
    grid-template-columns: 1fr;
  }

  .fulfillment-head {
    align-items: stretch;
    flex-direction: column;
  }

  .order-card .wide,
  .order-admin-grid .wide {
    grid-column: 1;
  }

  .packeta-api-box p {
    grid-column: 1;
  }

  .order-admin-head {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-item {
    justify-items: start;
  }

  .real-mockup-img {
    width: 100%;
    height: 100%;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .newsletter-form div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-bar {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
