/* ─── Button base (standalone – no Andes dependency) ─────────────────────── */

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  padding: 14px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  box-sizing: border-box;
}

.landing-btn--loud {
  background-color: #4850e5;
  color: #fff;
  border-radius: 12px;
}

.landing-btn--loud:hover {
  background-color: #3d44c9;
}

.landing-btn--quiet {
  background: transparent;
  color: #282834;
  padding: 8px 16px;
}

.landing-btn--quiet:hover {
  background-color: rgba(40, 40, 52, 0.08);
}

.landing-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}

.landing-icon-btn:hover {
  background-color: rgba(40, 40, 52, 0.08);
}

/* ─── HeroSection ────────────────────────────────────────────────────────── */

.new-landing-hero-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 344 / 696;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 8px;
  background-color: #3a2418;
}

/* Background images (responsive) */
.new-landing-hero-section__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.new-landing-hero-section__bg picture {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.new-landing-hero-section__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Navbar (hidden by default – shown on mobile) */
.new-landing-hero-section__navbar {
  display: none;
}

.new-landing-hero-section__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 12px;
}

.new-landing-hero-section__logo-icon {
  display: block;
  width: 32px;
  height: 32px;
}

.new-landing-hero-section__logo-wordmark {
  display: none;
  height: 22px;
  width: auto;
}

.new-landing-hero-section__nav {
  display: none;
}

.new-landing-hero-section__nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px;
}

.new-landing-hero-section__hamburger svg {
  width: 24px;
  height: 24px;
}

/* Pill */
.new-landing-hero-section__pill {
  display: inline-block;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}

/* Content */
.new-landing-hero-section__content {
  padding-inline: 40px;
  padding-top: 60px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 3;
}

.new-landing-hero-section__title {
  width: 694px;
  max-width: 80%;
  font-weight: 700;
  font-size: 72px;
  font-style: normal;
  line-height: 100%;
  letter-spacing: -2.88px;
  color: #fff;
  text-align: left;
  font-feature-settings: 'salt' on, 'calt' off;
  margin: 0;
  text-wrap: balance;
}

.new-landing-hero-section__subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  text-align: left;
  margin: 0;
}

/* Pill row (pill + Hot Sale badge) */
.new-landing-hero-section__pill-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.new-landing-hero-section__pill {
  display: inline;
  backdrop-filter: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}

.new-landing-hero-section__hotsale-badge {
  width: 85.629px;
  height: 75.94px;
  display: block;
  flex-shrink: 0;
  margin: 0 0 17px 8px;
}

/* Price block */
.new-landing-hero-section__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.new-landing-hero-section__price-original-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-landing-hero-section__price-original {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-decoration: line-through;
}

.new-landing-hero-section__discount-badge {
  background-color: #f00028;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.new-landing-hero-section__price-discounted {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

/* CTA */
.new-landing-hero-section__cta-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px;
  position: relative;
  z-index: 5;
}

.new-landing-hero-section__cta-btn {
  width: auto;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 18px;
}

html.is-webview .new-landing-hero-section__nav-actions,
html.is-webview .new-landing-hero-section__logo {
  display: none;
}

.new-landing-hero-section .landing-btn--quiet,
.new-landing-hero-section .landing-icon-btn {
  color: #fff;
}

/* ─── Tablet (768px – 1024px) ──────────────────────────────────────────── */

@media only screen and (min-width: 768px) {
  .new-landing-hero-section {
    aspect-ratio: unset;
    height: 634px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .new-landing-hero-section {
    min-height: calc(100vh - 180px);
    min-height: calc(100dvh - 180px);
    height: auto;
    border-radius: 20px;
  }

  .new-landing-hero-section__content {
    position: absolute;
    top: 80px;
    left: 40px;
    padding-top: 0;
    padding-inline: 0;
    gap: 0;
    width: 694px;
    max-width: calc(100% - 80px);
  }

  .new-landing-hero-section__title {
    font-size: 72px;
    letter-spacing: -2.88px;
    max-width: 694px;
    width: 100%;
  }

  .new-landing-hero-section__cta-area {
    position: absolute;
    bottom: 40px;
    left: 40px;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }
}

/* ─── Desktop 1366 (1025px – 1919px) ───────────────────────────────────── */

@media only screen and (min-width: 1025px) {
  .new-landing-hero-section {
    aspect-ratio: unset;
    height: auto;
    min-height: calc(100vh - 180px);
    min-height: calc(100dvh - 180px);
  }

  .new-landing-hero-section__content {
    position: absolute;
    top: calc(50% - 60px);
    transform: translateY(-50%);
    left: 40px;
    width: 900px;
    padding-inline: 0;
    padding-top: 0;
  }

  .new-landing-hero-section__title {
    width: 100%;
    max-width: 900px;
  }

  .new-landing-hero-section__cta-area {
    position: absolute;
    bottom: 40px;
    left: 40px;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }
}

/* ─── Desktop 1920+ ───────────────────────────────────────────────────── */

@media only screen and (min-width: 1920px) {
  .new-landing-hero-section {
    aspect-ratio: unset;
    height: auto;
    min-height: calc(100dvh - 180px);
  }

  .new-landing-hero-section__title {
    font-size: 128px;
    letter-spacing: -5.12px;
    max-width: 1366px;
    width: 1366px;
  }
}

/* ─── Mobile (max-width: 767px) ───────────────────────────────────────── */

@media only screen and (max-width: 767px) {
  .new-landing-hero-section__nav-actions,
  .new-landing-hero-section__logo {
    display: none;
  }

  .new-landing-hero-section {
    aspect-ratio: unset;
    min-height: calc(100vh - 140px);
    min-height: calc(100dvh - 140px);
    border-radius: 20px;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .new-landing-hero-section__bg-img {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .new-landing-hero-section__navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    z-index: 3;
  }

  .new-landing-hero-section__content {
    position: absolute;
    top: 80px;
    left: 24px;
    right: 24px;
    padding-inline: 0;
    padding-top: 0;
    margin-top: 0;
    text-align: left;
    align-items: flex-start;
    gap: 0;
  }

  .new-landing-hero-section__title {
    width: auto;
    max-width: 100%;
    font-size: 40px;
    letter-spacing: -1.6px;
    text-align: left;
    font-feature-settings: 'salt' 1, 'calt' 0;
  }

  .new-landing-hero-section__cta-area {
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px;
    margin-bottom: 24px;
  }

  .new-landing-hero-section__pill {
    font-size: 12px;
  }

  .new-landing-hero-section__price-block {
    align-items: flex-start;
  }

  .new-landing-hero-section__price-original {
    font-size: 18px;
  }

  .new-landing-hero-section__price-discounted {
    font-size: 32px;
    text-align: left;
  }

  .new-landing-hero-section__cta-btn,
  .new-landing-hero-section .landing-btn {
    width: 100%;
    margin-top: 0 !important;
  }

  .new-landing-hero-section__hotsale-badge {
    width: 64px;
    height: 57px;
    margin: 0 0 12px 6px;
  }
}
