/* ============================================================
   YIR CLOSET — STYLESHEET
   ============================================================
   QUICK EDITS FOR BEGINNERS
   ------------------------------------------------------------
   1. Store colors  -> edit the :root variables right below.
   2. Store name     -> the text "Yir" / "Closet" is written
                        directly in each HTML file's header/footer,
                        search each .html file for "Yir" to change it.
   3. Fonts          -> loaded from Google Fonts in the <head> of
                        each HTML page. Swap the link there to change.
   ============================================================ */

:root {
  /* ---- brand palette: soft, feminine pink/blush (change these to re-skin the whole site) ---- */
  --ink: #3a2b2c;         /* warm near-black, used for text (softer than pure black) */
  --ink-soft: #4d3a3b;
  --paper: #fdf1ee;       /* blush cream page background */
  --paper-2: #fbe2dc;     /* soft pink, used for cards */
  --white: #fffaf7;
  --moss: #e3aab6;        /* dusty rose - light accent */
  --rust: #cf7a8a;        /* rose-deep - primary accent, buttons, price */
  --mustard: #d8a86e;     /* soft gold - secondary highlight */
  --thread: #f3d3ce;      /* hairlines / borders, blush pink */
  --muted: #a4908c;       /* muted warm taupe text */

  /* ---- type scale ---- */
  --font-display: "Playfair Display", Georgia, serif;   /* section headings */
  --font-script: "Dancing Script", cursive;              /* brand name / hero */
  --font-body: "Poppins", -apple-system, Segoe UI, sans-serif;
  --font-mono: "Poppins", -apple-system, sans-serif;     /* tracked uppercase labels */

  --radius: 8px;
  --container: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; } /* 16px prevents iOS zoom-in on focus */

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 32px);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--rust);
}

.price {
  font-family: var(--font-mono);
  font-weight: 700;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 48px; /* comfortable tap target on mobile */
  box-shadow: 0 1px 2px rgba(58,43,44,0.06);
}
.btn:active { transform: scale(0.97); }
@media (hover: hover) {
  .btn:hover { box-shadow: 0 10px 22px rgba(58,43,44,0.16); transform: translateY(-1px); }
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-rust { background: var(--rust); border-color: var(--rust); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ============================================================
   TOP NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--thread);
  box-shadow: 0 1px 0 rgba(58,43,44,0.03), 0 4px 16px rgba(58,43,44,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand {
  font-family: var(--font-script);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand span { color: var(--rust); }

.nav-links {
  display: none;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { border-color: var(--rust); color: var(--rust); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.cart-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--ink);
  padding: 8px;
  display: flex;
}

/* mobile slide-down menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper-2);
  border-top: 1px solid var(--thread);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 18px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  border-bottom: 1px solid rgba(58,43,44,0.08);
  color: var(--ink);
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============================================================
   HERO (homepage)
   ------------------------------------------------------------
   Soft pink watercolor background, centered script logo, a
   heart + hanger icon, and an outlined "Shop Now" button —
   built to match the moodboard look. Swap images/hero-bg.svg
   for your own photo whenever you're ready: see the comment
   above the .hero rule below for exactly where.
   ============================================================ */
.hero {
  position: relative;
  /* To use your own photo instead: replace images/hero-bg.svg,
     or change the url() below to your file, e.g. "../images/my-photo.jpg" */
  background: url("../images/hero-bg.svg") center/cover no-repeat, var(--paper);
  color: var(--ink);
  padding: 70px 0 80px;
  overflow: hidden;
  text-align: center;
}

.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.hero-icon { margin-bottom: 18px; color: var(--ink); opacity: 0.85; }

.hero h1.script-logo {
  font-family: var(--font-script);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(52px, 14vw, 96px);
  color: var(--ink);
  line-height: 1;
}

.hero-tagline {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 16px 0 0;
  padding-left: 0.35em; /* optically balances the letter-spacing */
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 34px;
  width: 100%;
  max-width: 280px;
}
.hero-divider .line { flex: 1; height: 1px; background: var(--rust); opacity: 0.5; }
.hero-divider .heart { color: var(--rust); font-size: 15px; }

.hero p.lede {
  max-width: 460px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16px;
}

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

/* ============================================================
   CATEGORY TAGS (homepage strip)
   ============================================================ */
.cat-strip {
  padding: 54px 0 10px;
}
.cat-strip h2 { font-size: 28px; margin-bottom: 22px; }

.cat-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }

.cat-tag {
  flex: 0 0 auto;
  position: relative;
  min-width: 128px;
  padding: 22px 16px 16px;
  background: var(--paper-2);
  border: 1px solid var(--thread);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}
.cat-tag::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}
.cat-tag:hover { border-color: var(--rust); }

/* ============================================================
   PRODUCT CARDS (used on homepage "featured" + shop grid)
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 980px) { .grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--thread);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
@media (hover: hover) {
  .card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(58,43,44,0.14); border-color: var(--rust); }
  .card:hover .card-media img { transform: scale(1.05); }
}
.card:active { transform: translateY(-1px); }

.card-media img { transition: transform 0.4s var(--ease); }

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.condition-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.card-body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { font-family: var(--font-body); font-weight: 600; text-transform: none; font-size: 14.5px; letter-spacing: 0; line-height: 1.3; }
.card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.card-price { font-size: 16px; color: var(--rust); }

.card-add {
  margin-top: auto;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px;
  border-radius: var(--radius);
  min-height: 40px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card-add:hover { background: var(--rust); color: var(--white); border-color: var(--rust); }
.card-add:active { transform: scale(0.97); }

/* ============================================================
   SECTION HEADERS / GENERIC
   ============================================================ */
.section { padding: 54px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; gap: 12px; flex-wrap: wrap; }
.section-head h2 { font-size: 28px; }
.section-head a { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; border-bottom: 1px solid var(--ink); }

.section-dark { background: var(--paper-2); color: var(--ink); }
.section-dark .muted { color: var(--muted); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 780px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; } }

