/* ============== V2 overrides ============== */

:root {
  --color-lime: #dde58a;
  --color-lime-deep: #c9d36c;
}

/* ============== Topbar V2 ============== */

.topbar--v2 {
  position: relative;
  z-index: 1;
  background: #0c0c0c;
  color: #f2f2f2;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.topbar--v2 .topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 40px;
  gap: var(--sp-16);
}
.topbar__social {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-self: start;
}
.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #f2f2f2;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.topbar__social a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.topbar__social svg {
  width: 20px;
  height: 20px;
}

.topbar__msg {
  justify-self: center;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #f5f5f5;
  white-space: nowrap;
}

.topbar__region {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #f5f5f5;
  background: transparent;
  cursor: pointer;
  padding: 4px 2px;
  transition: opacity 0.25s var(--ease);
}
.topbar__region:hover {
  opacity: 0.85;
}
.topbar__region svg {
  width: 10px;
  height: 10px;
}

/* ============== Header offset for V2 ============== */
/* Header originally fixed at top: 36px. V2 topbar is 40px tall. */

.site-header--v2 {
  top: 40px;
}
.site-header--v2.is-sticky {
  top: 0;
}

/* ============== Hero V2 ============== */
/* Content absolutely placed near the bottom-left of the hero.
   Base .hero overflow:hidden + .hero__bg inset:-10% provide parallax headroom (js/main.js). */

.hero--v2 {
  text-align: left;
  display: block;
}
.hero--v2 .hero__content {
  position: absolute;
  bottom: 160px;
  left: 260px;
  max-width: 720px;
  margin: 0;
  padding: 0;
  z-index: 3;
}
.hero--v2 .hero__logo {
  display: none;
}
.hero--v2 .hero__title {
  text-align: left;
  font-size: clamp(2rem, 5.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--sp-32);
}
.hero--v2 .hero__cta {
  margin-top: var(--sp-8);
}

/* Lime base button — light weight by default (hero SAVE UP TO 20%).
   .promo__cta and .lived__cta override with bold below. */
.btn--lime {
  background: var(--color-lime);
  color: var(--color-dark);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 0;
  text-transform: uppercase;
}
.btn--lime:hover {
  background: var(--color-lime-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Guard the two-line hero title (HTML already has <br />) */
.hero--v2 .hero__title {
  white-space: normal;
}
.hero--v2 .hero__title br {
  display: inline;
}

/* Stronger gradient overlay so left-aligned white text stays readable on
   the bright outdoor photograph. */
.hero--v2 .hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* ============== Products V2 ============== */

.products--v2 {
  background: #fff;
}
.products--v2 .section-title {
  font-weight: 500;
  letter-spacing: -0.01em;
}

.products--v2 .section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 14px;
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  border-bottom: 0;
}
.products--v2 .section-link svg {
  width: 10px;
  height: 6px;
}

/* Flat card on white — tile only around the image */
.products--v2 .product-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  gap: 12px;
}
.products--v2 .product-card:hover {
  transform: none;
  box-shadow: none;
}
.products--v2 .product-card__img {
  background: transparent;
  border-radius: 0;
  aspect-ratio: auto;
  width: 280px;
  max-width: 100%;
  height: 360px;
  overflow: hidden;
}
.products--v2 .product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark teal rectangular NEW badge */
.products--v2 .product-card__badge {
  top: 12px;
  left: 12px;
  background: #2c6273;
  color: #fff;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* Only title + price visible */
.products--v2 .product-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
}
.products--v2 .product-card__desc {
  display: none;
}
.products--v2 .product-card__buy {
  display: none;
}
.products--v2 .product-card__foot {
  display: block;
  margin-top: -10px;
}
.products--v2 .product-card__price {
  font-size: 14px;
  font-weight: 400;
}

/* Shop-card price row — current + old (strikethrough) + cart icon */
.products--v2 .shop-card__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -2px;
}
.products--v2 .shop-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}
.products--v2 .shop-card__price--old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.products--v2 .shop-card__cart {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease);
}
.products--v2 .shop-card__cart:hover {
  transform: translateY(-2px);
}
.products--v2 .shop-card__cart img {
  width: 26px;
  height: 26px;
}

/* ============== Promo V2 ============== */

