/** Shopify CDN: Minification failed

Line 847:3 Expected ":"
Line 848:3 Expected ":"
Line 849:3 Expected ":"
Line 850:3 Expected ":"
Line 851:3 Expected ":"
Line 852:3 Expected ":"
Line 853:3 Expected ":"
Line 856:3 Expected ":"
Line 857:3 Expected ":"
Line 858:3 Expected ":"
... and 9 more hidden warnings

**/
:root {
  --navy: #0d0b1f;
  --navy-deep: #070616;
  --navy-soft: #14112b;
  --purple: #5b3bff;
  --purple-light: #7a5cff;
  --yellow: #ffc107;
  --white: #ffffff;
  --ink-muted: #c8c4d8;
  --line: #302a60;
  --font-heading: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, Arial, Helvetica, sans-serif;
  --page-width: 1240px;
  --header-height: 84px;
  --shadow-purple: 0 18px 60px rgba(91, 59, 255, 0.24);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--yellow); color: var(--navy-deep); }

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

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

a { color: inherit; }

h1,
h2,
h3,
h4,
p { margin-top: 0; }

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2.3rem, 5vw, 4.6rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2.1rem); }

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

.section { position: relative; padding: clamp(72px, 9vw, 128px) 0; }
.section--tight { padding-block: clamp(48px, 6vw, 82px); }
.section--deep { background: var(--navy-deep); }

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-heading--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.accent { color: var(--purple-light); }
.accent-yellow { color: var(--yellow); }
.muted { color: var(--ink-muted); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border: 2px solid var(--purple);
  border-radius: 0;
  background: var(--purple);
  box-shadow: none;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.button:hover { transform: translateY(-3px); background: var(--purple-light); border-color: var(--purple-light); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.button--yellow { background: var(--yellow); border-color: var(--yellow); color: var(--navy-deep); }
.button--yellow:hover { background: #ffd452; border-color: #ffd452; }
.button--outline { background: transparent; border-color: var(--purple-light); color: var(--white); }
.button--outline:hover { background: var(--purple); color: var(--white); }
.button--small { min-height: 44px; padding: 10px 20px; font-size: 1rem; }
.button[disabled] { cursor: not-allowed; opacity: 0.5; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  transform: translateY(-180%);
  background: var(--yellow);
  color: var(--navy-deep);
}
.skip-link:focus { transform: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.announcement-bar {
  position: relative;
  z-index: 30;
  padding: 9px 20px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.announcement-bar a { text-decoration: none; }
.announcement-bar__bolt { margin-inline: 10px; font-size: 1.15rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(122, 92, 255, 0.34);
  background: rgba(7, 6, 22, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(210px, 310px) 1fr auto;
  align-items: center;
  gap: 30px;
}

.site-header__logo img { width: min(100%, 290px); height: auto; }
.site-header__logo { display: block; }
.brand-placeholder {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand-placeholder > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--yellow);
  background: rgba(91, 59, 255, 0.18);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  clip-path: polygon(50% 0, 95% 24%, 88% 80%, 50% 100%, 12% 80%, 5% 24%);
}
.brand-placeholder strong { font-size: .75rem; letter-spacing: .16em; }
.brand-placeholder--mark { flex-direction: column; align-items: flex-start; }
.brand-placeholder--mark > span { width: 86px; height: 86px; font-size: 2.2rem; }

.site-nav { display: flex; justify-content: flex-end; gap: clamp(16px, 2.4vw, 34px); }
.site-nav a {
  position: relative;
  padding-block: 29px;
  color: #e9e6f5;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 160ms ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.cart-link {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--purple);
  color: var(--white);
  font-size: 1.65rem;
  text-decoration: none;
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.cart-link__label { font-size: .62rem; font-weight: 900; letter-spacing: .06em; }
.cart-link__count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 900;
}

.menu-toggle { display: none; }

.guardian-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 100px));
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 42%, rgba(91, 59, 255, 0.28), transparent 32%),
    linear-gradient(112deg, #070616 0 48%, #0d0b1f 48% 100%);
}

.guardian-hero::before,
.guardian-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.guardian-hero::before {
  top: -100px;
  right: 3%;
  width: 420px;
  height: 480px;
  transform: rotate(11deg);
  background: linear-gradient(135deg, transparent 20%, rgba(91, 59, 255, 0.24) 20% 29%, transparent 29% 39%, rgba(255, 193, 7, 0.92) 39% 44%, transparent 44%);
  clip-path: polygon(35% 0, 100% 0, 61% 35%, 92% 32%, 30% 100%, 44% 54%, 5% 65%);
}
.guardian-hero::after {
  right: -8vw;
  bottom: -120px;
  width: 58vw;
  height: 190px;
  transform: rotate(-4deg);
  background: var(--purple);
  opacity: 0.12;
}

.guardian-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(820px, calc(100vh - 100px));
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  padding-block: clamp(70px, 8vw, 118px);
}

.guardian-hero__copy { max-width: 660px; }
.guardian-hero h1 { margin-bottom: 24px; }
.guardian-hero__copy > p {
  max-width: 620px;
  margin-bottom: 34px;
  color: #d6d2e4;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}
.guardian-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.guardian-hero__media { position: relative; }
.guardian-hero__media::before {
  content: "";
  position: absolute;
  inset: 12% -4% -5% 12%;
  border: 1px solid rgba(122, 92, 255, 0.7);
  box-shadow: var(--shadow-purple);
  background: rgba(91, 59, 255, 0.1);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.guardian-hero__media img { position: relative; width: 100%; filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.34)); }
.cg-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 260px;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  padding: 30px;
  border: 1px dashed rgba(122, 92, 255, .72);
  background:
    linear-gradient(135deg, rgba(91, 59, 255, .15), transparent 45%),
    repeating-linear-gradient(135deg, #12102a 0 20px, #0d0b1f 20px 40px);
  color: var(--purple-light);
  text-align: center;
}
.cg-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.cg-placeholder__icon { color: var(--yellow); }
.cg-placeholder strong { color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.cg-placeholder small { max-width: 270px; color: #a9a4bc; font-size: .72rem; }
.guardian-hero__media > .cg-placeholder { aspect-ratio: 6 / 5; min-height: 440px; }
.presale-chip {
  position: absolute;
  z-index: 4;
  top: -22px;
  right: 0;
  padding: 14px 18px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 rgba(91, 59, 255, 0.8);
}
.presale-chip small { display: block; font-size: 0.7rem; }

.trust-strip { position: relative; z-index: 4; border-block: 1px solid var(--line); background: #080718; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 16px; text-align: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--purple-light); font-family: var(--font-heading); font-size: 2rem; letter-spacing: 0.04em; line-height: 1; }
.trust-item:nth-child(even) strong { color: var(--yellow); }
.trust-item span { display: block; margin-top: 7px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-grid--four { grid-template-columns: repeat(4, 1fr); }
.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-soft);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--purple-light); }
.product-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 11px; background: var(--yellow); color: var(--navy-deep); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.product-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f5f5f5; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.product-card h3 { margin-bottom: 11px; }
.product-card h3 a { text-decoration: none; }
.product-card p { color: var(--ink-muted); }
.product-card__price { margin-top: auto; margin-bottom: 18px; color: var(--yellow); font-family: var(--font-heading); font-size: 2rem; letter-spacing: 0.04em; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { position: relative; padding: 34px 25px; border: 1px solid var(--line); background: rgba(20, 17, 43, 0.78); }
.value-card::before { content: attr(data-number); position: absolute; top: 15px; right: 18px; color: rgba(122, 92, 255, 0.22); font-family: var(--font-heading); font-size: 3.6rem; line-height: 1; }
.value-card__mark { display: grid; width: 52px; height: 52px; margin-bottom: 20px; place-items: center; background: var(--purple); color: var(--white); font-family: var(--font-heading); font-size: 1.8rem; clip-path: polygon(50% 0, 100% 24%, 88% 82%, 50% 100%, 12% 82%, 0 24%); }
.value-card:nth-child(even) .value-card__mark { background: var(--yellow); color: var(--navy-deep); }
.value-card h3 { margin-bottom: 10px; font-size: 1.6rem; }
.value-card p { margin: 0; color: var(--ink-muted); font-size: 0.94rem; }

.story-split { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(36px, 7vw, 96px); }
.story-split__media { position: relative; }
.story-split__media img { width: 100%; border: 1px solid var(--line); box-shadow: var(--shadow-purple); }
.story-split__media::after { content: "COLLECTOR BUILT"; position: absolute; right: -22px; bottom: -22px; padding: 15px 20px; background: var(--yellow); color: var(--navy-deep); font-family: var(--font-heading); font-size: 1.35rem; letter-spacing: 0.07em; }
.story-split__copy p { color: var(--ink-muted); font-size: 1.05rem; }

.bundle-banner {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--purple);
  background: linear-gradient(105deg, #171130 0 58%, #25156d 58% 100%);
  box-shadow: var(--shadow-purple);
}
.bundle-banner::after { content: "ϟ"; position: absolute; right: 6%; top: 50%; transform: translateY(-50%) rotate(7deg); color: var(--yellow); font-family: var(--font-heading); font-size: clamp(8rem, 20vw, 17rem); line-height: 1; opacity: 0.24; }
.bundle-banner__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: clamp(32px, 5vw, 64px); }
.bundle-banner h2 { margin-bottom: 12px; font-size: clamp(2.4rem, 5.3vw, 4.8rem); }
.bundle-banner p { max-width: 700px; margin-bottom: 0; color: #d8d4e8; }
.bundle-banner__price { margin-bottom: 12px; color: var(--yellow); font-family: var(--font-heading); font-size: clamp(3rem, 5vw, 5rem); line-height: 1; text-align: center; }
.bundle-banner__price small { display: block; color: var(--white); font-family: var(--font-body); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }

.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 24px 56px 24px 0; cursor: pointer; list-style: none; font-family: var(--font-heading); font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: 0.04em; text-transform: uppercase; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; top: 50%; right: 8px; transform: translateY(-50%); color: var(--yellow); font-family: var(--font-body); font-size: 2rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer { padding: 0 56px 26px 0; color: var(--ink-muted); }

.site-footer { position: relative; overflow: hidden; padding-top: 76px; border-top: 2px solid var(--purple); background: #05040f; }
.site-footer__energy { position: absolute; top: 0; right: 0; left: 0; height: 15px; background: repeating-linear-gradient(118deg, var(--purple) 0 50px, transparent 50px 74px, var(--yellow) 74px 92px, transparent 92px 150px); opacity: 0.82; }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 48px; }
.site-footer__brand img { width: 120px; height: auto; margin-bottom: 20px; }
.site-footer__brand p { max-width: 330px; color: var(--ink-muted); }
.site-footer__brand strong { color: var(--yellow); font-size: 0.78rem; letter-spacing: 0.15em; }
.site-footer h2 { margin-bottom: 18px; color: var(--purple-light); font-size: 1.35rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 8px; }
.site-footer a { color: #d9d5e7; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.site-footer p { color: var(--ink-muted); font-size: 0.92rem; }
.footer-signup { display: flex; gap: 8px; }
.footer-signup input { min-width: 0; width: 100%; border: 1px solid var(--line); background: #0d0b1f; color: var(--white); padding: 11px 13px; }
.footer-email { display: inline-block; margin-top: 14px; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 62px; padding-block: 24px; border-top: 1px solid #242039; }
.site-footer__bottom p { margin: 0; font-size: 0.74rem; }
.payment-types { display: flex; flex-wrap: wrap; gap: 7px; }
.payment-types svg { width: 38px; height: auto; }

.product-main { background: var(--navy); }
.product-main__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr); gap: clamp(34px, 6vw, 82px); align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-height) + 24px); }
.product-gallery__main { position: relative; overflow: hidden; border: 1px solid var(--line); background: #f7f7f7; }
.product-gallery__main img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-gallery__main .product-card__badge { top: 18px; left: 18px; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.product-gallery__thumb { padding: 0; overflow: hidden; border: 2px solid transparent; background: #f7f7f7; cursor: pointer; }
.product-gallery__thumb[aria-pressed="true"] { border-color: var(--yellow); }
.product-gallery__thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-gallery__thumb--placeholder { cursor: default; }
.product-gallery__thumb--placeholder .cg-placeholder { min-height: 0; padding: 8px; gap: 2px; }
.product-gallery__thumb--placeholder .cg-placeholder__icon { display: none; }
.product-gallery__thumb--placeholder .cg-placeholder strong { font-size: .58rem; }
.product-gallery__thumb--placeholder .cg-placeholder small { font-size: .58rem; }

.product-info { padding-top: 6px; }
.product-info h1 { margin-bottom: 16px; font-size: clamp(3rem, 6vw, 5.8rem); }
.product-info__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; color: var(--yellow); font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 3.8rem); letter-spacing: 0.03em; line-height: 1; }
.product-info__compare { color: #8c879d; font-family: var(--font-body); font-size: 1rem; text-decoration: line-through; }
.product-info__tax { margin-bottom: 22px; color: #aaa5bd; font-size: 0.78rem; }
.product-info__description { color: var(--ink-muted); font-size: 1.02rem; }
.product-form { margin-top: 28px; }
.product-form__field { margin-bottom: 20px; }
.product-form label { display: block; margin-bottom: 8px; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.product-form select,
.product-form input[type="number"] { width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 0; background: #100d25; color: var(--white); padding: 12px 14px; }
.product-form input[type="number"] { width: 110px; }
.product-form__actions { display: grid; gap: 12px; }
.product-form__actions .button { width: 100%; }
.shopify-payment-button__button { min-height: 54px !important; border-radius: 0 !important; font-weight: 800 !important; }

.presale-notice { margin: 24px 0; padding: 18px 20px; border-left: 5px solid var(--yellow); background: #20182f; }
.presale-notice strong { display: block; color: var(--yellow); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.presale-notice p { margin: 4px 0 0; color: #ded9e9; font-size: 0.9rem; }

.product-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
.product-benefit { padding: 16px; border: 1px solid var(--line); background: #100d25; }
.product-benefit strong { display: block; color: var(--purple-light); font-family: var(--font-heading); font-size: 1.2rem; letter-spacing: 0.04em; text-transform: uppercase; }
.product-benefit span { color: #bfbacc; font-size: 0.8rem; }

.product-detail-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(38px, 7vw, 96px); align-items: center; }
.product-detail-grid__image img { width: 100%; border: 1px solid var(--line); background: #fff; }
.spec-list { margin: 28px 0; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { color: var(--purple-light); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.spec-row dd { margin: 0; color: var(--white); }
.compatibility-note { padding: 18px 20px; border-left: 5px solid var(--yellow); background: #20182f; color: #ddd8e7; font-size: 0.9rem; }

.icon-feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.icon-feature { padding: 22px; border: 1px solid var(--line); background: var(--navy-soft); }
.icon-feature__mark { color: var(--yellow); font-family: var(--font-heading); font-size: 2.3rem; line-height: 1; }
.icon-feature h3 { margin: 13px 0 8px; font-size: 1.45rem; }
.icon-feature p { margin: 0; color: var(--ink-muted); font-size: 0.88rem; }

.shopify-product-form__error-message-wrapper { margin-bottom: 14px; color: #ff9b9b; }

.page-hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 126px) 0; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 40%, rgba(91, 59, 255, 0.27), transparent 28%), #080718; }
.page-hero::after { content: ""; position: absolute; top: -80px; right: -80px; width: 430px; height: 330px; transform: rotate(-10deg); background: repeating-linear-gradient(126deg, transparent 0 32px, rgba(91, 59, 255, 0.5) 32px 62px, transparent 62px 92px); clip-path: polygon(15% 0, 100% 0, 70% 34%, 97% 33%, 36% 100%, 46% 58%, 0 68%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 840px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 700px; margin-bottom: 0; color: var(--ink-muted); font-size: 1.12rem; }

.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(35px, 7vw, 94px); align-items: center; }
.about-intro__media { position: relative; }
.about-intro__media img { width: 100%; border: 1px solid var(--line); }
.about-intro__media::before { content: ""; position: absolute; inset: -15px 20px 20px -15px; z-index: -1; border: 2px solid var(--purple); }
.about-intro__copy p { color: var(--ink-muted); font-size: 1.06rem; }
.manifesto { padding: clamp(42px, 6vw, 78px); border-left: 7px solid var(--yellow); background: linear-gradient(110deg, #171130, #0d0b1f); }
.manifesto blockquote { max-width: 980px; margin: 0; font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 5rem); letter-spacing: 0.025em; line-height: 1.02; text-transform: uppercase; }

.contact-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(36px, 7vw, 94px); }
.contact-panel { padding: 28px; border: 1px solid var(--line); background: var(--navy-soft); }
.contact-panel + .contact-panel { margin-top: 16px; }
.contact-panel h3 { margin-bottom: 10px; color: var(--purple-light); }
.contact-panel p { margin: 0; color: var(--ink-muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form__full { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 7px; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.form-field input,
.form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: #100d25; color: var(--white); padding: 14px; }
.form-field textarea { min-height: 180px; resize: vertical; }
.form-status { grid-column: 1 / -1; padding: 15px 17px; border-left: 4px solid var(--yellow); background: #20182f; }
.form-errors { color: #ffb2b2; }

.info-page { max-width: 900px; }
.rte { color: var(--ink-muted); }
.rte h2, .rte h3 { margin-top: 1.7em; color: var(--white); }
.rte h2 { font-size: clamp(2rem, 4vw, 3rem); }
.rte h3 { font-size: 1.55rem; }
.rte a { color: var(--yellow); }
.rte strong { color: var(--white); }
.rte ul, .rte ol { padding-left: 1.35rem; }
.rte table { width: 100%; border-collapse: collapse; }
.rte th, .rte td { padding: 12px; border: 1px solid var(--line); text-align: left; }

.policy-notice { margin-bottom: 30px; padding: 16px 18px; border-left: 5px solid var(--yellow); background: #20182f; color: #ddd8e7; font-size: 0.88rem; }

.collection-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.collection-count { color: var(--ink-muted); font-size: 0.85rem; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px; border-bottom: 1px solid var(--line); color: var(--purple-light); font-size: 0.72rem; letter-spacing: 0.12em; text-align: left; text-transform: uppercase; }
.cart-table td { padding: 20px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 18px; }
.cart-product img { width: 90px; height: 90px; object-fit: cover; background: #fff; }
.cart-product a { font-family: var(--font-heading); font-size: 1.35rem; letter-spacing: 0.04em; text-decoration: none; text-transform: uppercase; }
.cart-quantity { width: 80px; border: 1px solid var(--line); background: #100d25; color: var(--white); padding: 9px; }
.cart-remove { color: #aaa5bd; font-size: 0.8rem; }
.cart-summary { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-top: 30px; }
.cart-summary__total { color: var(--yellow); font-family: var(--font-heading); font-size: 2.5rem; }
.cart-summary__actions { display: flex; gap: 12px; }
.empty-state { padding: 80px 25px; border: 1px solid var(--line); background: var(--navy-soft); text-align: center; }
.empty-state p { color: var(--ink-muted); }

@media (max-width: 1050px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; border: 0; background: transparent; color: var(--white); cursor: pointer; }
  .menu-toggle span:not(.visually-hidden) { width: 24px; height: 2px; background: currentColor; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; gap: 0; padding: 16px 20px 24px; border-bottom: 2px solid var(--purple); background: #070616; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 5px; }
  .site-nav a::after { bottom: 8px; right: auto; width: 58px; }
  .site-header__logo { justify-self: center; }
  .site-header__logo img { width: min(250px, 47vw); }
  .guardian-hero__inner { grid-template-columns: 1fr; }
  .guardian-hero__copy { max-width: 800px; padding-top: 15px; }
  .guardian-hero__media { max-width: 760px; margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid:not(.product-grid--four) .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .product-main__grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .page-width { width: min(calc(100% - 28px), var(--page-width)); }
  .announcement-bar { padding-inline: 10px; font-size: 0.62rem; }
  .announcement-bar__bolt { display: none; }
  .site-header__inner { gap: 10px; }
  .guardian-hero { min-height: auto; }
  .guardian-hero__inner { min-height: auto; padding-block: 62px 76px; }
  .guardian-hero__copy { text-align: left; }
  .guardian-hero__actions { flex-direction: column; align-items: stretch; }
  .guardian-hero__actions .button { width: 100%; }
  .presale-chip { top: -10px; right: 5px; padding: 10px 13px; font-size: 0.72rem; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; width: auto; }
  .guardian-hero__media > .cg-placeholder { min-height: 330px; }
  .value-grid { grid-template-columns: 1fr; }
  .story-split { grid-template-columns: 1fr; }
  .story-split__media::after { right: -8px; bottom: -15px; }
  .bundle-banner__inner { grid-template-columns: 1fr; }
  .bundle-banner__price { text-align: left; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .product-benefits { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .icon-feature-row { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form__full { grid-column: auto; }
  .collection-header { align-items: flex-start; flex-direction: column; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { padding: 18px 0; border-bottom: 1px solid var(--line); }
  .cart-table td { padding: 8px 0; border: 0; }
  .cart-summary { align-items: stretch; flex-direction: column; }
  .cart-summary__actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
/* Product page images: preserve original proportions */
.product-gallery__main {
  aspect-ratio: auto !important;
}

.product-gallery__main img {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Product thumbnails: show the complete image without cropping */
.product-gallery__thumb {
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
}

.product-gallery__thumb img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}
/* Compact collection page so products appear above the fold */
@media screen and (min-width: 721px) {
  .template-collection .page-hero {
    padding-top: 42px !important;
    padding-bottom: 46px !important;
  }

  .template-collection .page-hero .eyebrow {
    margin-bottom: 8px;
  }

  .template-collection .page-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(3.5rem, 5vw, 5.5rem);
  }

  .template-collection .page-hero + .section {
    padding-top: 36px !important;
  }

  .template-collection .collection-header {
    margin-bottom: 24px;
  }
}

/* Keep sensible spacing on mobile */
@media screen and (max-width: 720px) {
  .template-collection .page-hero {
    padding: 40px 0 !important;
  }

  .template-collection .page-hero + .section {
    padding-top: 36px !important;
  }

  .template-collection .collection-header {
    margin-bottom: 24px;
  }
}
/* Subtle product carousel arrows */
.product-gallery .product-gallery__main {
  position: relative !important;
}

.product-gallery .product-gallery__arrow {
  position: absolute !important;
  z-index: 10 !important;
  top: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 34px !important;
  height: 46px !important;
  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 20px !important;
  background: rgba(8, 7, 24, 0.32) !important;
  box-shadow: none !important;

  color: #ffffff !important;
  font-size: 19px !important;
  line-height: 1 !important;

  opacity: 0.65;
  cursor: pointer;
  transform: translateY(-50%) !important;
  transition: opacity 0.2s ease, background 0.2s ease !important;
}

.product-gallery .product-gallery__arrow--previous {
  left: 8px !important;
  right: auto !important;
}

.product-gallery .product-gallery__arrow--next {
  right: 8px !important;
  left: auto !important;
}

.product-gallery .product-gallery__arrow:hover,
.product-gallery .product-gallery__arrow:focus-visible {
  background: rgba(8, 7, 24, 0.65) !important;
  opacity: 1;
}

@media screen and (max-width: 720px) {
  .product-gallery .product-gallery__arrow {
    width: 30px !important;
    height: 42px !important;
    font-size: 17px !important;
  }

  .product-gallery .product-gallery__arrow--previous {
    left: 5px !important;
  }

  .product-gallery .product-gallery__arrow--next {
    right: 5px !important;
  }
}
/* Compact only the Contact page */
.template-page:has(.contact-grid) .page-hero {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

.template-page:has(.contact-grid) .page-hero h1 {
  margin-bottom: 10px !important;
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.template-page:has(.contact-grid) .page-hero .eyebrow {
  margin-bottom: 8px !important;
}

.template-page:has(.contact-grid) .page-hero + .section {
  padding-top: 42px !important;
}

/* Mobile spacing */
@media screen and (max-width: 720px) {
  .template-page:has(.contact-grid) .page-hero {
    padding: 32px 0 !important;
  }

  .template-page:has(.contact-grid) .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .template-page:has(.contact-grid) .page-hero + .section {
    padding-top: 34px !important;
  }
}
/* Mobile-only homepage hero image correction */
@media screen and (max-width: 720px) {
  .template-index .guardian-hero__media {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
    margin: 20px auto 0 !important;
  }

  .template-index .guardian-hero__media picture {
    display: block;
    width: 100%;
  }

  .template-index .guardian-hero__media img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}
@media screen and (max-width: 720px) {
  .product-grid:not(.product-grid--four) .product-card:last-child {
    grid-column: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}