:root {
  --bg-soft: #f6f8fc;
  --text: #0c1730;
  --muted: #627089;
  --line: rgba(12, 23, 48, 0.1);
  --blue: #153fb8;
  --blue-deep: #0d2f86;
  --red: #c91f36;
  --radius-xl: 32px;
  --shadow: 0 20px 60px rgba(21, 63, 184, 0.09), 0 16px 40px rgba(201, 31, 54, 0.07);
  --max: 1360px;
  --nav-h: 138px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 138px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 24px), 1480px);
  margin: 12px auto;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
  border: 1px solid rgba(12, 23, 48, 0.08);
  box-shadow: var(--shadow);
  overflow: clip;
  isolation: isolate;
}

/* Shared site header on the landing page */
.header .navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 138px;
  height: auto;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(12, 23, 48, 0.08);
}

.header .nav-container {
  width: min(calc(100% - 40px), var(--max));
  min-height: 138px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.header .logo {
  flex: 0 0 144px;
  max-width: 144px;
}

.header .logo a {
  width: 144px;
  min-width: 144px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.header .logo img {
  width: 124px;
  max-width: 124px;
  height: 124px;
  max-height: 124px;
  object-fit: contain;
}

.header .logo span {
  display: grid;
  gap: 2px;
}

.header .logo strong {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header .logo small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header .nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.header .nav-links a:hover {
  color: var(--text);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.05), rgba(201, 31, 54, 0.05));
}

.header .customer-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header .customer-nav__link {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(21, 63, 184, 0.12);
}

.header .customer-nav__link--ghost {
  color: var(--text);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.05), rgba(201, 31, 54, 0.05));
}

#nav-icon4 {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
  transition: 0.25s ease;
}

#nav-icon4 span:nth-child(1) {
  top: 1px;
}

#nav-icon4 span:nth-child(2) {
  top: 10px;
}

#nav-icon4 span:nth-child(3) {
  top: 19px;
}

#nav-icon4.open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

#nav-icon4.open span:nth-child(2) {
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.06), rgba(201, 31, 54, 0.06));
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topbar__pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 23, 48, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav .brand__logo {
  width: 124px;
  height: 124px;
}

.nav__inner {
  min-height: var(--nav-h);
}

.brand__text strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand__text span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  flex-wrap: wrap;
}

.nav__links a {
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: 0.25s ease;
  font-size: 14px;
}

.nav__links a:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(21, 63, 184, 0.12);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.05), rgba(201, 31, 54, 0.05));
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-auth {
  min-height: 44px;
  padding: 0 16px;
}

.nav-auth--quiet {
  color: var(--text);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.05), rgba(201, 31, 54, 0.05));
  border: 1px solid rgba(21, 63, 184, 0.12);
  box-shadow: none;
}

.search {
  width: min(100%, 320px);
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 63, 184, 0.1);
  background: #fff;
}

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

.search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
}

.icon-btn,
.btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.icon-btn {
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(21, 63, 184, 0.1);
  background: #fff;
  color: var(--text);
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow:
    0 16px 34px rgba(21, 63, 184, 0.16),
    0 12px 26px rgba(201, 31, 54, 0.14);
}

.ghost-btn {
  min-height: 52px;
  padding: 0 20px;
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(21, 63, 184, 0.12);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.05), rgba(201, 31, 54, 0.05));
}

.btn:hover,
.ghost-btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
}

.hero {
  padding: 32px 0 22px;
}

.hero__wrap {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0d1730;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    visibility 0.75s ease;
  display: grid;
  align-items: end;
  padding: 48px;
  background-size: cover;
  background-position: center;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(9, 18, 38, 0.22) 34%,
    rgba(10, 18, 37, 0.84)
  );
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 700;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #eef4ff;
}

.eyebrow.dark,
.pill {
  border: 1px solid rgba(21, 63, 184, 0.1);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.06), rgba(201, 31, 54, 0.06));
  color: var(--blue-deep);
}

.pill.light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero h1,
.section-head h2 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  max-width: 11ch;
}

.hero__lead,
.section-head p,
.collection-card p,
.product-card p,
.shop-card p,
.info-card p,
.footer p {
  line-height: 1.75;
}

.hero__lead {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__floating {
  position: absolute;
  right: 32px;
  top: 32px;
  width: min(360px, calc(100% - 64px));
  z-index: 2;
  display: grid;
  gap: 14px;
}

.hero-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #fff;
}

.hero-card strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.hero-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero__stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero__stat {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.hero__stat strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
}

.hero__stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.collection-grid,
.product-grid,
.shops-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.collection-grid,
.shops-grid,
.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.collection-card,
.product-card,
.shop-card,
.info-card,
.footer__panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.98));
  box-shadow: var(--shadow);
}

.collection-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transition: transform 0.3s ease;
}

.collection-card:hover,
.product-card:hover,
.shop-card:hover,
.info-card:hover {
  transform: translateY(-4px);
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(11, 22, 46, 0.84));
  z-index: 1;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}

.collection-card:hover::after {
  transform: scale(1.06);
}

.collection-card > * {
  position: relative;
  z-index: 2;
  color: #fff;
}

.collection-card p {
  color: rgba(255, 255, 255, 0.86);
}

.light-btn {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.product-card {
  padding: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card__media {
  min-height: 235px;
  margin-bottom: 14px;
  border-radius: 20px;
  border: 1px solid rgba(21, 63, 184, 0.08);
  background: linear-gradient(135deg, rgba(21, 63, 184, 0.08), rgba(201, 31, 54, 0.08)), #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card__media img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 12px 20px rgba(21, 63, 184, 0.12));
}

.product-card:hover .product-card__media img {
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
}

.product-card__top,
.shop-card__meta,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card__tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(21, 63, 184, 0.12);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.05), rgba(201, 31, 54, 0.05));
  color: var(--blue-deep);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strength {
  display: flex;
  gap: 4px;
  margin: 12px 0 14px;
}

.strength span {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(12, 23, 48, 0.08);
}

.strength .is-on {
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.product-card__price strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
}

.shop-card {
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.shop-card__map {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

.shop-card__body,
.info-card {
  padding: 22px;
}

.shop-card__meta strong {
  color: var(--blue-deep);
  font-size: 14px;
}

.info-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.collection-card h3,
.product-card h3,
.shop-card h3,
.info-card h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

.footer {
  padding: 8px 0 30px;
}

.footer__panel {
  padding: 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr;
  gap: 18px;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-deep);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer li a:hover {
  color: var(--text);
}

.footer p {
  color: var(--muted);
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  :root {
    --nav-h: 122px;
  }

  .header .nav-container {
    width: min(calc(100% - 28px), var(--max));
    gap: 14px;
  }

  .header .logo {
    flex-basis: 128px;
    max-width: 128px;
  }

  .header .logo a {
    width: 128px;
    min-width: 128px;
  }

  .header .logo img {
    width: 108px;
    max-width: 108px;
    height: 108px;
    max-height: 108px;
  }

  .nav__inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav .brand__logo {
    width: 108px;
    height: 108px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    top: calc(12px + var(--nav-h));
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__actions {
    justify-content: flex-end;
  }

  .collection-grid,
  .shops-grid,
  .info-grid,
  .footer__grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --nav-h: 104px;
  }

  body {
    padding-top: 104px;
  }

  .header .navbar,
  .header .nav-container {
    min-height: 104px;
  }

  .header .logo {
    flex-basis: 104px;
    max-width: 104px;
  }

  .header .logo a {
    width: 104px;
    min-width: 104px;
  }

  .header .logo img {
    width: 88px;
    max-width: 88px;
    height: 88px;
    max-height: 88px;
  }

  .header .nav-links {
    position: fixed;
    top: 104px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .header .nav-links.active,
  .header .nav-links.is-open {
    display: flex;
  }

  .header .customer-nav {
    margin-left: auto;
  }

  .header .customer-nav__link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  #nav-icon4 {
    display: block;
  }

  .nav .brand__logo {
    width: 88px;
    height: 88px;
  }

  .nav__inner {
    min-height: var(--nav-h);
  }

  .page-shell {
    width: min(calc(100% - 10px), 1480px);
    margin: 5px auto;
    border-radius: 24px;
  }

  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .topbar__inner,
  .nav__inner,
  .section-head,
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav__actions,
  .search {
    width: 100%;
  }

  .nav__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__wrap {
    min-height: 760px;
  }

  .hero__slide {
    padding: 24px;
  }

  .hero__floating {
    position: static;
    width: 100%;
    padding: 16px 16px 0;
  }

  .hero__stats {
    position: static;
    padding: 16px;
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .shops-grid,
  .info-grid,
  .footer__grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn,
  .ghost-btn {
    width: 100%;
  }

  .hero h1 {
    max-width: 12ch;
  }
}


/* ===== SNUS VILLAGE FRONTEND REDESIGN START ===== */

:root {
  --sv-red-glow: rgba(255, 22, 68, 0.95);
  --sv-blue-glow: rgba(28, 105, 255, 0.95);
  --sv-card-dark: #071225;
  --sv-card-deep: #0b1630;
}

.hero-card,
.hero__stat,
.product-card,
.shop-card,
.info-card,
.collection-card {
  position: relative;
  isolation: isolate;
}

.hero-card,
.hero__stat,
.product-card,
.shop-card,
.info-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card::before,
.hero__stat::before,
.product-card::before,
.shop-card::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sv-angle, 0deg),
    rgba(255,255,255,0.08),
    var(--sv-blue-glow),
    var(--sv-red-glow),
    rgba(255,255,255,0.12),
    var(--sv-blue-glow)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 1;
  animation: svBorderSpin 4s linear infinite;
}

.hero-card::after,
.hero__stat::after,
.product-card::after,
.shop-card::after,
.info-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 15%, rgba(196, 18, 48, 0.18), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(18, 59, 138, 0.22), transparent 30%),
    radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.08), transparent 26%);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-card > *,
.hero__stat > *,
.product-card > *,
.shop-card > *,
.info-card > * {
  position: relative;
  z-index: 2;
}

.hero-card:hover::after,
.hero__stat:hover::after,
.product-card:hover::after,
.shop-card:hover::after,
.info-card:hover::after {
  opacity: 1;
  transform: rotate(4deg) scale(1.04);
}

.hero-card:hover,
.hero__stat:hover,
.product-card:hover,
.shop-card:hover,
.info-card:hover,
.collection-card:hover {
  box-shadow:
    0 30px 80px rgba(7, 18, 37, 0.30),
    0 0 0 1px rgba(255, 22, 68, 0.24),
    0 0 28px rgba(255, 22, 68, 0.28),
    0 0 44px rgba(28, 105, 255, 0.28);
}

.collection-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 80px rgba(7, 18, 37, 0.24),
    0 0 30px rgba(255, 22, 68, 0.20),
    0 0 42px rgba(28, 105, 255, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.14);
}

.collection-card::before {
  background:
    linear-gradient(180deg, rgba(7, 18, 37, 0.14), rgba(7, 18, 37, 0.88)),
    radial-gradient(circle at 12% 16%, rgba(255, 22, 68, 0.62), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(28, 105, 255, 0.62), transparent 30%);
  z-index: 1;
}

.collection-card::after {
  background-image:
    linear-gradient(135deg, rgba(18, 59, 138, 0.28), rgba(196, 18, 48, 0.22)),
    var(--bg-image);
  filter: saturate(1.12) contrast(1.04);
}

.collection-card {
  outline: 1px solid rgba(255,255,255,0.08);
  outline-offset: -6px;
}

.collection-card:hover {
  transform: translateY(-7px) scale(1.01);
}

.collection-card:hover::after {
  transform: scale(1.08);
}

.collection-card h3,
.product-card h3,
.shop-card h3,
.info-card h3 {
  letter-spacing: -0.03em;
}

.product-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,251,0.94)),
    radial-gradient(circle at 15% 10%, rgba(196, 18, 48, 0.08), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(18, 59, 138, 0.10), transparent 32%);
}

.product-card__media {
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.95), rgba(226,232,240,0.78)),
    linear-gradient(135deg, rgba(18,59,138,0.12), rgba(196,18,48,0.08));
  border: 1px solid rgba(9, 31, 77, 0.08);
}

.hero-card {
  background:
    linear-gradient(135deg, rgba(7,18,37,0.58), rgba(18,59,138,0.22)),
    rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.hero__stat {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,252,0.88));
}

.light-btn,
.collection-card .light-btn {
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

@keyframes svBorderSpin {
  to {
    --sv-angle: 360deg;
  }
}

@property --sv-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (prefers-reduced-motion: reduce) {
  .hero-card::before,
  .hero__stat::before,
  .product-card::before,
  .shop-card::before,
  .info-card::before {
    animation: none;
  }
}

/* ===== SNUS VILLAGE FRONTEND REDESIGN END ===== */


/* ===== FRONTEND REDESIGN BRIGHTNESS BOOST ===== */
.hero-card::before,
.hero__stat::before,
.product-card::before,
.shop-card::before,
.info-card::before {
  padding: 2px;
  filter: drop-shadow(0 0 12px rgba(255, 22, 68, 0.45)) drop-shadow(0 0 16px rgba(28, 105, 255, 0.38));
}

.collection-card {
  box-shadow:
    0 28px 80px rgba(7, 18, 37, 0.24),
    0 0 22px rgba(255, 22, 68, 0.24),
    0 0 34px rgba(28, 105, 255, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.16);
}

.collection-card:hover {
  box-shadow:
    0 34px 90px rgba(7, 18, 37, 0.32),
    0 0 34px rgba(255, 22, 68, 0.38),
    0 0 52px rgba(28, 105, 255, 0.34),
    inset 0 0 0 1px rgba(255,255,255,0.20);
}

















/* ===== SNUS VILLAGE AB STYLE HERO START ===== */

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
}

.topbar,
.nav {
  border-radius: 0;
}

.sv-ab-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 22, 68, 0.13), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(18, 59, 138, 0.17), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.sv-ab-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.46)),
    radial-gradient(circle at 20% 26%, rgba(255, 22, 68, 0.08), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(18, 59, 138, 0.10), transparent 34%);
  pointer-events: none;
}

.sv-ab-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: 620px;
}

.sv-ab-hero__copy {
  opacity: 0;
  transform: translateY(22px);
  animation: svAbReveal 0.85s ease forwards;
}

.sv-ab-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #123b8a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sv-ab-hero__eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff1644, #123b8a);
}

.sv-ab-hero h1 {
  margin: 0;
  max-width: 780px;
  color: #061633;
  font-size: clamp(3.8rem, 7vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.sv-ab-hero h1 span {
  display: block;
  color: #ff1644;
  text-shadow: 0 12px 32px rgba(255, 22, 68, 0.16);
}

.sv-ab-hero__copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #52617a;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.85;
}

.sv-ab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.sv-ab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.sv-ab-btn:hover {
  transform: translateY(-3px);
}

.sv-ab-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  box-shadow:
    0 18px 42px rgba(255, 22, 68, 0.24),
    0 0 26px rgba(18, 59, 138, 0.16);
}

.sv-ab-btn--ghost {
  color: #061633;
  border: 1px solid rgba(9, 31, 77, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.sv-ab-btn--ghost:hover {
  border-color: rgba(255, 22, 68, 0.38);
  box-shadow: 0 14px 34px rgba(9, 31, 77, 0.10);
}

.sv-ab-hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 40px;
}

.sv-ab-hero__badges div {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 16px 44px rgba(9, 31, 77, 0.07);
}

.sv-ab-hero__badges strong {
  display: block;
  color: #123b8a;
  font-size: 1.55rem;
  line-height: 1;
}

.sv-ab-hero__badges span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.sv-ab-hero__visual {
  position: relative;
  min-height: 590px;
  perspective: 1100px;
}

.sv-ab-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(18, 59, 138, 0.12);
  pointer-events: none;
}

