:root {
  --bg: #080808;
  --bg-elev: #0f0f0f;
  --panel: #111111;
  --panel-soft: #171717;
  --line: #242424;
  --line-strong: #343434;
  --text: #ffffff;
  --muted: #a8a8a8;
  --cyan: #00e5ff;
  --cyan-soft: rgba(0, 229, 255, 0.2);
  --red: #ff3d3d;
  --orange: #ff8a3d;
  --ok: #25d366;
  --radius: 14px;
  --content-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  background:
    radial-gradient(1100px 520px at 10% -10%, rgba(0, 229, 255, 0.1), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    var(--bg);
}

h1, h2, h3, h4, .logo {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  margin: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 2rem;
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav.nav-simple {
  grid-template-columns: auto 1fr auto;
}
.logo { font-size: 1.5rem; white-space: nowrap; }
.links { justify-self: center; display: flex; gap: 1.3rem; }
.links a { color: var(--muted); transition: color 0.25s ease; }
.links a:hover { color: var(--cyan); }
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

/* ── Nav search bar ───────────────────────────────────────────── */
.nav-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid #282828;
  border-radius: 999px;
  padding: 0.58rem 1.1rem;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  transition: border-color 0.2s, background 0.2s;
  cursor: text;
}
.nav-search-wrap:focus-within {
  border-color: #3a5a62;
  background: rgba(255,255,255,0.06);
}
.nav-si { color: #555; flex-shrink: 0; transition: color 0.2s; }
.nav-search-wrap:focus-within .nav-si { color: var(--cyan); }
.nav-search-input {
  background: none;
  border: none;
  outline: none;
  color: var(--fg);
  font-size: 0.88rem;
  width: 100%;
  font-family: var(--font-body);
  min-width: 0;
}
.nav-search-input::placeholder { color: #484848; }

/* ── Nav search overlay ───────────────────────────────────────── */
.nso {
  position: fixed;
  left: 0;
  right: 0;
  background: #0c0c0c;
  border-bottom: 1px solid #1c1c1c;
  z-index: 49;
  max-height: 75vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nso.nso-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nso-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.6rem 2rem 2rem;
}
.nso-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #484848;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.nso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.2rem;
}
.nso-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--fg);
  transition: opacity 0.18s;
}
.nso-card:hover { opacity: 0.75; }
.nso-card-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #111;
}
.nso-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s;
}
.nso-card:hover .nso-card-img img { transform: scale(1.04); }
.nso-card-info { display: flex; flex-direction: column; gap: 0.18rem; }
.nso-name { font-size: 0.84rem; line-height: 1.3; }
.nso-price { font-size: 0.78rem; color: #888; }
.nso-msg { color: #555; font-size: 0.88rem; padding: 0.5rem 0; }
.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #2c373a;
  background: rgba(11, 17, 19, 0.8);
  color: #d8e8eb;
  font-weight: 700;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.login-link:hover {
  border-color: #4c717a;
  color: #ecfdff;
  background: rgba(12, 22, 25, 0.95);
}
.register-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}
.register-link:hover {
  background: rgba(0, 229, 255, 0.18);
  color: #fff;
}
.cart-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid #2a3f43;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(0, 229, 255, 0.12), rgba(0, 229, 255, 0.03));
  color: #dffbff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.cart-link:hover {
  border-color: #33c5e5;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.26), 0 6px 16px rgba(0, 110, 126, 0.2);
  transform: translateY(-1px);
}
.cart-link span {
  display: inline-grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--cyan);
  color: #021116;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 5rem 1.4rem 4rem;
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.75), rgba(0, 229, 255, 0.08)),
    repeating-linear-gradient(130deg, transparent, transparent 32px, rgba(255, 255, 255, 0.02) 32px, rgba(255, 255, 255, 0.02) 64px);
}
.hero-content {
  width: min(760px, 96%);
  margin: 0 auto;
  text-align: center;
  animation: reveal 0.7s ease both;
}
.hero h1 { font-size: clamp(3.5rem, 10vw, 8.4rem); line-height: 0.9; margin: 0.3rem 0 0.6rem; }
.hero p { color: #d0d0d0; max-width: 62ch; margin-inline: auto; }
.eyebrow { text-transform: uppercase; color: var(--cyan); letter-spacing: 0.2em; font-size: 0.76rem; }

.btn, button {
  border: 1px solid var(--cyan);
  background: linear-gradient(120deg, var(--cyan), #00b3c7);
  color: #041015;
  font-weight: 700;
  padding: 0.7rem 1rem;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}
.btn:hover, button:hover { transform: translateY(-2px); box-shadow: 0 0 24px var(--cyan-soft); filter: brightness(1.05); }
button:disabled { opacity: 0.45; cursor: not-allowed; }
/* Dark-style button for forms — white bg, dark text, no cyan */
.btn-dark {
  background: #fff;
  border-color: #fff;
  color: #080808;
  box-shadow: none;
}
.btn-dark:hover { background: #e0e0e0; border-color: #e0e0e0; box-shadow: none; filter: none; transform: none; }

.ticker-wrap { overflow: hidden; border-block: 1px solid var(--line); background: #0e0e0e; }
.ticker-track { white-space: nowrap; padding: 0.8rem 1.2rem; color: #d7f9ff; animation: ticker 24s linear infinite; }

.section {
  width: min(var(--content-max), 100% - 2.8rem);
  margin-inline: auto;
  padding: 2.2rem 0;
}
.section h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 0.9rem; text-align: center; }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.jersey-card,
.shop-card,
.category-card,
.cart-item,
.summary,
.login-card {
  background: linear-gradient(160deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.jersey-card,
.shop-card,
.category-card { height: 100%; display: flex; flex-direction: column; }
.jersey-card:hover,
.shop-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  border-color: #2f5a62;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.2) inset, 0 10px 28px rgba(0, 0, 0, 0.35);
}

.jersey-card img,
.shop-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.card-body { padding: 0.85rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.price { font-size: 1.06rem; }
.old { color: var(--muted); text-decoration: line-through; margin-left: 0.45rem; }
.badge { background: var(--cyan); color: #001014; padding: 0.1rem 0.45rem; border-radius: 999px; margin-left: 0.35rem; font-size: 0.76rem; font-weight: 700; }
.low-stock { color: var(--red); font-size: 0.85rem; }

.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.category-card { display: grid; place-items: center; min-height: 116px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.07em; text-align: center; }
.category-kits {
  border-color: #24485a;
  background:
    linear-gradient(115deg, rgba(0, 229, 255, 0.18) 0 8%, transparent 8% 18%, rgba(0, 229, 255, 0.14) 18% 22%, transparent 22% 100%),
    linear-gradient(160deg, #121b22, #0f1419);
  color: #e7fbff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.category-kits:hover {
  border-color: #33c5e5;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.28), 0 12px 24px rgba(0, 149, 181, 0.18);
}
.category-crochet {
  border-color: #5a3f64;
  background:
    radial-gradient(130px 80px at 18% 20%, rgba(255, 194, 226, 0.35), transparent 70%),
    radial-gradient(140px 90px at 85% 10%, rgba(212, 243, 255, 0.3), transparent 72%),
    linear-gradient(160deg, #26172d, #1b1221);
  color: #ffe7f3;
}
.category-crochet:hover {
  border-color: #ffb9da;
  box-shadow: 0 0 0 1px rgba(255, 185, 218, 0.35), 0 12px 24px rgba(255, 171, 211, 0.14);
}
.category-clothing {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 45%),
    #101010;
  border-color: #3a3a3a;
  color: #fafafa;
  letter-spacing: 0.11em;
  font-weight: 600;
  text-transform: uppercase;
}
.category-clothing:hover {
  border-color: #7a7a7a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.shop-layout {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - 84px);
  align-items: start;
}
.shop-layout > aside {
  border-right: 1px solid var(--line);
  min-height: calc(100vh - 84px);
}
.shop-layout > section {
  padding: 1.5rem 2rem 2rem;
  min-width: 0;
}
.filters {
  padding: 1.4rem 1.2rem;
  background: transparent;
  border: none;
  border-radius: 0;
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #2a2a2a transparent;
}
.filters h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.filters > h4:first-child { margin-top: 0; }

.filters input,
textarea,
.checkout-form input,
.checkout-form textarea,
.login-card input {
  width: 100%;
  background: #101010;
  color: #fff;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0.68rem;
  margin-bottom: 0.7rem;
}
.filters input:focus,
textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.login-card input:focus {
  outline: none;
  border-color: #3a7f89;
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.12);
}

#categoryFilters { display: grid; gap: 0.38rem; margin-bottom: 0.7rem; }
.price-range-label {
  margin: 0.2rem 0 0.6rem;
  color: #d8d8d8;
  font-weight: 600;
}
.range-wrap {
  position: relative;
  height: 28px;
  margin-bottom: 0.9rem;
}
.range-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 4px;
  border-radius: 999px;
  background: #234f76;
}
.range-fill {
  position: absolute;
  top: 11px;
  height: 4px;
  border-radius: 999px;
  background: #5ba8ff;
}
.filters input[type="range"] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 28px;
  background: transparent;
  border-radius: 999px;
  border: none;
  margin: 0;
  pointer-events: none;
}
.filters input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2f74b7;
  cursor: pointer;
  pointer-events: auto;
}
.size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.size-chips button {
  background: #111;
  color: #fff;
  border: 1px solid #4c4c4c;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  min-width: 46px;
}
.size-chips button.active {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.28) inset;
}
#labelFilters {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}
.filters label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #c8c8c8;
  line-height: 1.35;
  padding: 0.32rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-size: 0.88rem;
}
.filters label:hover { background: rgba(255,255,255,0.04); color: #fff; }
.filters label:has(input:checked) { color: var(--cyan); }

.filters input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--cyan);
  flex-shrink: 0;
}

.toggle {
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ── Sort toolbar ──────────────────────────────────────────── */
.sort-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.75rem;
}
#productSort {
  appearance: none;
  -webkit-appearance: none;
  background: #111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  color: #e4e4e4;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0.55rem 2.4rem 0.55rem 0.9rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.18s;
  min-width: 200px;
}
#productSort:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.12);
}
#productSort option {
  background: #111;
  color: #e4e4e4;
}

