/** Shopify CDN: Minification failed

Line 120:46 Expected identifier but found whitespace
Line 802:0 Unexpected "}"

**/
:root {
  --sv-bg: #05070a;
  --sv-bg-soft: #0e1625;
  --sv-card-bg: #0b111c;
  --sv-blue: #2f7fff;
  --sv-blue-light: #59a5ff;
  --sv-text: #ffffff;
  --sv-muted: #aeb8c7;
  --sv-border: rgba(255,255,255,.12);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sv-bg);
}

.shopify-section {
  margin: 0 !important;
  padding: 0 !important;
}

.sv-home {
  background: var(--sv-bg);
  color: var(--sv-text);
  font-family: Inter, Arial, sans-serif;
  overflow: hidden;
}

/* HEADER */

.sv-custom-header {
  width: 100%;
  min-height: 84px;
  padding: 14px 5vw;
  background: rgba(5,7,10,.95);
  border-bottom: 1px solid rgba(47,127,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 9999;
}

.sv-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  z-index: 9999;
}

.sv-header-logo img {
  max-height: 68px;
  width: auto;
  display: block;
}

.sv-header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  z-index: 9999;
}

.sv-header-nav a,
.sv-header-icons a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  pointer-events: auto;
}

.sv-header-nav a:hover,
.sv-header-icons a:hover {
  color: var(--sv-blue-light);
}

.sv-header-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  z-index: 9999;
}

/* HERO */

.sv-hero-wrapper{
    position:relative;
    min-height:85vh;
    overflow:hidden;
}

.sv-hero-full-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* HERO BUTTONS */

/* ===== HERO BUTTONS ===== */

./* ===========================================
   HERO BUTTONS
=========================================== */

.sv-hero-wrapper{
    position:relative;
}
.sv-real-hero-buttons {
    position: absolute;
    left: 60px;
    bottom: 200px;
    display: flex;
    gap: 18px;
    z-index: 10;
}

.sv-real-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:215px;
    height:46px;

    padding:0 22px;

    border-radius:4px;

    font-family:inherit;
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
    text-decoration:none;

    transition:.25s ease;
}

.sv-real-btn-primary{

    background:#156BE8;
    color:#fff;
    border:none;
}

.sv-real-btn-secondary{

    background:rgba(0,0,0,.28);
    color:#fff;

    border:1px solid rgba(255,255,255,.55);
}

.sv-real-btn:hover{

    transform:translateY(-2px);
    filter:brightness(1.05);
}

/* Mobile */

@media screen and (max-width:900px){

.sv-real-hero-buttons{

    left:10px;
    bottom:28px;

    flex-direction:column;
    align-items:flex-start;

    gap:12px;
}

.sv-real-btn{

    width:220px;
    height:44px;

    font-size:12px;
}

}

/* SECTIONS */

.sv-section {
  padding: 56px 6vw !important;
}

.sv-section-header {
  max-width: 900px;
  margin-bottom: 28px;
}