.sv-ab-orbit--one {
  width: 420px;
  height: 420px;
  right: 42px;
  top: 72px;
  animation: svAbSpin 18s linear infinite;
}

.sv-ab-orbit--two {
  width: 300px;
  height: 300px;
  right: 120px;
  top: 140px;
  border-color: rgba(255, 22, 68, 0.14);
  animation: svAbSpin 14s linear infinite reverse;
}

.sv-ab-product-card,
.sv-ab-feature-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.72);
  box-shadow:
    0 28px 80px rgba(9, 31, 77, 0.16),
    0 0 34px rgba(255, 22, 68, 0.08);
  backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.sv-ab-product-card:hover,
.sv-ab-feature-card:hover {
  box-shadow:
    0 34px 90px rgba(9, 31, 77, 0.20),
    0 0 38px rgba(255, 22, 68, 0.14),
    0 0 42px rgba(18, 59, 138, 0.10);
}

.sv-ab-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-ab-product-card--main {
  right: 34px;
  top: 54px;
  width: min(470px, 92%);
  height: 420px;
  animation: svAbFloat 6s ease-in-out infinite;
}

.sv-ab-product-card--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 12, 28, 0.78)),
    radial-gradient(circle at 18% 24%, rgba(255, 22, 68, 0.18), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(18, 59, 138, 0.18), transparent 32%);
}

.sv-ab-product-card--main div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #ffffff;
}

.sv-ab-product-card span,
.sv-ab-feature-card span {
  display: block;
  color: #ff1644;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sv-ab-product-card strong,
.sv-ab-feature-card strong {
  display: block;
  margin-top: 6px;
  color: inherit;
  font-size: 1.1rem;
  line-height: 1.25;
}

.sv-ab-product-card--small {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  width: 270px;
  min-height: 108px;
}

.sv-ab-product-card--small img {
  height: 82px;
  border-radius: 20px;
  background: #f1f5f9;
  object-fit: contain;
  padding: 10px;
}

.sv-ab-product-card--small strong {
  color: #061633;
}

.sv-ab-float-one {
  left: 10px;
  top: 120px;
  animation: svAbFloat 5.5s ease-in-out infinite 0.4s;
}

.sv-ab-float-two {
  right: 0;
  bottom: 58px;
  animation: svAbFloat 6.4s ease-in-out infinite 0.9s;
}

.sv-ab-feature-card {
  left: 48px;
  bottom: 44px;
  width: 250px;
  padding: 22px;
  animation: svAbFloat 7s ease-in-out infinite 0.2s;
}

.sv-ab-feature-card span {
  color: #123b8a;
  font-size: 22px;
  letter-spacing: 0;
}

.sv-ab-feature-card strong {
  color: #061633;
  font-size: 1.1rem;
}

.sv-ab-feature-card p {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.65;
  font-size: 0.92rem;
}

@keyframes svAbReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes svAbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(1deg);
  }
}

@keyframes svAbSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .sv-ab-hero {
    padding: 52px 0;
  }

  .sv-ab-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sv-ab-hero__visual {
    min-height: 560px;
  }

  .sv-ab-product-card--main {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .sv-ab-float-one {
    left: 4%;
  }

  .sv-ab-float-two {
    right: 4%;
  }
}

@media (max-width: 720px) {
  .sv-ab-hero::before {
    inset: 10px;
    border-radius: 26px;
  }

  .sv-ab-hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .sv-ab-hero__actions {
    display: grid;
  }

  .sv-ab-btn {
    width: 100%;
  }

  .sv-ab-hero__badges {
    grid-template-columns: 1fr;
  }

  .sv-ab-hero__visual {
    min-height: 500px;
  }

  .sv-ab-product-card--main {
    width: 100%;
    height: 330px;
    top: 30px;
  }

  .sv-ab-product-card--small,
  .sv-ab-feature-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .sv-ab-orbit {
    display: none;
  }
}

/* ===== SNUS VILLAGE AB STYLE HERO END ===== */


/* ===== SNUS VILLAGE AB HERO SIZE FIX START ===== */

.sv-ab-hero {
  padding: 38px 0 42px;
}

.sv-ab-hero::before {
  inset: 12px;
  border-radius: 28px;
}

.sv-ab-hero__inner {
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
}

.sv-ab-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.6vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.sv-ab-hero__copy p {
  max-width: 540px;
  margin-top: 18px;
  font-size: clamp(0.96rem, 1.06vw, 1.08rem);
  line-height: 1.7;
}

.sv-ab-hero__actions {
  margin-top: 24px;
}

.sv-ab-hero__badges {
  max-width: 520px;
  margin-top: 26px;
}

.sv-ab-hero__badges div {
  padding: 13px;
  border-radius: 18px;
}

.sv-ab-hero__badges strong {
  font-size: 1.35rem;
}

.sv-ab-hero__visual {
  min-height: 450px;
}

.sv-ab-orbit--one {
  width: 310px;
  height: 310px;
  right: 44px;
  top: 58px;
}

.sv-ab-orbit--two {
  width: 220px;
  height: 220px;
  right: 98px;
  top: 102px;
}

.sv-ab-product-card--main {
  right: 28px;
  top: 48px;
  width: min(360px, 92%);
  height: 315px;
  border-radius: 24px;
}

.sv-ab-product-card--main div {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.sv-ab-product-card--small {
  width: 220px;
  min-height: 88px;
  grid-template-columns: 66px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
}

.sv-ab-product-card--small img {
  height: 66px;
  border-radius: 16px;
  padding: 8px;
}

.sv-ab-product-card--small strong,
.sv-ab-feature-card strong {
  font-size: 0.95rem;
}

.sv-ab-product-card span,
.sv-ab-feature-card span {
  font-size: 9px;
}

.sv-ab-float-one {
  left: 8px;
  top: 94px;
}

.sv-ab-float-two {
  right: 2px;
  bottom: 48px;
}

.sv-ab-feature-card {
  left: 34px;
  bottom: 34px;
  width: 210px;
  padding: 18px;
  border-radius: 22px;
}

.sv-ab-feature-card p {
  font-size: 0.84rem;
  line-height: 1.55;
}

@media (max-width: 1040px) {
  .sv-ab-hero__inner {
    grid-template-columns: 1fr;
  }

  .sv-ab-hero__visual {
    min-height: 420px;
  }

  .sv-ab-product-card--main {
    left: 50%;
    right: auto;
    width: min(360px, 88vw);
    height: 300px;
    transform: translateX(-50%);
  }

  .sv-ab-float-one {
    left: 5%;
    top: 86px;
  }

  .sv-ab-float-two {
    right: 5%;
    bottom: 38px;
  }

  .sv-ab-feature-card {
    left: 8%;
    bottom: 28px;
  }
}

@media (max-width: 720px) {
  .sv-ab-hero {
    padding: 34px 0;
  }

  .sv-ab-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.5rem);
  }

  .sv-ab-hero__visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .sv-ab-product-card--main,
  .sv-ab-product-card--small,
  .sv-ab-feature-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    margin: 0;
  }

  .sv-ab-product-card--main {
    height: 260px;
  }
}

/* ===== SNUS VILLAGE AB HERO SIZE FIX END ===== */

/* ===== SNUS VILLAGE AB HERO BALANCE FIX START ===== */

.sv-ab-hero__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.85fr);
  gap: clamp(14px, 2.4vw, 34px);
}

.sv-ab-hero__visual {
  min-height: 500px;
  margin-left: -18px;
}

.sv-ab-product-card--main {
  width: min(430px, 96%);
  height: 365px;
  right: 8px;
  top: 42px;
}

.sv-ab-product-card--small {
  width: 270px;
  min-height: 108px;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 12px;
}

.sv-ab-product-card--small img {
  height: 82px;
}

.sv-ab-float-one {
  left: -8px;
  top: 98px;
}

.sv-ab-float-two {
  right: -10px;
  bottom: 56px;
}

.sv-ab-feature-card {
  left: 22px;
  bottom: 40px;
  width: 250px;
  padding: 22px;
}

.sv-ab-product-card--small strong,
.sv-ab-feature-card strong {
  font-size: 1.06rem;
}

.sv-ab-product-card span,
.sv-ab-feature-card span {
  font-size: 10px;
}

.sv-ab-orbit--one {
  width: 380px;
  height: 380px;
  right: 24px;
  top: 52px;
}

.sv-ab-orbit--two {
  width: 270px;
  height: 270px;
  right: 96px;
  top: 108px;
}

@media (max-width: 1040px) {
  .sv-ab-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sv-ab-hero__visual {
    margin-left: 0;
    min-height: 500px;
  }

  .sv-ab-product-card--main {
    width: min(430px, 88vw);
    height: 350px;
  }
}

/* ===== SNUS VILLAGE AB HERO BALANCE FIX END ===== */


/* ===== BIGGER HERO FLOATING CARDS FIX START ===== */

.sv-ab-hero {
  padding: 34px 0 38px;
}

.sv-ab-hero__inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1fr);
  gap: clamp(6px, 1.2vw, 18px);
  min-height: 560px;
}

.sv-ab-hero__visual {
  min-height: 570px;
  margin-left: -54px;
  transform: scale(1.06);
  transform-origin: center right;
}

.sv-ab-product-card--main {
  width: min(520px, 100%);
  height: 430px;
  right: 0;
  top: 36px;
  border-radius: 34px;
}

.sv-ab-product-card--main div {
  left: 30px;
  right: 30px;
  bottom: 28px;
}

.sv-ab-product-card--main strong {
  font-size: 1.45rem;
  line-height: 1.22;
}

.sv-ab-product-card--small {
  width: 340px;
  min-height: 132px;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 14px;
  border-radius: 28px;
}

.sv-ab-product-card--small img {
  height: 108px;
  border-radius: 22px;
  padding: 12px;
}

.sv-ab-product-card--small strong {
  font-size: 1.25rem;
  line-height: 1.18;
}

.sv-ab-product-card span,
.sv-ab-feature-card span {
  font-size: 11px;
}

.sv-ab-float-one {
  left: -62px;
  top: 112px;
}

.sv-ab-float-two {
  right: -24px;
  bottom: 62px;
}

.sv-ab-feature-card {
  left: -14px;
  bottom: 44px;
  width: 315px;
  padding: 28px;
  border-radius: 30px;
}

.sv-ab-feature-card strong {
  font-size: 1.28rem;
}

.sv-ab-feature-card p {
  font-size: 0.98rem;
  line-height: 1.6;
}

.sv-ab-orbit--one {
  width: 470px;
  height: 470px;
  right: 16px;
  top: 32px;
}

.sv-ab-orbit--two {
  width: 340px;
  height: 340px;
  right: 104px;
  top: 94px;
}

@media (max-width: 1180px) {
  .sv-ab-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sv-ab-hero__visual {
    margin-left: 0;
    transform: none;
    min-height: 600px;
  }

  .sv-ab-product-card--main {
    width: min(520px, 90vw);
    height: 420px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .sv-ab-float-one {
    left: 4%;
  }

  .sv-ab-float-two {
    right: 4%;
  }

  .sv-ab-feature-card {
    left: 7%;
  }
}

@media (max-width: 720px) {
  .sv-ab-hero__visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .sv-ab-product-card--main,
  .sv-ab-product-card--small,
  .sv-ab-feature-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    margin: 0;
  }

  .sv-ab-product-card--main {
    height: 320px;
  }

  .sv-ab-product-card--small {
    grid-template-columns: 96px 1fr;
  }

  .sv-ab-product-card--small img {
    height: 96px;
  }
}

/* ===== BIGGER HERO FLOATING CARDS FIX END ===== */

/* ===== FINAL HERO PROPORTION FIX START ===== */

.sv-ab-hero {
  padding: 28px 0 34px;
}

.sv-ab-hero__inner {
  min-height: 540px;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 0.95fr);
  gap: clamp(8px, 1.4vw, 22px);
}

.sv-ab-hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.2vw, 6rem);
}

.sv-ab-hero__copy p {
  max-width: 520px;
}

.sv-ab-hero__visual {
  min-height: 540px;
  margin-left: -72px;
  transform: none;
}

.sv-ab-product-card--main {
  width: 500px;
  height: 390px;
  right: 0;
  top: 36px;
}

.sv-ab-product-card--small {
  width: 330px;
  min-height: 125px;
  grid-template-columns: 104px 1fr;
}

.sv-ab-product-card--small img {
  height: 104px;
}

.sv-ab-float-one {
  left: -42px;
  top: 110px;
}

.sv-ab-float-two {
  right: -18px;
  bottom: 72px;
}

.sv-ab-feature-card {
  width: 300px;
  left: -18px;
  bottom: 52px;
}

.sv-ab-orbit--one {
  width: 430px;
  height: 430px;
  right: 30px;
  top: 42px;
}

.sv-ab-orbit--two {
  width: 310px;
  height: 310px;
  right: 116px;
  top: 104px;
}

@media (max-width: 1180px) {
  .sv-ab-hero__inner {
    grid-template-columns: 1fr;
  }

  .sv-ab-hero__visual {
    margin-left: 0;
    min-height: 560px;
  }
}

/* ===== FINAL HERO PROPORTION FIX END ===== */


/* ===== SNUS VILLAGE COLLECTIONS REDESIGN START ===== */

.sv-collections-redesign {
  padding-top: 52px;
  padding-bottom: 42px;
}

.sv-section-head-pro {
  margin-bottom: 24px;
}

.sv-collection-grid-pro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.sv-collection-card-pro {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(5, 12, 28, 0.92), rgba(18, 59, 138, 0.86)),
    var(--bg-image);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 24px 70px rgba(9, 31, 77, 0.14),
    0 0 26px rgba(255, 22, 68, 0.10);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sv-collection-card-pro--large {
  grid-row: span 2;
  min-height: 500px;
}

.sv-collection-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sv-angle, 0deg),
    rgba(255,255,255,0.08),
    rgba(255, 22, 68, 0.95),
    rgba(28, 105, 255, 0.92),
    rgba(255,255,255,0.16)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  opacity: 0.9;
  animation: svBorderSpin 5s linear infinite;
}

.sv-collection-card-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.sv-collection-card-pro__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 12, 28, 0.05), rgba(5, 12, 28, 0.86)),
    radial-gradient(circle at 18% 22%, rgba(255, 22, 68, 0.34), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(28, 105, 255, 0.30), transparent 34%);
}

.sv-collection-card-pro--dark::after {
  display: none;
}

.sv-collection-card-pro--dark {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 22, 68, 0.32), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(28, 105, 255, 0.34), transparent 36%),
    linear-gradient(135deg, #071225, #10234d);
}

.sv-collection-card-pro__glow {
  position: absolute;
  inset: -30%;
  z-index: 0;
  background:
    conic-gradient(from 90deg, rgba(255,22,68,0.26), rgba(28,105,255,0.28), rgba(255,255,255,0.10), rgba(255,22,68,0.26));
  animation: svAbSpin 18s linear infinite;
  opacity: 0.8;
}

.sv-collection-card-pro__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: #ffffff;
}