.product-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.shop-card { position: relative; }
.shop-card [data-hover] { display: none; }
.shop-card:hover [data-main] { display: none; }
.shop-card:hover [data-hover] { display: block; }

.stock-alert { color: var(--red); display: flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; }
.dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--red); animation: pulse 1s infinite; }
.sold-out { filter: grayscale(1); }
.sold-badge { color: var(--red); font-weight: 700; margin-top: auto; }

.product-detail {
  width: min(var(--content-max), 100% - 2.8rem);
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}
/* product images: vertical thumb strip on left, big image on right */
.product-images {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: flex-start;
}
.thumb-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex-shrink: 0;
  width: 88px;
  max-height: 540px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.main-image-wrap {
  flex: 1;
  min-width: 0;
}
.main-image { width: 100%; border-radius: 12px; display: block; }
.thumb { width: 88px; height: 88px; object-fit: cover; border: 1px solid #2a2a2a; border-radius: 10px; cursor: pointer; flex-shrink: 0; }
.thumb:hover { border-color: #3f7f89; }
.thumb-active { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.3); }
.sizes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }
.sizes button {
  background: #0e0e0e;
  color: #bbb;
  border: 1.5px solid #2e2e2e;
  border-radius: 8px;
  min-width: 50px;
  height: 44px;
  padding: 0 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s, background 0.15s;
}
.sizes button:not(:disabled):not(.active):hover {
  border-color: #555;
  color: #fff;
}
/* Selected size — bright cyan glow border */
.sizes button.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.07);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 10px rgba(0, 229, 255, 0.35);
}
/* Out-of-stock — diagonal strikethrough */
.sizes button:disabled {
  color: #3a3a3a;
  border-color: #222;
  cursor: not-allowed;
  opacity: 1;
}
.sizes button:disabled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - 0.8px),
    #444 calc(50% - 0.8px),
    #444 calc(50% + 0.8px),
    transparent calc(50% + 0.8px)
  );
  pointer-events: none;
  border-radius: inherit;
}
.qty-control { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.description { color: var(--muted); line-height: 1.55; }

.similar-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.cart-layout {
  width: min(var(--content-max), 100% - 2.8rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1rem;
}
.cart-page {
  min-height: calc(100vh - 92px);
}
.cart-page-head {
  margin-bottom: 1rem;
}
.cart-page-head h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.2rem;
}
.cart-page-head p {
  color: #b8c9cc;
  margin: 0;
}
.empty-state {
  width: min(760px, 100%);
  margin: 2rem auto 0;
  padding: 2rem 1.4rem;
  border-radius: 18px;
  border: 1px solid #2a444b;
  background:
    radial-gradient(420px 180px at 10% 0%, rgba(0, 229, 255, 0.12), transparent 70%),
    linear-gradient(165deg, #0f1517, #0d1012 65%);
  text-align: center;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
}
.empty-kicker {
  margin: 0 0 0.4rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
}
.empty-state h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}
.empty-state p {
  color: #c4d4d7;
  max-width: 44ch;
  margin: 0.55rem auto 0;
}
.empty-actions {
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.ghost-btn {
  border: 1px solid #38545a;
  background: rgba(7, 17, 20, 0.75);
  color: #d8f6fa;
  border-radius: 10px;
  padding: 0.68rem 1rem;
  font-weight: 700;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.ghost-btn:hover {
  border-color: #4f7982;
  background: rgba(10, 26, 30, 0.92);
}
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1rem;
  padding: 0.95rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.08), var(--panel));
  border-color: #2a3537;
}
.cart-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2b2b2b;
}
.cart-item-meta h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.cart-size {
  color: #c9d2d4;
  margin: 0 0 0.5rem;
}
.cart-line {
  min-width: 130px;
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}
.cart-line-total {
  margin: 0;
  font-weight: 700;
  font-size: 1.04rem;
}
.summary {
  padding: 1.1rem;
  height: fit-content;
  border-color: #2a3537;
  background: linear-gradient(165deg, rgba(0, 229, 255, 0.05), #101010);
}
.line-row { display: flex; justify-content: space-between; margin-bottom: 0.45rem; }
.line-row.total { border-top: 1px solid #2a2a2a; padding-top: 0.5rem; }
.stock-warning { border-left: 3px solid var(--red); background: #1b0f0f; padding: 0.6rem; margin-bottom: 0.8rem; border-radius: 8px; }
.danger { background: #2a1111; border-color: #6b2222; color: #ff8f8f; }
.summary h3 {
  margin-bottom: 0.85rem;
}
.qty-control {
  background: #0d1112;
  border: 1px solid #273336;
  border-radius: 999px;
  padding: 0.2rem;
}
.qty-control button {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  padding: 0;
  background: #101619;
  border-color: #2f4248;
  color: #d8fbff;
}
.qty-control span {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 700;
}

.login-page { min-height: 100vh; display: grid; place-items: center; }
.login-card {
  width: min(430px, 92%);
  padding: 1.3rem;
  background: linear-gradient(150deg, rgba(0, 229, 255, 0.06), transparent 40%), #0f0f0f;
}
.login-card p { color: var(--muted); }
.error { color: var(--red); min-height: 1rem; }
.hidden { display: none !important; }
.auth-form {
  margin-top: 0.8rem;
}
.auth-form p {
  margin: 0 0 0.55rem;
}
#authModeTabs {
  margin-top: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════
   HERO SPLIT (FIFA-store style 3-panel)
   ══════════════════════════════════════════════════════════════ */
.hero-split {
  display: flex;
  height: 82vh;
  min-height: 440px;
  width: 100%;
  overflow: hidden;
}
.hsplit-panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2.2rem 2rem;
  text-decoration: none;
  overflow: hidden;
  transition: flex 0.55s cubic-bezier(0.4,0,0.2,1);
}
.hero-split:has(.hsplit-panel:hover) .hsplit-panel       { flex: 0.7; }
.hero-split:has(.hsplit-panel:hover) .hsplit-panel:hover { flex: 1.6; }
/* Fallback for browsers without :has() */
.hsplit-panel:hover { flex: 1.6 !important; }

.hsplit-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.4s;
  z-index: 1;
}
.hsplit-panel:hover::before { background: rgba(0,0,0,0.15); }

/* Diagonal divider between panels */
.hsplit-panel:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0; right: -18px;
  width: 36px; height: 100%;
  z-index: 3;
  background: var(--bg, #0a0a0a);
  clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
}

.hsplit-kits     { background: linear-gradient(150deg, #5a0a0a 0%, #c01f1f 60%, #8b0000 100%); }
.hsplit-clothing { background: linear-gradient(150deg, #2e3338 0%, #4a5260 60%, #363c45 100%); }
.hsplit-crochets { background: linear-gradient(150deg, #c9788a 0%, #e8a0b0 60%, #d4879a 100%); }

.hsplit-soon {
  cursor: default;
  opacity: 0.55;
  filter: grayscale(0.3);
  pointer-events: none;
}
.hsplit-cta-soon {
  font-style: italic;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}

.hsplit-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hsplit-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.25rem;
}
.hsplit-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 0.6rem;
  letter-spacing: 0.02em;
}
.hsplit-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cyan);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}
.hsplit-panel:hover .hsplit-cta { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   NAV ICON BUTTONS (cart + profile)
   ══════════════════════════════════════════════════════════════ */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: #d0d0d0;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.icon-btn svg { width: 26px; height: 26px; }
.icon-btn:hover {
  border-color: #2a2a2a;
  color: #fff;
  background: #111;
}
.cart-badge {
  position: absolute;
  top: 1px; right: 1px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: var(--cyan);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* ── Cart hover dropdown ──────────────────────────────────────── */
.cart-drop {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 300px;
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  overflow: hidden;
}
.cart-drop::before {
  content: '';
  position: absolute;
  top: -6px; right: 14px;
  width: 12px; height: 12px;
  background: #111;
  border-top: 1px solid #222;
  border-left: 1px solid #222;
  transform: rotate(45deg);
}
.cart-drop.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cart-drop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.2rem;
  gap: 0.8rem;
}
.cart-drop-empty p {
  font-size: 0.9rem;
  color: #888;
}
.cart-drop-continue {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.65rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #ccc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.cart-drop-continue:hover { border-color: var(--cyan); color: var(--cyan); }
.cart-drop-items {
  padding: 0.8rem 0.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.cart-drop-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.cart-drop-item img {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.cart-drop-info { flex: 1; min-width: 0; }
.cart-drop-name {
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e0e0e0;
}
.cart-drop-meta { font-size: 0.75rem; color: #666; margin-top: 0.1rem; }
.cart-drop-price { font-size: 0.82rem; font-weight: 600; color: #ccc; white-space: nowrap; }
.cart-drop-more { font-size: 0.78rem; color: #555; text-align: center; padding: 0.3rem 0 0.6rem; }
.cart-drop-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0.9rem 0.6rem;
  border-top: 1px solid #1e1e1e;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #888;
}
.cart-drop-subtotal strong { color: #fff; font-size: 0.95rem; }
.cart-drop-btn {
  display: block;
  margin: 0 0.8rem 0.8rem;
  padding: 0.7rem;
  background: #fff;
  color: #080808;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.cart-drop-btn:hover { background: #e0e0e0; }

/* ── Profile dropdown ─────────────────────────────────────────── */
.profile-wrap { position: relative; }
.profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 0.35rem;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.profile-dropdown.pd-open { display: block; }
.pd-item {
  display: block;
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #d4d4d4;
  text-decoration: none;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.pd-item:hover { background: #1a1a1a; color: #fff; }
.pd-item.pd-logout { color: #ff6b6b; }
.pd-item.pd-logout:hover { background: rgba(255,107,107,0.1); }

/* ══════════════════════════════════════════════════════════════
   SHOP TOOLBAR (search + custom sort)
   ══════════════════════════════════════════════════════════════ */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 160px;
  max-width: 320px;
}
.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}
.product-search {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0.58rem 0.9rem 0.58rem 2.4rem;
  color: #e4e4e4;
  font-size: 0.88rem;
  transition: border-color 0.18s;
}
.product-search:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0,229,255,0.1);
}
.product-search::placeholder { color: #555; }

/* ── Custom select dropdown ───────────────────────────────────── */
.csel { position: relative; min-width: 200px; }
.csel-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
  background: #0e0e0e;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0.58rem 0.9rem;
  color: #e4e4e4;
  font-size: 0.88rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s;
}
.csel-btn:focus, .csel.open .csel-btn {
  outline: none;
  border-color: var(--cyan);
}
.csel-list {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  min-width: 220px;
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 0.3rem;
  z-index: 150;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.csel.open .csel-list { display: block; }
.csel-item {
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #ccc;
  transition: background 0.15s, color 0.15s;
}
.csel-item:hover { background: #1a1a1a; color: #fff; }
.csel-item.csel-active { color: var(--cyan); background: rgba(0,229,255,0.06); }

/* ══════════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════════ */
.pg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 1.4rem 0;
  flex-wrap: wrap;
}
.pg-btn {
  min-width: 38px; height: 38px;
  padding: 0 0.55rem;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #ccc;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.pg-btn:hover:not(:disabled) {
  border-color: var(--cyan);
  color: var(--cyan);
}
.pg-btn.pg-active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  font-weight: 700;
}
.pg-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pg-ellipsis { color: #555; padding: 0 0.2rem; line-height: 38px; }

/* ══════════════════════════════════════════════════════════════
   SIZE FILTERS in sidebar
   ══════════════════════════════════════════════════════════════ */
#sizeFilterHeading {
  margin: 1.2rem 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
#sizeFilters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
#sizeFilters label {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem 0.6rem;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.18s;
}
#sizeFilters label:hover { border-color: #3c7080; }
#sizeFilters input[type="checkbox"]:checked + * {
  color: var(--cyan);
}
#sizeFilters label:has(input:checked) {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.06);
  color: var(--cyan);
}

/* ══════════════════════════════════════════════════════════════
   ACCOUNT PAGE
   ══════════════════════════════════════════════════════════════ */
.account-page {
  width: min(680px, 100% - 2.8rem);
  margin: 2rem auto 4rem;
}
.account-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.15rem;
}
.account-subtitle {
  color: #666;
  font-size: 0.88rem;
  margin: 0 0 2rem;
}
.account-card {
  background: linear-gradient(160deg, #101010, #0c0c0c);
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.account-card h2 {
  font-size: 1.1rem;
  margin: 0 0 1.1rem;
}
.account-card form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.account-card label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: #aaa;
}
.account-card input {
  background: #0a0a0a;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-size: 0.92rem;
  transition: border-color 0.18s;
}
.account-card input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0,229,255,0.1);
}
.account-msg {
  font-size: 0.85rem;
  min-height: 1.2em;
  margin: 0;
}

/* ── nav-home: index page nav with center links ──────────────── */
.nav-home {
  grid-template-columns: auto 1fr auto;
}

/* ── Remove old sort-bar (replaced by shop-toolbar) ─────────── */
.sort-bar { display: none; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  width: min(var(--content-max), 100% - 2.8rem);
  margin: 3rem auto 0;
  border-top: 1px solid var(--line);
  color: #a6a6a6;
  padding: 1.4rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.footer-brand {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.footer-brand:hover { color: #ccc; }
.footer-socials {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
/* Labeled TikTok link */
.footer-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  background: #111;
  color: #ccc;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.footer-tiktok:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.07);
}
/* Ask a Question */
.footer-question {
  border-top: 1px solid #1e1e1e;
  padding-top: 1.4rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.footer-question h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #e4e4e4;
}
.footer-q-email {
  font-size: 0.82rem;
  color: #666;
  margin: 0 0 0.75rem;
}
#questionForm {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 540px;
  margin: 0 auto;
}
#qSubject {
  background: #0e0e0e;
  color: #fff;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  transition: border-color 0.18s;
}
#qSubject:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.1);
}
#qMessage {
  background: #0e0e0e;
  color: #fff;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.18s;
  font-family: inherit;
}
#qMessage:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.1);
}
.footer-q-btn {
  align-self: flex-start;
}
.footer-q-feedback {
  font-size: 0.85rem;
  margin: 0;
  min-height: 1.2em;
}
.footer-copy {
  font-size: 0.82rem;
  color: #555;
  margin: 0;
  border-top: 1px solid #1a1a1a;
  padding-top: 1rem;
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-35%); } }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) {
  .cards-row { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail,
  .cart-layout,
  .split { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-item {
    grid-template-columns: 96px 1fr;
  }
  .cart-line {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
  .nav-search-wrap {
    padding: 0.45rem 0.7rem;
  }
  .nav-search-input { font-size: 0.82rem; }
  .links {
    display: none;
    gap: 0.8rem;
    font-size: 0.95rem;
  }
  .product-grid { grid-template-columns: 1fr; }
  .cards-row,
  .categories-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  #questionForm { max-width: 100%; }
  .footer-q-btn { width: 100%; text-align: center; }
  .cart-page-head p {
    font-size: 0.95rem;
  }
  .empty-state {
    margin-top: 1.2rem;
    padding: 1.4rem 1rem;
  }
}
.buy-look {
  width: min(var(--content-max), 100% - 2.8rem);
  margin: 2rem auto 0;
}

.buy-look-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.buy-look-head h2 {
  text-align: left;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* Offer / sale price display */
.offer-price-wrap { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.offer-price-wrap strong { color: #ff9e64; }
.price-original {
  text-decoration: line-through;
  color: #555;
  font-size: 0.85em;
}

.offers-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 158, 100, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff9e64;
  background: rgba(255, 158, 100, 0.07);
}

.buy-look-nav {
  display: flex;
  gap: 0.5rem;
}

.buy-look-nav button {
  width: 2.3rem;
  height: 2.3rem;
  padding: 0;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  border: 1px solid #303030;
}

.look-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  align-items: stretch;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}


.look-track::-webkit-scrollbar {
  height: 8px;
}

.look-track::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 999px;
}

.look-card {
  scroll-snap-align: start;
  background: linear-gradient(160deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.look-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ── Card image wrap + hover thumbnail strip ── */
.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.card-img-wrap .card-main-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.18s;
}

.card-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 4px;
  padding: 6px 6px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s, transform 0.22s;
  pointer-events: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.card-thumbs::-webkit-scrollbar { display: none; }

.look-card:hover .card-thumbs {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.card-thumb {
  width: 40px !important;
  height: 40px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.18);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s, transform 0.15s;
}
.card-thumb:hover,
.card-thumb.card-thumb-active {
  border-color: var(--cyan);
  transform: scale(1.1);
}

.look-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.look-body h3 {
  font-size: 1.05rem;
  line-height: 1.15;
  min-height: 2.4rem;
}

.look-price-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.look-price-row strong {
  color: #ffffff;
}

.look-discount {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
}

.look-body select {
  width: 100%;
  background: #101010;
  color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 0.52rem;
}

.look-body button {
  width: 100%;
  background: transparent;
  color: #d6fbff;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .look-track {
    grid-auto-columns: minmax(200px, 82%);
  }

}
.muted { color: var(--muted); }

.home-look-card,
.shop-look-card {
  min-height: 100%;
}

.home-look-card .look-body,
.shop-look-card .look-body {
  border-top: 1px solid #232323;
}

.mini-btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #d9fcff;
  transition: 0.25s ease;
}

.mini-btn:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.18);
}
.line-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
.theme-crochet {
  background:
    radial-gradient(900px 440px at 0% -10%, rgba(255, 182, 220, 0.25), transparent 58%),
    radial-gradient(800px 340px at 100% 0%, rgba(221, 244, 255, 0.2), transparent 58%),
    #120c14;
}
.theme-crochet .cute-filters {
  background: linear-gradient(165deg, #241628, #1a111f);
  border-color: #43304a;
}
.theme-crochet .cute-card {
  background: linear-gradient(155deg, #2a1730, #1b1221);
  border-color: #4d3655;
}
.theme-crochet .look-body button {
  background: linear-gradient(120deg, #ffb3d5, #ffd5eb);
  border-color: #ffb3d5;
  color: #231226;
}
.theme-clothing {
  background: #0c0c0c;
}
.theme-clothing .minimal-filters {
  background: #0f0f0f;
  border-color: #2b2b2b;
}
.theme-clothing .minimal-card {
  background: #111;
  border-color: #2a2a2a;
}
.theme-clothing .look-body button {
  background: transparent;
  border-color: #f2f2f2;
  color: #f2f2f2;
}

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

.shop-look-card button {
  width: 100%;
  background: transparent;
  color: #d6fbff;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  letter-spacing: 0.06em;
}

.shop-look-card button:disabled {
  background: #1a1a1a;
  border-color: #3d3d3d;
  color: #888;
}

@media (max-width: 1200px) {
  .inspired-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .inspired-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .inspired-grid {
    grid-template-columns: 1fr;
  }
  .line-links {
    grid-template-columns: 1fr;
  }
}

/* ── CART PAGE ───────────────────────────────────────────────────────────── */
.cart-page {
  width: min(1100px, 100% - 2.8rem);
  margin: 2.5rem auto 5rem;
}

.cart-empty {
  text-align: center;
  padding: 5rem 1rem;
}
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.cart-empty h2 { font-size: 1.6rem; margin: 0 0 0.5rem; }
.cart-empty p { color: var(--muted); margin: 0 0 1.8rem; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}
.btn-outline:hover { background: var(--cyan-soft); }

.cart-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.cart-title {
  font-size: 1.8rem;
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cart-count-badge {
  font-size: 0.85rem;
  background: var(--cyan-soft);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-weight: 600;
}

.cart-rows { display: flex; flex-direction: column; gap: 0.6rem; }

.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  align-items: center;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  transition: border-color 0.2s;
}
.cart-row:hover { border-color: var(--line-strong); }

.cart-row-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-elev);
}

.cart-row-info { min-width: 0; }
.cart-row-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-row-size { font-size: 0.82rem; color: var(--muted); margin: 0; }

.cart-row-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.2rem 0.4rem;
}
.cart-row-qty span { min-width: 1.4rem; text-align: center; font-weight: 600; font-size: 0.9rem; }

.qty-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  line-height: 1;
}
.qty-btn:hover { background: var(--line); }

.cart-row-price {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 110px;
  text-align: right;
  margin: 0;
}

.cart-row-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.3rem 0.4rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.cart-row-remove:hover { color: var(--red); background: rgba(255,61,61,0.1); }

/* summary sidebar */
.cart-summary {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  position: sticky;
  top: 1.5rem;
}
.cart-summary h3 { margin: 0 0 1.1rem; font-size: 1.1rem; letter-spacing: 0.04em; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
}
.summary-row span:first-child { color: var(--text); }
.text-muted { color: var(--muted); }

.summary-divider { border: none; border-top: 1px solid var(--line); margin: 0.8rem 0; }

.summary-total {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.summary-total strong { font-size: 1.15rem; color: var(--cyan); }

.checkout-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0.8rem 0 0.3rem;
}
.checkout-input {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.8rem;
  outline: none;
  transition: border-color 0.2s;
}
.checkout-input:focus { border-color: var(--cyan); }
.checkout-textarea { resize: vertical; min-height: 70px; }

.delivery-search-wrap { position: relative; }
.delivery-drop {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  z-index: 200;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
  padding: 0.3rem 0;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}
.delivery-drop-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-size: 0.88rem;
}
.delivery-drop-item:hover { background: rgba(255,255,255,0.05); }
.delivery-drop-name { color: var(--text); }
.delivery-drop-meta { color: var(--muted); font-size: 0.78rem; white-space: nowrap; }
.delivery-selected {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--cyan);
}

