/* VERY NICE — static catalogue. Shop paused. */

:root {
  --ink: #121212;
  --ink-soft: #5c5c5c;
  --ink-faint: #8f8f8f;
  --paper: #ffffff;
  --paper-alt: #f4f4f4;
  --line: #e3e3e3;
  --alert: #b90000;
  --radius: 10px;
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- paused banner ---------- */

.paused-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.paused-bar strong { font-weight: 600; }

/* ---------- header ---------- */

.site-head {
  border-bottom: 1px solid var(--line);
  padding: 28px 0 22px;
  text-align: center;
}

.site-head .logo { display: inline-block; }
.site-head .logo img { width: 148px; height: auto; margin: 0 auto; }

.site-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}

.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ---------- main ---------- */

main { flex: 1 0 auto; padding: 56px 0 80px; }

.lede { max-width: 620px; margin: 0 auto 52px; text-align: center; }

.lede h1 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.lede p { color: var(--ink-soft); font-size: 16px; }

/* ---------- product grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 40px 28px;
}

.card { text-decoration: none; display: block; }

.card-media {
  position: relative;
  background: var(--paper-alt);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform .45s ease, filter .3s ease;
}

.card:hover .card-media img { transform: scale(1.035); filter: saturate(1); }

.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 100px;
  z-index: 2;
}

.card-body { padding-top: 14px; }

.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

.card-price { font-size: 14px; color: var(--ink-faint); }

/* ---------- product detail ---------- */

.product { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }

.gallery { display: flex; flex-direction: column; gap: 14px; }

.gallery img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--paper-alt);
}

.product-info { position: sticky; top: 32px; }

.product-info h1 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.price { font-size: 18px; color: var(--ink-faint); }

.status {
  border: 1px solid var(--alert);
  color: var(--alert);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.unavailable-note {
  background: var(--paper-alt);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.opt-group { margin-bottom: 20px; }

.opt-label {
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 9px;
}

.chips { display: flex; flex-wrap: wrap; gap: 7px; }

.chip {
  border: 1px solid var(--line);
  color: var(--ink-faint);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  background: var(--paper-alt);
}

.desc { font-size: 15px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 22px; }
.desc p { margin-bottom: 12px; }
.desc em { color: var(--ink-faint); }
.desc a { color: var(--ink); }
.desc strong { color: var(--ink); font-weight: 600; }
.desc img { border-radius: var(--radius); margin: 12px 0; }

/* size guides and any other tables that ride in on the product copy */
.desc table {
  border-collapse: collapse;
  width: 100%;
  margin: 14px 0 20px;
  font-size: 13px;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.desc th, .desc td {
  border: 1px solid var(--line);
  padding: 7px 10px;
  text-align: left;
}

.desc th { background: var(--paper-alt); color: var(--ink); font-weight: 600; }
.desc tr:nth-child(even) td { background: #fafafa; }

.back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.back:hover { color: var(--ink); }

/* ---------- prose pages ---------- */

.prose { max-width: 660px; margin: 0 auto; }
.prose h1 { font-size: 30px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 22px; }
.prose p { margin-bottom: 17px; color: var(--ink-soft); }
.prose a { color: var(--ink); }
.prose .btn-row { margin-top: 30px; }

/* Centred rich-text page, matching the original Shopify layout. */
.prose--center { text-align: center; max-width: 720px; }
.prose--center h1 { font-size: 38px; line-height: 1.15; margin-bottom: 28px; }
.prose--center .btn-row { margin-top: 38px; }

/* The pledge is the anchor of the page — set well above body copy,
   as the original did by marking it up as a heading. */
/* `.prose .pledge`, not `.pledge` — `.prose p` above is more specific and
   would mute the colour back to body grey. */
.prose .pledge {
  font-size: 23px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 30px 0 26px;
}

.prose .pledge strong { font-weight: 700; }

.prose--center .fine {
  font-size: 14px;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 34px;
}

/* `a.btn`, not `.btn` — `.prose a` above would otherwise win on specificity
   and paint the label black-on-black. */
a.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 100px;
  transition: opacity .15s;
}
a.btn:hover { opacity: 0.85; }

/* ---------- footer ---------- */

.site-foot {
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  padding: 30px 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
}

.site-foot a { color: var(--ink-soft); text-decoration: none; }
.site-foot a:hover { color: var(--ink); }
.site-foot .foot-links { margin-bottom: 8px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .product { grid-template-columns: 1fr; gap: 32px; }
  .product-info { position: static; }
}

@media (max-width: 560px) {
  main { padding: 38px 0 60px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 28px 16px; }
  .lede h1, .prose h1 { font-size: 25px; }
  .prose--center h1 { font-size: 28px; }
  .prose .pledge { font-size: 19px; margin: 24px 0 20px; }
  .site-head .logo img { width: 116px; }
  .wrap { padding: 0 18px; }
}