.sv-collection-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, rgba(255, 22, 68, 0.94), rgba(18, 59, 138, 0.90));
  box-shadow:
    0 12px 28px rgba(0,0,0,0.24),
    0 0 22px rgba(255, 22, 68, 0.24);
}

.sv-collection-card-pro h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.sv-collection-card-pro--large h3 {
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
}

.sv-collection-card-pro p {
  max-width: 38ch;
  margin: 12px 0 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-size: 0.96rem;
}

.sv-collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sv-collection-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.sv-collection-card-pro:hover {
  transform: translateY(-7px);
  box-shadow:
    0 32px 90px rgba(9, 31, 77, 0.22),
    0 0 34px rgba(255, 22, 68, 0.24),
    0 0 44px rgba(28, 105, 255, 0.20);
}

.sv-collection-card-pro:hover::after {
  transform: scale(1.12);
  filter: saturate(1.18) contrast(1.08);
}

.sv-collection-card-pro:hover .sv-collection-link::after {
  transform: translateX(6px);
}

@media (max-width: 980px) {
  .sv-collection-grid-pro {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .sv-collection-card-pro--large {
    grid-column: span 2;
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .sv-collection-grid-pro {
    grid-template-columns: 1fr;
  }

  .sv-collection-card-pro,
  .sv-collection-card-pro--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }
}

/* ===== SNUS VILLAGE COLLECTIONS REDESIGN END ===== */

/* ===== COLLECTION SECTION BALANCE FIX START ===== */

.sv-collection-grid-pro {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  align-items: stretch;
}

.sv-collection-card-pro,
.sv-collection-card-pro--large {
  grid-column: auto;
  grid-row: auto;
  min-height: 360px;
}

.sv-collection-card-pro__content {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.sv-collection-card-pro h3,
.sv-collection-card-pro--large h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  line-height: 1;
}

.sv-collection-card-pro p {
  max-width: 32ch;
  font-size: 0.92rem;
  line-height: 1.55;
}

.sv-section-head-pro {
  align-items: end;
}

.sv-section-head-pro .ghost-btn {
  margin-bottom: 4px;
}

@media (max-width: 1180px) {
  .sv-collection-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-collection-card-pro,
  .sv-collection-card-pro--large {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .sv-collection-grid-pro {
    grid-template-columns: 1fr;
  }

  .sv-collection-card-pro,
  .sv-collection-card-pro--large {
    min-height: 330px;
  }
}

/* ===== COLLECTION SECTION BALANCE FIX END ===== */

/* ===== MOBILE COLLECTION CAROUSEL START ===== */
@media (max-width: 760px) {
  .sv-collections-redesign {
    overflow: hidden !important;
  }

  .sv-collection-grid-pro {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 2px 18px 18px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-padding-left: 18px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .sv-collection-grid-pro::-webkit-scrollbar {
    display: none !important;
  }

  .sv-collection-card-pro,
  .sv-collection-card-pro--large {
    flex: 0 0 min(86vw, 390px) !important;
    width: min(86vw, 390px) !important;
    min-height: 355px !important;
    grid-column: auto !important;
    grid-row: auto !important;
    scroll-snap-align: start !important;
  }

  .sv-collection-card-pro__content {
    right: 18px !important;
    bottom: 20px !important;
    left: 18px !important;
  }

  .sv-collection-card-pro h3,
  .sv-collection-card-pro--large h3 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
}
/* ===== MOBILE COLLECTION CAROUSEL END ===== */


/* ===== SNUS VILLAGE BESTSELLERS REDESIGN START ===== */

.sv-bestsellers-redesign {
  padding-top: 44px;
  padding-bottom: 44px;
}

.sv-product-grid-pro {
  gap: 20px;
}

.sv-product-card-pro {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 30px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 22, 68, 0.08), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(18, 59, 138, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,254,0.96));
  box-shadow:
    0 22px 60px rgba(9, 31, 77, 0.10),
    inset 0 0 0 1px rgba(255,255,255,0.66);
  isolation: isolate;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.sv-product-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sv-angle, 0deg),
    rgba(255,255,255,0.08),
    rgba(255, 22, 68, 0.65),
    rgba(28, 105, 255, 0.62),
    rgba(255,255,255,0.12)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  animation: svBorderSpin 5s linear infinite;
  transition: opacity 0.28s ease;
}

.sv-product-card-pro::after {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 22, 68, 0.14), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(28, 105, 255, 0.14), transparent 34%);
  opacity: 0;
  transition:
    opacity 0.28s ease,
    transform 0.45s ease;
  pointer-events: none;
}

.sv-product-card-pro > * {
  position: relative;
  z-index: 2;
}

.sv-product-card-pro:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 22, 68, 0.18);
  box-shadow:
    0 32px 84px rgba(9, 31, 77, 0.18),
    0 0 32px rgba(255, 22, 68, 0.16),
    0 0 40px rgba(28, 105, 255, 0.12);
}

.sv-product-card-pro:hover::before,
.sv-product-card-pro:hover::after {
  opacity: 1;
}

.sv-product-card-pro:hover::after {
  transform: rotate(4deg) scale(1.05);
}

.sv-product-card-pro .product-card__media {
  min-height: 270px;
  margin-bottom: 16px;
  border-radius: 24px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,0.98), rgba(226,232,240,0.72)),
    linear-gradient(135deg, rgba(255, 22, 68, 0.09), rgba(18, 59, 138, 0.10));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.76),
    0 16px 38px rgba(9, 31, 77, 0.08);
}

.sv-product-card-pro .product-card__media img {
  width: 88%;
  height: 88%;
  filter:
    drop-shadow(0 18px 24px rgba(9, 31, 77, 0.14))
    drop-shadow(0 0 18px rgba(255, 22, 68, 0.08));
}

.sv-product-card-pro:hover .product-card__media img {
  transform: translateY(-9px) scale(1.07) rotate(-1deg);
}

.sv-product-card-pro .product-card__top {
  margin-bottom: 14px;
}

.sv-product-card-pro .product-card__tag {
  padding: 8px 11px;
  color: #123b8a;
  border-color: rgba(18, 59, 138, 0.12);
  background:
    linear-gradient(90deg, rgba(18, 59, 138, 0.06), rgba(255, 22, 68, 0.06)),
    rgba(255,255,255,0.58);
  font-size: 10px;
  font-weight: 950;
}

.sv-product-card-pro h3 {
  color: #061633;
  font-size: clamp(1.28rem, 1.7vw, 1.65rem);
  line-height: 1.05;
}

.sv-product-card-pro p {
  min-height: 74px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.6;
}

.sv-product-card-pro .strength {
  gap: 5px;
  margin: 16px 0 18px;
}

.sv-product-card-pro .strength span {
  height: 9px;
  background: rgba(9, 31, 77, 0.08);
}

.sv-product-card-pro .strength .is-on {
  background: linear-gradient(90deg, #123b8a, #ff1644);
  box-shadow: 0 0 14px rgba(255, 22, 68, 0.18);
}

.sv-product-card-pro .product-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(9, 31, 77, 0.08);
}

.sv-product-card-pro .product-card__price strong {
  margin: 0;
  color: #061633;
  font-size: 1rem;
}

.sv-product-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  box-shadow:
    0 14px 28px rgba(255, 22, 68, 0.18),
    0 0 22px rgba(18, 59, 138, 0.12);
  text-decoration: none;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
  white-space: nowrap;
}

.sv-product-card-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(255, 22, 68, 0.26),
    0 0 28px rgba(18, 59, 138, 0.18);
}

@media (max-width: 1180px) {
  .sv-product-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sv-product-grid-pro {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 2px 18px 18px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-padding-left: 18px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .sv-product-grid-pro::-webkit-scrollbar {
    display: none !important;
  }

  .sv-product-card-pro {
    flex: 0 0 min(84vw, 360px) !important;
    width: min(84vw, 360px) !important;
    scroll-snap-align: start !important;
  }

  .sv-product-card-pro .product-card__media {
    min-height: 250px;
  }

  .sv-product-card-pro .product-card__price {
    display: grid;
  }

  .sv-product-card-btn {
    width: 100%;
  }
}

/* ===== SNUS VILLAGE BESTSELLERS REDESIGN END ===== */


/* ===== SNUS VILLAGE LOCATIONS REDESIGN START ===== */

.sv-locations-redesign {
  padding-top: 44px;
  padding-bottom: 50px;
}

.sv-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sv-location-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background: rgba(255,255,255,0.92);
  box-shadow:
    0 24px 70px rgba(9, 31, 77, 0.10),
    inset 0 0 0 1px rgba(255,255,255,0.68);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.sv-location-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 32px 88px rgba(9, 31, 77, 0.16),
    0 0 30px rgba(255, 22, 68, 0.12),
    0 0 38px rgba(18, 59, 138, 0.10);
}

.sv-location-map {
  width: 100%;
  height: 245px;
  border: 0;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

.sv-location-body {
  padding: 22px;
}

.sv-location-body span,
.sv-distro-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ff1644;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sv-location-body h3,
.sv-distro-copy h3 {
  margin: 0;
  color: #061633;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.sv-location-body p,
.sv-distro-copy p {
  margin: 12px 0 0;
  color: #64748b;
  line-height: 1.65;
}

.sv-location-body a {
  display: inline-flex;
  margin-top: 16px;
  color: #123b8a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sv-location-body a::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.22s ease;
}

.sv-location-body a:hover::after {
  transform: translateX(5px);
}

.sv-distro-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 22, 68, 0.10), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(18, 59, 138, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,249,254,0.95));
  box-shadow:
    0 28px 90px rgba(9, 31, 77, 0.12),
    inset 0 0 0 1px rgba(255,255,255,0.72);
}

.sv-distro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sv-angle, 0deg),
    rgba(255,255,255,0.08),
    rgba(255, 22, 68, 0.55),
    rgba(28, 105, 255, 0.52),
    rgba(255,255,255,0.14)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: svBorderSpin 5s linear infinite;
}

.sv-distro-copy {
  position: relative;
  z-index: 2;
}

.sv-distro-address {
  color: #123b8a !important;
  font-weight: 900;
}

.sv-distro-copy .sv-ab-btn {
  margin-top: 22px;
}

.sv-distro-carousel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  background: #071225;
  box-shadow:
    0 24px 70px rgba(9, 31, 77, 0.18),
    0 0 28px rgba(255, 22, 68, 0.10);
}

.sv-distro-track {
  position: absolute;
  inset: 0;
}

.sv-distro-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.55s ease,
    transform 0.7s ease;
}

.sv-distro-track img.is-active {
  opacity: 1;
  transform: scale(1);
}

.sv-distro-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(5,12,28,0.62)),
    radial-gradient(circle at 18% 20%, rgba(255,22,68,0.12), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(28,105,255,0.12), transparent 34%);
  pointer-events: none;
}

.sv-distro-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.sv-distro-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  box-shadow: 0 12px 24px rgba(0,0,0,0.24);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.sv-distro-dots {
  position: absolute;
  left: 18px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.sv-distro-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.sv-distro-dots button.is-active {
  width: 26px;
  background: #ffffff;
}

@media (max-width: 1040px) {
  .sv-location-grid {
    grid-template-columns: 1fr;
  }

  .sv-distro-card {
    grid-template-columns: 1fr;
  }

  .sv-distro-carousel {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .sv-distro-card {
    padding: 18px;
    border-radius: 26px;
  }

  .sv-distro-carousel {
    min-height: 260px;
  }
}

/* ===== MOBILE LOCATION CAROUSEL START ===== */
@media (max-width: 760px) {
  .sv-locations-redesign {
    overflow: hidden !important;
  }

  .sv-location-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 2px 18px 18px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-padding-left: 18px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .sv-location-grid::-webkit-scrollbar {
    display: none !important;
  }

  .sv-location-card {
    flex: 0 0 min(86vw, 390px) !important;
    width: min(86vw, 390px) !important;
    scroll-snap-align: start !important;
  }

  .sv-location-map {
    height: 215px !important;
  }

  .sv-location-body {
    padding: 18px !important;
  }
}
/* ===== MOBILE LOCATION CAROUSEL END ===== */

/* ===== SNUS VILLAGE LOCATIONS REDESIGN END ===== */


/* ===== SVG DISTRO POLISH START ===== */

.sv-distro-card {
  grid-template-columns: minmax(0, 0.76fr) minmax(480px, 1fr);
  padding: 30px;
}

.sv-distro-copy h3 {
  font-size: clamp(2.1rem, 3vw, 3.3rem);
}

.sv-distro-address {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px !important;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 59, 138, 0.08);
  border: 1px solid rgba(18, 59, 138, 0.12);
}

.sv-distro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sv-distro-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #123b8a;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(9, 31, 77, 0.10);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(9, 31, 77, 0.06);
}

.sv-distro-copy .sv-ab-btn {
  margin-top: 24px;
}

.sv-distro-carousel {
  min-height: 385px;
  border: 1px solid rgba(255,255,255,0.22);
}

.sv-distro-gallery-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  padding: 12px 14px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(5, 12, 28, 0.58);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.sv-distro-gallery-label span {
  display: block;
  color: #ff1644;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sv-distro-gallery-label strong {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
  line-height: 1;
}

.sv-distro-track img {
  filter: saturate(1.04) contrast(1.04);
}

@media (max-width: 1040px) {
  .sv-distro-card {
    grid-template-columns: 1fr;
  }
}

/* ===== SVG DISTRO POLISH END ===== */


/* ===== SVG DISTRO CLEANUP START ===== */

.sv-distro-gallery-label {
  display: none !important;
}

/* ===== SVG DISTRO CLEANUP END ===== */


/* ===== SNUS VILLAGE TRUST REDESIGN START ===== */

.sv-trust-redesign {
  padding-top: 46px;
  padding-bottom: 56px;
}

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

.sv-trust-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 22, 68, 0.08), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(18, 59, 138, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,254,0.96));
  box-shadow:
    0 22px 62px rgba(9, 31, 77, 0.09),
    inset 0 0 0 1px rgba(255,255,255,0.70);
  isolation: isolate;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.sv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sv-angle, 0deg),
    rgba(255,255,255,0.08),
    rgba(255, 22, 68, 0.58),
    rgba(28, 105, 255, 0.58),
    rgba(255,255,255,0.16)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  animation: svBorderSpin 5s linear infinite;
  transition: opacity 0.28s ease;
}

.sv-trust-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,22,68,0.16), transparent 68%);
  opacity: 0.7;
  pointer-events: none;
}

.sv-trust-card > * {
  position: relative;
  z-index: 2;
}

.sv-trust-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 22, 68, 0.16);
  box-shadow:
    0 32px 84px rgba(9, 31, 77, 0.16),
    0 0 30px rgba(255, 22, 68, 0.14),
    0 0 38px rgba(18, 59, 138, 0.10);
}

.sv-trust-card:hover::before {
  opacity: 1;
}

.sv-trust-card--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 22, 68, 0.34), transparent 36%),
    radial-gradient(circle at 86% 12%, rgba(28, 105, 255, 0.30), transparent 34%),
    linear-gradient(135deg, #071225, #10234d);
}

.sv-trust-card--accent {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 22, 68, 0.14), transparent 36%),
    radial-gradient(circle at 86% 12%, rgba(28, 105, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7f9fe);
}

