:root {
  --yellow: #f5c518;
  --yellow-deep: #e3a70c;
  --yellow-pale: #fbeec2;
  --paper: #f7edcf;
  --paper-2: #fdf7e4;
  --ink: #17140d;
  --ink-soft: #57503c;
  --red: #c1272d;
  --red-dark: #8f1d21;
  --blue: #1e5a96;
  --blue-deep: #123d6b;
  --blue-pale: #b8d4ef;
  --blue-light: #dceaf8;
  --olive: #6f6b3c;
  --line: #17140d;
  --hard: 5px 5px 0 var(--ink);
  --hard-sm: 3px 3px 0 var(--ink);
  --header: 84px;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Roboto Condensed", "Arial Narrow", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(45deg, rgba(23, 20, 13, 0.022) 0 2px, transparent 2px 7px),
    radial-gradient(circle at 12% 8%, rgba(245, 197, 24, 0.5), transparent 45%),
    radial-gradient(circle at 88% 72%, rgba(30, 90, 150, 0.22), transparent 48%),
    linear-gradient(to bottom, var(--paper) 0%, var(--paper) 52%, var(--blue-light) 76%, var(--blue-pale) 90%, var(--blue) 100%);
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100vh;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

p { margin: 0; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 14px;
  z-index: 100;
  font-weight: 700;
  text-transform: uppercase;
}

.skip-link:focus { top: 12px; }

/* Announcement */
.announce {
  background: var(--red);
  color: var(--paper-2);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.announce-lead {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--yellow);
}

.emblem-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 7px 14px;
  border-bottom: 3px solid var(--ink);
}

.emblem-strip-header {
  background: var(--ink);
  color: var(--yellow);
}

.emblem-strip-footer {
  background: transparent;
  color: var(--yellow);
  padding-top: 0;
  padding-bottom: 18px;
  border-bottom: 0;
}

.sym {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.emblem-strip .sym {
  width: 20px;
  height: 20px;
}

.logo .sym {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.announce .sym {
  width: 14px;
  height: 14px;
}

.newsletter h2 .sym {
  width: 22px;
  height: 22px;
  color: var(--yellow);
  vertical-align: -4px;
}

.product-tag .sym {
  width: 11px;
  height: 11px;
  margin-right: 3px;
  vertical-align: -1px;
}

.eyebrow .sym {
  width: 12px;
  height: 12px;
  color: var(--yellow);
  margin-right: 4px;
  vertical-align: -2px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
}

.header::after {
  content: "";
  display: block;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--red) 0 22px, var(--ink) 22px 44px);
}

.header-inner {
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.logo {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  justify-self: center;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-align: center;
  margin-top: 1px;
}

.nav {
  display: flex;
  gap: 20px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 4px 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.18s ease;
}

.nav a:hover::after,
.nav a.active::after { width: 100%; }

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

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: relative;
  border: 2px solid transparent;
}

.icon-btn:hover {
  border-color: var(--ink);
  background: var(--yellow-pale);
}

.icon-btn svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
}

.menu-toggle { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--hard);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: var(--paper-2); }
.btn-ghost:hover { background: var(--yellow); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: min(80vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: var(--yellow);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  mix-blend-mode: multiply;
  opacity: 0.72;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 44px 0;
  max-width: 660px;
}

.poster {
  position: relative;
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 36px 34px 34px;
}

.poster-emblems {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  gap: 6px;
  color: var(--red);
  opacity: 0.92;
}

.poster-emblems .sym {
  width: 22px;
  height: 22px;
}

.poster::before {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 54px;
  height: 54px;
  opacity: 0.14;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23c1272d' d='M16 4 6 8v8c0 6.2 4.3 10.8 10 12 5.7-1.2 10-5.8 10-12V8L16 4z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 5px 12px;
}

.hero h1 {
  font-size: clamp(46px, 7.4vw, 92px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero h1 span { color: var(--red); }

.hero p {
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 26px;
  font-weight: 500;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
.section { padding: 76px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--ink);
}

.section-head h2 { font-size: clamp(30px, 4.2vw, 50px); }
.section-head p, .muted { color: var(--ink-soft); }

.section-no {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-no::before {
  content: "★";
  color: var(--red);
  font-size: 11px;
}

.section-head h2::after {
  content: " ★";
  color: var(--red);
  font-size: 0.62em;
  vertical-align: super;
}

.link-arrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--red);
  white-space: nowrap;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
  color: var(--paper-2);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.cat-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: grayscale(1) contrast(1.15);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 20, 13, 0.88) 12%, rgba(193, 39, 45, 0.34) 100%);
}