.promo--v2 {
  background-image: url("../images/promobanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  padding: 0;
  color: #fff;
}
.promo--v2 .promo__body {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 28px;
  row-gap: 16px;
  margin-top: 60px;
  margin-left: 50%;
  padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 64px);
  max-width: 600px;
  text-align: left;
}
.promo--v2 .promo__logo-wrap {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}
.promo--v2 .promo__logo {
  width: 56px;
  height: auto;
  display: block;
  margin: 0;
  filter: brightness(0) invert(1);
}
.promo--v2 .promo__text-wrap {
  grid-column: 2;
  grid-row: 1;
}
.promo--v2 .promo__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  max-width: 380px;
}
.promo--v2 .promo__cta-wrap {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-start;
}
/* Bold override for JOIN NOW — defeats .btn--lime { font-weight: 100 } via specificity */
.promo--v2 .promo__cta.btn--lime {
  font-weight: 700;
}

/* ============== Lived V2 ============== */

.lived--v2 {
  background: #fff;
}
.lived--v2 .lived__inner {
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
.lived--v2 .lived__image {
  border-radius: 0;
  aspect-ratio: 4 / 3;
}
.lived--v2 .lived__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lived--v2 .lived__body {
  gap: var(--sp-16);
  position: relative;
}
.lived--v2 .lived__title {
  position: relative;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 24px 0;
}
.lived--v2 .lived__title::before,
.lived--v2 .lived__title::after {
  content: "";
  position: absolute;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  font: 0/0 a;
  color: transparent;
}
.lived--v2 .lived__title::before {
  background-image: url("../images/Asset 7.png");
  top: -22px;
  left: 0;
}
.lived--v2 .lived__title::after {
  background-image: url("../images/Asset 8.png");
  bottom: -32px;
  right: 170px;
}
.lived--v2 .lived__text {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-dark);
  line-height: 1.7;
  padding: 0;
  margin-top: var(--sp-16);
}
.lived--v2 .lived__text::before,
.lived--v2 .lived__text::after {
  display: none;
}
.lived--v2 .lived__cta {
  margin-top: var(--sp-24);
  align-self: flex-start;
}
/* Bold override for ABOUT US — defeats .btn--lime { font-weight: 100 } via specificity */
.lived--v2 .lived__cta.btn--lime {
  font-weight: 700;
}

/* ============== Blog V2 ============== */

.blog--v2 {
  background: #f5f5f5;
}
.blog--v2 .blog__intro {
  display: none;
}
.blog--v2 .blog-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: none;
}
.blog--v2 .blog-card:hover {
  transform: none;
  box-shadow: none;
}
.blog--v2 .blog-card__img {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  margin: 0;
}
.blog--v2 .blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog--v2 .blog-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0) 75%
  );
  pointer-events: none;
}
.blog--v2 .blog-card__body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 2.4vw, 32px);
  color: #fff;
  z-index: 2;
  flex: none;
}
.blog--v2 .blog-card__cat {
  display: none;
}
.blog--v2 .blog-card__more {
  display: none;
}
.blog--v2 .blog-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant: small-caps;
  color: #fff;
  margin: 0;
}
.blog--v2 .blog-card__excerpt {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-variant: small-caps;
  line-height: 1.25;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
}

/* ============== Features V2 ============== */

.features--v2 {
  background: #fffaef;
}

/* ============== Healthy V2 ============== */
/* Full-bleed Asset 20.png artwork, no overlay text or button. */

.healthy--v2 {
  padding: 0;
  min-height: clamp(360px, 50vw, 640px);
  background-color: transparent;
}
.healthy--v2 .healthy__bg {
  background-position: center;
  background-size: cover;
}
.healthy--v2 .healthy__overlay,
.healthy--v2 .healthy__inner {
  display: none;
}

/* ============== Footer V2 ============== */

.site-footer--v2 {
  background: #2c2c2e;
  color: #cfcfcf;
  padding: clamp(56px, 7vw, 96px) 0 var(--sp-32);
  font-size: 15px;
  font-variant: small-caps;
  letter-spacing: 0.04em;
}
.site-footer--v2 .site-footer__grid {
  grid-template-columns: auto 1fr 1fr 1fr 1.6fr;
  gap: clamp(24px, 4vw, 80px);
  border-bottom: 0;
  padding-bottom: clamp(40px, 6vw, 80px);
  align-items: start;
}
.site-footer--v2 .site-footer__brand p {
  display: none;
}
.site-footer--v2 .site-footer__logo {
  width: 120px;
  margin-bottom: 0;
}
.site-footer--v2 .site-footer__col h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  font-variant: small-caps;
  color: #fff;
  margin-bottom: 22px;
}
.site-footer--v2 .site-footer__col ul {
  gap: 14px;
}
.site-footer--v2 .site-footer__col a {
  color: #c4c4c4;
  font-variant: small-caps;
  font-size: 15px;
}
.site-footer--v2 .site-footer__col a:hover {
  color: #fff;
}
.site-footer--v2 .site-footer__news p {
  color: #c4c4c4;
  font-variant: small-caps;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 340px;
  font-size: 15px;
}