.sv-trust-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  box-shadow:
    0 16px 34px rgba(255, 22, 68, 0.22),
    0 0 26px rgba(18, 59, 138, 0.14);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.sv-trust-card h3 {
  margin: 0;
  color: #061633;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.sv-trust-card--dark h3,
.sv-trust-card--dark p {
  color: #ffffff;
}

.sv-trust-card p {
  margin: 14px 0 0;
  color: #64748b;
  line-height: 1.65;
  font-size: 0.95rem;
}

.sv-trust-card--dark p {
  color: rgba(255,255,255,0.78);
}

@media (max-width: 980px) {
  .sv-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sv-trust-grid {
    grid-template-columns: 1fr;
  }

  .sv-trust-card {
    min-height: 210px;
  }
}

/* ===== SNUS VILLAGE TRUST REDESIGN END ===== */

/* ===== TRUST SECTION SPACING FIX START ===== */

.sv-locations-redesign {
  padding-bottom: 30px;
}

.sv-trust-redesign {
  padding-top: 28px;
  padding-bottom: 42px;
}

.sv-trust-grid {
  gap: 16px;
}

.sv-trust-card {
  min-height: 210px;
  padding: 22px;
}

.sv-trust-icon {
  margin-bottom: 18px;
}

.sv-trust-card p {
  margin-top: 12px;
}

/* ===== TRUST SECTION SPACING FIX END ===== */


/* ===== SNUS VILLAGE FOOTER REDESIGN START ===== */

.sv-footer-redesign {
  padding: 0 0 34px;
}

.sv-footer-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(9, 31, 77, 0.08);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 22, 68, 0.09), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(18, 59, 138, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,254,0.96));
  box-shadow:
    0 28px 90px rgba(9, 31, 77, 0.12),
    inset 0 0 0 1px rgba(255,255,255,0.72);
}

.sv-footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--sv-angle, 0deg),
    rgba(255,255,255,0.08),
    rgba(255, 22, 68, 0.46),
    rgba(28, 105, 255, 0.44),
    rgba(255,255,255,0.14)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: svBorderSpin 7s linear infinite;
}

.sv-footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 0.9fr;
  gap: 28px;
}

.sv-footer-brand p {
  max-width: 48ch;
  margin: 18px 0 0;
  color: #64748b;
  line-height: 1.75;
}

.sv-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.sv-footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #123b8a;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(9, 31, 77, 0.10);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-footer-column h4 {
  margin: 0 0 16px;
  color: #123b8a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sv-footer-column ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
}

.sv-footer-column a {
  color: #52617a;
  text-decoration: none;
  font-weight: 700;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.sv-footer-column a:hover {
  color: #ff1644;
  transform: translateX(4px);
}

.sv-footer-warning {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 22, 68, 0.92), rgba(18, 59, 138, 0.90));
  box-shadow:
    0 18px 42px rgba(255, 22, 68, 0.18),
    0 0 30px rgba(18, 59, 138, 0.12);
}

.sv-footer-warning strong {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-footer-warning span {
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

.sv-footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(9, 31, 77, 0.08);
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .sv-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-footer-warning,
  .sv-footer-bottom {
    display: grid;
  }
}

@media (max-width: 640px) {
  .sv-footer-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .sv-footer-top {
    grid-template-columns: 1fr;
  }
}

/* ===== SNUS VILLAGE FOOTER REDESIGN END ===== */

/* ===== NATURAL FOOTER FIX START ===== */

.footer,
.footer__panel,
.footer__grid,
.footer__bottom,
.sv-footer-redesign,
.sv-footer-panel,
.sv-footer-top,
.sv-footer-warning,
.sv-footer-bottom {
  display: none !important;
}

.sv-natural-footer {
  margin-top: 30px;
  padding: 54px 0 28px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3fb 100%);
  border-top: 1px solid rgba(9, 31, 77, 0.08);
}

.sv-natural-footer__top {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.75fr 0.85fr;
  gap: 34px;
  padding-bottom: 34px;
}

.sv-natural-footer__brand p {
  max-width: 44ch;
  margin: 18px 0 0;
  color: #64748b;
  line-height: 1.75;
}

.sv-natural-footer .brand__logo {
  width: 92px;
  height: 92px;
}

.sv-natural-footer__notice {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-natural-footer__links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.sv-natural-footer__links h4 {
  margin: 0 0 8px;
  color: #123b8a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sv-natural-footer__links a {
  color: #52617a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sv-natural-footer__links a:hover {
  color: #ff1644;
  transform: translateX(3px);
}

.sv-natural-footer__warning {
  padding: 16px 0;
  border-top: 1px solid rgba(9, 31, 77, 0.08);
  border-bottom: 1px solid rgba(9, 31, 77, 0.08);
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

.sv-natural-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .sv-natural-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-natural-footer__bottom {
    display: grid;
  }
}

@media (max-width: 640px) {
  .sv-natural-footer {
    padding: 40px 0 24px;
  }

  .sv-natural-footer__top {
    grid-template-columns: 1fr;
  }
}

/* ===== NATURAL FOOTER FIX END ===== */

/* ===== FOOTER FINAL POLISH START ===== */

.sv-natural-footer {
  margin-top: 16px;
  padding: 44px 0 24px;
  background:
    linear-gradient(180deg, #f3f6fb 0%, #e9eef7 100%);
  border-top: 1px solid rgba(9, 31, 77, 0.10);
}

.sv-natural-footer__top {
  grid-template-columns: 1.25fr 0.7fr 0.8fr 0.85fr;
  gap: 44px;
  padding-bottom: 28px;
}

.sv-natural-footer__brand p {
  max-width: 40ch;
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.sv-natural-footer__notice {
  min-height: 30px;
  margin-top: 14px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 22, 68, 0.10);
  border: 1px solid rgba(255, 22, 68, 0.18);
  color: #b41232;
  box-shadow: none;
}

.sv-natural-footer__links {
  gap: 8px;
}

.sv-natural-footer__links h4 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(9, 31, 77, 0.08);
}

.sv-natural-footer__links a {
  width: fit-content;
  font-size: 0.92rem;
  line-height: 1.35;
}

.sv-natural-footer__warning {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  color: #52617a;
  font-size: 0.9rem;
}

.sv-natural-footer__warning::before {
  content: "18+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  font-size: 11px;
  font-weight: 950;
}

.sv-natural-footer__bottom {
  padding-top: 16px;
  font-size: 0.84rem;
}

.sv-natural-footer__bottom span:last-child {
  color: #123b8a;
}

@media (max-width: 980px) {
  .sv-natural-footer__top {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .sv-natural-footer {
    padding: 34px 0 22px;
  }

  .sv-natural-footer__warning {
    align-items: flex-start;
  }
}

/* ===== FOOTER FINAL POLISH END ===== */

/* ===== FOOTER 18 PLUS CLEANUP START ===== */

.sv-natural-footer__notice {
  display: none !important;
}

/* ===== FOOTER 18 PLUS CLEANUP END ===== */


/* ===== SNUS VILLAGE SOCIAL IPHONE SECTION START ===== */

.sv-social-showcase {
  padding-top: 36px;
  padding-bottom: 34px;
}

.sv-social-iphone-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 30px;
  align-items: center;
}

.sv-social-copy-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(17, 40, 92, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 22, 68, 0.07), transparent 32%),
    radial-gradient(circle at top right, rgba(18, 59, 138, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
  box-shadow: 0 24px 70px rgba(9, 31, 77, 0.10);
}

.sv-social-copy-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: #061633;
}

.sv-social-copy-card > p {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.8;
  max-width: 58ch;
}

.sv-social-points {
  display: grid;
  gap: 14px;
  margin: 22px 0 24px;
}

.sv-social-point {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 40, 92, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.sv-social-point strong {
  display: block;
  margin-bottom: 6px;
  color: #123b8a;
  font-size: 1rem;
}

.sv-social-point span {
  display: block;
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
}

.sv-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sv-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sv-phone {
  position: relative;
  width: 100%;
  max-width: 410px;
  padding: 14px;
  border-radius: 46px;
  background: linear-gradient(145deg, #0d1117, #202734);
  box-shadow:
    0 42px 95px rgba(6, 17, 42, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 36px rgba(255, 22, 68, 0.12),
    0 0 36px rgba(18, 59, 138, 0.12);
  animation: svPhoneFloat 6s ease-in-out infinite;
}

.sv-phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 28px;
  border-radius: 18px;
  background: #0a0d12;
  z-index: 5;
}

.sv-phone__screen {
  position: relative;
  min-height: 720px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sv-ig-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 24px 18px 14px;
}

.sv-ig-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sv-ig-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #123b8a, #ff1644);
  display: grid;
  place-items: center;
}

.sv-ig-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
}

.sv-ig-profile strong {
  display: block;
  color: #061633;
  font-size: 14px;
}

.sv-ig-profile span {
  display: block;
  color: #64748b;
  font-size: 12px;
}

.sv-ig-live {
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sv-ig-stories {
  display: flex;
  gap: 10px;
  padding: 0 18px 16px;
}

.sv-ig-stories span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #ff1644, #123b8a) border-box;
  border: 2px solid transparent;
}

.sv-social-reel {
  position: relative;
  padding: 0 18px;
  min-height: 500px;
}

.sv-social-slide {
  display: none;
  position: relative;
}

.sv-social-slide.is-active {
  display: block;
}

.sv-social-slide video,
.sv-social-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  background:
    linear-gradient(135deg, rgba(255,22,68,0.12), rgba(18,59,138,0.12)),
    #e8edf6;
}

.sv-social-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(6, 17, 42, 0.62);
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.sv-social-caption strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.sv-social-caption span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.sv-social-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
}

.sv-social-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  font-size: 22px;
  background: linear-gradient(135deg, #ff1644, #123b8a);
  box-shadow: 0 12px 24px rgba(18, 59, 138, 0.15);
}

.sv-social-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sv-social-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 40, 92, 0.18);
  cursor: pointer;
}

.sv-social-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff1644, #123b8a);
}

.sv-ig-bottom {
  display: flex;
  justify-content: center;
  padding: 0 0 16px;
}

.sv-ig-bottom span {
  width: 120px;
  height: 5px;
  border-radius: 999px;
  background: rgba(17, 40, 92, 0.14);
}

@keyframes svPhoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@media (max-width: 1100px) {
  .sv-social-iphone-grid {
    grid-template-columns: 1fr;
  }

  .sv-phone-wrap {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .sv-phone {
    max-width: 100%;
  }

  .sv-phone__screen {
    min-height: 660px;
  }

  .sv-social-slide video,
  .sv-social-slide img {
    height: 450px;
  }

  .sv-social-copy-card {
    padding: 22px;
  }

  .sv-social-links {
    flex-direction: column;
  }

  .sv-social-links .sv-ab-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== SNUS VILLAGE SOCIAL IPHONE SECTION END ===== */

/* ===== SIMPLE CAROUSEL HERO REPLACEMENT START ===== */

.sv-simple-carousel-hero,
.sv-simple-carousel-hero * {
  box-sizing: border-box;
}

.sv-simple-carousel-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 90px 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(226, 31, 47, 0.12), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(7, 27, 63, 0.10), transparent 34%),
    #ffffff;
  color: #071b3f;
}

.sv-simple-carousel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 63, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.65;
}

.sv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.sv-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: #e21f2f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sv-hero-copy h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -3px;
  color: #071b3f;
}

.sv-hero-copy h1 span {
  display: block;
  color: #e21f2f;
}

.sv-hero-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(7, 27, 63, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.sv-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.sv-btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  transition: 0.25s ease;
}

.sv-btn-primary {
  background: #e21f2f;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(226, 31, 47, 0.25);
}

.sv-btn-secondary {
  background: #071b3f;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 27, 63, 0.18);
}

.sv-btn:hover {
  transform: translateY(-3px);
}

.sv-trust {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sv-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 63, 0.1);
  color: rgba(7, 27, 63, 0.68);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 27, 63, 0.05);
}

.sv-carousel-wrap {
  position: relative;
  height: 510px;
  border-radius: 34px;
  overflow: visible;
}

.sv-orbit-system {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.sv-orbit-pot {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #071b3f, #e21f2f, #ffffff, #e21f2f, #071b3f);
  padding: 5px;
  box-shadow: 0 18px 45px rgba(7, 27, 63, 0.18);
}

.sv-orbit-pot::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 17%, transparent 18%),
    linear-gradient(135deg, #ffffff, #f8faff);
  border: 4px solid rgba(7, 27, 63, 0.78);
}

.sv-orbit-pot span {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #071b3f;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 1px;
}

.sv-pot-one {
  top: -42px;
  left: 54%;
  transform: translateX(-50%);
  animation: svPotSpinClean 7s linear infinite, svFloatTop 4s ease-in-out infinite;
}

.sv-pot-two {
  right: -42px;
  top: 42%;
  transform: translateY(-50%);
  animation: svPotSpinClean 8s linear infinite, svFloatRight 4.5s ease-in-out infinite;
}

.sv-pot-three {
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  animation: svPotSpinClean 6.5s linear infinite, svFloatBottom 4.2s ease-in-out infinite;
}

.sv-pot-four {
  left: -42px;
  top: 48%;
  transform: translateY(-50%);
  animation: svPotSpinClean 8.5s linear infinite, svFloatLeft 4.8s ease-in-out infinite;
}

.sv-pot-two::before {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 17%, transparent 18%),
    linear-gradient(135deg, #071b3f, #102e68);
  border-color: #ffffff;
}

.sv-pot-two span {
  color: #ffffff;
}

.sv-pot-three::before {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 17%, transparent 18%),
    linear-gradient(135deg, #e21f2f, #ffffff);
}

.sv-carousel {
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #071b3f;
  box-shadow: 0 30px 80px rgba(7, 27, 63, 0.22);
  border: 4px solid #ffffff;
}

.sv-slides {
  width: 300%;
  height: 100%;
  display: flex;
  animation: svCarousel 15s infinite;
}

.sv-slide {
  position: relative;
  width: 33.3333%;
  height: 100%;
  padding: 42px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sv-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 27, 63, 0.92), rgba(7, 27, 63, 0.28), rgba(7, 27, 63, 0.05)),
    var(--slide-bg);
  background-size: cover;
  background-position: center;
}

.sv-slide::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(226, 31, 47, 0.38);
  right: -120px;
  top: -120px;
  filter: blur(30px);
}

.sv-slide-one {
  --slide-bg:
    radial-gradient(circle at 70% 30%, rgba(226,31,47,0.95), transparent 26%),
    linear-gradient(135deg, #071b3f, #12356f);
}

.sv-slide-two {
  --slide-bg:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,0.16), transparent 25%),
    linear-gradient(135deg, #102e68, #e21f2f);
}

.sv-slide-three {
  --slide-bg:
    radial-gradient(circle at 75% 25%, rgba(226,31,47,0.7), transparent 25%),
    linear-gradient(135deg, #061733, #071b3f);
}

.sv-slide-content {
  position: relative;
  z-index: 3;
  max-width: 440px;
  color: #ffffff;
}

.sv-slide-content small {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.82;
}

.sv-slide-content h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -3px;
}

.sv-slide-content p {
  max-width: 390px;
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.sv-slide-content a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 12px;
  background: #ffffff;
  color: #071b3f;
  text-decoration: none;
  font-weight: 950;
  transition: 0.25s ease;
}

.sv-slide-content a:hover {
  background: #e21f2f;
  color: #ffffff;
  transform: translateY(-2px);
}

.sv-dots {
  position: absolute;
  z-index: 5;
  left: 42px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.sv-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  animation: svDot 15s infinite;
}

.sv-dots span:nth-child(2) {
  animation-delay: 5s;
}

.sv-dots span:nth-child(3) {
  animation-delay: 10s;
}

