/** Shopify CDN: Minification failed

Line 700:0 Expected "}" to go with "{"

**/
/* ================================================================
   product-halo-og1.css
   OG1 configurator styles — matches FS1 exactly, scoped to
   .halo-og1-section to prevent bleed. Adds preorder card styles.
================================================================= */
canvas {
    display: block;
    width: 100%;
    max-width: 80%;
    height: 100% !important;
}

/* ── CSS variables ───────────────────────────────────────────── */
.halo-og1-section {
	--bg:   #f5f5f7;
	--card: #ffffff;
	--text: #1d1d1f;
	--muted:#6e6e73;
	--line: #d2d2d7;
	--dark: #08101d;
	--red:  #ff3b2f;
	--preorder-bg: #f0f4ff;
	--preorder-border: #c7d4f5;
	--preorder-accent: #2c5cdb;

	font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
	background: var(--bg);
	color: var(--text);
}

.halo-og1-section *,
.halo-og1-section *::before,
.halo-og1-section *::after {
	box-sizing: border-box;
}

/* ── Layout ──────────────────────────────────────────────────── */
.halo-og1-section .halo-wrap {
	max-width: 1440px;
	margin: 0 auto;
	padding: 26px 1.5rem 30px;
}

.halo-og1-section .halo-header {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: end;
	margin-bottom: 34px;
}

.halo-og1-section .halo-h1 {
	margin: 0;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 0.95;
	letter-spacing: -0.055em;
	font-weight: 700;
}

.halo-og1-section .halo-price {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
	text-align: right;
}

.halo-og1-section .halo-layout {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 34px;
	align-items: start;
}

/* ── Visual column ───────────────────────────────────────────── */
.halo-og1-section .halo-visual {
	position: sticky;
	top: calc(var(--header-height) + 10px);
  	align-self: flex-start;
}

.halo-og1-section .halo-visual-card {
	background: #fff;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: clip;
	position: relative;
	padding-bottom: 40px;
}

/* ── Slider wrapper ──────────────────────────────────────────── */
.halo-og1-section .halo-slider {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	z-index: 2;
}

/* ── Hero image ──────────────────────────────────────────────── */
.halo-og1-section .halo-img-wrap {
    position: relative;
    width: 100%;
    max-width: 530px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}
.halo-og1-section .halo-main-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    border-radius: 22px;
    transition: opacity 0.22s ease;
}

@media (min-width: 768px) {
  .halo-og1-section .halo-main-img {
    max-height: 420px;
  }
}

.halo-og1-section .halo-img-shimmer {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.55) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	background-size: 200% 100%;
	opacity: 0;
	pointer-events: none;
	border-radius: 22px;
	transition: opacity 0.15s;
}
.halo-og1-section .halo-img-shimmer.active {
	opacity: 1;
	animation: halo-og1-shimmer 0.9s linear infinite;
}
@keyframes halo-og1-shimmer {
	from { background-position:  200% 0; }
	to   { background-position: -200% 0; }
}

.halo-og1-section .halo-img-shimmer.active {
	opacity: 1;
	animation: halo-shimmer 0.9s linear infinite;
}
@keyframes halo-shimmer {
	from { background-position:  200% 0; }
	to   { background-position: -200% 0; }
}
.halo-og1-section .halo-img-shimmer.active {
	opacity: 1;
	animation: halo-shimmer 0.9s linear infinite;
}
@keyframes halo-shimmer {
	from { background-position:  200% 0; }
	to   { background-position: -200% 0; }
}

.halo-og1-section .fitImg img {
    width: 100%;
}

/* ── Arrow buttons ───────────────────────────────────────────── */
.halo-og1-section .halo-arrow {
	position: absolute;
	top: 250px;
	z-index: 5;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1d1d1f;
	box-shadow: 0 2px 8px rgba(0,0,0,0.14);
	transition: background 0.15s, transform 0.15s;
	padding: 0;
}
.halo-og1-section .halo-arrow:hover  { background: #fff; transform: scale(1.08); }
.halo-og1-section .halo-arrow--prev  { left: 38px; }
.halo-og1-section .halo-arrow--next  { right: 38px; }

/* ── Dots ────────────────────────────────────────────────────── */
.halo-og1-section .halo-dots {
	display: flex;
	gap: 7px;
	justify-content: center;
	min-height: 12px;
	margin-top: 10px;
}
.halo-og1-section .halo-config strong,
.halo-og1-section .halo-size-btn {
	color: #1d1d1f;
}
.halo-og1-section .halo-proof-item strong {
	color: #fff;
}
.halo-og1-section .halo-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.18);
	cursor: pointer;
	padding: 0;
	transition: background 0.18s, transform 0.18s;
}
.halo-og1-section .halo-dot.active {
	background: #1d1d1f;
	transform: scale(1.25);
}
.halo-og1-section .halo-dot:hover { background: rgba(0, 0, 0, 0.38); }

