:root {
  --ink: #07090f;
  --ink-soft: #0d111c;
  --paper: #f4f5f7;
  --white: #ffffff;
  --muted: #9ca5b5;
  --line: rgba(255, 255, 255, 0.13);
  --blue: #78d7ff;
  --blue-strong: #38bdf8;
  --lavender: #a6a7ff;
  --lime: #dfff57;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 18px;
  background: var(--lime);
  color: #0a0b0f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.announcementDot { font-size: 8px; }

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brandMark { color: var(--blue); font-size: 20px; }

.desktopNav { display: flex; align-items: center; gap: 34px; }
.desktopNav a { color: #c7ceda; font-size: 13px; font-weight: 700; }
.desktopNav a:hover { color: var(--white); }

.cartButton {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cartButton span {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 4vw 92px;
  background:
    radial-gradient(circle at 72% 0%, rgba(77, 112, 255, 0.16), transparent 38%),
    radial-gradient(circle at 13% 24%, rgba(88, 207, 255, 0.1), transparent 34%),
    var(--ink);
}

.heroGlow {
  position: absolute;
  width: 430px;
  height: 430px;
  left: 11%;
  top: 210px;
  border-radius: 50%;
  background: rgba(75, 154, 255, 0.12);
  filter: blur(90px);
  pointer-events: none;
}

.heroIntro { max-width: 1240px; margin: 0 auto 62px; position: relative; }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 0.19em; }

.heroIntro h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 106px);
  line-height: 0.9;
  letter-spacing: -0.067em;
  font-weight: 800;
}

.heroLead {
  max-width: 590px;
  margin: 32px 0 30px;
  color: #b7c0cf;
  font-size: 19px;
  line-height: 1.58;
}