@keyframes svPotSpinClean {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes svFloatTop {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes svFloatRight {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(12px); }
}

@keyframes svFloatBottom {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

@keyframes svFloatLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-12px); }
}

@keyframes svCarousel {
  0%, 26% { transform: translateX(0); }
  33%, 59% { transform: translateX(-33.3333%); }
  66%, 92% { transform: translateX(-66.6666%); }
  100% { transform: translateX(0); }
}

@keyframes svDot {
  0%, 26% {
    background: #ffffff;
    width: 24px;
  }

  33%, 100% {
    background: rgba(255, 255, 255, 0.42);
    width: 9px;
  }
}

@media (max-width: 940px) {
  .sv-simple-carousel-hero {
    padding: 70px 18px;
  }

  .sv-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sv-carousel-wrap {
    height: 450px;
  }

  .sv-orbit-pot {
    width: 74px;
    height: 74px;
  }

  .sv-orbit-pot span {
    font-size: 13px;
  }

  .sv-pot-one {
    top: -34px;
  }

  .sv-pot-two {
    right: -34px;
  }

  .sv-pot-three {
    bottom: -34px;
  }

  .sv-pot-four {
    left: -34px;
  }
}

@media (max-width: 560px) {
  .sv-simple-carousel-hero {
    padding: 52px 16px;
  }

  .sv-hero-copy h1 {
    letter-spacing: -2px;
  }

  .sv-buttons {
    flex-direction: column;
  }

  .sv-btn {
    width: 100%;
  }

  .sv-carousel-wrap {
    height: 390px;
    border-radius: 26px;
  }

  .sv-carousel {
    border-radius: 22px;
  }

  .sv-slide {
    padding: 28px;
  }

  .sv-dots {
    left: 28px;
    bottom: 18px;
  }

  .sv-orbit-pot {
    width: 56px;
    height: 56px;
    padding: 4px;
  }

  .sv-orbit-pot::before {
    inset: 4px;
    border-width: 2px;
  }

  .sv-orbit-pot span {
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  .sv-pot-one {
    top: -25px;
    left: 58%;
  }

  .sv-pot-two {
    right: -24px;
    top: 40%;
  }

  .sv-pot-three {
    bottom: -25px;
    left: 52%;
  }

  .sv-pot-four {
    left: -24px;
    top: 52%;
  }
}

/* ===== SIMPLE CAROUSEL HERO REPLACEMENT END ===== */

/* ===== FINAL COMPACT POT HERO FIX START ===== */

.sv-simple-carousel-hero {
  min-height: 560px !important;
  padding: 54px 24px 58px !important;
  overflow: hidden !important;
}

.sv-hero-inner {
  width: min(calc(100% - 20px), 1160px) !important;
  max-width: 1160px !important;
  grid-template-columns: 0.82fr 1fr !important;
  gap: 34px !important;
}

.sv-hero-copy {
  max-width: 540px !important;
}

.sv-label {
  margin-bottom: 12px !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}

.sv-hero-copy h1 {
  max-width: 540px !important;
  font-size: clamp(3rem, 4.9vw, 4.9rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.07em !important;
}

.sv-hero-copy p {
  max-width: 430px !important;
  margin-top: 18px !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.sv-buttons {
  margin-top: 24px !important;
}

.sv-btn {
  min-height: 48px !important;
  padding: 0 22px !important;
  border-radius: 13px !important;
  font-size: 0.86rem !important;
}

.sv-trust {
  margin-top: 22px !important;
}

.sv-trust span {
  padding: 8px 12px !important;
  font-size: 11px !important;
}

.sv-carousel-wrap {
  height: 425px !important;
  max-width: 560px !important;
  margin-left: auto !important;
}

.sv-pot-behind {
  position: absolute !important;
  width: 470px !important;
  height: 470px !important;
  left: 54% !important;
  top: 50% !important;
  z-index: 0 !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
  opacity: 0.32 !important;
  filter: drop-shadow(0 26px 50px rgba(7, 27, 63, 0.18)) !important;
}

.sv-pot-behind img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  animation: svPotSpinBehind 18s linear infinite !important;
}

.sv-orbit-system {
  display: none !important;
}

.sv-carousel {
  position: relative !important;
  z-index: 2 !important;
  border-radius: 26px !important;
  border: 4px solid #ffffff !important;
}

.sv-slide {
  padding: 32px !important;
}

.sv-slide-content {
  max-width: 360px !important;
}

.sv-slide-content small {
  font-size: 10px !important;
  margin-bottom: 9px !important;
}

.sv-slide-content h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem) !important;
  letter-spacing: -0.065em !important;
}

.sv-slide-content p {
  max-width: 330px !important;
  margin: 12px 0 16px !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.sv-slide-content a {
  min-height: 40px !important;
  padding: 0 16px !important;
  border-radius: 11px !important;
  font-size: 0.82rem !important;
}

.sv-dots {
  left: 32px !important;
  bottom: 18px !important;
}

@keyframes svPotSpinBehind {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 940px) {
  .sv-simple-carousel-hero {
    padding: 48px 18px !important;
  }

  .sv-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .sv-hero-copy {
    max-width: 680px !important;
  }

  .sv-hero-copy h1 {
    max-width: 680px !important;
  }

  .sv-carousel-wrap {
    max-width: 100% !important;
    height: 405px !important;
    margin-left: 0 !important;
  }

  .sv-pot-behind {
    width: 420px !important;
    height: 420px !important;
  }
}

@media (max-width: 560px) {
  .sv-simple-carousel-hero {
    min-height: auto !important;
    padding: 38px 14px !important;
  }

  .sv-hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 4rem) !important;
    letter-spacing: -0.055em !important;
  }

  .sv-buttons {
    flex-direction: column !important;
  }

  .sv-btn {
    width: 100% !important;
  }

  .sv-carousel-wrap {
    height: 360px !important;
  }

  .sv-pot-behind {
    width: 340px !important;
    height: 340px !important;
    opacity: 0.24 !important;
  }

  .sv-slide {
    padding: 24px !important;
  }

  .sv-slide-content h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem) !important;
  }
}

/* ===== FINAL COMPACT POT HERO FIX END ===== */

/* ===== MAKE HERO BACK POT VISIBLE START ===== */

.sv-carousel-wrap {
  isolation: isolate !important;
  overflow: visible !important;
}

.sv-pot-behind {
  display: block !important;
  position: absolute !important;
  width: 640px !important;
  height: 640px !important;
  left: 62% !important;
  top: 48% !important;
  z-index: 1 !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
  opacity: 0.78 !important;
  filter:
    drop-shadow(0 30px 65px rgba(7, 27, 63, 0.24))
    drop-shadow(0 0 38px rgba(226, 31, 47, 0.12)) !important;
}

.sv-pot-behind img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  animation: svPotSpinBehind 18s linear infinite !important;
}

.sv-carousel {
  z-index: 2 !important;
}

/* create slight space around carousel so the big pot can be seen */
.sv-carousel-wrap::after {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 48%, rgba(226, 31, 47, 0.12), transparent 42%),
    radial-gradient(circle at 50% 52%, rgba(7, 27, 63, 0.10), transparent 48%);
  pointer-events: none;
}

@media (max-width: 940px) {
  .sv-pot-behind {
    width: 560px !important;
    height: 560px !important;
    left: 60% !important;
    opacity: 0.62 !important;
  }
}

@media (max-width: 560px) {
  .sv-pot-behind {
    width: 430px !important;
    height: 430px !important;
    left: 64% !important;
    top: 48% !important;
    opacity: 0.52 !important;
  }
}

/* ===== MAKE HERO BACK POT VISIBLE END ===== */

/* ===== FINAL WIDE BANNER TEXT CARD HERO START ===== */

.sv-simple-carousel-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 760px !important;
  padding: 64px 24px 82px !important;
  background:
    radial-gradient(circle at 82% 28%, rgba(226, 31, 47, 0.12), transparent 30%),
    radial-gradient(circle at 16% 80%, rgba(7, 27, 63, 0.10), transparent 34%),
    #ffffff !important;
  color: #071b3f !important;
}

.sv-simple-carousel-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(7, 27, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 63, 0.035) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  opacity: 0.65 !important;
}

.sv-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  width: min(calc(100% - 20px), 1260px) !important;
  max-width: 1260px !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  display: block !important;
}

/* wide centre banner */
.sv-carousel-wrap {
  position: relative !important;
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
  height: 455px !important;
  margin: 0 auto !important;
  padding: 4px !important;
  border-radius: 34px !important;
  overflow: visible !important;
  isolation: isolate !important;
}

.sv-border-animation {
  position: absolute !important;
  inset: -30px !important;
  border-radius: 38px !important;
  border: 4px solid transparent !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #e21f2f, #ffffff, #071b3f, #e21f2f) border-box !important;
  transform: rotate(-9deg) !important;
  animation: svBorderRotate 8s linear infinite !important;
  z-index: 0 !important;
  opacity: 0.72 !important;
}

.sv-pot-behind,
.sv-orbit-system {
  display: none !important;
}

.sv-carousel {
  position: relative !important;
  z-index: 2 !important;
  height: 100% !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #071b3f !important;
  box-shadow: 0 30px 80px rgba(7, 27, 63, 0.22) !important;
  border: 4px solid #ffffff !important;
}

.sv-slides {
  width: 300% !important;
  height: 100% !important;
  display: flex !important;
  animation: svCarousel 15s infinite !important;
}

.sv-slide {
  position: relative !important;
  width: 33.3333% !important;
  height: 100% !important;
  padding: 40px !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
}

.sv-slide::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(to top, rgba(7, 27, 63, 0.92), rgba(7, 27, 63, 0.28), rgba(7, 27, 63, 0.05)),
    var(--slide-bg) !important;
  background-size: cover !important;
  background-position: center !important;
}

.sv-slide::after {
  content: "" !important;
  position: absolute !important;
  width: 400px !important;
  height: 400px !important;
  border-radius: 50% !important;
  background: rgba(226, 31, 47, 0.38) !important;
  right: -125px !important;
  top: -125px !important;
  filter: blur(34px) !important;
}

.sv-slide-one {
  --slide-bg:
    radial-gradient(circle at 74% 30%, rgba(226,31,47,0.95), transparent 26%),
    linear-gradient(135deg, #071b3f, #12356f);
}

.sv-slide-two {
  --slide-bg:
    radial-gradient(circle at 74% 25%, rgba(255,255,255,0.16), transparent 25%),
    linear-gradient(135deg, #102e68, #e21f2f);
}

.sv-slide-three {
  --slide-bg:
    radial-gradient(circle at 76% 25%, rgba(226,31,47,0.7), transparent 25%),
    linear-gradient(135deg, #061733, #071b3f);
}

.sv-slide-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 470px !important;
  color: #ffffff !important;
}

.sv-slide-content small {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  opacity: 0.82 !important;
}

.sv-slide-content h2 {
  margin: 0 !important;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.065em !important;
}

.sv-slide-content p {
  max-width: 400px !important;
  margin: 14px 0 20px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
}

.sv-slide-content a {
  display: inline-flex !important;
  min-height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: #071b3f !important;
  text-decoration: none !important;
  font-weight: 950 !important;
  font-size: 0.86rem !important;
  transition: 0.25s ease !important;
}

.sv-slide-content a:hover {
  background: #e21f2f !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.sv-dots {
  position: absolute !important;
  z-index: 5 !important;
  left: 40px !important;
  bottom: 22px !important;
  display: flex !important;
  gap: 8px !important;
}

.sv-dots span {
  width: 9px !important;
  height: 9px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  animation: svDot 15s infinite !important;
}

.sv-dots span:nth-child(2) {
  animation-delay: 5s !important;
}

.sv-dots span:nth-child(3) {
  animation-delay: 10s !important;
}

/* text card tucked underneath/right */
.sv-hero-copy {
  position: relative !important;
  z-index: 5 !important;
  width: min(560px, 100%) !important;
  max-width: 560px !important;
  margin: -42px max(0px, calc((100% - 1040px) / 2)) 0 auto !important;
  padding: 28px 30px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(7, 27, 63, 0.09) !important;
  box-shadow: 0 22px 54px rgba(7, 27, 63, 0.12) !important;
  backdrop-filter: blur(16px) !important;
}

.sv-label {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  color: #e21f2f !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.sv-hero-copy h1 {
  margin: 0 !important;
  max-width: 500px !important;
  color: #071b3f !important;
  font-size: clamp(2.1rem, 3.4vw, 3.45rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.06em !important;
}

.sv-hero-copy h1 span {
  display: block !important;
  color: #e21f2f !important;
}

.sv-hero-copy p {
  max-width: 470px !important;
  margin: 14px 0 0 !important;
  color: rgba(7, 27, 63, 0.68) !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
}

.sv-buttons {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
}

.sv-btn {
  min-height: 44px !important;
  padding: 0 20px !important;
  border-radius: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  font-size: 0.84rem !important;
  transition: 0.25s ease !important;
}

.sv-btn-primary {
  background: #e21f2f !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(226, 31, 47, 0.22) !important;
}

.sv-btn-secondary {
  background: #071b3f !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(7, 27, 63, 0.16) !important;
}

.sv-btn:hover {
  transform: translateY(-3px) !important;
}

.sv-trust {
  margin-top: 18px !important;
  display: flex !important;
  gap: 7px !important;
  flex-wrap: wrap !important;
}

.sv-trust span {
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(7, 27, 63, 0.1) !important;
  color: rgba(7, 27, 63, 0.68) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 20px rgba(7, 27, 63, 0.05) !important;
}

@keyframes svBorderRotate {
  from {
    transform: rotate(-9deg);
  }

  to {
    transform: rotate(351deg);
  }
}

@media (max-width: 940px) {
  .sv-simple-carousel-hero {
    min-height: auto !important;
    padding: 54px 18px 70px !important;
  }

  .sv-carousel-wrap {
    width: 100% !important;
    height: 410px !important;
  }

  .sv-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px auto 0 !important;
  }
}

@media (max-width: 560px) {
  .sv-simple-carousel-hero {
    padding: 42px 14px 58px !important;
  }

  .sv-carousel-wrap {
    height: 360px !important;
    border-radius: 24px !important;
  }

  .sv-border-animation {
    inset: -20px !important;
    border-radius: 28px !important;
  }

  .sv-carousel {
    border-radius: 21px !important;
  }

  .sv-slide {
    padding: 24px !important;
  }

  .sv-slide-content h2 {
    font-size: 2.4rem !important;
    letter-spacing: -0.055em !important;
  }

  .sv-slide-content p {
    font-size: 0.9rem !important;
  }

  .sv-dots {
    left: 24px !important;
    bottom: 17px !important;
  }

  .sv-hero-copy {
    padding: 22px 20px !important;
    border-radius: 20px !important;
  }

  .sv-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 3.1rem) !important;
    letter-spacing: -0.055em !important;
  }

  .sv-buttons {
    flex-direction: column !important;
  }

  .sv-btn {
    width: 100% !important;
  }
}

/* ===== FINAL WIDE BANNER TEXT CARD HERO END ===== */

/* ===== LARGE ATTACHED HERO FINAL START ===== */

.sv-simple-carousel-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 790px !important;
  padding: 52px 16px 82px !important;
  background:
    radial-gradient(circle at 82% 28%, rgba(226, 31, 47, 0.12), transparent 30%),
    radial-gradient(circle at 16% 80%, rgba(7, 27, 63, 0.10), transparent 34%),
    #ffffff !important;
  color: #071b3f !important;
}

