/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --bg-1: #030405;
  --bg-2: #0b0d0f;
  --bg-3: #15191d;
  --paper: rgba(18, 21, 24, 0.92);
  --paper-strong: #111417;
  --ink: #f7f7f8;
  --muted: #b1b3b7;
  --pink: #ee9ead;
  --pink-soft: #302027;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: var(--bg-1);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  display: none;
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

body::before {
  top: -9rem;
  right: -8rem;
  background: rgba(255, 255, 255, 0.18);
}

body::after {
  left: -12rem;
  bottom: -10rem;
  background: rgba(255, 211, 218, 0.18);
}

.page {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 6px;
}

.nav.sticky-top {
  z-index: 1020;
  background: rgba(3, 4, 5, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  backdrop-filter: blur(8px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: #171a1e;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

.brand-copy strong,
.hero h1,
.section-title h2,
.feature-card h3,
.cta-card h3 {
  font-family: "Baloo 2", sans-serif;
}

.brand-copy strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.landing-nav-collapse {
  flex-grow: 0;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #171a1e;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 143, 155, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.page .dropdown-menu,
.duodraw-redesign .dropdown-menu,
.home-header .dropdown-menu {
  --bs-dropdown-bg: #171a1e;
  --bs-dropdown-border-color: rgba(255, 255, 255, 0.14);
  --bs-dropdown-link-color: #f7f7f8;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-hover-bg: #24282e;
  --bs-dropdown-link-active-bg: #30353c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.button,
.store-badge {
  -webkit-tap-highlight-color: transparent;
}

.button {
  text-decoration: none;
  color: var(--ink);
  background: #171a1e;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-link {
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 700;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: #171a1e;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: #20242a;
}

.button.primary {
  background: #f5f5f5;
  color: #111;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  min-width: 196px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 32px rgba(46, 61, 31, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(46, 61, 31, 0.22);
}

.store-badge.apple {
  background: linear-gradient(180deg, #202020, #050505);
}

.store-badge.google {
  background: linear-gradient(180deg, #242424, #0b0b0b);
}

.store-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.store-text small {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 4px;
}

.store-text strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  width: calc(100% + var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(70, 111, 44, 0.22);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual {
  z-index: 0;
  background: #030405;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.hero-intro {
  max-width: 27rem;
}

.hero-glass {
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(3, 4, 5, 0.75), rgba(3, 4, 5, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(3px) saturate(120%);
  backdrop-filter: blur(3px) saturate(120%);
}

.hero h1 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

.hero p {
  max-width: 28rem;
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 700;
}

.hero-copy :is(h1, p, .hero-proof, .hero-secondary-store) {
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

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

.hero-bottom {
  align-self: flex-end;
  max-width: 100%;
}

.hero-actions .hero-store {
  display: none;
}

.hero-actions[data-primary-store="apple"] .hero-store.apple,
.hero-actions[data-primary-store="google"] .hero-store.google {
  display: inline-flex;
}

.hero-secondary-store {
  align-self: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 3px;
}

.hero-proof {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: 38px 0;
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
  color: var(--ink);
  text-shadow: none;
}

.section-title p {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
  line-height: 1.6;
}

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

.feature-card,
.gallery-card,
.cta-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 24px;
}

.feature-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #20242a;
  font-size: 28px;
  box-shadow: none;
}

.feature-card h3 {
  margin: 16px 0 8px;
  font-size: 1.6rem;
  line-height: 1;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.gallery-stack {
  display: grid;
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-main {
  min-height: 760px;
}

.gallery-small {
  min-height: 371px;
}

.quote {
  margin-top: 18px;
  text-align: center;
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 0.95;
  color: var(--pink);
  text-shadow: 0 7px 16px rgba(74, 108, 45, 0.12);
}

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

.step-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #20242a;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.step-card h3 {
  margin: 14px 0 8px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 24px;
  align-items: center;
}

.cta-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.95;
}

.cta-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 34rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-preview {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper-strong);
}

.cta-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52rem;
}

.footer {
  padding: 26px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: inherit;
}

/* Home page: layout is primarily Bootstrap; these rules cover the artwork and type treatment. */
.duodraw-redesign {
  --duo-muted: #b5b5b8;
  background: #030405;
  color: #f8f8f8;
  font-family: Arial, Helvetica, sans-serif;
}

html:has(.duodraw-redesign) {
  scroll-snap-type: y mandatory;
}

.duodraw-redesign .hero-section {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: radial-gradient(circle at 82% 32%, #14171b 0, #030405 46%);
}

.home-header {
  z-index: 2;
}

.home-brand {
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.home-header .language-toggle {
  padding: 0;
  color: #d1d1d3;
  font-size: 0.95rem;
  background: transparent;
  border: 0;
}

.home-header .language-toggle::after {
  margin-left: 0.5rem;
}

.home-header .language-toggle:focus {
  box-shadow: none;
}

.public-header {
  background: #030405;
  border-bottom: 1px solid var(--line);
}

.public-nav {
  display: flex;
  gap: 1.25rem;
}

.public-nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.public-nav-link:hover {
  color: #fff;
}

.duodraw-redesign .scroll-cue {
  position: absolute;
  z-index: 1;
  bottom: 1.8rem;
  left: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-cue-bounce 1.7s ease-in-out infinite;
}

.duodraw-redesign .scroll-cue svg {
  width: 1.35rem;
  height: 1.35rem;
}

.duodraw-redesign .scroll-cue:hover {
  color: #fff;
  border-color: #fff;
}

@keyframes scroll-cue-bounce {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .duodraw-redesign .scroll-cue { animation: none; }
}

.duodraw-redesign .eyebrow {
  color: #c8c8cb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.duodraw-redesign .display-title,
.duodraw-redesign .section-title {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.15rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.duodraw-redesign .section-title {
  font-size: clamp(2.9rem, 7vw, 5.8rem);
}

.duodraw-redesign .lead-copy {
  max-width: 560px;
  color: var(--duo-muted);
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  font-weight: 400;
  line-height: 1.3;
}

.duodraw-redesign .store-icon {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  place-items: center;
  vertical-align: middle;
}

.duodraw-redesign .store-icon svg {
  width: 100%;
  height: 100%;
}

.duodraw-redesign .store-options {
  display: flex;
  gap: 2.5rem;
}

.duodraw-redesign .store-option {
  display: inline-flex;
  align-items: center;
  min-width: 10rem;
  gap: 0.65rem;
  padding: 0 0 0.7rem;
  color: #f5f5f6;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
}

.duodraw-redesign .store-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  font-weight: 400;
}

.duodraw-redesign .google-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.duodraw-redesign .text-link {
  color: #f4f4f5;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  padding-bottom: 0.45rem;
}

@media (max-width: 575.98px) {
  .duodraw-redesign .store-options {
    width: 100%;
    gap: 1rem;
  }

  .duodraw-redesign .store-option {
    min-width: 0;
    flex: 1 1 0;
  }
}

.duodraw-redesign .ar-section {
  height: 100svh;
  min-height: 100svh;
  isolation: isolate;
  background: #090a0b;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.duodraw-redesign .ar-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
}

.duodraw-redesign .ar-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 4, 5, 0.93) 0%, rgba(3, 4, 5, 0.68) 39%, rgba(3, 4, 5, 0.13) 76%), linear-gradient(0deg, rgba(3, 4, 5, 0.55), transparent 48%);
}

.duodraw-redesign .more-section {
  height: 100svh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 50% 100%, #151a1d, #030405 62%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.duodraw-redesign .more-section .lead-copy {
  max-width: 680px;
}

.home-footer {
  padding: 2rem 0;
  color: #b7b7ba;
  background: #030405;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  scroll-snap-align: end;
  scroll-snap-stop: always;
}

.home-footer .home-brand {
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.home-footer-links a {
  color: inherit;
  font-size: 0.95rem;
  text-decoration: none;
}

.home-footer-links a:hover {
  color: #fff;
}

.home-footer-copy {
  color: #88898d;
}

@media (max-width: 575.98px) {
  .duodraw-redesign .ar-background { object-position: 61% center; }
  .duodraw-redesign .ar-overlay { background: linear-gradient(180deg, rgba(3, 4, 5, 0.94) 0%, rgba(3, 4, 5, 0.72) 38%, rgba(3, 4, 5, 0.12) 66%, rgba(3, 4, 5, 0.45) 100%); }
}

@media (max-width: 1024px) {
  .gallery,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    min-height: 620px;
  }
}

@media (max-width: 991.98px) {
  .nav {
    flex-wrap: wrap;
  }

  .landing-nav-collapse {
    flex-basis: 100%;
  }

  .landing-nav-collapse .nav-links {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    padding-top: 14px;
  }

  .landing-nav-collapse .nav-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav {
    padding-top: 16px;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero-copy {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-intro {
    max-width: none;
  }

  .hero-glass {
    padding: 16px 6px;
    border-radius: 20px;
  }

  .hero-bottom {
    align-self: stretch;
  }

  .hero-visual img {
    object-position: 60% center;
  }

  .hero h1 {
    font-size: 1.35rem;
  }

  .hero p {
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-actions,
  .hero-actions .store-badges {
    width: 100%;
  }

  .hero-actions .store-badges {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .store-badge {
    min-width: 0;
    flex: 1 1 0;
    gap: 8px;
    padding: 10px;
  }

  .hero-actions .store-icon {
    width: 32px;
    height: 32px;
  }

  .hero-actions .store-text small {
    font-size: 0.62rem;
  }

  .hero-actions .store-text strong {
    font-size: 1rem;
  }

  .hero-secondary-store {
    width: 100%;
    text-align: center;
  }

  .features,
  .how-it-works {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 6px 14px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 6px;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .features::-webkit-scrollbar,
  .how-it-works::-webkit-scrollbar {
    display: none;
  }

  .features .feature-card,
  .how-it-works .step-card {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 28px 0;
  }

  .section-title {
    align-items: start;
    flex-direction: column;
  }

  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 12px;
    scrollbar-width: thin;
  }

  .gallery-stack {
    display: contents;
  }

  .gallery .gallery-card {
    flex: 0 0 min(84vw, 340px);
    min-height: 500px;
    scroll-snap-align: start;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 30px;
  }
}

.home-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.home-slider {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.home-slider .carousel,
.home-slider .carousel-inner,
.home-slider .carousel-item,
.home-slider .slide-media {
  height: 100%;
}

.home-slider .slide-media {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.home-slider .slide-media::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: var(--slide-background);
  background-position: center;
  background-size: cover;
  filter: blur(24px);
  opacity: 0.58;
  transform: scale(1.1);
}

.home-slider .slide-media > img,
.home-slider .slide-media > video {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-slider .slide-media-content {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 8vw, 128px);
  bottom: clamp(36px, 10vh, 112px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  color: #fff;
  text-align: right;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.home-slider .slide-media-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 800;
}

.home-slider .slide-media-store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.home-slider .slide-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #17121d;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  text-decoration: none;
  text-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-slider .slide-cta:hover {
  color: #17121d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

@media (max-width: 575.98px) {
  .home-slider .slide-media-content {
    right: 24px;
    bottom: 44px;
  }

}

.home-slider .carousel-control-prev,
.home-slider .carousel-control-next {
  top: 50%;
  bottom: auto;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.home-slider .carousel-control-prev {
  left: 16px;
}

.home-slider .carousel-control-next {
  right: 16px;
}