/* Newsletter — flat rectangular pill, SIGN UP text button */
.site-footer--v2 .newsletter {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  padding: 0;
  max-width: 360px;
}
.site-footer--v2 .newsletter input {
  padding: 14px 18px;
  font-size: 14px;
  font-variant: small-caps;
  color: #fff;
}
.site-footer--v2 .newsletter input::placeholder {
  color: #8a8a8a;
  font-variant: small-caps;
}
.site-footer--v2 .newsletter button {
  width: auto;
  padding: 0 22px;
  background: #0e0e0e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant: small-caps;
  border-radius: 0;
}
.site-footer--v2 .newsletter button:hover {
  background: #000;
}

/* Social icons (IG/TikTok/LINE) under the newsletter */
.site-footer--v2 .site-footer__social {
  margin-top: 22px;
  gap: 18px;
}
.site-footer--v2 .site-footer__social a {
  width: 28px;
  height: 28px;
  background: transparent;
  border-radius: 0;
}
.site-footer--v2 .site-footer__social a:hover {
  background: transparent;
  transform: translateY(-1px);
}
.site-footer--v2 .site-footer__social svg {
  width: 22px;
  height: 22px;
  color: #c4c4c4;
}

/* Bottom bar — copyright left, payments right, no border */
.site-footer--v2 .site-footer__bar {
  border-top: 0;
  padding-top: clamp(32px, 4vw, 56px);
  align-items: center;
}
.site-footer--v2 .site-footer__copy {
  font-variant: small-caps;
  font-size: 14px;
  font-weight: 700;
  color: #8e8e8e;
  margin: 0;
}
.site-footer--v2 .site-footer__pay img {
  height: 40px;
}

/* Footer responsive — collapse 5 cols → 2 → 1 */
@media (max-width: 1023px) {
  .site-footer--v2 .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer--v2 .site-footer__brand,
  .site-footer--v2 .site-footer__news {
    grid-column: span 2;
  }
}
@media (max-width: 639px) {
  .site-footer--v2 .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer--v2 .site-footer__brand,
  .site-footer--v2 .site-footer__news {
    grid-column: auto;
  }
}

/* ============== No border-radius after Products V2 ============== */
/* Sections from Promo onwards (Promo, Lived, Blog, Features, Healthy)
   should have sharp corners per the V2 design. */

.promo--v2 .promo__image,
.promo--v2 .promo__image img,
.lived--v2 .lived__image,
.lived--v2 .lived__image img,
.blog--v2 .blog-card,
.blog--v2 .blog-card__img,
.blog--v2 .blog-card__img img,
.healthy,
.features .feature img {
  border-radius: 0;
}

/* ============== Responsive V2 ============== */

@media (max-width: 1023px) {
  .promo--v2 {
    background-position: right center;
  }
  .promo--v2 .promo__body {
    margin-left: 0;
    max-width: 100%;
  }
  .lived--v2 .lived__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899px) {
  .topbar--v2 .topbar__inner {
    grid-template-columns: auto 1fr auto;
    font-size: 11px;
  }
  .topbar__msg {
    font-size: 11px;
  }
  .hero--v2 .hero__content {
    left: 24px;
    right: 24px;
    bottom: 80px;
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 639px) {
  .container {
    max-width: 100%;
  }
  .topbar--v2 .topbar__social {
    gap: 6px;
  }
  .topbar__social svg {
    width: 18px;
    height: 18px;
  }
  .topbar__msg {
    /* On tiny screens drop the announcement so social + region still fit */
    display: none;
  }
  .topbar--v2 .topbar__inner {
    grid-template-columns: 1fr auto;
  }
  .hero--v2 .hero__content {
    bottom: 140px;
    left: 20px;
    right: 20px;
  }
  .hero--v2 .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
  .promo--v2 .promo__body {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .promo--v2 .promo__logo-wrap,
  .promo--v2 .promo__text-wrap,
  .promo--v2 .promo__cta-wrap {
    grid-column: 1;
    grid-row: auto;
  }
  .lived--v2 .lived__title {
    text-align: center;
  }
  .lived--v2 .lived__title::before {
    top: -22px;
    left: 20px;
  }
  .lived--v2 .lived__title::after {
    bottom: -32px;
    right: 40px;
  }
}