.sv-simple-carousel-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(7, 27, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 63, 0.035) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  opacity: 0.65 !important;
}

.sv-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  width: min(calc(100vw - 28px), 1480px) !important;
  max-width: 1480px !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  display: block !important;
}

/* large screen-fitting banner */
.sv-carousel-wrap {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: clamp(460px, 48vw, 590px) !important;
  border-radius: 34px !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
  isolation: isolate !important;
}

.sv-border-animation,
.sv-pot-behind,
.sv-orbit-system {
  display: none !important;
}

.sv-carousel {
  position: relative !important;
  z-index: 2 !important;
  height: 100% !important;
  border-radius: 32px !important;
  overflow: hidden !important;
  background: #071b3f !important;
  box-shadow: 0 34px 90px rgba(7, 27, 63, 0.22) !important;
  border: 4px solid #ffffff !important;
}

.sv-slides {
  width: 300% !important;
  height: 100% !important;
  display: flex !important;
  animation: svCarousel 15s infinite !important;
}

.sv-slide {
  position: relative !important;
  width: 33.3333% !important;
  height: 100% !important;
  padding: clamp(34px, 4vw, 56px) !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
}

.sv-slide::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(to right, rgba(7, 27, 63, 0.92), rgba(7, 27, 63, 0.42), rgba(7, 27, 63, 0.08)),
    linear-gradient(to top, rgba(7, 27, 63, 0.80), transparent 58%),
    var(--slide-bg) !important;
  background-size: cover !important;
  background-position: center !important;
}

.sv-slide::after {
  content: "" !important;
  position: absolute !important;
  width: 520px !important;
  height: 520px !important;
  border-radius: 50% !important;
  background: rgba(226, 31, 47, 0.34) !important;
  right: -150px !important;
  top: -150px !important;
  filter: blur(42px) !important;
}

.sv-slide-one {
  --slide-bg:
    radial-gradient(circle at 74% 34%, rgba(226,31,47,0.95), transparent 26%),
    linear-gradient(135deg, #071b3f, #12356f);
}

.sv-slide-two {
  --slide-bg:
    radial-gradient(circle at 76% 28%, rgba(255,255,255,0.16), transparent 25%),
    linear-gradient(135deg, #102e68, #e21f2f);
}

.sv-slide-three {
  --slide-bg:
    radial-gradient(circle at 76% 26%, rgba(226,31,47,0.7), transparent 25%),
    linear-gradient(135deg, #061733, #071b3f);
}

.sv-slide-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 560px !important;
  color: #ffffff !important;
}

.sv-slide-content small {
  display: inline-flex !important;
  margin-bottom: 12px !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  opacity: 0.86 !important;
}

.sv-slide-content h2 {
  margin: 0 !important;
  font-size: clamp(3rem, 5.8vw, 5.9rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.075em !important;
}

.sv-slide-content p {
  max-width: 500px !important;
  margin: 18px 0 24px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
}

.sv-slide-content a {
  display: inline-flex !important;
  min-height: 48px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: #071b3f !important;
  text-decoration: none !important;
  font-weight: 950 !important;
  font-size: 0.9rem !important;
  transition: 0.25s ease !important;
}

.sv-slide-content a:hover {
  background: #e21f2f !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.sv-dots {
  position: absolute !important;
  z-index: 5 !important;
  left: clamp(34px, 4vw, 56px) !important;
  bottom: 30px !important;
  display: flex !important;
  gap: 8px !important;
}

.sv-dots span {
  width: 9px !important;
  height: 9px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  animation: svDot 15s infinite !important;
}

.sv-dots span:nth-child(2) {
  animation-delay: 5s !important;
}

.sv-dots span:nth-child(3) {
  animation-delay: 10s !important;
}

/* attached text card under banner */
.sv-hero-copy {
  position: relative !important;
  z-index: 5 !important;
  width: min(610px, calc(100% - 26px)) !important;
  max-width: 610px !important;
  margin: -72px 54px 0 auto !important;
  padding: 30px 32px !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(7, 27, 63, 0.09) !important;
  box-shadow: 0 24px 60px rgba(7, 27, 63, 0.12) !important;
  backdrop-filter: blur(16px) !important;
}

.sv-label {
  display: inline-flex !important;
  margin-bottom: 11px !important;
  color: #e21f2f !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.sv-hero-copy h1 {
  margin: 0 !important;
  max-width: 560px !important;
  font-size: clamp(2.1rem, 3.6vw, 3.45rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.06em !important;
  color: #071b3f !important;
}

.sv-hero-copy h1 span {
  display: block !important;
  color: #e21f2f !important;
}

.sv-hero-copy p {
  max-width: 500px !important;
  margin: 15px 0 0 !important;
  color: rgba(7, 27, 63, 0.68) !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
}

.sv-buttons {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
}

.sv-btn {
  min-height: 44px !important;
  padding: 0 20px !important;
  border-radius: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  font-size: 0.84rem !important;
  transition: 0.25s ease !important;
}

.sv-btn-primary {
  background: #e21f2f !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(226, 31, 47, 0.22) !important;
}

.sv-btn-secondary {
  background: #071b3f !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(7, 27, 63, 0.16) !important;
}

.sv-btn:hover {
  transform: translateY(-3px) !important;
}

.sv-trust {
  margin-top: 18px !important;
  display: flex !important;
  gap: 7px !important;
  flex-wrap: wrap !important;
}

.sv-trust span {
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(7, 27, 63, 0.1) !important;
  color: rgba(7, 27, 63, 0.68) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 20px rgba(7, 27, 63, 0.05) !important;
}

@media (max-width: 940px) {
  .sv-simple-carousel-hero {
    min-height: auto !important;
    padding: 46px 14px 64px !important;
  }

  .sv-hero-inner {
    width: min(calc(100vw - 20px), 1480px) !important;
  }

  .sv-carousel-wrap {
    height: 440px !important;
  }

  .sv-slide {
    padding: 34px !important;
  }

  .sv-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px auto 0 !important;
  }
}

@media (max-width: 560px) {
  .sv-simple-carousel-hero {
    padding: 34px 10px 58px !important;
  }

  .sv-carousel-wrap {
    height: 380px !important;
    border-radius: 24px !important;
  }

  .sv-carousel {
    border-radius: 22px !important;
  }

  .sv-slide {
    padding: 24px !important;
  }

  .sv-slide-content h2 {
    font-size: 2.45rem !important;
    letter-spacing: -0.055em !important;
  }

  .sv-slide-content p {
    max-width: 300px !important;
    font-size: 0.9rem !important;
  }

  .sv-slide-content a {
    min-height: 42px !important;
    padding: 0 17px !important;
    font-size: 0.84rem !important;
  }

  .sv-dots {
    left: 24px !important;
    bottom: 18px !important;
  }

  .sv-hero-copy {
    padding: 22px 20px !important;
    border-radius: 22px !important;
  }

  .sv-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 3.05rem) !important;
    letter-spacing: -0.055em !important;
  }

  .sv-buttons {
    flex-direction: column !important;
  }

  .sv-btn {
    width: 100% !important;
  }
}

/* ===== LARGE ATTACHED HERO FINAL END ===== */





/* ===== HERO BRAND PLACEMENT REWORK START ===== */

.sv-simple-carousel-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 690px !important;
  padding: 38px 16px 46px !important;
  background:
    radial-gradient(circle at 82% 28%, rgba(226, 31, 47, 0.12), transparent 30%),
    radial-gradient(circle at 16% 80%, rgba(7, 27, 63, 0.10), transparent 34%),
    #ffffff !important;
  color: #071b3f !important;
}

.sv-simple-carousel-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(7, 27, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 63, 0.035) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  opacity: 0.55 !important;
}

.sv-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  width: min(calc(100vw - 28px), 1380px) !important;
  margin: 0 auto !important;
}

.sv-carousel-wrap {
  position: relative !important;
  width: 100% !important;
  height: clamp(380px, 42vw, 500px) !important;
  border-radius: 30px !important;
  margin: 0 auto !important;
}

.sv-carousel {
  position: relative !important;
  height: 100% !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  background: #071b3f !important;
  border: 3px solid rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 28px 70px rgba(7, 27, 63, 0.16) !important;
}

.sv-slides {
  width: 300% !important;
  height: 100% !important;
  display: flex !important;
  animation: svCarousel 15s infinite !important;
}

.sv-slide {
  position: relative !important;
  width: 33.3333% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.sv-slide::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(7,27,63,0.92) 0%, rgba(7,27,63,0.82) 40%, rgba(7,27,63,0.34) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.00)),
    var(--slide-bg) !important;
  background-size: cover !important;
  background-position: center !important;
}

.sv-slide::after {
  content: "" !important;
  position: absolute !important;
  width: 360px !important;
  height: 360px !important;
  border-radius: 50% !important;
  right: -100px !important;
  top: -110px !important;
  background: rgba(226, 31, 47, 0.26) !important;
  filter: blur(34px) !important;
}

.sv-slide-one {
  --slide-bg:
    radial-gradient(circle at 78% 32%, rgba(226,31,47,0.95), transparent 22%),
    linear-gradient(135deg, #0a1f4e, #071b3f 50%, #102d68);
}

.sv-slide-two {
  --slide-bg:
    radial-gradient(circle at 76% 28%, rgba(255,255,255,0.14), transparent 24%),
    linear-gradient(135deg, #102e68, #071b3f 38%, #d81d33);
}

.sv-slide-three {
  --slide-bg:
    radial-gradient(circle at 76% 26%, rgba(226,31,47,0.62), transparent 23%),
    linear-gradient(135deg, #061733, #071b3f 48%, #12356f);
}

.sv-slide-shell {
  position: relative !important;
  z-index: 2 !important;
  height: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr) !important;
  align-items: center !important;
  gap: 28px !important;
  padding: 34px 34px 52px !important;
}

.sv-slide-content {
  max-width: 560px !important;
  color: #ffffff !important;
}

.sv-slide-content small {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.sv-slide-content h2 {
  margin: 0 !important;
  font-size: clamp(3rem, 5.3vw, 5.3rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.07em !important;
}

.sv-slide-content p {
  max-width: 500px !important;
  margin: 14px 0 20px !important;
  color: rgba(255,255,255,0.78) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.sv-slide-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.sv-slide-content a {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: #071b3f !important;
  text-decoration: none !important;
  font-weight: 950 !important;
  font-size: 0.88rem !important;
  transition: 0.25s ease !important;
}

.sv-slide-content a:hover {
  background: #e21f2f !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.sv-slide-tag {
  display: inline-flex !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  align-items: center !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: #ffffff !important;
  font-size: 0.76rem !important;
  font-weight: 850 !important;
}

.sv-slide-visual {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.sv-brand-panel,
.sv-brand-cloud,
.sv-location-stack {
  width: min(100%, 360px) !important;
}

.sv-brand-panel {
  padding: 24px !important;
  border-radius: 26px !important;
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
}

.sv-brand-panel__eyebrow {
  display: inline-flex !important;
  margin-bottom: 8px !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.7) !important;
}

.sv-brand-panel h3 {
  margin: 0 !important;
  font-size: 1.9rem !important;
  line-height: 0.95 !important;
  letter-spacing: -0.05em !important;
}

.sv-brand-panel p {
  margin: 12px 0 0 !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,0.74) !important;
}

.sv-brand-panel__badges {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-top: 16px !important;
}

.sv-brand-panel__badges span,
.sv-brand-cloud span,
.sv-location-stack div {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  font-size: 0.76rem !important;
  font-weight: 850 !important;
}

.sv-brand-panel__badges span {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
}

.sv-brand-cloud {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-content: center !important;
  justify-content: flex-end !important;
}

.sv-brand-cloud span {
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14) !important;
}

.sv-location-stack {
  display: grid !important;
  gap: 10px !important;
}

.sv-location-stack div {
  justify-content: flex-start !important;
  min-height: 46px !important;
  padding: 0 16px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;
}

.sv-dots {
  position: absolute !important;
  z-index: 5 !important;
  left: 32px !important;
  bottom: 22px !important;
  display: flex !important;
  gap: 8px !important;
}

.sv-dots span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.42) !important;
  animation: svDot 15s infinite !important;
}

.sv-dots span:nth-child(2) {
  animation-delay: 5s !important;
}

.sv-dots span:nth-child(3) {
  animation-delay: 10s !important;
}

.sv-hero-copy {
  position: relative !important;
  z-index: 5 !important;
  width: min(520px, calc(100% - 20px)) !important;
  margin: -52px 36px 0 auto !important;
  padding: 24px 26px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid rgba(7,27,63,0.08) !important;
  box-shadow: 0 18px 42px rgba(7,27,63,0.10) !important;
}

.sv-hero-copy::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  border-radius: 24px 24px 0 0 !important;
  background: linear-gradient(90deg, #e21f2f, #071b3f) !important;
}

.sv-label {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  color: #e21f2f !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.sv-hero-copy h1 {
  margin: 0 !important;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.06em !important;
  color: #071b3f !important;
}

.sv-hero-copy h1 span {
  display: block !important;
  color: #e21f2f !important;
}

.sv-hero-copy p {
  margin: 14px 0 0 !important;
  color: rgba(7,27,63,0.68) !important;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
}

.sv-buttons {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 18px !important;
}

.sv-btn {
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  font-size: 0.84rem !important;
  transition: 0.25s ease !important;
}

.sv-btn-primary {
  background: #e21f2f !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(226,31,47,0.18) !important;
}

.sv-btn-secondary {
  background: #071b3f !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(7,27,63,0.14) !important;
}

.sv-btn:hover {
  transform: translateY(-2px) !important;
}

.sv-trust {
  margin-top: 16px !important;
  display: flex !important;
  gap: 7px !important;
  flex-wrap: wrap !important;
}

.sv-trust span {
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid rgba(7,27,63,0.09) !important;
  color: rgba(7,27,63,0.68) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

@media (max-width: 980px) {
  .sv-simple-carousel-hero {
    min-height: auto !important;
    padding: 34px 12px 42px !important;
  }

  .sv-hero-inner {
    width: min(calc(100vw - 20px), 1380px) !important;
  }

  .sv-carousel-wrap {
    height: 460px !important;
  }

  .sv-slide-shell {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 28px 28px 46px !important;
  }

  .sv-slide-visual {
    display: none !important;
  }

  .sv-hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px auto 0 !important;
  }
}

@media (max-width: 560px) {
  .sv-simple-carousel-hero {
    padding: 28px 10px 36px !important;
  }

  .sv-carousel-wrap {
    height: 360px !important;
  }

  .sv-carousel,
  .sv-carousel-wrap {
    border-radius: 22px !important;
  }

  .sv-slide-shell {
    padding: 22px 22px 42px !important;
  }

  .sv-slide-content h2 {
    font-size: 2.35rem !important;
  }

  .sv-slide-content p {
    font-size: 0.9rem !important;
    max-width: 290px !important;
  }

  .sv-slide-actions {
    gap: 8px !important;
  }

  .sv-slide-content a,
  .sv-slide-tag {
    min-height: 40px !important;
  }

  .sv-dots {
    left: 22px !important;
    bottom: 16px !important;
  }

  .sv-hero-copy {
    padding: 20px 18px !important;
    border-radius: 20px !important;
  }

  .sv-hero-copy h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.9rem) !important;
  }

  .sv-buttons {
    flex-direction: column !important;
  }

  .sv-btn {
    width: 100% !important;
  }
}

/* ===== HERO BRAND PLACEMENT REWORK END ===== */