.sv-section-eyebrow {
  color: var(--sv-blue-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.sv-section-title,
.sv-section h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
}

/* COLLECTIONS */

.sv-collections {
  background: var(--sv-bg);
}

.sv-collections-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sv-lux-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.sv-lux-card {
  min-height: 320px;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(to top, rgba(5,7,10,.92), rgba(5,7,10,.18)),
    var(--collection-image, linear-gradient(135deg,#0b111c,#132844));
  background-size: cover;
  background-position: center;
  transition: .3s ease;
}

.sv-lux-card:nth-child(1),
.sv-lux-card:nth-child(2),
.sv-lux-card-large {
  grid-column: span 3;
  min-height: 430px;
}

.sv-lux-card:hover {
  transform: translateY(-6px);
  border-color: var(--sv-blue);
  box-shadow: 0 0 38px rgba(47,127,255,.18);
}

.sv-lux-card-content {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.sv-lux-card span {
  color: var(--sv-blue-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 800;
}

.sv-lux-card h3 {
  margin: 10px 0;
  color: #fff;
  font-size: 28px;
}

.sv-lux-card p {
  color: #c6cfdb;
  font-size: 14px;
  line-height: 1.5;
}

.sv-lux-link {
  margin-top: 16px;
  color: var(--sv-blue-light);
  font-size: 14px;
  font-weight: 900;
}

/* BRANDS */

.sv-brands-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sv-logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sv-logo-card {
  min-height: 100px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(135deg,#0b111c,#07101a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 16px;
  transition: .25s ease;
}

.sv-logo-card img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.sv-logo-card:hover {
  color: var(--sv-blue-light);
  border-color: var(--sv-blue);
  box-shadow: 0 0 30px rgba(47,127,255,.18);
  transform: translateY(-3px);
}

/* WHY US */

.sv-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sv-why-card {
  background: var(--sv-card-bg);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 28px;
  transition: .3s;
}

.sv-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--sv-blue);
  box-shadow: 0 0 34px rgba(47,127,255,.14);
}

.sv-why-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.sv-why-card h3 {
  color: #fff;
  font-size: 19px;
  margin: 0 0 10px;
}

.sv-why-card p {
  color: #c6cfdb;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* REVIEWS */

.sv-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sv-review-card {
  background: var(--sv-card-bg);
  border: 1px solid var(--sv-border);
  border-radius: 22px;
  padding: 28px;
}

.sv-review-stars {
  color: var(--sv-blue-light);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.sv-review-card p {
  color: #d5dce8;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.sv-review-card h3 {
  color: #fff;
  margin: 20px 0 4px;
  font-size: 17px;
}

.sv-review-card span {
  color: var(--sv-muted);
  font-size: 13px;
}

/* FINANCING */

.sv-finance {
  margin: 22px 6vw;
  padding: 38px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(47,127,255,.28), transparent 38%),
    linear-gradient(135deg, #0b111c, #07101f);
  border: 1px solid rgba(47,127,255,.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sv-finance h2 {
  color: #fff;
  font-size: clamp(24px, 2.7vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 800;
}

.sv-finance p {
  color: #c6cfdb;
  font-size: 15px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}

/* NEWSLETTER */

.sv-newsletter {
  padding: 58px 6vw;
  text-align: center;
  background: #080d15;
}

.sv-newsletter h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 22px;
  font-weight: 800;
}

.sv-newsletter p {
  color: #c6cfdb;
  font-size: 15px;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 24px;
}

.sv-newsletter-form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  gap: 12px;
}

.sv-newsletter-form input {
  flex: 1;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--sv-card-bg);
  color: #fff;
  padding: 0 20px;
}

.sv-newsletter-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--sv-blue), var(--sv-blue-light));
}

.sv-success {
  color: var(--sv-blue-light);
  font-weight: 800;
}

/* FOOTER */

.sv-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
  padding: 64px 6vw 56px;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--sv-bg);
}

.sv-footer-logo img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
}

.sv-footer-brand {
  max-width: 380px;
}

.sv-footer-brand p {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sv-muted);
}

.sv-footer h4 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 18px;
}

.sv-footer a {
  display: block;
  color: var(--sv-muted);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
}

.sv-footer a:hover {
  color: var(--sv-blue-light);
}

.sv-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6vw;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #8a94a7;
  font-size: 13px;
  background: var(--sv-bg);
}

.sv-footer-bottom a {
  display: inline-block;
  margin-left: 20px;
  color: #8a94a7;
  text-decoration: none;
}

/* MOBILE */

@media screen and (max-width: 900px) {
  .sv-custom-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sv-header-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .sv-real-hero-buttons {
    left: 16px;
    bottom: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .sv-real-btn {
    height: 52px;
    font-size: 14px;
    padding: 0 22px;
  }

  .sv-lux-grid,
  .sv-logo-strip,
  .sv-why-grid,
  .sv-review-grid {
    grid-template-columns: 1fr;
  }

  .sv-lux-card,
  .sv-lux-card:nth-child(1),
  .sv-lux-card:nth-child(2),
  .sv-lux-card-large {
    grid-column: span 1;
    min-height: 320px;
  }

  .sv-finance {
    flex-direction: column;
    align-items: flex-start;
  }

  .sv-newsletter-form {
    flex-direction: column;
  }

  .sv-footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sv-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sv-footer-bottom a {
    margin: 0 10px;
  }
}
/* FINAL OVERRIDE - HERO BUTTONS */

.sv-home.sv-hero-wrapper .sv-real-hero-buttons {
  position: absolute !important;
  left: 42px !important;
  bottom: 132px !important;
  display: flex !important;
  gap: 22px !important;
  z-index: 99999 !important;
}

.sv-home.sv-hero-wrapper .sv-real-btn {
  width: 215px !important;
  height: 46px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 18px !important;
  border-radius: 5px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  line-height: 1 !important;
}

.sv-home.sv-hero-wrapper .sv-real-btn-primary {
  background: #156BE8 !important;
  color: #fff !important;
}

.sv-home.sv-hero-wrapper .sv-real-btn-secondary {
  background: rgba(0,0,0,.28) !important;
  border: 1px solid rgba(255,255,255,.6) !important;
  color: #fff !important;
}
.sv-hero-wrapper {
  position: relative;
}

.sv-hero-overlay-content {
  position: absolute;
  left: 60px;
  bottom: 145px;
  z-index: 5;
  max-width: 620px;
  color: #fff;
}

.sv-hero-overlay-content h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: .02em;
}