.cat-card span {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
}

.cat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
}

.cat-card small {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.product-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--yellow-pale);
  border-bottom: 3px solid var(--ink);
}

.product-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.28) saturate(0.85) contrast(1.06);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.product-media img.alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-media img.primary { opacity: 0; }
.product-card:hover .product-media img.alt { opacity: 1; }
.product-card:hover .product-media img { filter: none; }

.product-tag {
  position: absolute;
  top: 12px;
  left: -6px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  transform: rotate(-3deg);
  display: inline-flex;
  align-items: center;
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
}

.wish-btn svg { width: 17px; height: 17px; stroke: var(--ink); fill: none; stroke-width: 2; }
.wish-btn.on { background: var(--red); }
.wish-btn.on svg { fill: #fff; stroke: #fff; }

.quick-add {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 42px;
  opacity: 0;
  transform: translateY(6px);
  box-shadow: var(--hard-sm);
  transition: 0.18s ease;
}

.product-card:hover .quick-add { opacity: 1; transform: none; }
.product-card:hover .quick-add:hover { transform: translate(2px, 2px); }

.product-meta {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-meta h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.price {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  margin-top: auto;
}

.price s { margin-right: 8px; opacity: 0.55; font-weight: 400; }

.price .sale {
  background: var(--red);
  color: #fff;
  padding: 1px 8px;
  border: 2px solid var(--ink);
  display: inline-block;
}

/* Editorial */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--yellow);
}

.editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  filter: grayscale(1) contrast(1.2) sepia(0.25);
  border-right: 4px solid var(--ink);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.editorial-copy h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  margin: 8px 0 16px;
}

.editorial-copy p { margin-bottom: 26px; max-width: 460px; font-weight: 500; }

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 26px;
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
}

.value-card h3 { font-size: 26px; margin: 8px 0 8px; }

.value-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}

.section-blue {
  position: relative;
  background: linear-gradient(to bottom, transparent, rgba(30, 90, 150, 0.12) 35%, rgba(30, 90, 150, 0.28) 100%);
  padding-bottom: 88px;
}

.section-blue::after {
  content: "";
  display: block;
  height: 6px;
  margin-top: 48px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 22px, var(--blue) 22px 44px);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

/* Newsletter */
.newsletter {
  background: var(--blue);
  color: var(--paper-2);
  text-align: center;
  padding: 72px 20px;
  border-top: 4px solid var(--ink);
  position: relative;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 18px, var(--blue-pale) 18px 36px);
}

.newsletter h2 { font-size: clamp(32px, 4.4vw, 50px); color: var(--yellow); margin-bottom: 10px; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter p { color: #dceaf8; margin-bottom: 22px; }

.newsletter-form,
.search-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter input,
.search-form input,
.field input,
.field select,
.field textarea,
.promo input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 3px solid var(--ink);
  background: var(--paper-2);
  outline: none;
  font-weight: 500;
}

.newsletter input { border-color: var(--yellow); }

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-form input:focus,
.promo input:focus { background: var(--yellow-pale); }

.field textarea {
  padding: 12px 14px;
  min-height: 140px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--blue-deep);
  color: #dceaf8;
  padding: 56px 0 24px;
  border-top: 5px solid var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 2px solid rgba(184, 212, 239, 0.25);
}

.footer .logo { justify-self: start; color: var(--yellow); font-size: 26px; }
.footer p { color: #b8d4ef; font-size: 14px; margin-top: 12px; max-width: 290px; }

.footer-col h4 {
  font-size: 15px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  color: var(--yellow);
}

.footer-col a,
.footer-col p {
  display: block;
  width: fit-content;
  color: #b8d4ef;
  font-size: 14px;
  margin: 0 0 8px;
}

.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  color: #8fb8de;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Page hero */
.page-hero {
  padding: 48px 0 26px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(38px, 6vw, 70px); }
.page-hero p { color: var(--ink-soft); margin-top: 8px; font-weight: 500; }

/* Shop layout */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  padding-bottom: 76px;
}

.filters {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
  padding: 20px;
  height: fit-content;
}

.filters h3 {
  font-size: 15px;
  letter-spacing: 0.16em;
  margin: 22px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
}

.filter-list { display: flex; flex-direction: column; gap: 7px; }