/* ===== CLEAN BANNER WITH TEXT UNDERNEATH START ===== */

.sv-simple-carousel-hero {
  min-height: auto !important;
  padding: 42px 16px 34px !important;
}

.sv-hero-inner {
  width: min(calc(100vw - 28px), 1380px) !important;
  max-width: 1380px !important;
  margin: 0 auto !important;
  min-height: 0 !important;
  display: block !important;
}

/* banner becomes visual first, not text-heavy */
.sv-carousel-wrap {
  width: 100% !important;
  height: clamp(360px, 38vw, 500px) !important;
  margin: 0 auto !important;
  border-radius: 30px !important;
}

.sv-carousel {
  border-radius: 30px !important;
  border: 3px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 28px 70px rgba(7, 27, 63, 0.16) !important;
}

.sv-slide {
  padding: 0 !important;
  align-items: stretch !important;
}

.sv-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 27, 63, 0.82), rgba(7, 27, 63, 0.28), rgba(7, 27, 63, 0.10)),
    linear-gradient(180deg, rgba(7, 27, 63, 0.12), rgba(7, 27, 63, 0.62)),
    var(--slide-bg) !important;
}

.sv-slide::after {
  width: 520px !important;
  height: 520px !important;
  right: -140px !important;
  top: -160px !important;
  opacity: 0.9 !important;
}

/* hide previous complex banner content if any old CSS/HTML remains */
.sv-slide-shell,
.sv-slide-content,
.sv-slide-visual,
.sv-brand-panel,
.sv-brand-cloud,
.sv-location-stack {
  display: none !important;
}

/* new minimal brand placement text inside banner */
.sv-slide-brand {
  position: relative !important;
  z-index: 4 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  padding: clamp(28px, 4vw, 54px) !important;
  color: #ffffff !important;
}

.sv-slide-brand small {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  color: rgba(255,255,255,0.82) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.sv-slide-brand h2 {
  margin: 0 !important;
  max-width: 680px !important;
  color: #ffffff !important;
  font-size: clamp(3.4rem, 7vw, 7rem) !important;
  line-height: 0.86 !important;
  letter-spacing: -0.08em !important;
  text-transform: uppercase !important;
}

.sv-slide-brand a {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 22px !important;
  padding: 0 20px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  color: #071b3f !important;
  text-decoration: none !important;
  font-weight: 950 !important;
  font-size: 0.88rem !important;
}

/* dots stay clean */
.sv-dots {
  left: clamp(28px, 4vw, 54px) !important;
  bottom: 22px !important;
}

/* text box now sits underneath and fills the gap */
.sv-hero-copy {
  position: relative !important;
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
  margin: 18px auto 0 !important;
  padding: 26px 28px !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(7, 27, 63, 0.08) !important;
  box-shadow: 0 18px 44px rgba(7, 27, 63, 0.09) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 28px !important;
  align-items: center !important;
}

.sv-hero-copy::before {
  content: "" !important;
  position: absolute !important;
  left: 28px !important;
  right: 28px !important;
  top: 0 !important;
  height: 4px !important;
  border-radius: 0 0 999px 999px !important;
  background: linear-gradient(90deg, #e21f2f, #071b3f) !important;
}

.sv-hero-copy-main {
  min-width: 0 !important;
}

.sv-hero-copy-side {
  width: 310px !important;
  display: grid !important;
  justify-items: end !important;
}

.sv-label {
  margin-bottom: 9px !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}

.sv-hero-copy h1 {
  max-width: 720px !important;
  font-size: clamp(2rem, 3.2vw, 3.3rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.06em !important;
}

.sv-hero-copy p {
  max-width: 680px !important;
  margin-top: 12px !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
}

.sv-buttons {
  margin-top: 0 !important;
  justify-content: flex-end !important;
}

.sv-btn {
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  font-size: 0.84rem !important;
}

.sv-trust {
  justify-content: flex-end !important;
  margin-top: 14px !important;
}

.sv-trust span {
  padding: 7px 10px !important;
  font-size: 10px !important;
}

@media (max-width: 900px) {
  .sv-simple-carousel-hero {
    padding: 34px 12px 32px !important;
  }

  .sv-carousel-wrap {
    height: 390px !important;
  }

  .sv-hero-copy {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 22px !important;
  }

  .sv-hero-copy-side {
    width: 100% !important;
    justify-items: start !important;
  }

  .sv-buttons,
  .sv-trust {
    justify-content: flex-start !important;
  }
}

@media (max-width: 560px) {
  .sv-carousel-wrap {
    height: 340px !important;
    border-radius: 22px !important;
  }

  .sv-carousel {
    border-radius: 22px !important;
  }

  .sv-slide-brand {
    padding: 24px !important;
  }

  .sv-slide-brand h2 {
    font-size: clamp(2.4rem, 14vw, 4.2rem) !important;
  }

  .sv-slide-brand a {
    min-height: 40px !important;
    margin-top: 16px !important;
  }

  .sv-hero-copy {
    margin-top: 14px !important;
    border-radius: 20px !important;
  }

  .sv-hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.7rem) !important;
  }

  .sv-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }

  .sv-btn {
    width: 100% !important;
  }
}

/* ===== CLEAN BANNER WITH TEXT UNDERNEATH END ===== */

/* ===== HERO CAROUSEL SCREEN WIDTH FIX START ===== */