.about-badge {
  width: 120px; height: 120px;
  border: 2px solid var(--rust);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--rust);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transform: rotate(-6deg);
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(207,122,138,0.18);
  background: var(--white);
}

.about-copy p { color: var(--ink-soft); margin: 0 0 14px; max-width: 52ch; }
.about-copy h2 { color: var(--ink); font-size: 34px; margin-bottom: 16px; }

.stat-row { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.stat b { display: block; font-family: var(--font-display); font-size: 30px; color: var(--rust); }
.stat span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--thread);
  padding: 46px 0 20px;
  border-top: 3px solid var(--rust);
}
.footer-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer h4 {
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-links li { margin-bottom: 9px; font-size: 14px; }
.footer-links a:hover { color: var(--mustard); }

.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--thread);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--mustard); color: var(--mustard); }

.footer-bottom {
  border-top: 1px solid rgba(201,194,172,0.15);
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   SHOP PAGE — TOOLBAR / FILTERS
   ============================================================ */
.shop-head { padding: 34px 0 8px; }
.shop-head h1 { font-size: 38px; }
.shop-head p { color: var(--muted); margin-top: 8px; }

.toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 14px;
}
.search-box input {
  border: none;
  background: none;
  padding: 13px 0;
  flex: 1;
  outline: none;
}

