/* ========================================
   Proper Health - Homepage Styles
   Demo site for personal practice only
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2d5016;
  --color-primary-light: #4a7c28;
  --color-accent: #c9a96e;
  --color-accent-light: #e8d5b0;
  --color-bg: #faf9f6;
  --color-bg-warm: #f5f0e8;
  --color-bg-dark: #1a1a1a;
  --color-text: #1a1a1a;
  --color-text-light: #666;
  --color-text-muted: #999;
  --color-white: #ffffff;
  --color-border: #e5e1d8;
  --font-heading: 'aktiv-grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'aktiv-grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1440px;
  --transition: 0.3s ease;
}

/* ========================================
   Proper-like Header + Hero (pixel-match oriented)
   ======================================== */
:root {
  --ph-ink: #ffffff;
  --ph-ink-dark: #111111;
  --ph-hero-bg: #748ca4;
  --ph-border: rgba(255, 255, 255, 0.65);
  --ph-header-h: 66px;
  --ph-topbar-h: 32px;
  --ph-font: 'aktiv-grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ph-announcement {
  height: var(--ph-topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #748ca4;
  border-bottom: 1px solid rgba(116, 140, 164, 0.18);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}

.ph-announcement__link {
  font-family: var(--ph-font);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 16px;
  white-space: nowrap;
  color: inherit;
}

.ph-header {
  position: absolute;
  top: var(--ph-topbar-h);
  left: 0;
  right: 0;
  z-index: 40;
  color: var(--ph-ink);
  transition: color 0.3s ease;
}

.ph-header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--ph-ink-dark);
}

.ph-header.is-sticky .ph-nav__link,
.ph-header.is-sticky .ph-nav__trigger,
.ph-header.is-sticky .ph-logo {
  color: var(--ph-ink-dark);
  transition: color 0.3s ease;
}

.ph-header__inner {
  height: var(--ph-header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--ph-border);
  background: transparent;
  transition: background 0.3s ease, border-bottom-color 0.3s ease;
}

.ph-header.is-sticky .ph-header__inner {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #1a1a1a;
  backdrop-filter: blur(10px);
}

.ph-nav {
  justify-self: start;
}

