/* home-wellness-commerce — 1:1 DTC layout clone; Demo 1 branding only */

:root {
  --accent: #b1e3d6;
  --accent-text: #000;
  --beige: #f8f4f1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 44px;
}
::selection { background: var(--accent); color: #000; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

h1, h2 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
h3, h4 {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  margin: 0;
}

.hw-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .hw-wrap { padding: 0 23px; }
}

/* announcement */
.hw-promo {
  background: var(--accent);
  color: #000;
  text-align: center;
  padding: 8px 20px;
  min-height: 36px;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.hw-promo__slide { display: none; }
.hw-promo__slide.is-active { display: block; }
.hw-promo a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  margin-left: 0.35em;
}

/* header */
.hw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}
.hw-header__top {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #0000001a;
}
.hw-header__col {
  width: 40%;
  display: flex;
  align-items: center;
}
.hw-header__logo {
  width: 20%;
  display: flex;
  justify-content: center;
}
.hw-logo {
  font-family: Inter, sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: none;
  font-size: 1.05rem;
  line-height: 1;
}
.hw-logo img { width: 186px; height: auto; display: block; }
.hw-util {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hw-util a,
.hw-nav a,
.hw-nav button {
  font-size: 13px;
  letter-spacing: 0;
  padding: 1px 10px 0;
  line-height: 18px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1150px) {
  .hw-util a, .hw-nav a { font-size: 14px; padding: 1px 14px 0; }
}
@media (min-width: 1250px) {
  .hw-nav a { padding: 1px 20px 0; }
}
.hw-util a:first-child { padding-left: 0; }
.hw-tools {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}
.hw-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #212121;
}
.hw-icon svg { width: 24px; height: 24px; display: block; }
.hw-bag {
  position: relative;
  display: inline-flex;
}
.hw-bag b {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: var(--accent);
  color: #000;
  border-radius: 100%;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.hw-nav {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  flex-wrap: wrap;
}
.hw-new {
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px 2px;
  border-radius: 16px;
  line-height: 1.2;
}
.hw-menu-btn { display: none; }

/* buttons — 2px black, 5px radius */
.hw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 55px 12px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14.1px;
  line-height: 17px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  white-space: nowrap;
}
.hw-btn:hover { background: #000; color: #fff; }
.hw-btn--beige {
  background: var(--beige);
  border-color: var(--beige);
  color: #000;
}
.hw-btn--beige:hover { border-color: #000; background: var(--beige); color: #000; }
.hw-btn--ghost {
  background: transparent;
  color: var(--beige);
  border-color: var(--beige);
}
.hw-btn--ghost:hover { background: var(--beige); color: #000; }
.hw-btn--black { background: #000; color: #fff; border-color: #000; }
.hw-btn--black:hover { background: transparent; color: #000; }
.hw-btn--full {
  width: 100%;
  padding: 13px 0 12px;
  max-width: 100%;
}

/* hero */
.hw-hero {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hw-hero { height: 700px; }
}
.hw-hero__media { position: absolute; inset: 0; }
.hw-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hw-hero__veil {
  position: absolute;
  inset: 0;
  background: #0003;
  z-index: 1;
}
.hw-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
  margin: 0 auto;
  padding: 0 20px;
}
.hw-hero__intro {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .hw-hero__intro { font-size: 23px; margin-bottom: 28px; }
}
.hw-hero h1 {
  font-size: 27px;
  line-height: 1;
  margin: 0 0 34px;
}
@media (min-width: 768px) {
  .hw-hero h1 { font-size: 61px; margin-bottom: 50px; }
}
.hw-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hw-hero__ctas .hw-btn { padding: 13px 20px 12px; min-width: 180px; }

/* mosaic / featured-links clone */
.hw-mosaic-sec { padding: 44px 0 22px; position: relative; }
@media (min-width: 769px) {
  .hw-mosaic-sec { padding: 70px 0 58px; }
}
.hw-mosaic-sec h2 {
  font-size: 40px;
  margin: 0 0 35px;
  text-align: left;
}
@media (max-width: 768px) {
  .hw-mosaic-sec h2 { font-size: 32px; text-align: center; }
}
.hw-track-wrap { position: relative; }
.hw-track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.hw-track::-webkit-scrollbar { display: none; }
.hw-tile {
  flex: 0 0 min(280px, 78vw);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
@media (min-width: 769px) {
  .hw-tile { flex-basis: 320px; }
}
.hw-tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 17px;
  background: #f3f3f3;
}
.hw-badge {
  padding: 3px 12px 2px;
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  line-height: 24px;
  border-radius: 16px;
  width: max-content;
}
.hw-tile h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 11px 0 10px;
}
@media (min-width: 769px) {
  .hw-tile h3 { font-size: 24px; }
}
.hw-tile__sub { margin: 0 0 9px; font-size: 16px; color: #333; }
.hw-tile .hw-btn { margin-top: auto; }
.hw-arrows {
  position: absolute;
  top: -8px;
  right: 40px;
  display: flex;
  gap: 16px;
}
.hw-arrow {
  background: var(--accent);
  padding: 16px;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.hw-arrow:hover { background: #222; }
.hw-arrow:hover svg { filter: invert(1); }
@media (max-width: 768px) {
  .hw-arrows { display: none; }
}

/* image + copy split */
.hw-feature { padding: 45px 0; }
@media (min-width: 1025px) {
  .hw-feature { padding: 48px 0; }
}
.hw-feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1025px) {
  .hw-feature__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.hw-feature__media img {
  width: 100%;
  border-radius: 16px;
}
.hw-feature__copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hw-feature__copy h2 {
  font-size: 40px;
  margin: 0;
}
@media (min-width: 768px) {
  .hw-feature__copy h2 { font-size: 48px; }
}
.hw-feature__copy p {
  font-size: 16px;
  max-width: 622px;
  margin: 0;
}

/* values */
.hw-values-sec {
  padding: 45px 0;
  background: var(--beige);
  text-align: center;
}
.hw-values-sec h2 {
  font-size: 40px;
  margin: 0 0 32px;
}
.hw-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hw-value { padding-inline: 12px; }
.hw-value img {
  width: 40px;
  height: auto;
  margin: 0 auto 17px;
}
.hw-value strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin: 0 auto 4px;
}
.hw-value span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  max-width: 285px;
  margin: 0 auto;
}

/* quotes */
.hw-quotes {
  background: var(--beige);
  padding: 40px 0 25px;
}
@media (min-width: 1025px) {
  .hw-quotes { padding: 64px 0; }
}
.hw-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hw-quote {
  margin: 0;
  background: #fff;
  border-radius: 8px;
  padding: 27px 32px 37px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.hw-quote p { font-size: 16px; line-height: 1.45; }
.hw-quote img,
.hw-quote__avatar {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  object-fit: cover;
  margin: 21px auto 8px;
}
.hw-quote__avatar {
  display: grid;
  place-items: center;
  background: var(--accent);
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.hw-quote cite {
  display: grid;
  font-style: normal;
  font-size: 14px;
}
.hw-quote cite span { opacity: 0.7; font-size: 13px; }

/* reviews */
.hw-reviews-sec { padding: 3.5rem 0; }
.hw-reviews-sec h2 {
  font-size: 40px;
  text-align: center;
  margin: 0 0 1.5rem;
}
.hw-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hw-review { padding: 0.5rem 0.25rem; }
.hw-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 0.6rem; }
.hw-review h3 { font-size: 18px; margin: 0 0 0.5rem; }
.hw-review p { color: #333; font-size: 15px; }
.hw-review cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* journal */
.hw-journal-sec { padding: 55px 0; }
.hw-journal-sec h2 {
  font-size: 40px;
  margin: 0 0 50px;
}
.hw-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hw-journal img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 13px;
  background: #eee;
}
.hw-journal h3 { margin: 24px 0 0; font-size: 16px; font-weight: 500; }

/* shop + pdp */
.hw-shop { padding: 2.5rem 0 5rem; }
.hw-shop h1 { font-size: 48px; margin: 0 0 0.4rem; }
.hw-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.6rem; }
.hw-chip {
  border: 1px solid #0000001a;
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
}
.hw-chip.is-active { background: #000; color: #fff; border-color: #000; }
.hw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.2rem;
}
.hw-card { display: flex; flex-direction: column; }
.hw-card__media {
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.hw-card__media img { width: 100%; height: 100%; object-fit: contain; }
.hw-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  padding: 3px 12px 2px;
  border-radius: 16px;
  font-size: 12px;
}
.hw-card__name { font-size: 1.15rem; margin: 0.7rem 0 0.25rem; }
.hw-card__rating { font-size: 12px; color: #555; }
.hw-card__sum { color: #555; font-size: 13px; margin: 0 0 0.5rem; }
.hw-card__row { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.hw-card__compare { text-decoration: line-through; color: #888; margin-left: 0.35rem; font-weight: 400; }
.hw-link { text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }

.hw-pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2.5rem 0 5rem;
}
.hw-pdp__media { background: #f4f4f4; }
.hw-pdp__media img { width: 100%; }
.hw-pdp__info { display: grid; align-content: start; gap: 0.75rem; }
.hw-pdp h1 { font-size: 40px; }
.hw-pdp__price { font-size: 1.2rem; }
.hw-option { display: grid; gap: 0.3rem; }
.hw-option select { border: 1px solid #ccc; padding: 0.7rem; background: #fff; border-radius: 5px; }
.hw-note { color: #555; font-size: 13px; }
.hw-page { max-width: 40rem; padding: 3rem 0 5rem; }
.hw-page h1 { font-size: 40px; margin-bottom: 1rem; }
.hw-page--wide { max-width: 72rem; }
.hw-page--legal { max-width: 44rem; }
.hw-page .hw-btn { margin-top: 1.5rem; }
.hw-legal h2 { font-family: Inter, sans-serif; font-size: 1.05rem; font-weight: 600; margin: 1.75rem 0 0.55rem; letter-spacing: 0.01em; }
.hw-legal p, .hw-legal li { font-size: 15px; line-height: 1.75; color: #333; }
.hw-legal p { margin: 0.75rem 0; }
.hw-legal ul { margin: 0.35rem 0 1rem 1.2rem; }
.hw-legal a { text-decoration: underline; text-underline-offset: 2px; }
.hw-page--wide .hw-reviews { margin-top: 1rem; }
.hw-page--wide .hw-journal-grid { margin-top: 1.5rem; }
.hw-checkout {
  width: min(480px, calc(100% - 2rem));
  margin: 3rem auto 5rem;
  display: grid;
  gap: 1rem;
}
.hw-field { display: grid; gap: 0.3rem; }
.hw-field input { border: 1px solid #000; padding: 0.75rem; border-radius: 5px; }
.hw-notice { background: var(--accent); padding: 0.8rem; }
.hw-checkout__total { display: flex; justify-content: space-between; }

/* footer — mint */
.hw-footer {
  background: var(--accent);
  color: #000;
  padding: 50px 0 80px;
}
@media (min-width: 768px) {
  .hw-footer { padding: 100px 0; }
}
.hw-footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.hw-footer__news { width: min(50%, 422px); }
.hw-footer__news h2 {
  font-size: 48px;
  line-height: 1.15;
  margin: 15px 0 23px;
}
.hw-footer__news form {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #000;
  padding-bottom: 6px;
}
.hw-footer__news input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 8px 0;
  outline: none;
}
.hw-footer__menus {
  width: 50%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.hw-footer__menu { flex: 1; }
.hw-footer h4 {
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: 500;
}
.hw-footer a {
  display: block;
  margin: 0 0 9px;
  font-size: 14px;
}
.hw-footer a:hover { opacity: 0.7; }
.hw-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.7;
}

/* sticky returns */
.hw-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  background: var(--beige);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  font-size: 14px;
}
.hw-sticky .hw-btn {
  padding: 4px 8px 3px;
  font-size: 10px;
  min-height: 0;
  display: none;
}
@media (min-width: 768px) {
  .hw-sticky .hw-btn { display: inline-flex; }
}

.hw-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 80;
}
.hw-backdrop.is-open { opacity: 1; pointer-events: auto; }
.hw-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  background: #fff;
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.hw-drawer.is-open { transform: none; }
.hw-drawer__head, .hw-drawer__foot { padding: 1rem 1.15rem; border-bottom: 1px solid #eee; }
.hw-drawer__foot { border-bottom: 0; border-top: 1px solid #eee; }
.hw-drawer__body { padding: 1rem; overflow: auto; flex: 1; }
.hw-drawer__sub { display: flex; justify-content: space-between; margin-bottom: 0.8rem; }
.cart-empty { color: #666; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .hw-util, .hw-nav { display: none; }
  .hw-header__logo { width: auto; flex: 1; }
  .hw-header__col { width: auto; }
  .hw-tools { width: auto; }
  .hw-logo img { width: 152px; }
  .hw-menu-btn { display: inline-flex; margin-right: 8px; }
  .hw-values, .hw-quotes__grid, .hw-reviews, .hw-journal-grid, .hw-grid, .hw-pdp, .hw-feature__grid, .hw-auth__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hw-footer__news, .hw-footer__menus { width: 100%; }
  .hw-footer__news h2 { font-size: 30px; text-align: center; }
}
@media (max-width: 720px) {
  .hw-values, .hw-quotes__grid, .hw-reviews, .hw-journal-grid, .hw-grid, .hw-pdp, .hw-feature__grid, .hw-auth__grid {
    grid-template-columns: 1fr;
  }
  .hw-hero { height: 520px; }
  .hw-mosaic-sec h2, .hw-values-sec h2, .hw-journal-sec h2, .hw-reviews-sec h2, .hw-shop h1 {
    font-size: 32px;
  }
}

/* account / login */
.hw-auth {
  background: var(--beige);
  padding: 56px 0 80px;
}
.hw-auth__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hw-auth__form {
  max-width: 420px;
  padding-top: 12px;
}
.hw-auth__form h1 {
  font-size: 40px;
  margin: 0 0 10px;
}
.hw-auth__form > p {
  margin: 0 0 28px;
  color: #333;
}
.hw-auth__form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.hw-auth__form input[type="email"],
.hw-auth__form input[type="password"],
.hw-auth__form input[type="text"] {
  width: 100%;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 13px 14px;
  background: #fff;
  margin-bottom: 16px;
}
.hw-auth__form .hw-btn { width: 100%; margin-top: 4px; }
.hw-auth__alt {
  margin-top: 18px;
  font-size: 14px;
}
.hw-auth__alt a,
.hw-auth__alt button {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hw-auth__note {
  display: none;
  background: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.hw-auth__note.is-visible { display: block; }
.hw-auth__promo {
  background: var(--accent);
  border-radius: 16px;
  overflow: hidden;
  color: #000;
}
.hw-auth__promo-copy {
  padding: 28px 28px 8px;
  text-align: center;
}
.hw-auth__promo-copy h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 18px;
}
.hw-auth__promo .hw-btn--coral {
  background: #f2836b;
  border-color: #f2836b;
  color: #fff;
}
.hw-auth__promo .hw-btn--coral:hover { background: #000; border-color: #000; color: #fff; }
.hw-auth__promo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hw-auth__perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 18px 24px;
  text-align: center;
  font-size: 12px;
}
.hw-auth__perk b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  background: #fff;
  border-radius: 100%;
  font-size: 18px;
}
.hw-account-dash {
  max-width: 640px;
  padding: 48px 0 80px;
}
.hw-account-dash h1 { font-size: 40px; margin: 0 0 8px; }
.hw-account-dash .hw-btn { margin-top: 20px; }