.filter-list label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.filter-list input { accent-color: var(--red); width: 16px; height: 16px; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 16px;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.shop-toolbar .muted { color: var(--yellow); }

.shop-toolbar select {
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--yellow);
  padding: 6px 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.empty-state {
  text-align: center;
  padding: 66px 20px;
  grid-column: 1 / -1;
  background: var(--paper-2);
  border: 3px dashed var(--ink);
}

.empty-state h3 { font-size: 30px; margin-bottom: 8px; }

/* Product detail */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  padding: 28px 0 72px;
}

.gallery {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}

.thumbs { display: flex; flex-direction: column; gap: 10px; }

.thumbs button {
  border: 3px solid var(--ink);
  overflow: hidden;
  padding: 0;
  opacity: 0.6;
}

.thumbs button.active,
.thumbs button:hover { opacity: 1; box-shadow: var(--hard-sm); }

.thumbs img, .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image {
  border: 4px solid var(--ink);
  box-shadow: var(--hard);
  overflow: hidden;
  background: var(--yellow-pale);
  aspect-ratio: 4 / 5;
}

.pdp-info h1 { font-size: clamp(32px, 4vw, 50px); margin: 4px 0 12px; }

.pdp-price {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}

.pdp-price s { opacity: 0.5; font-weight: 400; margin-right: 8px; }

.pdp-price .sale {
  background: var(--red);
  color: #fff;
  padding: 2px 10px;
  border: 3px solid var(--ink);
  display: inline-block;
}

.pdp-info .lead { font-size: 16px; margin: 16px 0 22px; font-weight: 500; }

.option-label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 20px 0 10px;
}

.swatch-row, .size-row { display: flex; flex-wrap: wrap; gap: 10px; }

.swatch {
  width: 34px;
  height: 34px;
  border: 3px solid var(--ink);
}

.swatch.selected { box-shadow: 0 0 0 3px var(--red); }

.size-chip {
  min-width: 50px;
  height: 44px;
  padding: 0 14px;
  border: 3px solid var(--ink);
  background: var(--paper-2);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
}

.size-chip.selected { background: var(--ink); color: var(--yellow); }

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
  flex-wrap: wrap;
}

.qty {
  display: inline-flex;
  border: 3px solid var(--ink);
  background: var(--paper-2);
}

.qty button, .qty span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.qty button:hover { background: var(--yellow); }
.qty span { border-inline: 3px solid var(--ink); }

.stock {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 4px 10px;
}

.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pdp-actions .btn-primary { flex: 1; min-width: 200px; }

.accordion { margin-top: 30px; border-top: 3px solid var(--ink); }

.accordion details {
  border-bottom: 3px solid var(--ink);
  padding: 14px 0;
}

.accordion summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before { content: "▸ "; color: var(--red); }
.accordion details[open] summary::before { content: "▾ "; }
.accordion ul { margin: 10px 0 0; padding-left: 20px; color: var(--ink-soft); }

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 30px;
  padding-bottom: 76px;
}

.cart-items {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
  padding: 0 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 2px dashed var(--ink);
}

.cart-item:last-child { border-bottom: 0; }

.cart-item img {
  width: 104px;
  height: 130px;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.cart-item h3 { font-size: 19px; }
.cart-item .meta { font-size: 14px; color: var(--ink-soft); margin: 3px 0 10px; }
.cart-item .line-total { font-family: var(--display); font-weight: 700; font-size: 18px; }

.remove {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  margin-top: 8px;
}

.summary {
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
  padding: 22px;
  height: fit-content;
  position: sticky;
  top: 106px;
}

.summary h2 {
  font-size: 26px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
}

.row-line, .total-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 9px 0;
  font-size: 15px;
}

.total-line {
  border-top: 3px solid var(--ink);
  margin-top: 14px;
  padding-top: 12px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.ship-note {
  font-size: 13px;
  font-weight: 700;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 8px 10px;
  margin: 12px 0 16px;
}

.promo { display: flex; gap: 10px; margin: 14px 0 18px; }
.promo .btn { min-height: 48px; padding: 0 16px; box-shadow: var(--hard-sm); }

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding-bottom: 76px;
}

.form-card, .contact-card {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
  padding: 26px;
}

.form-card h2, .contact-card h2 {
  font-size: 27px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pay-note {
  font-size: 14px;
  font-weight: 500;
  background: var(--yellow);
  border: 2px dashed var(--ink);
  padding: 12px 14px;
  margin: 6px 0 18px;
}

/* Order confirmation — receipt */
.success { padding: 44px 0 90px; }

.receipt {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper-2);
  border: 3px solid var(--ink);
  box-shadow: var(--hard);
  padding: 32px 30px 34px;
  text-align: center;
}