.heroProof { display: flex; flex-wrap: wrap; gap: 16px 26px; }
.heroProof span { color: #9fa9b8; font-size: 12px; letter-spacing: 0.04em; }
.heroProof b { color: var(--white); margin-right: 6px; }

.productLayout {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 46px;
  align-items: start;
}

.galleryColumn { min-width: 0; }

.mainImage {
  position: relative;
  aspect-ratio: 1 / 0.9;
  overflow: hidden;
  border-radius: 22px;
  background: #f1f1f4;
}

.mainImage img { width: 100%; height: 100%; object-fit: cover; }
.mainImage:not(.mainImageDark) img { object-fit: contain; padding: 4%; }
.mainImageDark { background: #050608; }

.imagePill {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.74);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.imageArrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(7, 9, 15, 0.58);
  cursor: pointer;
  transform: translateY(-50%);
}
.imageArrowLeft { left: 18px; }
.imageArrowRight { right: 18px; }
.imageArrow:hover { background: var(--white); color: var(--ink); }

.thumbnailRow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.thumbnail { aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid transparent; border-radius: 12px; background: #151923; cursor: pointer; opacity: .62; }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail:first-child img, .thumbnail:last-child img { object-fit: contain; background: #f0f0f2; }
.activeThumbnail { border-color: var(--blue); opacity: 1; }

.productCard {
  position: sticky;
  top: 96px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(16, 20, 31, 0.86);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.badgeRow, .priceRow, .choiceLabel, .buyRow, .drawerHeader, .drawerQuantity, .cartTotals p, .checkoutSummary { display: flex; align-items: center; justify-content: space-between; }
.bestSeller { padding: 7px 10px; border-radius: 4px; background: var(--lime); color: #0b0d12; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.rating { color: #ffdb6e; font-size: 12px; letter-spacing: .05em; }
.rating small { margin-left: 7px; color: #c9d0dc; font-size: 11px; }

.productCard h2 { margin: 22px 0 12px; font-size: clamp(30px, 3vw, 45px); line-height: 1; letter-spacing: -.045em; }
.productSubhead { margin: 0; color: #aeb7c6; font-size: 14px; line-height: 1.55; }
.priceRow { justify-content: flex-start; gap: 13px; margin-top: 25px; }
.priceRow strong { font-size: 29px; }
.priceRow del { color: #737d8d; }
.priceRow > span { padding: 5px 8px; border-radius: 4px; background: rgba(120,215,255,.12); color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.payNote { color: #737d8d; font-size: 10px; }

.choiceLabel { margin: 25px 0 11px; font-size: 12px; font-weight: 800; }
.choiceLabel span:last-child { color: #9da7b8; font-weight: 500; }
.effectChoiceGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.effectOption { position: relative; min-height: 92px; display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 8px; padding: 13px; text-align: left; border: 1px solid var(--line); border-radius: 10px; background: #0b0e16; color: var(--white); cursor: pointer; }
.effectOption > span { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; align-self: center; border: 1px solid #354154; border-radius: 50%; color: var(--blue); font-size: 9px; font-weight: 900; }
.effectOption strong { align-self: end; font-size: 12px; line-height: 1.2; }
.effectOption small { align-self: start; margin-top: 4px; color: #788293; font-size: 9px; line-height: 1.25; }
.effectOption:hover { border-color: #65758b; }
.selectedEffect, .selectedSecondEffect { border-color: var(--blue); background: rgba(120,215,255,.07); box-shadow: 0 0 0 1px var(--blue) inset; }
.selectedEffect::after, .selectedSecondEffect::after { content: "\2713"; position: absolute; right: 9px; top: 8px; color: var(--blue); font-size: 10px; }
.secondEffectChoice { margin-top: 2px; }
.secondEffectChoice[hidden] { display: none; }
.bundleGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.bundleOption { position: relative; padding: 15px; text-align: left; border: 1px solid var(--line); border-radius: 10px; background: #0b0e16; cursor: pointer; }
.bundleOption span { display: block; margin-bottom: 10px; color: #acb5c2; font-size: 11px; font-weight: 700; }
.bundleOption strong { display: block; font-size: 19px; }
.bundleOption small { display: block; margin-top: 5px; color: #788293; font-size: 9px; }
.selectedBundle { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue) inset; }
.selectedBundle::after { content: "✓"; position: absolute; right: 12px; top: 12px; color: var(--blue); font-size: 11px; }

.colorLabel { margin-top: 20px; }
.colorSwatch { width: 37px; height: 37px; padding: 4px; border: 1px solid var(--white); border-radius: 50%; }
.colorSwatch span { display: block; width: 100%; height: 100%; border-radius: inherit; background: #15171d; }

.buyRow { gap: 9px; margin-top: 24px; }
.quantityControl { flex: 0 0 108px; height: 50px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.quantityControl button { width: 35px; height: 100%; border: 0; background: transparent; cursor: pointer; }
.quantityControl span { min-width: 20px; text-align: center; font-size: 13px; font-weight: 800; }
.addToCart, .buyNow, .checkoutButton, .finalCta button, .checkoutModal > button:last-child {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #061019;
  font-weight: 900;
  cursor: pointer;
}
.addToCart { height: 50px; flex: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; }
.addToCart:hover, .finalCta button:hover { background: #a5e6ff; }
.buyNow { width: 100%; height: 48px; margin-top: 9px; background: transparent; color: var(--white); border: 1px solid #657080; }
.buyNow:hover { border-color: var(--white); }

.shippingNotes { margin-top: 21px; padding-top: 17px; border-top: 1px solid var(--line); }
.shippingNotes p { margin: 8px 0; color: #8f99aa; font-size: 10px; }
.shippingNotes p span { color: var(--lime); margin-right: 7px; }
.shippingNotes b { color: #dce2ec; }

.marquee { min-height: 70px; display: flex; align-items: center; justify-content: space-around; gap: 20px; overflow: hidden; padding: 15px 4vw; background: var(--white); color: var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
.marquee i { color: #7890a4; font-style: normal; }

.featureSection, .effectsSection, .specSection, .faqSection { max-width: 1240px; margin: 0 auto; padding: 130px 4vw; }
.sectionHeading { max-width: 650px; }
.sectionHeading h2, .cinemaCopy h2, .anywhereCopy h2, .specSection h2, .finalCta h2 { margin: 0; font-size: clamp(45px, 6vw, 80px); line-height: .96; letter-spacing: -.058em; }
.sectionHeading > p:last-child { max-width: 520px; margin: 25px 0 0; color: #969faf; line-height: 1.65; }

.featureGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 62px; }
.featureGrid article { min-height: 280px; padding: 26px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(145deg, #10141f, #090b12); }
.featureGrid article > span { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid #344050; border-radius: 50%; color: var(--blue); font-size: 14px; font-weight: 900; }
.featureGrid h3 { margin: 72px 0 12px; font-size: 18px; }
.featureGrid p { margin: 0; color: #8993a3; font-size: 12px; line-height: 1.65; }

.cinemaSection { position: relative; min-height: 760px; overflow: hidden; display: flex; align-items: flex-end; padding: 7vw; }
.cinemaSection > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cinemaOverlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,5,9,.92) 0%, rgba(3,5,9,.48) 48%, rgba(3,5,9,.08)), linear-gradient(0deg, rgba(3,5,9,.7), transparent 55%); }
.cinemaCopy { position: relative; z-index: 1; max-width: 640px; }
.cinemaCopy p:not(.eyebrow) { max-width: 520px; margin: 28px 0; color: #bcc6d3; line-height: 1.7; }
.cinemaCopy a { display: inline-flex; align-items: center; gap: 28px; padding-bottom: 8px; border-bottom: 1px solid var(--white); font-size: 13px; font-weight: 900; }

.centeredHeading { margin: 0 auto; text-align: center; }
.effectsGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 64px; }
.effectCard { position: relative; min-height: 500px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 35px; border-radius: 14px; background-color: #090c12; background-size: cover; background-position: center; }
.effectCard::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,4,8,.94), transparent 65%); }
.effectCard span, .effectCard h3, .effectCard p { position: relative; z-index: 1; }
.effectCard span { position: absolute; top: 28px; right: 28px; color: var(--blue); font-size: 11px; font-weight: 900; }
.effectCard h3 { margin: 0; font-size: 36px; letter-spacing: -.04em; }
.effectCard p { margin: 8px 0 0; color: #a9b2c1; }
.effectSaturn { background-image: url('/product/car-saturn.jpg'); }
.effectGalaxy { background-image: url('/product/car-galaxy.jpg'); background-position: 60% center; }
.effectStars { background-image: url('/product/home-saturn.jpg'); background-position: 65% 20%; }
.effectBlackHole { background-image: radial-gradient(circle at 50% 35%, #020307 0 10%, #f0f4ff 11%, #7a91ad 12%, rgba(0,0,0,0) 15%), radial-gradient(circle, rgba(255,255,255,.9) 1px, transparent 1px); background-size: auto, 18px 18px; }

.anywhereSection { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 720px; background: var(--paper); color: var(--ink); }
.anywhereImage { min-height: 630px; }
.anywhereImage img { width: 100%; height: 100%; object-fit: cover; }
.anywhereCopy { display: flex; flex-direction: column; justify-content: center; padding: 8vw 6vw; }
.anywhereCopy .eyebrow { color: #246985; }
.anywhereCopy > p:not(.eyebrow) { margin: 25px 0 35px; color: #606978; line-height: 1.6; }
.anywhereCopy ul { margin: 0; padding: 0; list-style: none; }
.anywhereCopy li { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid #ccd1d8; font-weight: 800; }
.anywhereCopy li span { color: #778190; font-size: 11px; }

.specSection { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.specTable { margin: 0; border-top: 1px solid var(--line); }
.specTable div { display: grid; grid-template-columns: 1fr 1.25fr; gap: 20px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.specTable dt { color: #828c9d; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.specTable dd { margin: 0; font-size: 13px; font-weight: 800; }

.quoteSection { padding: 120px 6vw; text-align: center; background: #101620; }
.quoteStars { color: #ffdb6e; letter-spacing: .18em; }
.quoteSection blockquote { max-width: 930px; margin: 28px auto 24px; font-size: clamp(34px, 4.7vw, 68px); line-height: 1.08; letter-spacing: -.045em; font-weight: 700; }
.quoteSection p { color: #727e90; font-size: 10px; letter-spacing: .16em; }

.faqSection { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faqList { border-top: 1px solid var(--line); }
.faqItem { border-bottom: 1px solid var(--line); }
.faqItem button { width: 100%; display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 800; }
.faqItem button i { color: var(--blue); font-size: 20px; font-style: normal; font-weight: 400; }
.faqAnswer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faqAnswer p { margin: 0 50px 24px 0; color: #8d97a8; font-size: 13px; line-height: 1.7; }
.openFaq .faqAnswer { max-height: 180px; }

.finalCta { position: relative; overflow: hidden; min-height: 570px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 5vw; text-align: center; background: radial-gradient(circle at center, #193456 0, #0d1524 37%, #07090f 72%); }
.finalOrb { position: absolute; width: 560px; height: 130px; top: 50%; left: 50%; border: 2px solid rgba(166,167,255,.22); border-radius: 50%; transform: translate(-50%, -50%) rotate(-8deg); box-shadow: 0 0 80px rgba(105,183,255,.22); }
.finalCta > *:not(.finalOrb) { position: relative; z-index: 1; }
.finalCta button { margin-top: 34px; padding: 17px 24px; }

footer { padding: 75px 5vw 28px; background: #040509; }
.footerBrand { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 62px; border-bottom: 1px solid var(--line); }
.footerBrand p { margin: 0; color: #7d8797; }
.footerLinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; padding: 55px 0; }
.footerLinks div { display: flex; flex-direction: column; gap: 13px; }
.footerLinks h3 { margin: 0 0 6px; color: #707b8b; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.footerLinks a, .footerLinks span { font-size: 12px; color: #b4bdc9; }
.footerLinks a:hover { color: var(--white); }
.footerBottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid var(--line); color: #606979; font-size: 10px; }

.mobileBuyBar { display: none; }

.modalBackdrop { position: fixed; inset: 0; z-index: 80; display: flex; justify-content: flex-end; background: rgba(0,0,0,.62); backdrop-filter: blur(4px); }
.cartDrawer { width: min(450px, 100%); height: 100%; overflow-y: auto; padding: 28px; background: #0d111b; box-shadow: -30px 0 80px rgba(0,0,0,.45); animation: slideIn .28s ease; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawerHeader { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.drawerHeader h2 { margin: 0; font-size: 25px; }
.drawerHeader button, .modalClose { border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.freeShip { height: 4px; margin-top: 23px; overflow: hidden; border-radius: 5px; background: #282e39; }
.freeShip span { display: block; height: 100%; background: var(--lime); transition: width .3s ease; }
.freeShipText { color: #9fa9b8; font-size: 11px; }
.cartProduct { display: grid; grid-template-columns: 105px 1fr; gap: 17px; margin-top: 30px; }
.cartProduct img { width: 105px; height: 105px; object-fit: contain; border-radius: 10px; background: #f1f1f2; }
.cartProduct h3 { margin: 3px 0 8px; font-size: 14px; }
.cartProduct p { color: #7f8999; font-size: 10px; }
.cartProduct strong { font-size: 14px; }
.drawerQuantity { margin: 28px 0; padding: 20px 0; border-block: 1px solid var(--line); font-size: 12px; }
.drawerQuantity .quantityControl { height: 38px; }
.cartTotals { margin-top: auto; }
.cartTotals p { font-size: 14px; }
.cartTotals p strong { font-size: 20px; }
.cartTotals small { color: #717b8a; font-size: 9px; }
.checkoutButton { width: 100%; height: 54px; margin-top: 23px; }
.continueButton { width: 100%; padding: 15px; border: 0; background: transparent; color: #a9b3c2; font-size: 11px; cursor: pointer; }
.paymentMarks { display: flex; justify-content: center; gap: 6px; }
.paymentMarks span { padding: 5px 7px; border: 1px solid #343b48; border-radius: 4px; color: #8490a0; font-size: 8px; font-weight: 900; }

.checkoutBackdrop { align-items: center; justify-content: center; padding: 20px; }
.checkoutModal { position: relative; width: min(520px, 100%); padding: 52px; border: 1px solid var(--line); border-radius: 18px; background: #10151f; text-align: center; }
.modalClose { position: absolute; right: 17px; top: 12px; }
.checkoutIcon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 26px; border: 1px solid #405166; border-radius: 50%; color: var(--blue); font-size: 24px; }
.checkoutModal h2 { margin: 0 0 15px; font-size: 34px; letter-spacing: -.04em; }
.checkoutModal > p:not(.eyebrow) { color: #97a1b1; font-size: 13px; line-height: 1.65; }
.checkoutSummary { margin: 28px 0 20px; padding: 18px 0; border-block: 1px solid var(--line); font-size: 13px; }
.checkoutModal > button:last-child { width: 100%; height: 52px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 100; max-width: calc(100% - 32px); padding: 13px 18px; border-radius: 7px; background: var(--lime); color: #0a0d12; font-size: 11px; font-weight: 800; transform: translateX(-50%); box-shadow: 0 18px 45px rgba(0,0,0,.35); }

@media (max-width: 980px) {
  .productLayout, .anywhereSection, .specSection, .faqSection { grid-template-columns: 1fr; }
  .productCard { position: relative; top: 0; }
  .featureGrid { grid-template-columns: repeat(2, 1fr); }
  .anywhereCopy { padding: 85px 7vw; }
  .specSection, .faqSection { gap: 60px; }
  .cinemaSection { min-height: 680px; }
}

@media (max-width: 720px) {
  .announcement { font-size: 9px; gap: 9px; }
  .siteHeader { height: 64px; padding-inline: 20px; }
  .desktopNav { display: none; }
  .brand { font-size: 18px; }
  .hero { padding: 56px 16px 80px; }
  .heroIntro { margin-bottom: 42px; }
  .heroIntro h1 { font-size: clamp(48px, 15vw, 70px); }
  .heroLead { font-size: 16px; }
  .heroProof { gap: 12px 20px; }
  .productLayout { gap: 25px; }
  .mainImage { border-radius: 14px; aspect-ratio: 1; }
  .imageArrow { width: 36px; height: 36px; }
  .thumbnailRow { gap: 6px; }
  .thumbnail { border-radius: 7px; }
  .productCard { padding: 23px; border-radius: 14px; }
  .productCard h2 { font-size: 33px; }
  .bundleGrid { grid-template-columns: 1fr; }
  .marquee { justify-content: flex-start; overflow-x: hidden; }
  .featureSection, .effectsSection, .specSection, .faqSection { padding: 90px 20px; }
  .sectionHeading h2, .cinemaCopy h2, .anywhereCopy h2, .specSection h2, .finalCta h2 { font-size: 48px; }
  .featureGrid { grid-template-columns: 1fr; margin-top: 40px; }
  .featureGrid article { min-height: 220px; }
  .featureGrid h3 { margin-top: 50px; }
  .cinemaSection { min-height: 680px; padding: 70px 24px; background: #080b10; }
  .cinemaSection > img { object-position: 58% center; }
  .cinemaOverlay { background: linear-gradient(0deg, rgba(3,5,9,.96) 0%, rgba(3,5,9,.35) 78%); }
  .effectsGrid { grid-template-columns: 1fr; }
  .effectCard { min-height: 430px; }
  .anywhereImage { min-height: 440px; }
  .anywhereCopy { padding: 80px 22px; }
  .quoteSection { padding: 90px 22px; }
  .quoteSection blockquote { font-size: 38px; }
  .footerBrand, .footerBottom { flex-direction: column; }
  .footerLinks { grid-template-columns: 1fr 1fr; }
  footer { padding-bottom: 95px; }
  .mobileBuyBar { position: fixed; z-index: 50; left: 10px; right: 10px; bottom: 10px; height: 65px; display: flex; align-items: center; justify-content: space-between; padding: 9px 10px 9px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(12,16,25,.94); backdrop-filter: blur(16px); box-shadow: 0 15px 50px rgba(0,0,0,.45); }
  .mobileBuyBar div { display: flex; flex-direction: column; gap: 3px; }
  .mobileBuyBar small { color: #8e98a8; font-size: 9px; }
  .mobileBuyBar strong { font-size: 14px; }
  .mobileBuyBar button { height: 45px; padding: 0 19px; border: 0; border-radius: 8px; background: var(--blue); color: #081019; font-size: 12px; font-weight: 900; }
  .checkoutModal { padding: 45px 23px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* WordPress and live WooCommerce integration */
.admin-bar .siteHeader { top: 32px; }
.fxgds-main { overflow: hidden; }
.modalBackdrop[hidden], .toast[hidden] { display: none !important; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.fxgds-price .woocommerce-Price-amount { color: inherit; }
.fxgds-price .woocommerce-Price-currencySymbol { font-size: .68em; vertical-align: .18em; }
.bundleOption { color: var(--white); }
.addToCart.is-loading, .buyNow.is-loading, .mobileBuyBar button.is-loading { opacity: .65; cursor: wait; }
.addToCart[disabled], .buyNow[disabled] { cursor: not-allowed; }
.cartButton { color: var(--white); }
.cartButton.fxgds-cart-link { text-decoration: none; }
.cartDrawer .woocommerce-mini-cart__empty-message { color: #9fa9b8; text-align: center; padding: 60px 10px; }
.fxgds-mini-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fxgds-mini-item img { width: 84px; height: 84px; object-fit: contain; border-radius: 9px; background: #f1f1f2; }
.fxgds-mini-item h3 { margin: 0 0 7px; font-size: 13px; line-height: 1.35; }
.fxgds-mini-item p { margin: 0; color: #7f8999; font-size: 10px; }
.fxgds-mini-item strong { font-size: 13px; }
.fxgds-mini-remove { align-self: start; color: #7f8999; font-size: 18px; line-height: 1; }
.fxgds-mini-actions { display: grid; grid-template-columns: 1fr 1.3fr; gap: 9px; margin-top: 22px; }
.fxgds-mini-actions a { display: grid; place-items: center; min-height: 50px; border: 1px solid #657080; border-radius: 8px; font-size: 11px; font-weight: 900; }
.fxgds-mini-actions .checkoutButton { margin: 0; border-color: var(--blue); background: var(--blue); color: #061019; }
.fxgds-empty-cart-link { display: inline-flex; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid var(--blue); color: var(--blue); font-size: 12px; font-weight: 800; }
.fxgds-free-ship-message { margin: 14px 0 0; color: #9fa9b8; font-size: 11px; }
.fxgds-page-shell { min-height: 64vh; padding: 80px 5vw 110px; background: var(--paper); color: #111722; }
.fxgds-content { width: min(1180px, 100%); margin: 0 auto; }
.fxgds-content h1 { margin: 0 0 36px; font-size: clamp(42px, 6vw, 76px); letter-spacing: -.055em; }
.fxgds-content h2, .fxgds-content h3 { letter-spacing: -.025em; }
.fxgds-content a { color: #186d94; }
.fxgds-content img { height: auto; }
.fxgds-content input, .fxgds-content textarea, .fxgds-content select { max-width: 100%; padding: 12px; border: 1px solid #c7cdd6; border-radius: 7px; background: #fff; color: #111722; }
.fxgds-policy { width: min(820px, 100%); color: #303846; font-size: 16px; line-height: 1.78; }
.fxgds-policy .policy-lede { margin: -14px 0 10px; color: #111722; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.fxgds-policy .policy-meta { margin: 0 0 44px; color: #747f8e; font-size: 13px; }
.fxgds-policy h2 { margin: 46px 0 13px; color: #111722; font-size: clamp(24px, 3vw, 32px); line-height: 1.2; }
.fxgds-policy h3 { margin-top: 32px; color: #111722; }
.fxgds-policy p { margin: 0 0 18px; }
.fxgds-policy ul, .fxgds-policy ol { margin: 0 0 22px; padding-left: 24px; }
.fxgds-policy li { margin: 8px 0; padding-left: 4px; }
.fxgds-policy strong { color: #111722; }
.fxgds-policy a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.fxgds-commerce-shell .woocommerce-notices-wrapper { margin-bottom: 22px; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { padding: 16px 18px; border: 0; border-left: 4px solid #38bdf8; border-radius: 7px; background: #fff; color: #111722; list-style: none; }
.woocommerce-error { border-left-color: #d95757; }
.woocommerce .button, .woocommerce button.button, .woocommerce a.button, .wc-block-components-button { padding: 14px 18px !important; border: 0 !important; border-radius: 8px !important; background: #111722 !important; color: #fff !important; font-weight: 800 !important; }
.woocommerce .button.alt, .woocommerce button.button.alt, .woocommerce a.button.alt, .wc-block-components-checkout-place-order-button { background: #177aa7 !important; }
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; background: #fff; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 15px; border: 1px solid #dfe3e8; text-align: left; }
.woocommerce-cart-form img { width: 90px; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: 50px; }
.woocommerce div.product .woocommerce-product-gallery, .woocommerce div.product .summary { width: auto !important; float: none !important; }
.woocommerce div.product .price { color: #177aa7; font-size: 28px; font-weight: 800; }
.woocommerce div.product form.cart { display: flex; gap: 10px; }
.woocommerce div.product form.cart .qty { width: 80px; }
.woocommerce div.product .woocommerce-tabs, .woocommerce div.product .related { grid-column: 1 / -1; }
.woocommerce .products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 0; list-style: none; }
.woocommerce .products .product { padding: 18px; border-radius: 12px; background: #fff; }
.woocommerce .products .product img { width: 100%; }
.wc-block-cart, .wc-block-checkout { color: #111722; }
.wc-block-components-sidebar-layout { gap: 35px; }
.wc-block-components-order-summary, .wc-block-components-totals-wrapper, .wc-block-components-checkout-step { border-color: #d7dce3 !important; }
.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout { font-size: 15px; }
.fxgds-no-product { max-width: 720px; margin: 80px auto; padding: 40px; border: 1px solid var(--line); border-radius: 14px; text-align: center; }

@media (max-width: 782px) {
  .admin-bar .siteHeader { top: 46px; }
}

@media (max-width: 720px) {
  .fxgds-mini-item { grid-template-columns: 72px 1fr auto; }
  .fxgds-mini-item img { width: 72px; height: 72px; }
  .fxgds-page-shell { padding: 60px 20px 95px; }
  .woocommerce div.product { grid-template-columns: 1fr; }
  .woocommerce .products { grid-template-columns: 1fr; }
  .fxgds-mini-actions { grid-template-columns: 1fr; }
}