.summary-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
}

@media (max-width: 860px) {
  .cart-wrap { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 560px) {
  .cart-row { grid-template-columns: 56px 1fr auto; grid-template-rows: auto auto; }
  .cart-row-price { grid-column: 2; }
  .cart-row-remove { grid-column: 3; grid-row: 1; }
  .cart-row-qty { grid-column: 2 / -1; }
}

/* ── HOT PICKS DASHBOARD GRID ────────────────────────────────────────────── */
.hp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
}
.hp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.6rem 0.5rem;
  border: 1px solid #242424;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #0f0f0f;
  text-align: center;
}
.hp-card:hover { border-color: #444; background: #141414; }
.hp-card.hp-active {
  border-color: #00e5ff;
  background: rgba(0,229,255,0.05);
}
.hp-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 7px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.hp-info { width: 100%; }
.hp-name { margin: 0 0 0.1rem; font-weight: 600; font-size: 0.78rem; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-cat { margin: 0; font-size: 0.7rem; color: #909090; }
.hp-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #333;
  color: #909090;
  white-space: nowrap;
  margin-top: 0.1rem;
}
.hp-active .hp-badge {
  background: rgba(0,229,255,0.12);
  border-color: #00e5ff;
  color: #00e5ff;
}

/* ── NAV LOGOUT — now handled by .pd-item.pd-logout inside profile dropdown ── */
.nav-logout { background: none; border: none; cursor: pointer; }

/* ── CUSTOM BOUQUET BANNER ───────────────────────────────────────────────── */
.bouquet-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(120deg, rgba(0,229,255,0.08) 0%, rgba(255,158,196,0.08) 100%);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.bouquet-banner:hover {
  border-color: rgba(0,229,255,0.5);
  background: linear-gradient(120deg, rgba(0,229,255,0.13) 0%, rgba(255,158,196,0.13) 100%);
}
.bouquet-banner-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--cyan);
  color: #000;
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.35rem;
}
.bouquet-banner-text h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.bouquet-banner-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.bouquet-banner-arrow {
  font-size: 1.4rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.bouquet-banner:hover .bouquet-banner-arrow { transform: translateX(4px); }

/* ── BOUQUET BACK BUTTON ─────────────────────────────────────────────────── */
.bouquet-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #aaa;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  margin-bottom: 1.4rem;
  transition: border-color 0.18s, color 0.18s;
}
.bouquet-back-btn:hover {
  border-color: #00e5ff;
  color: #00e5ff;
}