.sv-hero-overlay-content h1 span {
  color: #1267d8;
}

.sv-hero-overlay-content p {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
}

.sv-real-hero-buttons {
  position: static !important;
  display: flex;
  gap: 20px;
}

.sv-real-btn {
  height: 54px;
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
}

.sv-real-btn-primary {
  background: #1267d8;
  color: #fff;
}

.sv-real-btn-secondary {
  background: rgba(0,0,0,.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,.65);
}

/* =========================================================
   SV VIEWPORT HERO — upload-safe, desktop + mobile
   ========================================================= */
.sv-viewport-hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 112px);
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
  background: #05070a;
  color: #fff;
}

.sv-viewport-hero__media,
.sv-viewport-hero__image,
.sv-viewport-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sv-viewport-hero__image {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.sv-viewport-hero__shade {
  pointer-events: none;
  background: linear-gradient(90deg, rgba(1,5,10,.88) 0%, rgba(1,5,10,.58) 28%, rgba(1,5,10,.08) 58%, rgba(1,5,10,0) 100%);
}

.sv-viewport-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  transform: translateY(-40px);
}
}

.sv-viewport-hero__title {
  margin: 0 0 16px;
  max-width: 720px;
  font-size: clamp(42px, 4.6vw, 76px);
  line-height: .94;
  letter-spacing: -.035em;
  font-weight: 900;
  color: #fff;
}

.sv-viewport-hero__title > span {
  display: block;
}

.sv-viewport-hero__title .sv-viewport-hero__accent {
  color: #2f7fff;
}

.sv-viewport-hero__subtitle {
  margin: 0 0 24px;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .035em;
  color: #fff;
}

.sv-viewport-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sv-viewport-hero__button {
  min-height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .035em;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.sv-viewport-hero__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.sv-viewport-hero__button--primary {
  background: #156be8;
  color: #fff;
}

.sv-viewport-hero__button--secondary {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
}

/* Preserve a professional native Dawn header while keeping it fully editable. */
.shopify-section-header-sticky,
.shopify-section-group-header-group {
  z-index: 50;
}

@media screen and (max-width: 989px) {
  .sv-viewport-hero {
    height: calc(100svh - 76px);
    min-height: 600px;
    max-height: 860px;
  }

  .sv-viewport-hero__image {
    object-position: 62% center;
  }

  .sv-viewport-hero__shade {
    background: linear-gradient(0deg, rgba(1,5,10,.92) 0%, rgba(1,5,10,.55) 42%, rgba(1,5,10,.08) 72%);
  }

  .sv-viewport-hero__content {
    justify-content: center;
    padding: 24px 22px 34px;
  }

  .sv-viewport-hero__title {
    max-width: 520px;
    margin-bottom: 14px;
    font-size: clamp(36px, 9.5vw, 58px);
  }

  .sv-viewport-hero__subtitle {
    max-width: 90%;
    margin-bottom: 20px;
    font-size: clamp(14px, 3.7vw, 18px);
  }

  .sv-viewport-hero__buttons {
    width: 100%;
  }

  .sv-viewport-hero__button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 13px;
  }
}

@media screen and (max-width: 520px) {
  .sv-viewport-hero {
    height: calc(100svh - 70px);
    min-height: 560px;
  }

  .sv-viewport-hero__image {
    object-position: 67% center;
  }

  .sv-viewport-hero__content {
    padding: 20px 18px 26px;
  }

  .sv-viewport-hero__title {
    font-size: clamp(34px, 11vw, 48px);
  }

  .sv-viewport-hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sv-viewport-hero__button {
    width: 100%;
  }
}