.receipt-stamp {
  display: inline-block;
  border: 4px double var(--red);
  color: var(--red);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  transform: rotate(-6deg);
  margin-bottom: 18px;
}

.receipt h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 12px; }
.receipt .row-line { border-bottom: 2px dashed var(--ink); padding-bottom: 8px; text-align: left; }
.receipt-total {
  border-top: 3px solid var(--ink);
  margin-top: 14px;
  padding-top: 12px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

/* About / contact */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding-bottom: 76px;
}

.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 4px solid var(--ink);
  box-shadow: var(--hard);
  filter: grayscale(1) sepia(0.3) contrast(1.15);
}

.split h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 8px 0 14px; }
.split p { font-weight: 500; }

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  padding-bottom: 76px;
}

.contact-card { background: var(--yellow); }

/* Overlays */
.overlay, .drawer {
  position: fixed;
  inset: 0;
  background: rgba(23, 20, 13, 0.55);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.overlay.open, .drawer.open { opacity: 1; pointer-events: auto; }

.search-panel, .drawer-panel, .mobile-panel {
  position: absolute;
  background: var(--paper-2);
  border: 4px solid var(--ink);
}

.search-panel {
  left: 50%;
  top: 11vh;
  transform: translateX(-50%);
  width: min(660px, calc(100% - 32px));
  padding: 22px;
  box-shadow: 10px 10px 0 var(--red);
}

.drawer-panel {
  right: 0;
  top: 0;
  bottom: 0;
  width: min(430px, 100%);
  transform: translateX(24px);
  display: flex;
  flex-direction: column;
  border-right-width: 4px;
  transition: transform 0.22s ease;
}

.drawer.open .drawer-panel { transform: none; }

.drawer-head, .mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 4px solid var(--ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.drawer-body { flex: 1; overflow: auto; padding: 4px 20px 20px; }
.drawer-body .cart-item { grid-template-columns: 76px 1fr auto; }
.drawer-body .cart-item img { width: 76px; height: 96px; }
.drawer-foot { padding: 16px 20px 20px; border-top: 4px solid var(--ink); background: var(--yellow); }
.drawer-foot .btn { box-shadow: var(--hard-sm); }

.mobile-panel {
  left: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 86vw);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 18px;
}

.mobile-panel a {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
  border-bottom: 2px dashed var(--ink);
}

.mobile-panel a:hover { background: var(--yellow); }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--yellow);
  border: 3px solid var(--yellow);
  padding: 12px 20px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
  z-index: 80;
}

.toast.show { opacity: 1; transform: translate(-50%, 0); }

.search-results { margin-top: 16px; display: grid; gap: 10px; }

.search-hit {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 2px solid var(--ink);
  padding: 6px;
  background: var(--paper);
}

.search-hit:hover { background: var(--yellow); }

.search-hit img {
  width: 54px;
  height: 64px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.search-hit strong { font-family: var(--display); font-size: 16px; text-transform: uppercase; }
.search-hit span { font-family: var(--display); font-weight: 700; }

@media (max-width: 1000px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: start; font-size: 30px; letter-spacing: 0.08em; }
  .cat-grid, .product-grid, .values, .footer-grid { grid-template-columns: 1fr 1fr; }
  .editorial, .pdp, .cart-layout, .checkout-grid, .split, .contact-wrap, .shop-layout, .gallery {
    grid-template-columns: 1fr;
  }
  .editorial img { border-right: 0; border-bottom: 4px solid var(--ink); }
  .thumbs { flex-direction: row; }
  .thumbs button { width: 80px; }
  .editorial-copy { padding: 34px 22px; }
  .quick-add { opacity: 1; transform: none; }
  .summary { position: static; }
}

@media (max-width: 640px) {
  .product-grid, .cat-grid, .values, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .logo::before, .logo::after { display: none; }
  .hero { min-height: 74vh; }
  .poster { padding: 26px 20px; box-shadow: 6px 6px 0 var(--ink); }
  .hero-actions, .section-head, .footer-bottom { flex-direction: column; align-items: stretch; }
  .section-head { align-items: flex-start; }
  .cart-item { grid-template-columns: 84px 1fr; }
  .cart-item img { width: 84px; height: 104px; }
  .cart-items { padding: 0 14px; }
  .announce { font-size: 10px; letter-spacing: 0.12em; }
}