.filter-row { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-row select {
  border: 1.5px solid var(--thread);
  background: var(--white);
  border-radius: var(--radius);
  padding: 11px 12px;
  font-size: 14px;
  min-height: 44px;
}

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1.5px solid var(--thread);
  background: var(--white);
  border-radius: 20px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.results-count { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin: 4px 0 18px; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  display: grid;
  gap: 30px;
  padding: 24px 0 60px;
}
@media (min-width: 860px) { .product-detail { grid-template-columns: 1fr 1fr; gap: 50px; } }

.pd-media {
  background: var(--paper-2);
  border: 1px solid var(--thread);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  touch-action: pan-y; /* allows left/right swipe gestures to be read by our JS */
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; }

/* Small dots over the bottom of the main photo, showing which photo
   you're on — swipe left/right on the photo to move between them */
.pd-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.pd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(58,43,44,0.25);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.pd-dot.active { background: var(--rust); border-color: var(--rust); transform: scale(1.2); }

/* Thumbnail strip below the main photo — tap one to browse other angles */
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.pd-thumb {
  flex: 0 0 auto;
  width: 66px;
  height: 82px;
  padding: 0;
  border: 2px solid var(--thread);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: var(--paper-2);
  transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  opacity: 0.75;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.active { border-color: var(--rust); opacity: 1; }
.pd-thumb:not(.active):hover { opacity: 1; border-color: var(--ink); }

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-top: 20px;
}
.breadcrumb a { border-bottom: 1px solid var(--thread); }

.pd-title { font-size: 32px; margin-bottom: 10px; }
.pd-price { font-size: 26px; color: var(--rust); margin-bottom: 4px; }
.pd-condition { display: inline-block; margin: 10px 0 20px; }

.size-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 24px; }
.size-btn {
  min-width: 46px;
  min-height: 46px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.size-btn.selected { background: var(--rust); color: var(--white); border-color: var(--rust); }

.pd-desc { color: var(--ink-soft); margin: 0 0 26px; max-width: 56ch; }
.pd-desc h3, .qty-label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.qty-stepper button {
  width: 44px; height: 44px;
  background: none; border: none;
  font-size: 18px;
}
.qty-stepper span { min-width: 34px; text-align: center; font-family: var(--font-mono); }

.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-actions .btn { flex: 1; min-width: 150px; }

.pd-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding: 30px 0 70px; }
.cart-list { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }

.cart-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--thread);
  border-radius: var(--radius);
  padding: 12px;
  align-items: center;
}
.cart-row img { width: 76px; height: 90px; object-fit: cover; border-radius: 3px; background: var(--paper-2); }
.cart-row h4 { font-size: 14.5px; margin: 0 0 4px; font-weight: 600; }
.cart-row .meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }

.cart-row-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.mini-stepper { display: inline-flex; align-items: center; border: 1px solid var(--ink); border-radius: var(--radius); }
.mini-stepper button { width: 32px; height: 32px; background: none; border: none; font-size: 15px; }
.mini-stepper span { min-width: 24px; text-align: center; font-family: var(--font-mono); font-size: 13px; }

.remove-link { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--rust); border-bottom: 1px solid var(--rust); }

.cart-summary {
  background: var(--paper-2);
  border: 1px solid var(--thread);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 10px;
}
.summary-line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14.5px; }
.summary-line.total { font-size: 19px; font-weight: 700; border-top: 1px solid var(--thread); padding-top: 12px; margin-top: 12px; }
.summary-line.total .price { color: var(--rust); }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page { padding: 30px 0 70px; }
.checkout-grid { display: grid; gap: 30px; margin-top: 24px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.2fr 1fr; align-items: start; } }

.form-card, .summary-card {
  background: var(--white);
  border: 1px solid var(--thread);
  border-radius: var(--radius);
  padding: 22px;
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--thread);
  border-radius: var(--radius);
  padding: 13px 12px;
  background: var(--paper);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rust); outline: none; box-shadow: 0 0 0 3px rgba(207,122,138,0.15); }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }

.summary-card h3 { font-size: 18px; margin-bottom: 14px; }
.mini-order-row { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 8px; color: var(--ink-soft); }
.mini-order-row span:first-child { max-width: 70%; }

.payment-note {
  background: var(--paper-2);
  border: 1px dashed var(--thread);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
}

.order-success {
  text-align: center;
  padding: 70px 20px;
}
.order-success .about-badge { margin: 0 auto 22px; }
.order-success h2 { font-size: 30px; margin-bottom: 10px; }
.order-success p { color: var(--muted); max-width: 46ch; margin: 0 auto 26px; }
.order-id { font-family: var(--font-mono); background: var(--paper-2); display: inline-block; padding: 8px 16px; border-radius: 20px; margin-bottom: 26px; letter-spacing: 0.06em; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.hide { display: none !important; }

.page-title-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--thread);
  padding: 26px 0;
}
.page-title-bar h1 { font-size: 32px; }