.sv-simple-carousel-hero {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.sv-hero-inner {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.sv-carousel-wrap {
  width: min(calc(100vw - 96px), 1420px) !important;
  max-width: 1420px !important;
  height: clamp(390px, 39vw, 560px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.sv-carousel {
  width: 100% !important;
}

/* keep the text card aligned under the wider banner */
.sv-hero-copy {
  width: min(calc(100vw - 220px), 1040px) !important;
  max-width: 1040px !important;
  margin: 18px auto 0 !important;
}

/* make banner text sit better inside wider carousel */
.sv-slide-brand {
  padding-left: clamp(42px, 5vw, 78px) !important;
  padding-right: clamp(42px, 5vw, 78px) !important;
}

.sv-slide-brand h2 {
  font-size: clamp(4rem, 7vw, 7.8rem) !important;
}

@media (max-width: 1100px) {
  .sv-carousel-wrap {
    width: min(calc(100vw - 48px), 1420px) !important;
  }

  .sv-hero-copy {
    width: min(calc(100vw - 80px), 1040px) !important;
  }
}

@media (max-width: 700px) {
  .sv-carousel-wrap {
    width: calc(100vw - 24px) !important;
    height: 350px !important;
  }

  .sv-hero-copy {
    width: calc(100vw - 24px) !important;
  }

  .sv-slide-brand {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ===== HERO CAROUSEL SCREEN WIDTH FIX END ===== */

/* ===== TRUE FULL WIDTH HERO CAROUSEL FIX START ===== */

/* hero itself full browser width */
.sv-simple-carousel-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden !important;
}

/* remove inner max-width restriction */
.sv-hero-inner {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* carousel goes edge-to-edge */
.sv-carousel-wrap {
  width: 100vw !important;
  max-width: 100vw !important;
  height: clamp(400px, 40vw, 570px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* actual banner fills the full width */
.sv-carousel {
  width: 100vw !important;
  max-width: 100vw !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

/* keep text inside the full-width banner from touching edges */
.sv-slide-brand {
  padding-left: clamp(42px, 9vw, 150px) !important;
  padding-right: clamp(42px, 9vw, 150px) !important;
}

/* text box stays neat underneath instead of full edge-to-edge */
.sv-hero-copy {
  width: min(calc(100vw - 96px), 1040px) !important;
  max-width: 1040px !important;
  margin: 20px auto 0 !important;
}

/* reduce dead space after hero */
.sv-simple-carousel-hero {
  padding-bottom: 34px !important;
}

@media (max-width: 700px) {
  .sv-carousel-wrap,
  .sv-carousel {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .sv-carousel-wrap {
    height: 350px !important;
  }

  .sv-slide-brand {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .sv-hero-copy {
    width: calc(100vw - 24px) !important;
  }
}

/* ===== TRUE FULL WIDTH HERO CAROUSEL FIX END ===== */

/* ===== HERO UNDER TEXT FULLER WIDTH FIX START ===== */

.sv-hero-copy {
  width: min(calc(100vw - 96px), 1280px) !important;
  max-width: 1280px !important;
  margin: 22px auto 0 !important;
  padding: 26px 34px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 34px !important;
  align-items: center !important;
}

.sv-hero-copy-main {
  max-width: 820px !important;
}

.sv-hero-copy h1 {
  max-width: 820px !important;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem) !important;
}

.sv-hero-copy p {
  max-width: 780px !important;
}

.sv-hero-copy-side {
  min-width: 330px !important;
}

.sv-buttons {
  justify-content: flex-end !important;
}

.sv-trust {
  justify-content: flex-end !important;
}

@media (max-width: 900px) {
  .sv-hero-copy {
    width: calc(100vw - 32px) !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 22px !important;
  }

  .sv-hero-copy-side {
    min-width: 0 !important;
    width: 100% !important;
  }

  .sv-buttons,
  .sv-trust {
    justify-content: flex-start !important;
  }
}

@media (max-width: 560px) {
  .sv-hero-copy {
    width: calc(100vw - 20px) !important;
    margin-top: 14px !important;
  }
}

/* ===== HERO UNDER TEXT FULLER WIDTH FIX END ===== */

/* ===== HERO UNDER TEXT FULLER WIDTH FIX START ===== */

.sv-hero-copy {
  width: min(calc(100vw - 96px), 1280px) !important;
  max-width: 1280px !important;
  margin: 22px auto 0 !important;
  padding: 26px 34px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 34px !important;
  align-items: center !important;
}

.sv-hero-copy-main {
  max-width: 820px !important;
}

.sv-hero-copy h1 {
  max-width: 820px !important;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem) !important;
}

.sv-hero-copy p {
  max-width: 780px !important;
}

.sv-hero-copy-side {
  min-width: 330px !important;
}

.sv-buttons {
  justify-content: flex-end !important;
}

.sv-trust {
  justify-content: flex-end !important;
}

@media (max-width: 900px) {
  .sv-hero-copy {
    width: calc(100vw - 32px) !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 22px !important;
  }

  .sv-hero-copy-side {
    min-width: 0 !important;
    width: 100% !important;
  }

  .sv-buttons,
  .sv-trust {
    justify-content: flex-start !important;
  }
}

@media (max-width: 560px) {
  .sv-hero-copy {
    width: calc(100vw - 20px) !important;
    margin-top: 14px !important;
  }
}

/* ===== HERO UNDER TEXT FULLER WIDTH FIX END ===== */

/* ===== TRUE WIDE HERO TEXT PANEL FIX START ===== */

.sv-simple-carousel-hero .sv-hero-copy {
  width: calc(100vw - 80px) !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 22px auto 0 !important;
  padding: 28px 46px !important;
  border-radius: 26px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, auto) !important;
  gap: 40px !important;
  align-items: center !important;
}

.sv-simple-carousel-hero .sv-hero-copy-main {
  width: 100% !important;
  max-width: none !important;
}

.sv-simple-carousel-hero .sv-hero-copy-side {
  width: auto !important;
  min-width: 320px !important;
  max-width: none !important;
  justify-self: end !important;
}

.sv-simple-carousel-hero .sv-hero-copy h1 {
  width: 100% !important;
  max-width: 920px !important;
  font-size: clamp(2.3rem, 3.7vw, 4.2rem) !important;
}

.sv-simple-carousel-hero .sv-hero-copy p {
  width: 100% !important;
  max-width: 820px !important;
}

.sv-simple-carousel-hero .sv-buttons {
  justify-content: flex-end !important;
  width: 100% !important;
}

.sv-simple-carousel-hero .sv-trust {
  justify-content: flex-end !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .sv-simple-carousel-hero .sv-hero-copy {
    width: calc(100vw - 28px) !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 22px !important;
  }

  .sv-simple-carousel-hero .sv-hero-copy-side {
    min-width: 0 !important;
    width: 100% !important;
    justify-self: start !important;
  }

  .sv-simple-carousel-hero .sv-buttons,
  .sv-simple-carousel-hero .sv-trust {
    justify-content: flex-start !important;
  }
}

/* ===== TRUE WIDE HERO TEXT PANEL FIX END ===== */

/* ===== REMOVE HERO TEXT BOX START ===== */

.sv-simple-carousel-hero .sv-hero-copy {
  display: none !important;
}

.sv-simple-carousel-hero {
  min-height: auto !important;
  padding-top: 34px !important;
  padding-bottom: 18px !important;
}

.sv-carousel-wrap {
  margin-bottom: 0 !important;
}

.sv-simple-carousel-hero + .section {
  padding-top: 34px !important;
}

/* Make banner slightly stronger now it stands alone */
.sv-carousel-wrap {
  height: clamp(420px, 42vw, 590px) !important;
}

@media (max-width: 700px) {
  .sv-simple-carousel-hero {
    padding-top: 24px !important;
    padding-bottom: 12px !important;
  }

  .sv-simple-carousel-hero + .section {
    padding-top: 26px !important;
  }
}

/* ===== REMOVE HERO TEXT BOX END ===== */

/* ===== HERO BRAND STRIP START ===== */

.sv-brand-strip {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background: #071b3f;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.sv-brand-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  animation: svBrandStripMove 34s linear infinite;
}

.sv-brand-strip__track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sv-brand-strip__track span:nth-child(3n) {
  color: #ffffff;
  background: rgba(226, 31, 47, 0.22);
  border-color: rgba(226, 31, 47, 0.28);
}

@keyframes svBrandStripMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sv-brand-strip:hover .sv-brand-strip__track {
  animation-play-state: paused;
}

.sv-brand-strip + .section {
  padding-top: 34px !important;
}

@media (max-width: 700px) {
  .sv-brand-strip__track {
    min-height: 40px;
    animation-duration: 26s;
  }

  .sv-brand-strip__track span {
    min-height: 24px;
    padding: 0 11px;
    font-size: 10px;
  }
}

/* ===== HERO BRAND STRIP END ===== */

/* ===== HERO BRAND STRIP START ===== */

.sv-brand-strip {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background: #071b3f;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.sv-brand-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  animation: svBrandStripMove 34s linear infinite;
}

.sv-brand-strip__track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sv-brand-strip__track span:nth-child(3n) {
  color: #ffffff;
  background: rgba(226, 31, 47, 0.22);
  border-color: rgba(226, 31, 47, 0.28);
}

@keyframes svBrandStripMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sv-brand-strip:hover .sv-brand-strip__track {
  animation-play-state: paused;
}

.sv-brand-strip + .section {
  padding-top: 34px !important;
}

@media (max-width: 700px) {
  .sv-brand-strip__track {
    min-height: 40px;
    animation-duration: 26s;
  }

  .sv-brand-strip__track span {
    min-height: 24px;
    padding: 0 11px;
    font-size: 10px;
  }
}

/* ===== HERO BRAND STRIP END ===== */

/* ===== SMOOTH INFINITE BRAND STRIP LOOP FIX START ===== */

.sv-brand-strip {
  width: 100vw !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  overflow: hidden !important;
  background: #071b3f !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

.sv-brand-strip__track {
  display: flex !important;
  width: max-content !important;
  min-width: max-content !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 44px !important;
  padding: 0 10px !important;
  will-change: transform !important;
  animation: svBrandStripSmoothLoop 42s linear infinite !important;
}

.sv-brand-strip__track span {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

@keyframes svBrandStripSmoothLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===== SMOOTH INFINITE BRAND STRIP LOOP FIX END ===== */

/* ===== CONNECT REAL HERO BANNER IMAGES START ===== */

.sv-slide-one {
  --slide-bg: url("/images/banner/whitefox_banner_16x6.png");
}

.sv-slide-two {
  --slide-bg: url("/images/banner/siberia_banner_organised_16x6_allimgs.png");
}

.sv-slide-three {
  --slide-bg:
    radial-gradient(circle at 76% 26%, rgba(226,31,47,0.7), transparent 25%),
    linear-gradient(135deg, #061733, #071b3f);
}

/* keep real banner images visible and text readable */
.sv-slide::before {
  background:
    linear-gradient(90deg, rgba(7, 27, 63, 0.56), rgba(7, 27, 63, 0.18), rgba(7, 27, 63, 0.04)),
    linear-gradient(180deg, rgba(7, 27, 63, 0.06), rgba(7, 27, 63, 0.42)),
    var(--slide-bg) !important;
  background-size: cover !important;
  background-position: center !important;
}

/* ===== CONNECT REAL HERO BANNER IMAGES END ===== */

/* ===== CENTERED HEADER REDESIGN START ===== */

body {
  padding-top: 132px;
}

.header .navbar {
  min-height: 118px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 12px 34px rgba(12, 23, 48, 0.09) !important;
}

.header .nav-container {
  width: min(calc(100% - 32px), var(--max)) !important;
  min-height: 118px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
}

.header .nav-links {
  justify-self: start !important;
  flex: none !important;
  justify-content: flex-start !important;
  gap: 6px !important;
}

.header .nav-links a {
  min-height: 40px !important;
  padding: 0 12px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.header .nav-links a:hover {
  color: var(--text) !important;
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.06), rgba(201, 31, 54, 0.06)) !important;
}

.header .logo {
  justify-self: center !important;
  flex: none !important;
  max-width: none !important;
}

.header .logo a {
  width: auto !important;
  min-width: 0 !important;
  justify-content: center !important;
  gap: 12px !important;
}

.header .logo img {
  width: 92px !important;
  max-width: 92px !important;
  height: 92px !important;
  max-height: 92px !important;
  object-fit: contain !important;
}

.header .logo span {
  display: grid !important;
  gap: 3px !important;
  min-width: 112px !important;
  line-height: 1 !important;
  text-align: left !important;
}

.header .logo strong {
  color: var(--text) !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.header .logo small {
  color: var(--red) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.header .header-tools {
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 9px !important;
  min-width: 0 !important;
}

.header .header-search {
  width: clamp(190px, 18vw, 280px) !important;
  height: 42px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(21, 63, 184, 0.14) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 26px rgba(12, 23, 48, 0.06) !important;
}

.header .header-search label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.header .header-search input {
  min-width: 0 !important;
  height: 100% !important;
  padding: 0 12px !important;
  border: 0 !important;
  outline: 0 !important;
  color: var(--text) !important;
  background: transparent !important;
  font-size: 13px !important;
}

.header .header-search button {
  height: 34px !important;
  margin-right: 4px !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), var(--red)) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.header .header-cart,
.header .customer-nav__link {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), var(--red)) !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

#nav-icon4 {
  display: none !important;
}

@media (max-width: 1180px) {
  body {
    padding-top: 142px;
  }

  .header .nav-container {
    grid-template-columns: auto 1fr auto !important;
    gap: 14px !important;
  }

  .header .logo {
    justify-self: start !important;
    order: 1 !important;
  }

  .header .nav-links {
    order: 3 !important;
    grid-column: 1 / -1 !important;
    justify-content: center !important;
    padding-bottom: 12px !important;
  }

  .header .header-tools {
    order: 2 !important;
  }

  .header .logo img {
    width: 78px !important;
    max-width: 78px !important;
    height: 78px !important;
    max-height: 78px !important;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 104px;
  }

  .header .navbar,
  .header .nav-container {
    min-height: 96px !important;
  }

  .header .nav-container {
    width: min(calc(100% - 24px), var(--max)) !important;
    grid-template-columns: auto 1fr auto !important;
  }

  .header .logo img {
    width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    max-height: 64px !important;
  }

  .header .logo span {
    min-width: 0 !important;
  }

  .header .logo strong {
    font-size: 13px !important;
  }

  .header .logo small {
    font-size: 9px !important;
  }

  .header .header-search,
  .header .header-cart {
    display: none !important;
  }

  .header .nav-links {
    position: fixed !important;
    top: 96px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1001 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 14px !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow) !important;
  }

  .header .nav-links.active,
  .header .nav-links.is-open {
    display: flex !important;
  }

  .header .nav-links a {
    justify-content: center !important;
  }

  .header .customer-nav__link {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
  }

  #nav-icon4 {
    display: block !important;
    width: 30px !important;
    height: 24px !important;
    position: relative !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
  }
}

/* ===== CENTERED HEADER REDESIGN END ===== */

/* ===== HERO IMAGE FIT FIX START ===== */

.sv-simple-carousel-hero .sv-slide {
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #061633;
}

/* ===== HERO IMAGE FIT FIX END ===== */

/* ===== HERO IMAGE FULL FIT FIX START ===== */

.sv-simple-carousel-hero .sv-slide {
  background-size: 100% 100% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* ===== HERO IMAGE FULL FIT FIX END ===== */

/* ===== HERO IMAGE NATURAL COVER FIX START ===== */

.sv-simple-carousel-hero .sv-slide {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* ===== HERO IMAGE NATURAL COVER FIX END ===== */

/* ===== DYNAMIC FEATURED / BEST SELLER PRODUCTS START ===== */

.sv-product-card-pro {
  position: relative;
}

.sv-product-sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #d71234, #123b8a);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(215, 18, 52, 0.24);
}

.product-card__price strong small {
  display: inline-block;
  margin-right: 6px;
  color: #64748b;
  font-size: 13px;
  text-decoration: line-through;
}

.sv-dynamic-empty {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(9, 31, 77, 0.08);
  box-shadow: 0 18px 44px rgba(9, 31, 77, 0.08);
}

.sv-dynamic-empty h3 {
  margin: 0 0 8px;
  color: #061633;
  font-size: 24px;
}

.sv-dynamic-empty p {
  margin: 0 0 16px;
  color: #64748b;
}

.sv-dynamic-empty a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #123b8a, #d71234);
  text-decoration: none;
  font-weight: 950;
}

/* ===== DYNAMIC FEATURED / BEST SELLER PRODUCTS END ===== */

/* ===== TIGHTEN HEADER TO HERO GAP START ===== */

.sv-simple-carousel-hero {
  padding-top: 6px !important;
}

@media (max-width: 700px) {
  .sv-simple-carousel-hero {
    padding-top: 4px !important;
  }
}

/* ===== TIGHTEN HEADER TO HERO GAP END ===== */

/* ===== HEADER MEGA MENU START ===== */

.header {
  position: relative;
  z-index: 1000;
}

.header .nav-links {
  position: relative;
}

.header .nav-mega-item {
  position: relative;
}

.header .nav-mega-item > a {
  position: relative;
}

.header .nav-mega-item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #123b8a, #b41232);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.header .nav-mega-item:hover > a::after {
  width: 72%;
}

.header .nav-mega {
  position: fixed;
  left: 50%;
  top: 104px;
  width: min(1080px, calc(100vw - 36px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
}

.header .nav-mega-item:hover .nav-mega,
.header .nav-mega-item:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header .nav-mega__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(18, 59, 138, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(180, 18, 50, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(9, 31, 77, 0.1);
  box-shadow: 0 24px 80px rgba(6, 22, 51, 0.18);
  backdrop-filter: blur(16px);
}

.header .nav-mega__intro {
  padding: 22px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #061633, #123b8a 58%, #b41232);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.header .nav-mega__intro span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.14);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header .nav-mega__intro h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
}

.header .nav-mega__intro p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.55;
}

.header .nav-mega__intro a {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #061633 !important;
  background: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.header .nav-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.header .nav-mega__grid a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-radius: 18px;
  color: #061633 !important;
  background: #f7f9ff;
  border: 1px solid rgba(9, 31, 77, 0.08);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.header .nav-mega__grid a::after {
  content: "›";
  color: #b41232;
  font-size: 20px;
  line-height: 1;
}

.header .nav-mega__grid a:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #123b8a, #b41232);
  border-color: transparent;
  transform: translateY(-2px);
}

.header .nav-mega__grid a:hover::after {
  color: #ffffff;
}

.header .nav-mega__grid--strength {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.header .nav-mega__grid--strength a {
  min-height: 76px;
  display: grid;
  align-content: center;
}

.header .nav-mega__grid--strength a strong,
.header .nav-mega__grid--strength a small {
  display: block;
}

.header .nav-mega__grid--strength a small {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.header .nav-mega__grid--strength a:hover small {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 980px) {
  .header .nav-mega {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    margin-top: 10px;
  }

  .header .nav-mega-item:hover .nav-mega,
  .header .nav-mega-item:focus-within .nav-mega {
    display: block;
    transform: none;
  }

  .header .nav-mega__inner {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 18px;
  }

  .header .nav-mega__grid,
  .header .nav-mega__grid--strength {
    grid-template-columns: 1fr;
  }

  .header .nav-mega__intro {
    padding: 16px;
  }

  .header .nav-mega__intro h3 {
    font-size: 20px;
  }
}

/* ===== HEADER MEGA MENU END ===== */

/* ===== LEFT LOGO / CENTER NAV HEADER START ===== */

@media (min-width: 1181px) {
  .header .nav-container {
    grid-template-columns: minmax(250px, auto) minmax(0, 1fr) minmax(360px, auto) !important;
  }

  .header .logo {
    order: 1 !important;
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .header .nav-links {
    order: 2 !important;
    grid-column: 2 !important;
    justify-self: center !important;
    justify-content: center !important;
  }

  .header .header-tools {
    order: 3 !important;
    grid-column: 3 !important;
    justify-self: end !important;
  }
}

/* ===== LEFT LOGO / CENTER NAV HEADER END ===== */

/* ===== HEADER LOGO SIZE TUNE START ===== */

.header .logo img {
  width: 108px !important;
  max-width: 108px !important;
  height: 108px !important;
  max-height: 108px !important;
}

@media (max-width: 1180px) {
  .header .logo img {
    width: 86px !important;
    max-width: 86px !important;
    height: 86px !important;
    max-height: 86px !important;
  }
}

@media (max-width: 760px) {
  .header .logo img {
    width: 68px !important;
    max-width: 68px !important;
    height: 68px !important;
    max-height: 68px !important;
  }
}

/* ===== HEADER LOGO SIZE TUNE END ===== */

/* ===== MOBILE HEADER POLISH START ===== */
@media (max-width: 900px) {
  body.mobile-nav-open {
    overflow: hidden !important;
  }

  body {
    padding-top: 88px !important;
  }

  .header .navbar,
  .header .nav-container {
    min-height: 88px !important;
  }

  .header .nav-container {
    width: min(calc(100% - 20px), var(--max)) !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 10px !important;
  }

  .header .logo a {
    gap: 8px !important;
  }

  .header .logo img {
    width: 58px !important;
    max-width: 58px !important;
    height: 58px !important;
    max-height: 58px !important;
  }

  .header .logo span {
    max-width: 120px !important;
    min-width: 0 !important;
  }

  .header .logo strong {
    font-size: 12px !important;
    line-height: 1.05 !important;
  }

  .header .logo small {
    display: block !important;
    font-size: 8px !important;
    line-height: 1.1 !important;
  }

  .header .header-tools {
    gap: 6px !important;
  }

  .header .header-search,
  .header .header-cart {
    display: none !important;
  }

  .header .customer-nav__link {
    min-height: 36px !important;
    padding: 0 11px !important;
    font-size: 10px !important;
  }

  #nav-icon4 {
    display: grid !important;
    width: 40px !important;
    height: 40px !important;
    place-items: center !important;
    border: 1px solid rgba(12, 23, 48, 0.12) !important;
    border-radius: 999px !important;
    background: #ffffff !important;
  }

  #nav-icon4 span {
    left: 10px !important;
    width: 18px !important;
    height: 2px !important;
  }

  #nav-icon4 span:nth-child(1) {
    top: 13px !important;
  }

  #nav-icon4 span:nth-child(2) {
    top: 19px !important;
  }

  #nav-icon4 span:nth-child(3) {
    top: 25px !important;
  }

  .header .nav-links {
    position: fixed !important;
    top: 88px !important;
    right: 10px !important;
    left: 10px !important;
    max-height: calc(100dvh - 104px) !important;
    overflow-y: auto !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 12px !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow) !important;
  }

  .header .nav-links.active,
  .header .nav-links.is-open {
    display: flex !important;
  }

  .header .nav-links li {
    margin: 0 !important;
  }

  .header .nav-links li > a {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: space-between !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    background: #f8faff !important;
    color: var(--text) !important;
  }

  .header .nav-mega {
    position: static !important;
    width: 100% !important;
    display: none !important;
    margin-top: 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .header .nav-mega-item.is-open .nav-mega {
    display: block !important;
  }

  .header .nav-mega__inner {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .header .nav-mega__intro {
    padding: 14px !important;
    border-radius: 14px !important;
  }

  .header .nav-mega__intro h3 {
    font-size: 18px !important;
  }

  .header .nav-mega__intro p {
    font-size: 13px !important;
  }

  .header .nav-mega__grid,
  .header .nav-mega__grid--strength {
    grid-template-columns: 1fr !important;
  }

  .header .nav-mega__grid a {
    min-height: 44px !important;
    padding: 10px 12px !important;
    border-radius: 13px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .header .logo span {
    max-width: 96px !important;
  }

  .header .logo strong {
    font-size: 11px !important;
  }

  .header .customer-nav__link {
    padding: 0 9px !important;
  }
}
/* ===== MOBILE HEADER POLISH END ===== */

/* ===== MOBILE CART VISIBILITY FIX START ===== */
@media (max-width: 900px) {
  .header .header-cart {
    min-width: 44px !important;
    min-height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 11px !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--blue), var(--red)) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 420px) {
  .header .header-cart {
    padding: 0 9px !important;
  }
}
/* ===== MOBILE CART VISIBILITY FIX END ===== */

/* LCP optimisation: real hero image instead of CSS background */
.sv-slide {
  position: relative;
  overflow: hidden;
  background: #071225;
}

.sv-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,37,0.08), rgba(7,18,37,0.58));
  z-index: 1;
  pointer-events: none;
}

.sv-slide-brand {
  position: relative;
  z-index: 2;
}

/* LCP optimisation: real hero image instead of CSS background */
.sv-slide {
  position: relative;
  overflow: hidden;
  background: #071225;
}

.sv-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,37,0.08), rgba(7,18,37,0.58));
  z-index: 1;
  pointer-events: none;
}

.sv-slide-brand {
  position: relative;
  z-index: 2;
}

/* Performance: reduce layout/reflow work on heavy below-fold sections */
.sv-collections-redesign,
.sv-bestsellers-redesign,
.sv-featured-products-redesign,
.sv-locations-redesign,
.sv-distro-card,
.sv-social-showcase {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.sv-slides,
.sv-distro-track,
.sv-social-reel,
.product-grid,
.sv-collection-grid-pro {
  contain: layout paint;
}

.sv-slide,
.sv-distro-track img,
.sv-social-slide,
.product-card,
.sv-collection-card-pro {
  will-change: transform;
}