/* ── Caption ─────────────────────────────────────────────────── */
.halo-og1-section .halo-caption {
	left: 30px;
	right: 30px;
	bottom: 30px;
	z-index: 3;
	text-align: center;
}
.halo-og1-section .halo-caption strong {
    display: block;
    font-size: 19px;
    margin-bottom: 0;
    line-height: 1.3;
}
.halo-og1-section .halo-caption span {
    color: #000;
    font-size: 18px;
}

/* ── Config column ───────────────────────────────────────────── */
.halo-og1-section .halo-config {
	display: grid;
	gap: 26px;
	padding-bottom: 190px;
}

.halo-og1-section .halo-intro {
	background: var(--card);
	border-radius: 10px;
	padding: 26px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.halo-og1-section .halo-intro h2 {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.025em;
	font-weight: 700;
}
.halo-og1-section .halo-intro .halo-intro-stat {
	margin: 0 0 16px;
	color: #333;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
}
.halo-og1-section .halo-intro .halo-intro-divider {
	border: none;
	border-top: 1px solid var(--line);
	margin: 0 0 14px;
}
.halo-og1-section .halo-intro .halo-intro-footnote {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.55;
}
.halo-og1-section .halo-intro .halo-intro-footnote a {
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ── Step cards ──────────────────────────────────────────────── */
.halo-og1-section .halo-step {
	background: var(--card);
	border-radius: 10px;
	padding: 26px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.halo-og1-section .halo-step-title {
	margin: 0 0 18px;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.025em;
	font-weight: 700;
}
.halo-og1-section .halo-step-title span {
    color: rgb(176, 175, 173);
    font-weight: 600;
}

/* ── OG1-SPECIFIC: Preorder card ─────────────────────────────── */
.halo-og1-section .halo-preorder-card {
  background: var(--preorder-bg);
  border-color: var(--preorder-border);
}
.halo-og1-section .halo-preorder-card .halo-step-title {
  color: var(--preorder-accent);
}
.halo-og1-section .halo-preorder-card .halo-step-title span {
  color: #5a7bd4;
}
.halo-og1-section .halo-preorder-body {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  margin-bottom: 16px;
}
.halo-og1-section .halo-preorder-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.halo-og1-section .halo-preorder-bullets li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  color: #333;
  list-style: none;
}
.halo-og1-section .halo-preorder-bullets li::before {
  content: "✓";
  color: #2d5be3;
  font-weight: 700;
  flex-shrink: 0;
}

.halo-og1-section .halo-preorder-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--preorder-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
}

/* ── Color cards ─────────────────────────────────────────────── */
.halo-og1-section .halo-color-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.halo-og1-section .halo-color-card {
	border: 1.5px solid var(--line);
	border-radius: 18px;
	padding: 18px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	text-align: left;
	font-family: inherit;
}
.halo-og1-section .halo-color-card:hover  { border-color: #86868b; }
.halo-og1-section .halo-color-card.active { border-color: #1d1d1f; box-shadow: 0 0 0 1px #1d1d1f inset; }

.halo-og1-section .halo-swatch {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	margin-bottom: 12px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	display: block;
}
.halo-og1-section .halo-color-card strong { display: block; font-size: 16px; }
.halo-og1-section .halo-color-card span   { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

/* ── Summary / buy box ───────────────────────────────────────── */
.halo-og1-section .halo-summary {
	background: #1d1d1f;
	color: #fff;
	border-radius: 10px;
	padding: 26px;
}
.halo-og1-section .halo-summary h3 {
	margin: 0 0 12px;
	font-size: 24px;
	letter-spacing: -0.025em;
	font-weight: 700;
	color: #fff;
}
.halo-og1-section .halo-summary-line {
	color: #d6d6d8;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
}
.halo-og1-section .halo-price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 20px;
}
.halo-og1-section .halo-variant-price { font-size: 22px; font-weight: 700; }
.halo-og1-section .halo-compare-price {
	font-size: 15px;
	color: #888;
	text-decoration: line-through;
	display: none;
}
.halo-og1-section .halo-compare-price.show { display: block; }

.halo-og1-section .halo-sale-badge {
	font-size: 12px;
	font-weight: 700;
	background: var(--red);
	color: #fff;
	border-radius: 6px;
	padding: 2px 7px;
	display: none;
}
.halo-og1-section .halo-sale-badge.show { display: block; }

.halo-og1-section .halo-unavail {
	font-size: 13px;
	color: #ff6b6b;
	margin-bottom: 10px;
	display: none;
}
.halo-og1-section .halo-unavail.show { display: block; }

.halo-og1-section .halo-cart-btn {
	width: 100%;
	height: 56px;
	border: 0;
	border-radius: 16px;
	background: var(--hc-cta, #ff3b2f);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: opacity 0.15s ease, transform 0.1s ease;
}
.halo-og1-section .halo-cart-btn:active   { transform: scale(0.98); }
.halo-og1-section .halo-cart-btn:disabled { opacity: 0.42; cursor: not-allowed; }
.halo-og1-section .halo-cart-btn.loading  { opacity: 0.65; pointer-events: none; }

.halo-og1-section .halo-buy-now-btn {
	width: 100%;
	height: 50px;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	background: transparent;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	margin-top: 10px;
	transition: border-color 0.15s, background 0.15s;
}
.halo-og1-section .halo-buy-now-btn:hover    { border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.06); }
.halo-og1-section .halo-buy-now-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.halo-og1-section .imgWrap {
    background: #fff;
    padding-bottom: 10px;
    border-radius: 22px;
}

/* ── Proof stats ─────────────────────────────────────────────── */
.halo-og1-section .halo-proof {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.halo-og1-section .halo-proof-item {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 12px;
}
.halo-og1-section .halo-proof-item strong {
	display: block;
	font-size: 18px;
	line-height: 1;
}
.halo-og1-section .halo-proof-item span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

/* Graph image */
.halo-og1-section .halo-graph-picture {
  display: block;
  width: 100%;
  margin-top: 0px;
}
.halo-og1-section .halo-graph-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* ── Graph title ─────────────────────────────────────────────── */
.halo-og1-section .halo-graph-title {
  text-align: center;
  padding: 4px 0 8px 0;
}
.halo-og1-section .halo-graph-title span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* ── Graph right panel ───────────────────────────────────────── */
.halo-og1-section .halo-graph-right {
  display: block;
  background: var(--card);
  border-radius: 10px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
}

@media (max-width: 767px) {
  .halo-og1-section .halo-graph-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .halo-og1-section .halo-visual-mobile .halo-caption:last-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 4px;
    padding: 24px 20px 0px;
    text-align: left;
  }
  .halo-og1-section .halo-visual-mobile .halo-caption:last-child strong {
    font-size: 23px;
    letter-spacing: -0.025em;
  }
}

@media (max-width: 1200px) {
	.halo-og1-section .halo-hero-heading {
    font-size: 55px;
	}
}

/* ── Responsive: 900px ───────────────────────────────────────── */
@media (max-width: 900px) {
	.halo-og1-section .halo-header { display: block; }
	.halo-og1-section .halo-price  { text-align: left; margin-top: 14px; }
	.halo-og1-section .halo-layout {
		display: flex;
		flex-direction: column-reverse;
	}
	.halo-og1-section .halo-config { padding-bottom: 0; }
	.halo-og1-section .halo-caption strong { font-size: 18px; line-height: 0.9; }
  	.halo-og1-section .halo-caption span { font-size: 16px; }
  	.halo-og1-section .imgWrap { height: 100%; }
  	.halo-og1-section .halo-visual      { position: static; }
  	.halo-og1-section .halo-visual-card { min-height: 520px; }
  	.halo-og1-section .halo-color-options { grid-template-columns: 1fr 1fr; }
  	.halo-og1-section .halo-main-img    { height: 67%; }
}

/* ── Responsive: 560px ───────────────────────────────────────── */
@media (max-width: 560px) {
	.halo-og1-section .halo-wrap { padding: 26px 1.5rem 26px; }
	.halo-og1-section .halo-step,
	.halo-og1-section .halo-intro,
	.halo-og1-section .halo-summary { padding: 21px; border-radius: 10px; width: 100%; }
	.halo-og1-section .halo-proof   { grid-template-columns: 1fr; }
	.halo-og1-section .halo-img-wrap { width: 92%; }
	.halo-og1-section .halo-arrow   { width: 30px; height: 30px; top: 150px; }
	.halo-og1-section .halo-visual-card { padding-bottom: 26px; }
}
/* ── Mobile slider controls row ─────────────────────────────── */
@media (max-width: 767px) {
  .halo-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px 0;
  }

  .halo-arrow-pill {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f0f0f0;
    border-radius: 999px;
    overflow: hidden;
  }

  .halo-arrow-pill .halo-arrow {
    position: static;
    transform: none;
    top: auto;
    width: 36px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a1a;
  }

  .halo-arrow-pill .halo-arrow--prev {
    border-right: 1px solid #ddd;
  }
}
@media (max-width: 767px) {@media (max-width: 767px) {
  .halo-og1-section .halo-img-wrap {
    min-height: 340px;
    display: flex;
    align-items: flex-end;
  }

  .halo-og1-section .halo-img-wrap .imgWrap {
    width: 100%;
  }

  .halo-og1-section .halo-img-wrap .imgWrap .halo-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .halo-og1-section .halo-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px 0;
	width: 80%;
	margin: 0 auto;
  }

  .halo-og1-section .halo-slider-controls .halo-dots {
    display: flex !important;
    gap: 12px;
    flex: 1;
    justify-content: center;
  }

.halo-og1-section .halo-slider-controls .halo-arrow--prev,
.halo-og1-section .halo-slider-controls .halo-arrow--next {
	display: none !important;
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 36px;
  height: 36px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
}
}