/* =========================================================
   SV FINAL VIEWPORT FIT — compact header + balanced hero
   ========================================================= */
@media screen and (min-width: 990px) {
  .shopify-section-header-sticky,
  .shopify-section-group-header-group {
    position: relative;
    z-index: 60;
  }

  .header-wrapper {
    background: #05070a !important;
    border: 0 !important;
  }

  .header {
    max-width: none !important;
    min-height: 86px !important;
    padding: 8px 28px !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    column-gap: 34px !important;
  }

  .header__heading,
  .header__heading-link {
    justify-self: start !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header__heading-logo-wrapper {
    width: auto !important;
  }

  .header__heading-logo {
    width: 230px !important;
    max-width: 230px !important;
    max-height: 68px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .header__inline-menu {
    justify-self: center !important;
    margin: 0 !important;
  }

  .header__menu-item,
  .header__active-menu-item,
  .list-menu__item {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
    padding: 1.1rem 1.25rem !important;
  }

  .header__icons {
    justify-self: end !important;
    gap: 4px !important;
  }

  .sv-viewport-hero {
    height: calc(100svh - 86px) !important;
    min-height: 560px !important;
    max-height: none !important;
  }

  .sv-viewport-hero__image {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .sv-viewport-hero__shade {
    background: linear-gradient(90deg, rgba(1,5,10,.72) 0%, rgba(1,5,10,.38) 30%, rgba(1,5,10,.06) 58%, rgba(1,5,10,0) 100%) !important;
  }

  .sv-viewport-hero__content {
    justify-content: flex-end !important;
    padding: 0 4.5vw clamp(42px, 6.5vh, 70px) !important;
    max-width: none !important;
  }

  .sv-viewport-hero__title {
    max-width: 700px !important;
    margin: 0 0 12px !important;
    font-size: clamp(38px, 3.35vw, 58px) !important;
    line-height: .98 !important;
    letter-spacing: -.025em !important;
  }

  .sv-viewport-hero__subtitle {
    margin: 0 0 20px !important;
    font-size: clamp(14px, 1.05vw, 18px) !important;
    letter-spacing: .04em !important;
  }

  .sv-viewport-hero__buttons {
    gap: 14px !important;
  }

  .sv-viewport-hero__button {
    min-height: 48px !important;
    min-width: 200px !important;
    padding: 0 22px !important;
    font-size: 13px !important;
  }
}

@media screen and (max-width: 989px) {
  .header-wrapper {
    background: #05070a !important;
    border: 0 !important;
  }

  .header {
    min-height: 72px !important;
    padding: 8px 14px !important;
  }

  .header__heading-logo {
    width: 172px !important;
    max-width: 172px !important;
    max-height: 54px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .sv-viewport-hero {
    height: calc(100svh - 72px) !important;
    min-height: 540px !important;
    max-height: none !important;
  }

  .sv-viewport-hero__image {
    object-fit: cover !important;
    object-position: 61% center !important;
  }

  .sv-viewport-hero__shade {
    background: linear-gradient(0deg, rgba(1,5,10,.88) 0%, rgba(1,5,10,.48) 46%, rgba(1,5,10,.04) 76%) !important;
  }

  .sv-viewport-hero__content {
    justify-content: flex-end !important;
    padding: 20px 20px 28px !important;
  }

  .sv-viewport-hero__title {
    margin: 0 0 10px !important;
    font-size: clamp(32px, 8.7vw, 48px) !important;
    line-height: .98 !important;
  }

  .sv-viewport-hero__subtitle {
    margin: 0 0 16px !important;
    font-size: clamp(13px, 3.6vw, 16px) !important;
  }

  .sv-viewport-hero__buttons {
    width: auto !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .sv-viewport-hero__button {
    width: auto !important;
    min-width: 165px !important;
    min-height: 44px !important;
    padding: 0 16px !important;
    font-size: 12px !important;
  }
}

@media screen and (max-width: 520px) {
  .header {
    min-height: 68px !important;
    padding: 7px 10px !important;
  }

  .header__heading-logo {
    width: 150px !important;
    max-width: 150px !important;
    max-height: 48px !important;
  }

  .sv-viewport-hero {
    height: calc(100svh - 68px) !important;
    min-height: 520px !important;
  }

  .sv-viewport-hero__image {
    object-position: 64% center !important;
  }

  .sv-viewport-hero__content {
    padding: 18px 16px 22px !important;
  }

  .sv-viewport-hero__title {
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  .sv-viewport-hero__buttons {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .sv-viewport-hero__button {
    width: auto !important;
    min-width: 190px !important;
  }
}


/* =========================================================
   SV FINAL PROPORTIONAL HERO FIX — 2026-07-12
   Keeps the compact header and hero visible in one viewport.
   ========================================================= */
@media screen and (min-width: 990px) {
  .shopify-section-group-header-group .header-wrapper {
    background: #05070a !important;
    border: 0 !important;
  }

  .shopify-section-group-header-group .header {
    min-height: 78px !important;
    height: 78px !important;
    padding: 5px 24px !important;
    grid-template-columns: 220px minmax(0, 1fr) auto !important;
    column-gap: 24px !important;
  }

  .shopify-section-group-header-group .header__heading,
  .shopify-section-group-header-group .header__heading-link {
    justify-self: start !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .shopify-section-group-header-group .header__heading-logo-wrapper {
    width: 210px !important;
  }

  .shopify-section-group-header-group .header__heading-logo {
    width: 210px !important;
    max-width: 210px !important;
    max-height: 62px !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .shopify-section-group-header-group .header__inline-menu {
    justify-self: center !important;
    margin: 0 !important;
  }

  .shopify-section-group-header-group .header__menu-item,
  .shopify-section-group-header-group .header__active-menu-item,
  .shopify-section-group-header-group .list-menu__item {
    padding: .85rem .95rem !important;
    font-size: 13px !important;
    line-height: 1 !important;
    letter-spacing: .03em !important;
  }

  .shopify-section-group-header-group .header__icons {
    justify-self: end !important;
    gap: 0 !important;
  }

  .sv-viewport-hero {
    height: calc(100svh - 78px) !important;
    min-height: 560px !important;
    max-height: 820px !important;
  }

  .sv-viewport-hero__image {
    object-fit: cover !important;
    object-position: center top !important;
  }

  .sv-viewport-hero__shade {
    background: linear-gradient(90deg, rgba(2,6,11,.76) 0%, rgba(2,6,11,.42) 27%, rgba(2,6,11,.08) 54%, rgba(2,6,11,0) 78%) !important;
  }

  .sv-viewport-hero__content {
    justify-content: flex-end !important;
    padding: 0 4.2vw 30px !important;
    max-width: none !important;
  }

  .sv-viewport-hero__title {
    max-width: 620px !important;
    margin: 0 0 9px !important;
    font-size: clamp(34px, 2.8vw, 50px) !important;
    line-height: .98 !important;
    letter-spacing: -.02em !important;
  }

  .sv-viewport-hero__subtitle {
    margin: 0 0 15px !important;
    font-size: clamp(13px, .95vw, 16px) !important;
    line-height: 1.2 !important;
  }

  .sv-viewport-hero__buttons {
    gap: 12px !important;
  }

  .sv-viewport-hero__button {
    min-width: 184px !important;
    min-height: 43px !important;
    padding: 0 18px !important;
    font-size: 12px !important;
    border-radius: 4px !important;
  }
}

@media screen and (max-width: 989px) {
  .shopify-section-group-header-group .header {
    min-height: 66px !important;
    height: 66px !important;
    padding: 6px 10px !important;
  }

  .shopify-section-group-header-group .header__heading-logo {
    width: 150px !important;
    max-width: 150px !important;
    max-height: 50px !important;
    object-position: left center !important;
  }

  .sv-viewport-hero {
    height: calc(100svh - 66px) !important;
    min-height: 500px !important;
    max-height: 760px !important;
  }

  .sv-viewport-hero__image {
    object-fit: cover !important;
    object-position: 59% top !important;
  }

  .sv-viewport-hero__content {
    padding: 18px 18px 24px !important;
  }

  .sv-viewport-hero__title {
    max-width: 420px !important;
    margin-bottom: 8px !important;
    font-size: clamp(29px, 8.5vw, 42px) !important;
  }

  .sv-viewport-hero__subtitle {
    margin-bottom: 13px !important;
    font-size: clamp(12px, 3.4vw, 15px) !important;
  }

  .sv-viewport-hero__button {
    min-width: 160px !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
  }
}

@media screen and (max-width: 520px) {
  .sv-viewport-hero {
    height: calc(100svh - 66px) !important;
    min-height: 490px !important;
  }

  .sv-viewport-hero__image {
    object-position: 62% top !important;
  }

  .sv-viewport-hero__shade {
    background: linear-gradient(0deg, rgba(2,6,11,.90) 0%, rgba(2,6,11,.48) 42%, rgba(2,6,11,.05) 72%) !important;
  }

  .sv-viewport-hero__content {
    padding: 16px 16px 20px !important;
  }

  .sv-viewport-hero__title {
    font-size: clamp(28px, 9.6vw, 38px) !important;
  }

  .sv-viewport-hero__buttons {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .sv-viewport-hero__button {
    width: auto !important;
    min-width: 145px !important;
  }
}

/* =========================================================
   SV LUXURY PROMO TICKER + HERO ALIGNMENT — 2026-07-14
   ========================================================= */
.sv-promo-ticker {
  position: relative;
  z-index: 50;
  height: 32px;
  overflow: hidden;
  background: #05070a;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.sv-promo-ticker__track {
  width: max-content;
  min-width: 200%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 46px;
  padding-left: 30px;
  animation: svPromoMarquee 30s linear infinite;
  will-change: transform;
}
.sv-promo-ticker:hover .sv-promo-ticker__track { animation-play-state: paused; }
.sv-promo-ticker__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sv-promo-ticker__item a { color: inherit; text-decoration: none; }
.sv-promo-ticker__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f7fff;
  box-shadow: 0 0 12px rgba(47,127,255,.75);
}
@keyframes svPromoMarquee { to { transform: translateX(-50%); } }

@media screen and (min-width: 990px) {
  .sv-viewport-hero {
    height: calc(100svh - 110px) !important;
    min-height: 560px !important;
  }
  .sv-viewport-hero__shade {
    background: linear-gradient(90deg, rgba(2,6,11,.88) 0%, rgba(2,6,11,.62) 24%, rgba(2,6,11,.16) 51%, rgba(2,6,11,0) 76%) !important;
  }
  .sv-viewport-hero__content {
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 0 0 max(34px, 5.5vw) !important;
    transform: translateY(-2%) !important;
  }
  .sv-viewport-hero__title {
    max-width: 640px !important;
    margin: 0 0 14px !important;
    font-size: clamp(42px, 4.2vw, 72px) !important;
    line-height: .92 !important;
    letter-spacing: -.04em !important;
    color: #fff !important;
    text-shadow: 0 4px 30px rgba(0,0,0,.48) !important;
  }
  .sv-viewport-hero__title > span { color: #fff !important; }
  .sv-viewport-hero__title .sv-viewport-hero__accent {
    color: #2f7fff !important;
    text-shadow: 0 0 28px rgba(47,127,255,.32) !important;
  }
  .sv-viewport-hero__subtitle {
    margin: 0 0 24px !important;
    color: rgba(255,255,255,.9) !important;
    font-size: clamp(14px, 1.15vw, 19px) !important;
    letter-spacing: .08em !important;
  }
  .sv-viewport-hero__buttons { justify-content: flex-start !important; gap: 14px !important; }
  .sv-viewport-hero__button {
    min-width: 190px !important;
    min-height: 48px !important;
    padding: 0 22px !important;
    font-size: 12px !important;
    letter-spacing: .06em !important;
  }
}

@media screen and (max-width: 989px) {
  .sv-promo-ticker { height: 30px; }
  .sv-promo-ticker__track { gap: 30px; animation-duration: 24s; }
  .sv-promo-ticker__item { font-size: 10px; }
  .sv-viewport-hero { height: calc(100svh - 96px) !important; }
  .sv-viewport-hero__content {
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 20px !important;
    transform: translateY(8%) !important;
  }
  .sv-viewport-hero__title {
    max-width: 390px !important;
    font-size: clamp(34px, 10vw, 52px) !important;
    line-height: .94 !important;
    color: #fff !important;
  }
  .sv-viewport-hero__title > span { color: #fff !important; }
  .sv-viewport-hero__title .sv-viewport-hero__accent { color: #2f7fff !important; }
  .sv-viewport-hero__subtitle { color: rgba(255,255,255,.92) !important; }
}

/* =========================================================
   SV CINEMATIC TRANSPARENT HEADER — 2026-07-14
   Original implementation; menu remains editable in Shopify.
   ========================================================= */
.template-index .section-header {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 45;
}
.sv-cinematic-header {
  display: block;
  width: 100%;
  color: #fff;
  background: #05070a;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.template-index .sv-cinematic-header--home {
  background: linear-gradient(180deg, rgba(2,6,11,.76), rgba(2,6,11,.24));
  border-bottom-color: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.template-index .section-header.is-scrolled {
  position: fixed !important;
  top: 0;
}
.sv-cinematic-header.is-scrolled,
.template-index .section-header.is-scrolled .sv-cinematic-header {
  background: rgba(3,7,12,.96);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.sv-cinematic-header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto;
  align-items: center;
  gap: 22px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.sv-cinematic-header__heading { margin: 0; line-height: 0; }
.sv-cinematic-header__brand { grid-column: 2; justify-self: center; }
.sv-cinematic-header__logo-link { display: block; line-height: 0; text-decoration: none; }
.sv-cinematic-header__logo {
  display: block;
  width: clamp(180px, 16vw, 255px);
  max-height: 70px;
  object-fit: contain;
}
.sv-cinematic-header__wordmark { color:#fff; font-size:22px; font-weight:800; letter-spacing:.12em; }
.sv-cinematic-header__nav { display: flex; align-items: center; gap: clamp(18px,2vw,34px); min-width: 0; }
.sv-cinematic-header__nav--left { grid-column: 1; justify-self: start; justify-content: flex-start; }
.sv-cinematic-header__nav--right { grid-column: 3; justify-self: end; justify-content: flex-end; }
.sv-cinematic-header__nav-item { position: relative; }
.sv-cinematic-header__nav-link {
  position: relative;
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: color .2s ease;
}
.sv-cinematic-header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 2px;
  background: #2f7fff;
  transition: right .22s ease;
}
.sv-cinematic-header__nav-link:hover,
.sv-cinematic-header__nav-link.is-active { color: #2f7fff; }
.sv-cinematic-header__nav-link:hover::after,
.sv-cinematic-header__nav-link.is-active::after { right: 0; }
.sv-cinematic-header__dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: -20px;
  min-width: 220px;
  padding: 14px;
  background: rgba(3,7,12,.98);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 50px rgba(0,0,0,.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.sv-cinematic-header__nav-item:hover .sv-cinematic-header__dropdown { opacity:1; visibility:visible; transform:none; }
.sv-cinematic-header__dropdown a { display:block; padding:10px 12px; color:#fff; text-decoration:none; font-size:12px; letter-spacing:.06em; }
.sv-cinematic-header__dropdown a:hover,
.sv-cinematic-header__dropdown a.is-active { color:#2f7fff; background:rgba(47,127,255,.08); }
.sv-cinematic-header__icons { grid-column: 4; display:flex; align-items:center; justify-content:flex-end; gap:4px; }
.sv-cinematic-header__icons .header__icon { color:#fff; width:4.2rem; height:4.2rem; }
.sv-cinematic-header__icons .header__icon:hover { color:#2f7fff; }
.sv-cinematic-header__mobile-left { display:none; }

/* Header overlays the hero; keep the hero full and use signature blue accent. */
.template-index .sv-viewport-hero { margin-top: 0 !important; }
.sv-viewport-hero__title > span { color:#fff !important; }
.sv-viewport-hero__title .sv-viewport-hero__accent { color:#2f7fff !important; text-shadow:0 0 28px rgba(47,127,255,.28) !important; }

@media screen and (max-width: 1180px) and (min-width: 990px) {
  .sv-cinematic-header__inner { gap:14px; }
  .sv-cinematic-header__nav { gap:16px; }
  .sv-cinematic-header__nav-link { font-size:10px; letter-spacing:.08em; }
  .sv-cinematic-header__logo { width:180px; }
}
@media screen and (max-width: 989px) {
  .template-index .section-header { top:30px; }
  .sv-cinematic-header__inner {
    min-height: 68px;
    grid-template-columns: 48px minmax(0,1fr) auto;
    gap: 8px;
    padding: 5px 12px;
  }
  .sv-cinematic-header__mobile-left { display:block; grid-column:1; }
  .sv-cinematic-header__mobile-left header-drawer { display:block; margin:0; }
  .sv-cinematic-header__brand { grid-column:2; justify-self:center; }
  .sv-cinematic-header__logo { width:min(48vw,185px); max-height:54px; }
  .sv-cinematic-header__nav { display:none; }
  .sv-cinematic-header__icons { grid-column:3; gap:0; }
  .sv-cinematic-header__icons .header__icon { width:3.8rem; height:3.8rem; }
  .sv-cinematic-header__icons .header__icon--account { display:none; }
}
@media screen and (max-width: 520px) {
  .sv-cinematic-header__inner { padding-left:8px; padding-right:8px; }
  .sv-cinematic-header__logo { width:min(45vw,165px); }
  .sv-cinematic-header__icons .header__icon { width:3.5rem; }
}

/* =========================================================
   SV FINAL HEADER + HERO ALIGNMENT — 2026-07-14
   Logo left, navigation balanced, hero copy lowered.
   ========================================================= */
@media screen and (min-width: 990px) {
  .sv-cinematic-header__inner {
    min-height: 84px !important;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr) auto !important;
    column-gap: clamp(20px, 2.2vw, 40px) !important;
    padding-left: clamp(22px, 3vw, 54px) !important;
    padding-right: clamp(22px, 3vw, 54px) !important;
  }

  .sv-cinematic-header__brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    margin: 0 !important;
  }

  .sv-cinematic-header__logo {
    width: clamp(205px, 15vw, 270px) !important;
    max-height: 66px !important;
  }

  .sv-cinematic-header__nav--left {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    justify-content: flex-end !important;
  }

  .sv-cinematic-header__nav--right {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    justify-content: flex-start !important;
  }

  .sv-cinematic-header__nav {
    gap: clamp(18px, 1.75vw, 30px) !important;
  }

  .sv-cinematic-header__nav-link {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    font-size: 11px !important;
    letter-spacing: .105em !important;
  }

  .sv-cinematic-header__icons {
    grid-column: 4 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    margin-left: 4px !important;
  }

  .sv-viewport-hero__content {
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding-left: max(34px, 5.5vw) !important;
    padding-right: 24px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transform: translateY(16%) !important;
  }

  .sv-viewport-hero__title {
    max-width: 620px !important;
    margin-bottom: 13px !important;
    font-size: clamp(40px, 3.85vw, 66px) !important;
    line-height: .94 !important;
  }

  .sv-viewport-hero__subtitle {
    margin-bottom: 20px !important;
    font-size: clamp(13px, 1.05vw, 17px) !important;
  }

  .sv-viewport-hero__buttons {
    gap: 12px !important;
  }

  .sv-viewport-hero__button {
    min-width: 178px !important;
    min-height: 46px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 989px) {
  .sv-viewport-hero__content {
    transform: translateY(18%) !important;
  }

  .sv-viewport-hero__title {
    font-size: clamp(31px, 9vw, 46px) !important;
    margin-bottom: 12px !important;
  }

  .sv-viewport-hero__subtitle {
    margin-bottom: 16px !important;
    font-size: 13px !important;
  }

  .sv-viewport-hero__button {
    min-height: 44px !important;
    min-width: 172px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 11px !important;
  }
}

/* =========================================================
   SV COLLECTIONS — BRIGHTER PREMIUM CARD IMAGES
   Keeps text readable while making simulator imagery pop.
========================================================= */
.sv-collections .sv-lux-card {
  isolation: isolate;
  background: var(--sv-card-bg) !important;
}

.sv-collections .sv-lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--collection-image, linear-gradient(135deg, #0b111c, #132844));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.24) contrast(1.07) saturate(1.06);
  transform: scale(1.002);
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.sv-collections .sv-lux-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(5, 7, 10, .76) 0%,
    rgba(5, 7, 10, .40) 28%,
    rgba(5, 7, 10, .10) 62%,
    rgba(5, 7, 10, .02) 100%
  );
  transition: background .4s ease;
}

.sv-collections .sv-lux-card:hover::before {
  transform: scale(1.055);
  filter: brightness(1.34) contrast(1.09) saturate(1.10);
}

.sv-collections .sv-lux-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(5, 7, 10, .72) 0%,
    rgba(5, 7, 10, .32) 28%,
    rgba(5, 7, 10, .06) 65%,
    transparent 100%
  );
}

.sv-collections .sv-lux-card-content {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 749px) {
  .sv-collections .sv-lux-card::before {
    filter: brightness(1.18) contrast(1.05) saturate(1.04);
  }

  .sv-collections .sv-lux-card:hover::before {
    transform: scale(1.025);
    filter: brightness(1.24) contrast(1.06) saturate(1.06);
  }
}