.ph-nav__left {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.ph-nav__right {
  justify-self: end;
  display: flex;
  gap: 18px;
  align-items: center;
}

.ph-nav__link,
.ph-nav__trigger {
  font-family: var(--ph-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 8px 6px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.ph-nav__trigger {
  position: relative;
}

.ph-nav__trigger::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  opacity: 0.9;
}

.ph-nav__item:hover > .ph-nav__trigger::after,
.ph-nav__item[data-open="true"] > .ph-nav__trigger::after {
  transform: scaleX(1);
}

.ph-logo {
  justify-self: center;
  font-family: var(--ph-font);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: inherit;
  transition: color 0.3s ease;
  width: auto;
  height: var(--ph-header-h);
  line-height: var(--ph-header-h);
  text-align: center;
}

.ph-cart__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  margin-left: 6px;
  font-size: 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ph-header.is-sticky .ph-cart__count {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Dropdown / Mega */
.ph-dropdown,
.ph-mega {
  position: absolute;
  left: 24px;
  top: calc(var(--ph-header-h) - 1px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.ph-nav__item--dropdown {
  position: relative;
}

.ph-dropdown {
  min-width: 180px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ph-ink-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.ph-dropdown__link {
  display: block;
  padding: 12px 14px;
  font-family: var(--ph-font);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.ph-dropdown__link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.ph-nav__item--mega {
  position: relative;
}

.ph-mega {
  left: 0;
  right: 0;
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ph-ink-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.ph-mega__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  padding: 22px;
}

.ph-mega__heading {
  font-family: var(--ph-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 12px;
}

.ph-mega__link {
  display: block;
  padding: 7px 0;
  font-family: var(--ph-font);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.78);
}

.ph-mega__link:hover {
  color: rgba(0, 0, 0, 1);
}

.ph-mega__cta {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-family: var(--ph-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.ph-mega__col--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.ph-mega-card {
  display: grid;
  gap: 10px;
  color: inherit;
}

.ph-mega-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.ph-mega-card__label {
  font-family: var(--ph-font);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
}

.ph-nav__item:hover > .ph-dropdown,
.ph-nav__item:hover > .ph-mega,
.ph-nav__item[data-open="true"] > .ph-dropdown,
.ph-nav__item[data-open="true"] > .ph-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mobile */
.ph-mobile-trigger {
  display: none;
  justify-self: start;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.ph-mobile-trigger span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.ph-mobile {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.ph-mobile.is-open {
  display: block;
}

.ph-mobile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border: 0;
}

.ph-mobile__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(360px, 86vw);
  height: 100%;
  background: #ffffff;
  color: #111;
  padding: 18px 18px 24px;
}

.ph-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ph-mobile__title {
  font-family: var(--ph-font);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.ph-mobile__close {
  font-size: 30px;
  line-height: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ph-mobile__content {
  display: grid;
  gap: 10px;
}

.ph-mobile__content a {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--ph-font);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Hero */
.ph-hero {
  position: relative;
  height: calc(100vh - var(--ph-topbar-h));
  min-height: 700px;
  background: var(--ph-hero-bg);
  overflow: hidden;
}

.ph-hero__bg,
.ph-hero__bg picture,
.ph-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ph-hero__bg img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.ph-hero__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: calc(var(--ph-topbar-h) + var(--ph-header-h));
}

.ph-hero__inner {
  max-width: 24rem;
  color: #1a1a1a;
  text-shadow: none;
  margin-left: 1rem;
  margin-top: 1rem;
}

.ph-hero__kicker {
  font-family: var(--ph-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
}

.ph-hero__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.ph-hero__subtitle {
  font-family: var(--ph-font);
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.92;
  margin-bottom: 27px;
}

/* 大屏：仅用左右 padding，不用 max-width，避免两侧大片留白 */
@media (min-width: 1025px) {
  .ph-header__inner.container,
  .ph-hero .container {
    max-width: none;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* 超大屏可略收一点，避免内容过散 */
@media (min-width: 1800px) {
  .ph-header__inner.container,
  .ph-hero .container {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
  }
}

.ph-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1.5px solid #1a1a1a;
  background: #1a1a1a;
  color: #ffffff;
  font-family: var(--ph-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ph-hero__btn:hover {
  background: #ffffff;
  border-color: #1a1a1a;
  color: #1a1a1a;
}

@media (max-width: 1024px) {
  .ph-mega {
    width: calc(100vw - 32px);
  }
  .ph-mega__inner {
    grid-template-columns: 240px 1fr;
  }
  .ph-hero__title {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .ph-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .ph-nav,
  .ph-nav__right {
    display: none;
  }
  .ph-mobile-trigger {
    display: block;
  }
  .ph-logo {
    justify-self: center;
  }
  .ph-hero {
    height: 78vh;
    min-height: 520px;
  }
  .ph-hero__content {
    padding-top: calc(var(--ph-topbar-h) + var(--ph-header-h) + 14px);
  }
}

@media (max-width: 420px) {
  .ph-hero__title {
    font-size: 40px;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--white:hover {
  background-color: var(--color-bg-warm);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--small:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-1px);
}

/* --- Section Common --- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-text);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.announcement-bar a {
  color: var(--color-accent-light);
  text-decoration: underline;
  font-weight: 600;
}

.announcement-bar a:hover {
  color: var(--color-white);
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  background: var(--color-bg);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-primary);
  transition: width var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

.nav__cart {
  display: flex;
  align-items: center;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: all var(--transition);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.mobile-menu__content {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--color-bg);
  z-index: 201;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text);
}

.mobile-menu__content a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8f0e0 0%, #f5f0e8 40%, #fdf6ee 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(45, 80, 22, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero__title em {
  color: var(--color-primary);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* --- Collection Grid --- */
.collection-grid {
  padding: 48px 24px 56px;
  background: #fff;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.collection-grid__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.collection-grid__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.collection-grid__card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.collection-grid__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Solid-color overlay – expands from centre outward */
.collection-grid__overlay {
  position: absolute;
  inset: 0;
  background: var(--hover-bg);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.collection-grid__card:hover .collection-grid__overlay {
  clip-path: circle(75% at 50% 50%);
}

/* Label text */
.collection-grid__label {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  font-family: var(--ph-font);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  line-height: 1.3;
  z-index: 2;
}

/* Bottom color bar */
.collection-grid__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--bar-color);
  z-index: 3;
}

@media (max-width: 1024px) {
  .collection-grid__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .collection-grid__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .collection-grid__label {
    font-size: 16px;
    left: 14px;
    right: 14px;
  }
}


/* --- Live Happy Section --- */
.livehappy {
  background: #edebe8;
  border-bottom: 1px solid #1a1a1a;
  min-height: calc(680px + 5rem);
}

.livehappy__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.livehappy__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 240px 60px 240px 80px;
}

.livehappy__heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  color: #333;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.livehappy__accent {
  color: #a07850;
}

.livehappy__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 36px;
  max-width: 420px;
}

.livehappy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 52px;
  background: #2a2a2a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.livehappy__btn:hover {
  background: #2d5016;
  color: #fff;
}

.livehappy__media {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
}

.livehappy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.livehappy__benefits {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 32px 110px;
}

.livehappy__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.livehappy__benefit:first-child {
  border-top: none;
}

/* Staggered animation delays */
.livehappy__benefit:nth-child(1) { transition-delay: 0s; }
.livehappy__benefit:nth-child(2) { transition-delay: 0.3s; }
.livehappy__benefit:nth-child(3) { transition-delay: 0.6s; }

.livehappy__benefit.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.livehappy__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.livehappy__benefit span {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .livehappy__heading {
    font-size: 2.5rem;
  }
  .livehappy__text {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .livehappy__inner {
    grid-template-columns: 1fr;
  }
  .livehappy__text {
    padding: 56px 24px;
    order: 2;
  }
  .livehappy__media {
    order: 1;
    min-height: 400px;
  }
  .livehappy__heading {
    font-size: 2.2rem;
  }
}

/* --- Shop The Collection --- */
.shopall {
  padding: 48px 0 calc(40px + 1rem);
  background: #fff;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.shopall__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.shopall__viewport {
  position: relative;
}

.shopall__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.shopall__track::-webkit-scrollbar {
  display: none;
}

.shopall__card {
  flex: 0 0 calc((100vw - 112px) / 5.2);
  min-width: 220px;
  min-height: calc(520px + 6rem);
  scroll-snap-align: start;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Featured card (Corals) - full-bleed background */
.shopall__card--featured {
  background-size: cover;
  background-position: center;
  color: #fff;
  transition: background-size 0.5s ease;
}

.shopall__card--featured:hover {
  background-size: 110%;
}

/* Featured card hover */
.shopall__card--featured:hover .shopall__info {
  background: transparent;
}

/* Featured hover image covers the card area */
.shopall__img--featured-hover {
  background: transparent;
}

.shopall__card--featured .shopall__img-2 {
  z-index: 1;
}

.shopall__info {
  padding: 16px 18px 10px;
  position: relative;
  z-index: 1;
  transition: background 0.4s ease;
}

.shopall__card:hover .shopall__info {
  background: transparent;
}

.shopall__badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  transition: background 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.shopall__card:hover .shopall__badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.shopall__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 2px;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.shopall__card:hover .shopall__name {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.shopall__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: #999;
  font-weight: 400;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.shopall__card:hover .shopall__sub {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.shopall__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.shopall__img-1,
.shopall__img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease;
}

.shopall__img-1 {
  display: block;
}

.shopall__img-2 {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.shopall__card:hover .shopall__img-1 {
  opacity: 0;
}

.shopall__card:hover .shopall__img-2 {
  opacity: 1;
}

.shopall__foot {
  border-top: 1px solid #e0e0e0;
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: transparent;
}

.shopall__card--featured .shopall__foot {
  border-top-color: #e0e0e0;
}

.shopall__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
}

.shopall__stars {
  color: #1a1a1a;
  font-size: 20px;
  letter-spacing: 1px;
}

.shopall__card--featured .shopall__stars {
  color: #1a1a1a;
}

.shopall__score {
  font-family: var(--font-body);
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 700;
}

.shopall__card--featured .shopall__score {
  color: #555;
}

.shopall__atc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: #2a2a2a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.shopall__atc:hover {
  background: #444;
  color: #fff;
}

/* Arrow */
.shopall__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shopall__arrow:hover {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Pagination bars */
.shopall__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 0;
}

.shopall__dots button {
  width: 40px;
  height: 3px;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.shopall__dots button.is-active {
  background: #1a1a1a;
}

/* --- Citrus Banner --- */
.citrus-banner {
  position: relative;
  width: 100%;
  height: calc(680px + 5rem);
  min-height: calc(680px + 5rem);
  max-height: none;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.citrus-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.citrus-banner__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.citrus-banner__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 48px;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 900px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.citrus-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  border: 1.5px solid #fff;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.citrus-banner__btn:hover {
  background: #fff;
  color: #1a1a1a;
}

/* --- Our Formulas --- */
.formulas {
  background: #edebe8;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 0;
  min-height: calc(680px + 5rem);
}

.formulas__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: calc(680px + 5rem);
}

.formulas__left {
  padding: 72px 60px 72px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formulas__eyebrow {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.formulas__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.formulas__tab {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.formulas__tab:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

.formulas__tab.is-active {
  border-color: #1a1a1a;
}

.formulas__panels {
  min-height: 200px;
}

.formulas__panel {
  display: none;
}

.formulas__panel.is-active {
  display: block;
  animation: formulasFadeIn 0.4s ease;
}

@keyframes formulasFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.formulas__heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.formulas__text {
  font-family: var(--font-body);
  font-size: 21px;
  color: #555;
  line-height: 1.7;
  max-width: 440px;
}

.formulas__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.formulas__list li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.formulas__right {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.formulas__image {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.formulas__image.is-active {
  opacity: 1;
}

/* --- Testimonials --- */
/* --- Subscribe & Save --- */
.subsave {
  position: relative;
  width: 100%;
  min-height: calc(680px + 5rem);
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.subsave__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.subsave__card {
  position: absolute;
  left: calc(80px + 5rem);
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  background: #fff;
  padding: 40px 36px;
  z-index: 1;
  /* slide-up animation initial state */
  opacity: 0;
  translate: 0 60px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}

.subsave__card.is-visible {
  opacity: 1;
  translate: 0 0;
}

.subsave__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.subsave__heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.subsave__rule {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
  width: 60%;
}

.subsave__desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 28px;
}

.subsave__perks {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subsave__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #333;
}

.subsave__perks svg {
  flex-shrink: 0;
}

.subsave__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border: 1.5px solid #1a1a1a;
  border-radius: 6px;
  background: transparent;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.subsave__btn:hover {
  background: #2d5016;
  border-color: #2d5016;
  color: #fff;
}

/* --- Founder's Story --- */
.founder {
  background: #e5e3e0;
  border-bottom: 1px solid #1a1a1a;
}

.founder__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px 80px 40px;
  align-items: center;
  gap: 40px;
}

.founder__photo {
  display: flex;
  justify-content: flex-start;
}

.founder__photo img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
}

.founder__quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.55;
  color: #1a1a1a;
  margin-bottom: 28px;
  max-width: 700px;
}

.founder__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.founder__role {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 28px;
}

.founder__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  border: 1.5px solid #1a1a1a;
  border-radius: 6px;
  background: transparent;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.founder__btn:hover {
  background: #2d5016;
  border-color: #2d5016;
  color: #fff;
}

@media (max-width: 768px) {
  .founder__inner {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 36px;
  }
  .founder__photo img {
    max-width: 320px;
  }
  .founder__quote {
    font-size: 1.15rem;
  }
}

/* --- Reviews --- */
.reviews {
  padding: calc(56px + 1.5rem) 0 calc(40px + 2.5rem);
  background: #fff;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.reviews__header {
  text-align: center;
  margin-bottom: 36px;
}

.reviews__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.reviews__stars-big {
  color: #2d5016;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews__verified {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.reviews__viewport {
  position: relative;
}

.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.reviews__pair {
  flex: 0 0 calc((100vw - 48px - 40px) / 3);
  min-width: 420px;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(480px + 2rem);
}

.reviews__item {
  height: 100%;
}

.reviews__item--media {
  position: relative;
  overflow: hidden;
}

.reviews__item--media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews__item--text {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #e8e8e0;
}

.reviews__item-stars {
  color: #2d5016;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.reviews__item-body {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 14;
  -webkit-box-orient: vertical;
  flex: 1;
}

.reviews__item-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  text-align: center;
  margin-top: auto;
}

.reviews__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reviews__arrow:hover {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 0;
}

.reviews__dots button {
  width: 40px;
  height: 3px;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.reviews__dots button.is-active {
  background: #1a1a1a;
}

@media (max-width: 1024px) {
  .reviews__pair {
    flex: 0 0 calc((100vw - 48px - 20px) / 2);
    min-width: 360px;
  }
}

@media (max-width: 768px) {
  .reviews__pair {
    flex: 0 0 calc(100vw - 80px);
    min-width: 320px;
    height: 400px;
  }
  .reviews__item-body {
    font-size: 12px;
    -webkit-line-clamp: 10;
  }
}

@media (max-width: 480px) {
  .reviews__pair {
    flex: 0 0 calc(100vw - 60px);
    min-width: 280px;
    height: 380px;
  }
}

/* --- Footer --- */
.footer {
  background: #09503C;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid #1a1a1a;
}

.footer__inner {
  max-width: none;
  margin: 0 auto;
  padding: 64px 100px 120px;
}

.footer__grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-between;
  gap: 60px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer__heading--large {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}

.footer__form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__form input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.footer__form button {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.footer__form button:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #fff;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col a {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer__col a:hover {
  color: #fff;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .shopall__card {
    flex: 0 0 calc((100vw - 80px - 32px) / 3);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .citrus-banner__title {
    font-size: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .nav__logo {
    position: static;
    transform: none;
  }

  .nav {
    justify-content: space-between;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 0;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .livehappy__inner {
    grid-template-columns: 1fr;
  }

  .shopall__card {
    flex: 0 0 calc((100vw - 64px) / 2.3);
  }
  .shopall__track {
    padding: 0 24px;
  }

  .formulas__inner {
    grid-template-columns: 1fr;
  }
  .formulas__left {
    padding: 48px 24px;
  }
  .formulas__right {
    min-height: 360px;
    order: -1;
  }

  .subsave {
    min-height: 480px;
  }
  .subsave__card {
    left: 40px;
    width: 300px;
    padding: 32px 28px;
  }
  .subsave__heading {
    font-size: 30px;
  }

  .footer__inner {
    padding: 48px 24px 56px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .citrus-banner {
    height: 60vh;
    min-height: 360px;
  }

  .citrus-banner__title {
    font-size: 48px;
  }

  .subsave {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .subsave__card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100% - 48px);
    max-width: 380px;
    padding: 32px 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .shopall__card {
    flex: 0 0 calc(100vw - 80px);
  }

}