/* ── WRAPPING CARD GRID ──────────────────────────────────────────────────── */
.wrap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}
.wrap-card {
  background: #111;
  border: 2px solid #222;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s;
  overflow: hidden;
  font-family: inherit;
}
.wrap-card:hover { border-color: #444; }
.wrap-card.active {
  border-color: #00e5ff;
  box-shadow: 0 0 0 3px rgba(0,229,255,0.12);
}
.wrap-card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
}
.wrap-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.wrap-card:hover .wrap-card-img { transform: scale(1.04); }
.wrap-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap-card-info {
  padding: 0.6rem 0.75rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.wrap-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e4e4e4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrap-card-price { font-size: 0.78rem; color: #888; }
.wrap-card.active .wrap-card-name { color: #00e5ff; }

@media (max-width: 900px) {
  .wrap-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .wrap-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   MOBILE / TOUCH IMPROVEMENTS  — all customer pages
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Touch-friendly tap targets ───────────────────────────────────────────── */
.sizes button,
.size-chips button {
  min-height: 44px;
  min-width: 44px;
}
.qty-btn {
  min-width: 38px;
  min-height: 38px;
  font-size: 1.15rem;
}

/* ── ≤ 768px — tablet ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .product-detail {
    gap: 1.2rem;
    padding-bottom: 2rem;
  }
  /* Shrink sidebar on tablets */
  .shop-layout {
    grid-template-columns: 180px 1fr;
  }
  .shop-layout > section {
    padding: 1rem 1rem 1.5rem;
  }
}

/* ── ≤ 600px — phone: stack filters above products ─────────────────────────── */
@media (max-width: 600px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-layout > aside {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: unset;
  }
  .filters {
    position: static;
    max-height: none;
    padding: 0.8rem 1rem;
  }
  .shop-layout > section {
    padding: 0.8rem 0.8rem 1.5rem;
  }
}

/* ── ≤ 640px — phone (appended rules override earlier same-breakpoint rules) ─ */
@media (max-width: 640px) {
  /* Nav CTA: compact so all items fit the right column */
  .nav-cta {
    gap: 0.28rem;
  }
  .login-link,
  .cart-link {
    padding: 0.34rem 0.52rem;
    font-size: 0.79rem;
  }
  .nav-logout {
    padding: 0.28rem 0.48rem;
    font-size: 0.77rem;
  }
  .my-orders-link {
    font-size: 0.79rem;
  }

  /* 2-col product grid on phones (overrides 1fr set earlier in this file) */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  /* Section padding tighter */
  .section {
    padding: 1.4rem 0;
  }

  /* Hero smaller on phones */
  .hero {
    padding: 3.2rem 1.1rem 2.6rem;
    min-height: 68vh;
  }

  /* Filter sidebar — no fixed max-height on mobile, more compact */
  .filters {
    padding: 0.75rem;
    max-height: none;
    top: 0;
  }

  /* Product detail stacked */
  .product-detail h1 {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  /* On phones: thumbs move below the main image as a horizontal scroll row */
  .product-images {
    flex-direction: column;
  }
  .thumb-row {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
  }
  .thumb {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
  }

  /* Bouquet builder wrapping — 2 columns */
  .line-links {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Cart */
  .cart-page {
    margin: 1.5rem auto 3rem;
  }
  .cart-title {
    font-size: 1.4rem;
  }

  /* Category cards — 2 col instead of 1 (overrides earlier 1fr) */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Login */
  .login-card {
    padding: 1.1rem;
  }

  /* My orders / any in-page table needs scroll */
  .orders-wrap,
  .table-scroll-mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Look cards slightly smaller text */
  .look-body h3 {
    font-size: 0.92rem;
    min-height: unset;
  }

  /* Summary sidebar full-width under cart items already, just pad less */
  .cart-summary {
    padding: 1rem 0.9rem;
  }

  /* Sort bar full-width on mobile */
  .sort-bar {
    justify-content: stretch;
  }
  #productSort {
    width: 100%;
    min-width: unset;
  }
}

/* ── ≤ 400px — small phones ───────────────────────────────────────────────── */
@media (max-width: 400px) {
  .nav {
    padding: 0.65rem 0.85rem;
  }
  .links {
    gap: 0.45rem;
    font-size: 0.84rem;
  }
  .product-grid {
    gap: 0.5rem;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }
  .btn {
    padding: 0.62rem 0.85rem;
    font-size: 0.88rem;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .section {
    width: calc(100% - 1.6rem);
  }
  .cart-row {
    padding: 0.7rem 0.75rem;
  }
  .look-card .look-body {
    padding: 0.55rem;
  }
}

/* ── Hero split — mobile ─────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-split {
    flex-direction: column;
    height: auto;
  }
  .hsplit-panel {
    flex: none !important;
    min-height: 200px;
    padding: 1.4rem 1.2rem;
  }
  .hsplit-panel::after { display: none; }
  .hsplit-title { font-size: clamp(2.6rem, 10vw, 4rem); }

  /* Shop toolbar stacks on mobile */
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: 100%; }
  .csel { min-width: unset; width: 100%; }

  /* Account page */
  .account-page { margin: 1.2rem auto 3rem; }
  .account-card { padding: 1rem; border-radius: 12px; }

  /* Profile dropdown shifts left on small screens */
  .profile-dropdown { right: -40px; }
}

@media (max-width: 768px) {
  .nso-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .nso-inner { padding: 1.2rem 1rem 1.5rem; }
}

/* ── Product Reviews ─────────────────────────────────────────────────────── */
.prod-sold-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #a8e8a8;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
}
.prod-rating-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0.35rem 0 0.5rem;
}
.prod-rating-stars { color: #f5c518; letter-spacing: 1px; }

/* Reviews section on product detail page */
.reviews-section {
  width: min(var(--content-max), 100% - 2.8rem);
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #1a1a1a;
}
.reviews-section h2 { font-size: 1.45rem; margin-bottom: 1.1rem; }
.review-card {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 0.7rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: #2a2a2a; }
.review-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin-bottom: 0.45rem;
}
.review-stars  { color: #f5c518; letter-spacing: 1px; font-size: 1.05rem; }
.review-author { font-weight: 600; font-size: 0.88rem; }
.review-date   { color: #555; font-size: 0.78rem; }
.review-body   { color: #b0b0b0; font-size: 0.88rem; line-height: 1.55; margin: 0; }

/* ── Product card: sold count + star rating row ──────────────────────────── */
.card-rating-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0.25rem 0 0.1rem;
}
.card-sold-badge {
  background: #1a1a1a;
  color: #25d366;
  border: 1px solid #1e3a2a;
  border-radius: 20px;
  padding: 0.1rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
}
.card-stars      { color: #f5c518; font-size: 0.78rem; letter-spacing: 0.5px; }
.card-rating-val { color: #aaa; font-size: 0.75rem; font-weight: 600; }

/* ── Custom back-print section (product detail, kits only) ──────────────── */
.print-section {
  background: #0d0d0d;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin: 0.9rem 0;
}
.print-section-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.print-section-title { font-weight: 600; font-size: 0.92rem; }
.print-charge-badge {
  background: #1a1a1a;
  color: #f5c518;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 0.15rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.print-fields { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.print-field  { flex: 1; min-width: 140px; }
.print-label  { display: block; font-size: 0.78rem; color: #888; margin-bottom: 0.3rem; }
.print-label-meta { color: #555; font-size: 0.72rem; }
.print-input {
  width: 100%;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #e0e0e0;
  padding: 0.45rem 0.65rem;
  font-size: 0.88rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.print-input:focus { outline: none; border-color: #555; }
.print-input-num   { max-width: 110px; }
.print-note        { font-size: 0.75rem; color: #555; margin: 0.55rem 0 0; }

/* ── Cart row: print display ─────────────────────────────────────────────── */
.cart-row-print {
  font-size: 0.78rem;
  color: #aaa;
  margin: 0.18rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.print-surcharge { color: #f5c518; font-weight: 600; font-size: 0.75rem; }
.cart-qty-locked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 52px;
}
.cart-qty-note { font-size: 0.65rem; color: #555; }
