/** Shopify CDN: Minification failed

Line 12:4 Expected ":"

**/
:root {
  --royal: #1146c7;
  --royal-deep: #0a2a7a;
  --royal-ink: #071a4d;
  --white: #ffffff;
  --paper: #f3f5f8;
  -- mist: #e6ebf4;
  --ink: #0b1220;
  --muted: #5b6577;
  --line: #d5dce8;
  --good: #0f7a45;
  --shadow: 0 18px 50px rgba(7, 26, 77, 0.12);
  --radius: 18px;
  --max: 1180px;
  --nav-h: 74px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

/* Announcement */
.announce {
  background: var(--royal-ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  font-weight: 600;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
}
.mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--royal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--royal);
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--royal); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: grid;
  place-items: center;
}
.icon-btn:hover { background: var(--paper); }
.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--royal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 5px;
}
.menu-btn { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  transition: 0.2s ease;
}
.btn-primary { background: var(--royal); color: #fff; }
.btn-primary:hover { background: var(--royal-deep); }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-ghost:hover { background: var(--mist); }
.btn-line { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.btn-line:hover { background: #fff; color: var(--ink); }
.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
  background: var(--royal-ink);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.05);
}
.hero-copy {
  position: relative;
  padding: 72px 0 80px;
  max-width: 720px;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero p { max-width: 460px; color: rgba(255,255,255,0.86); margin-bottom: 28px; font-size: 17px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
.section { padding: 76px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 32px;
}
.section-head h2,
.page-title h1,
.product-info h1 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
.section-head a { color: var(--royal); font-weight: 700; font-size: 14px; }

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-4px); }
.card-img {
  aspect-ratio: 4/5;
  background: #eef1f6;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px 16px 20px; background: #fff; }
.card-cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.card-body h3 { font-size: 18px; margin: 4px 0 8px; }
.price { font-weight: 700; }
.card-row { display: flex; justify-content: space-between; align-items: center; }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  background: var(--royal-ink);
  color: #fff;
}
.split img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.split-copy h2 { font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: clamp(32px, 5vw, 56px); line-height: 0.95; margin: 10px 0 18px; }
.split-copy p { color: rgba(255,255,255,0.8); max-width: 420px; margin-bottom: 24px; }

/* Values */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: #fff;
}
.value b { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; font-size: 20px; }
.value p { color: var(--muted); }

/* Page title */
.page-title { padding: 48px 0 12px; }
.page-title p { color: var(--muted); margin-top: 10px; max-width: 560px; }

/* Filters */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 28px; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.chip.active, .chip:hover { background: var(--royal); color: #fff; border-color: var(--royal); }

/* Product page */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 28px 0 80px;
  align-items: start;
}
.product-media {
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
}
.product-media img { width: 100%; }
.product-info h1 { margin: 8px 0 10px; }
.product-info .price { font-size: 24px; }
.product-info p.desc { color: var(--muted); margin: 16px 0 24px; max-width: 460px; }
.label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin: 18px 0 8px; }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  min-width: 48px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}
.size.active { background: var(--royal); color: #fff; border-color: var(--royal); }
.meta-list { margin-top: 28px; color: var(--muted); font-size: 14px; }
.meta-list li { margin: 6px 0; margin-left: 18px; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 28px; padding-bottom: 80px; }
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 110px; height: 130px; object-fit: cover; border-radius: 12px; background: var(--paper); }
.qty {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.qty button, .qty span { width: 34px; height: 32px; display: grid; place-items: center; border: 0; background: #fff; }
.qty button { cursor: pointer; }
.summary {
  background: var(--paper);
  border-radius: 20px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.summary row, .sum-row { display: flex; justify-content: space-between; margin: 10px 0; }
.sum-total { font-weight: 800; font-size: 20px; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 12px; }
.empty { padding: 40px 0 80px; color: var(--muted); }

/* Forms */
form { display: grid; gap: 12px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.note { color: var(--muted); font-size: 14px; }

/* Footer */
.footer {
  background: var(--royal-ink);
  color: #fff;
  padding: 56px 0 28px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 36px;
}
.footer h4 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer a, .footer p { color: rgba(255,255,255,0.72); font-size: 14px; }
.footer a { display: block; margin: 7px 0; }
.footer a:hover { color: #fff; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}
.newsletter {
  display: flex;
  gap: 8px;
}
.newsletter input { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); }
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 80;
}
.toast.show { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .grid, .values, .split, .product-layout, .cart-layout, .footer-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  .hero { min-height: 68vh; }
  .split-copy { padding: 40px 24px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--nav-h) + 34px);
    left: 0; right: 0;
    background: #fff;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line);
  }
}

.shopify-section { display: block; }
.errors, .form__message { color: #b42318; margin: 8px 0; }
.qty-input { width: 70px; }
.sold-out { opacity: 0.55; }
.pagination { display:flex; gap:12px; justify-content:center; padding: 32px 0; }
