/* ═══════════════════════════════════════════
   HANIMÈ Body — main.css
   All component styles
═══════════════════════════════════════════ */
/* ── ANNOUNCE BAR ─────────────────────────── */
.hanime-announce {
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 40px;
  font-size: 12.5px;
  letter-spacing: .05em;
  position: relative;
  z-index: 200;
  font-family: var(--fb);
}

.hanime-announce a { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.4); }
.hanime-announce__arrow { opacity: .55; cursor: pointer; font-size: 18px; user-select: none; padding: 0 4px; }
.hanime-announce__arrow:hover { opacity: 1; }

/* ── HEADER ───────────────────────────────── */
.hanime-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 150;
  transition: box-shadow var(--transition);
  overflow: visible;
}
.hanime-header.scrolled { box-shadow: 0 2px 20px rgba(94,24,64,.08); }
.hanime-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}
.hanime-logo {
  --hanime-logo-main-size: 20px;
  --hanime-logo-body-size: 9px;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  flex-shrink: 0;
}
.hanime-logo__mark {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "h rest"
    ". sub";
  align-items: start;
  justify-content: start;
  line-height: 1;
  white-space: nowrap;
}
.hanime-logo__h,
.hanime-logo__rest {
  font-family: var(--fd);
  font-size: var(--hanime-logo-main-size);
  color: var(--wine);
  font-weight: 600;
}
.hanime-logo__h { grid-area: h; }
.hanime-logo__rest {
  grid-area: rest;
  padding-left: .22em;
  letter-spacing: .22em;
}
.hanime-logo__sub {
  grid-area: sub;
  font-family: var(--fb);
  font-size: var(--hanime-logo-body-size);
  letter-spacing: .12em;
  color: var(--mid);
  font-weight: 300;
  margin-top: -2px;
}
.hanime-logo img { height: 40px; width: auto; }
/* WP outputs <a class="custom-logo-link"> inside our .hanime-logo div */
.hanime-logo .custom-logo-link { display: flex; align-items: center; }
.hanime-logo--footer { margin-bottom: 14px; }

body #popup-legacy,
body .wd-popup.wd-promo-popup,
body .wd-promo-popup-wrap,
body .mfp-wrap.wd-promo-popup-wrap,
body .mfp-bg.wd-promo-popup-wrap,
body iframe[src*="chimpstatic.com"],
body iframe[src*="mailchimp.com"],
body iframe[src*="list-manage.com"],
body div[id*="PopupSignupForm"],
body div[id*="mailchimp-popup"],
body div[id*="mailchimp-modal"],
body div[class*="mailchimp-popup"],
body div[class*="mailchimp-modal"],
body .mc-modal,
body .mc-modal-bg,
body .mc-banner,
body .mc-popup,
body .mc-popup-container,
body .mc-layout__modal,
body .mc-layout__modalContent,
body .mc-layout__banner,
body .mc-closeModal {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── NEWSLETTER POPUP ─────────────────────── */
body.hanime-newsletter-popup-open {
  overflow: hidden;
}

.hanime-newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.hanime-newsletter-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hanime-newsletter-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 18, .54);
  backdrop-filter: blur(4px);
}

.hanime-newsletter-popup__panel {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  max-height: min(680px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .92fr);
  overflow: hidden;
  background: #fffdfb;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(38, 18, 30, .22);
  transform: translateY(12px) scale(.985);
  transition: transform .24s ease;
}

.hanime-newsletter-popup.is-visible .hanime-newsletter-popup__panel {
  transform: translateY(0) scale(1);
}

.hanime-newsletter-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36,36,36,.14);
  background: rgba(255,255,255,.9);
  color: var(--dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hanime-newsletter-popup__close:hover,
.hanime-newsletter-popup__close:focus-visible {
  color: var(--pink);
  border-color: rgba(192,17,87,.35);
}

.hanime-newsletter-popup__media {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  background: #80664f;
}

.hanime-newsletter-popup__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hanime-newsletter-popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 50px 42px;
  text-align: center;
}

.hanime-newsletter-popup__brand {
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}

.hanime-newsletter-popup__brand .hanime-logo__sub {
  grid-column: 2;
  justify-self: start;
  margin-left: 0;
  transform: none;
}

.hanime-newsletter-popup__brand-mark {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "h rest"
    ". sub";
  align-items: start;
  justify-content: start;
  line-height: 1;
  white-space: nowrap;
}

.hanime-newsletter-popup__brand-h,
.hanime-newsletter-popup__brand-rest {
  font-family: var(--fd);
  font-size: var(--hanime-logo-main-size);
  font-weight: 600;
  color: var(--wine);
}

.hanime-newsletter-popup__brand-h {
  grid-area: h;
}

.hanime-newsletter-popup__brand-rest {
  grid-area: rest;
  padding-left: .22em;
  letter-spacing: .22em;
}

.hanime-newsletter-popup__brand-sub {
  grid-area: sub;
  justify-self: start;
  margin-top: -2px;
  margin-left: 0;
  transform: none;
  font-family: var(--fb);
  font-size: var(--hanime-logo-body-size);
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--mid);
}

.hanime-newsletter-popup__eyebrow {
  margin: 0 0 14px;
  font-family: var(--fb);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
}

.hanime-newsletter-popup h2 {
  max-width: 370px;
  margin: 0 auto 16px;
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.06;
  color: var(--wine);
}

.hanime-newsletter-popup__text {
  max-width: 360px;
  margin: 0 auto 28px;
  color: var(--mid);
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.7;
}

.hanime-newsletter-popup__form {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.hanime-newsletter-popup__form input[type="email"] {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 15px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
  text-align: left;
}

.hanime-newsletter-popup__form input[type="email"]:focus {
  outline: 1px solid var(--pink);
  border-color: var(--pink);
}

.hanime-newsletter-popup__form button {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: var(--wine);
  color: #fff;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.hanime-newsletter-popup__form button:hover,
.hanime-newsletter-popup__form button:focus-visible {
  background: var(--pink);
}

.hanime-newsletter-popup__form button:disabled {
  cursor: wait;
  opacity: .72;
}

.hanime-newsletter-popup__message {
  min-height: 20px;
  margin: 12px auto 0;
  color: var(--mid);
  font-family: var(--fb);
  font-size: 12px;
  line-height: 1.5;
}

.hanime-newsletter-popup__message.is-success {
  color: #2f7d4f;
}

.hanime-newsletter-popup__message.is-error {
  color: var(--pink);
}

.hanime-newsletter-popup__decline {
  align-self: center;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--mid);
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.hanime-newsletter-popup__decline:hover,
.hanime-newsletter-popup__decline:focus-visible {
  color: var(--dark);
}

/* ── NAV ──────────────────────────────────── */
.hanime-nav {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 68px;
}
.hanime-nav__item {
  position: static;
  display: flex;
  align-items: center;
}
.hanime-nav__link {
  font-family: var(--fb);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--dark);
  padding: 0 14px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
}
.hanime-nav__link:hover { color: var(--pink); }

/* Active nav item — pink colour only */
.hanime-nav__link.is-active { color: var(--pink); }
.hanime-dropdown__link.is-active { color: var(--pink); }
.hanime-nav__chevron { width: 10px !important; height: 10px !important; min-width: 10px; min-height: 10px; max-width: 10px; max-height: 10px; transition: transform var(--transition); flex-shrink: 0; display: inline-block; overflow: hidden; }
.hanime-nav__item:hover .hanime-nav__chevron { transform: rotate(180deg); }

/* ── MEGAMENU ─────────────────────────────── */
.hanime-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--pink);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(94,24,64,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s ease;
  pointer-events: none;
  z-index: 140;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hanime-nav__item--mega:hover .hanime-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.hanime-mega__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 48px;
}
.hanime-mega__heading {
  display: block;
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 16px;
}
.hanime-mega__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--dark);
  font-family: var(--fb);
  font-weight: 400;
  transition: color var(--transition);
  text-decoration: none;
  border-bottom: none;
}
.hanime-mega__link:hover { color: var(--pink); }
.hanime-mega__badge {
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  font-family: var(--fb);
}

/* Style icons grid */
.hanime-mega__icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 16px 24px;
}
.hanime-mega__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dark);
  font-size: 10.5px;
  font-family: var(--fb);
  font-weight: 400;
  letter-spacing: .02em;
  transition: color var(--transition);
  text-align: center;
}
.hanime-mega__icon-item:hover { color: var(--pink); }
.hanime-mega__icon-tile {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.hanime-mega__icon-art {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
}
.hanime-mega__icon-art svg {
  width: 48px;
  height: 48px;
  display: block;
}
.hanime-mega__icon-art img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}
.hanime-mega__icon-item:hover .hanime-mega__icon-tile {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(177, 111, 130, .08);
}

/* Type column */
.hanime-mega__col--type { border-left: 1px solid var(--border); padding-left: 32px; }
.hanime-mega__type-link {
  display: block;
  padding: 10px 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color var(--transition);
}
.hanime-mega__type-link:last-of-type { margin-bottom: 20px; }
.hanime-mega__type-link:hover .hanime-mega__type-label { color: var(--pink); }
.hanime-mega__type-label {
  display: block;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 3px;
}
.hanime-mega__type-desc {
  font-family: var(--fb);
  font-size: 11.5px;
  color: var(--mid);
  font-weight: 300;
}
.hanime-mega__product-preview { margin-top: 8px; }
.hanime-mega__product-preview a { display: flex; flex-direction: column; gap: 8px; text-decoration: none; }
.hanime-mega__product-preview img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
}
.hanime-mega__product-name { font-size: 11px; color: var(--mid); font-family: var(--fb); }

/* ── SIMPLE DROPDOWN ──────────────────────── */
.hanime-nav__item--dropdown { position: relative; }
.hanime-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--pink);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 8px 32px rgba(94,24,64,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 200;
}
.hanime-nav__item--dropdown:hover .hanime-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.hanime-dropdown__link {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--dark);
  font-family: var(--fb);
  transition: all var(--transition);
  text-decoration: none;
}
.hanime-dropdown__link:hover { color: var(--pink); background: var(--blush); }

/* ── HEADER ICONS ─────────────────────────── */
.hanime-header__icons { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.hanime-header__icon {
  color: var(--dark);
  cursor: pointer;
  position: relative;
  padding: 4px;
  transition: color var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.hanime-header__icon:hover { color: var(--pink); }
.hanime-cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
}
.hanime-cart-count--empty { display: none; }

/* ── HAMBURGER ────────────────────────────── */
.hanime-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin-left: -10px;
  background: none;
  border: none;
  color: var(--dark);
  flex-shrink: 0;
}
.hanime-hamburger svg {
  width: 18px;
  height: 18px;
  display: block;
}
.hanime-hamburger__close { display: none !important; }
.hanime-hamburger.is-open .hanime-hamburger__icon { display: none !important; }
.hanime-hamburger.is-open .hanime-hamburger__close { display: block !important; }

/* ── HERO / BANNER ────────────────────────── */
.hanimebody-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c8a4b0 0%, #d4878a 30%, #b5707c 60%, #8c4d60 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(520px, 43vw, 620px);
  min-height: 520px;
}
.hanimebody-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 64px 64px;
  position: relative;
  z-index: 2;
}
.hanimebody-hero__tag { font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.8); text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
.hanimebody-hero__title { font-family: var(--fd); font-size: clamp(40px, 4.7vw, 68px); color: #fff; font-weight: 300; line-height: 1.05; margin-bottom: 16px; max-width: 520px; }
.hanimebody-hero__sub { font-size: 14px; color: rgba(255,255,255,.88); line-height: 1.7; font-weight: 300; margin-bottom: 20px; max-width: 460px; }
.hanimebody-hero__points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  max-width: 560px;
  color: rgba(255,255,255,.9);
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.62;
}
.hanimebody-hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.hanimebody-hero__points li::before {
  content: '•';
  display: inline-block;
  transform: translateY(-1px);
  color: rgba(255,255,255,.58);
}
.hanimebody-hero__icon-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  max-width: 500px;
}
.hanimebody-hero__icon-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  color: rgba(255,255,255,.84);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}
.hanimebody-hero__icon-strip img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: .88;
}
.hanimebody-hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  max-width: 500px;
}
.hanimebody-hero__benefits li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.92);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  white-space: normal;
}
.hanimebody-hero__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.hanimebody-hero__benefit-icon--image {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.hanimebody-hero__benefit-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.hanimebody-hero__benefit-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}
.hanimebody-hero__note {
  margin: 0 0 28px;
  color: rgba(255,255,255,.9);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}
.hanimebody-hero__img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #d4cbd0 0%, #c7b6ba 52%, #bca8a7 100%);
  min-height: 0;
}
.hanimebody-hero__img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hanimebody-hero__photo-img--1 {
  opacity: 1;
}
.hanimebody-hero__photo-img--2 {
  opacity: 0;
}
.hanimebody-hero--slideshow .hanimebody-hero__photo-img--2 {
  animation: hb-banner-photo-fade 14s ease-in-out infinite;
}
.hanimebody-hero--no-img { grid-template-columns: 1fr; height: auto; }
.hanimebody-hero--no-img .hanimebody-hero__content { max-width: 700px; margin: 0 auto; text-align: center; align-items: center; padding: 80px 48px; }
.hb-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  min-height: 50px;
  padding: 15px 30px;
  border-radius: 999px;
  background: #fff;
  color: var(--wine);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(94,24,64,.12);
  font-family: var(--fb);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.hb-banner-button:hover {
  transform: translateY(-1px);
  background: var(--wine);
  color: #fff;
  box-shadow: 0 18px 40px rgba(94,24,64,.2);
}
.hb-banner-button svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

/* Homepage pre-footer banner */
.hb-banner {
  --hb-banner-height: 840px;
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  min-height: var(--hb-banner-height);
  overflow: hidden;
  background: linear-gradient(135deg, #c8a4b0 0%, #d4878a 30%, #b5707c 60%, #8c4d60 100%);
}
.hb-banner--no-img {
  grid-template-columns: 1fr;
}
.hb-banner__photo {
  position: relative;
  min-height: var(--hb-banner-height);
  overflow: hidden;
  line-height: 0;
  background: #c88a96;
}
.hb-banner__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 50%;
}
.hb-banner__photo .hb-banner__photo-img--1 { object-position: center 46%; }
.hb-banner__photo .hb-banner__photo-img--2 { object-position: center 34%; }
.hb-banner__photo-img--1 {
  opacity: 1;
}
.hb-banner__photo-img--2 {
  opacity: 0;
  animation: hb-banner-photo-fade 14s ease-in-out infinite;
}
@keyframes hb-banner-photo-fade {
  0%,
  34%,
  100% { opacity: 0; }
  46%,
  84% { opacity: 1; }
}
.hb-banner__text {
  display: flex;
  align-items: center;
  padding: 64px clamp(56px, 7vw, 104px);
}
.hb-banner__content {
  max-width: 520px;
}
.hb-banner__tag {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-family: var(--fb);
}
.hb-banner__title {
  margin: 0 0 18px;
  font-family: var(--fd);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.06;
  font-weight: 300;
  color: #fff;
}
.hb-banner__sub {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
  font-weight: 300;
}

@media (max-width: 1100px) {
  .hb-banner {
    grid-template-columns: minmax(0, 44vw) minmax(0, 1fr);
  }
  .hb-banner__text {
    padding: 56px 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hanimebody-hero__photo-img--1,
  .hanimebody-hero__photo-img--2,
  .hb-banner__photo-img--1,
  .hb-banner__photo-img--2 {
    animation: none;
  }
  .hanimebody-hero__photo-img--2,
  .hb-banner__photo-img--2 {
    opacity: 0;
  }
}

/* Shop / Category banner */
.hanimebody-shop-banner {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(360px, .9fr);
  height: clamp(660px, 54vw, 800px);
  min-height: 660px;
  background: var(--blush);
  overflow: hidden;
  width: 100%;
}
.hanimebody-shop-banner--no-img {
  grid-template-columns: 1fr;
  max-width: 800px;
  height: auto;
}
.hanimebody-no-products {
  padding: 48px;
  text-align: center;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--mid);
}
.hanimebody-shop-banner__text {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hanimebody-shop-banner__title { font-family: var(--fd); font-size: 52px; color: var(--wine); font-weight: 400; margin-bottom: 12px; }
.hanimebody-shop-banner__sub { font-size: 13px; color: var(--mid); line-height: 1.6; font-weight: 300; margin-bottom: 20px; max-width: 320px; }
.hanimebody-shop-banner__eyebrow { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--wine); font-family: var(--fb); font-weight: 500; margin-bottom: 16px; opacity: .7; }
.hanimebody-shop-banner__brand {
  margin: 6px 0 0;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: .72;
}
.hanimebody-shop-banner__img {
  background: #f5d9d3;
  overflow: hidden;
  position: relative;
  min-height: 0;
}
.hanimebody-shop-banner__img img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hanimebody-shop-banner--shop-video {
  grid-template-columns: minmax(420px, 1.16fr) minmax(420px, .84fr);
  height: clamp(660px, 52vw, 820px);
  min-height: 660px;
  background: linear-gradient(135deg, #fff 0%, #fff7fb 58%, #f8edf2 100%);
}
.hanimebody-shop-banner--shop-video .hanimebody-shop-banner__text {
  padding: clamp(64px, 7vw, 104px) clamp(48px, 8vw, 128px);
}
.hanimebody-shop-banner--shop-video .hanimebody-shop-banner__eyebrow {
  margin-bottom: 20px;
}
.hanimebody-shop-banner--shop-video .hanimebody-shop-banner__title {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: .98;
}
.hanimebody-shop-banner--shop-video .hanimebody-shop-banner__sub {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(15px, 1.16vw, 17px);
  line-height: 1.78;
}
.hanimebody-shop-banner--shop-video .hanimebody-shop-banner__img {
  background: #ead7d1;
  box-shadow: inset 1px 0 0 rgba(94,24,64,.08);
}
.hanimebody-shop-banner--womenswear-video {
  grid-template-columns: minmax(420px, 1.08fr) minmax(420px, .92fr);
  height: clamp(660px, 52vw, 820px);
  min-height: 660px;
  background: linear-gradient(135deg, #fff 0%, #fff6f5 58%, #f4e8e3 100%);
}
.hanimebody-shop-banner--womenswear-video .hanimebody-shop-banner__img {
  background: #eee5df;
  box-shadow: inset 1px 0 0 rgba(94,24,64,.08);
}
.hanimebody-shop-banner__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hanimebody-shop-banner__video--shop {
  object-position: center 44%;
}
.hanimebody-shop-banner__video--womenswear {
  object-fit: cover;
  object-position: center 38%;
}
.hanimebody-shop-banner--parent-collection .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--full-body-shapers .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--waist-shapers .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--high-waist-panties .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--nipple-cover .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--bra-insert-padding .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--cleavage-bra .hanimebody-shop-banner__img img { object-fit: cover; }
.hanimebody-shop-banner--parent-collection .hanimebody-shop-banner__img img { object-position: center center; }
.hanimebody-shop-banner--full-body-shapers .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--waist-shapers .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--high-waist-panties .hanimebody-shop-banner__img img { object-position: center top; }
.hanimebody-shop-banner--nipple-cover .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--bra-insert-padding .hanimebody-shop-banner__img img,
.hanimebody-shop-banner--cleavage-bra .hanimebody-shop-banner__img img { object-position: center center; }
.hanimebody-shop-banner__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  max-width: 390px;
}
.hanimebody-shop-banner__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  font-family: var(--fb);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--dark);
}
.hanimebody-shop-banner__feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  background: rgba(201,24,74,.08);
  border: 1px solid rgba(201,24,74,.14);
}
.hanimebody-shop-banner__feature-icon--image {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  border: 0;
  background: transparent;
}
.hanimebody-shop-banner__feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}
.hanimebody-shop-banner__feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hanimebody-shop-banner__text-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  max-width: 470px;
  color: var(--mid);
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.55;
}
.hanimebody-shop-banner__text-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.hanimebody-shop-banner__text-list li::before {
  content: '•';
  flex: 0 0 auto;
  transform: translateY(-1px);
  color: rgba(94,24,64,.42);
}
.hanimebody-shop-banner__icon-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 500px;
}
.hanimebody-shop-banner__icon-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  color: rgba(94,24,64,.84);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
}
.hanimebody-shop-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}
.hanimebody-shop-banner__icon img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: .9;
}
.hanimebody-shop-banner--full-body-shapers .hanimebody-shop-banner__title,
.hanimebody-shop-banner--waist-shapers .hanimebody-shop-banner__title,
.hanimebody-shop-banner--high-waist-panties .hanimebody-shop-banner__title,
.hanimebody-shop-banner--nipple-cover .hanimebody-shop-banner__title,
.hanimebody-shop-banner--bra-insert-padding .hanimebody-shop-banner__title,
.hanimebody-shop-banner--cleavage-bra .hanimebody-shop-banner__title {
  max-width: 470px;
  margin-bottom: 18px;
}

/* ── FILTER TABS ──────────────────────────── */
.hanimebody-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 48px 0;
}
.hanimebody-filter-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--dark);
  cursor: pointer;
  background: #fff;
  transition: all var(--transition);
  text-decoration: none;
  font-weight: 400;
}
.hanimebody-filter-tab:hover, .hanimebody-filter-tab.active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}

/* ── CATEGORY SECTION HEADER ──────────────── */
.hanimebody-cat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 48px 24px;
}
.hanimebody-cat-header__label { font-size: 10px; letter-spacing: .14em; color: var(--pink); text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.hanimebody-cat-header__title { font-family: var(--fd); font-size: 40px; color: var(--wine); font-weight: 400; }
.hanimebody-cat-header__desc { font-size: 13.5px; color: var(--mid); line-height: 1.7; font-weight: 300; }
.hanimebody-cat-header__img { width: 220px; height: 160px; border-radius: var(--radius-md); object-fit: cover; background: var(--blush); overflow: hidden; }
.hanimebody-cat-header__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRODUCT GRID ─────────────────────────── */
.hanimebody-products-section { padding: 0 48px 48px; }
.hanimebody-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hanimebody-products-grid > * { min-width: 0; }
.hanimebody-products-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hanimebody-products-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Product card */
/* Card is now an <a> — reset link styles */
a.hanimebody-product-card { text-decoration: none; color: inherit; display: flex; }

.hanimebody-product-card {
  background: rgba(255,255,255,.56);
  overflow: hidden;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(137, 81, 92, .08);
  flex-direction: column;
  height: 100%;
}
.hanimebody-product-card:hover { opacity: .96; transform: translateY(-2px); box-shadow: 0 26px 56px rgba(137, 81, 92, .12); }
.hanimebody-product-card__img {
  aspect-ratio: 1 / .98;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(235,206,199,.88) 100%);
  position: relative;
  border-radius: 28px 28px 0 0;
}
.hanimebody-product-card__seq-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: transform .45s ease, opacity .35s ease;
  display: block;
}
.hanimebody-product-card__seq-img.is-active {
  opacity: 1;
  z-index: 1;
}
.hanimebody-product-card--fit-img-5080 .hanimebody-product-card__img { background: #735d46; }
.hanimebody-product-card--fit-img-5080 .hanimebody-product-card__seq-img[data-seq-index="0"] {
  object-fit: contain;
  object-position: center center;
}
.hanimebody-product-card--fit-img-5080:hover .hanimebody-product-card__seq-img[data-seq-index="0"].is-active { transform: none; }
.hanimebody-product-card:hover .hanimebody-product-card__seq-img.is-active { transform: scale(1.04); }
.hanimebody-product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9px;
  letter-spacing: .1em;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 2;
  font-family: var(--fb);
  text-transform: uppercase;
}
.hanimebody-product-card__badge--new { background: var(--pink); color: #fff; }
.hanimebody-product-card__badge--best { background: rgba(255,255,255,.94); color: var(--wine); border: 1px solid rgba(94,24,64,.12); }
.hanimebody-product-card__badge--sale { background: var(--pink); color: #fff; }

.hanimebody-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 16px 16px;
  background: rgba(255,255,255,.92);
}
.hanimebody-product-card__type { font-size: 11px; letter-spacing: .06em; color: #e33c6b; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; font-family: var(--fb); display: block; }
.hanimebody-product-card__name-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.hanimebody-product-card__name { font-family: var(--fd); font-size: 17px; color: #8c4157; font-weight: 400; line-height: 1.35; flex: 1; margin: 0; }
.hanimebody-product-card__swatches { display: flex; align-items: center; gap: 6px; margin-top: 8px; min-height: 14px; }
.hanimebody-product-card__swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--swatch-color, #ddd);
  border: 1px solid rgba(94,24,64,.14);
  box-shadow: none;
  flex-shrink: 0;
}
.hanimebody-product-card__swatch-more { font-size: 10px; line-height: 1; color: var(--mid); font-family: var(--fb); font-weight: 500; }
.hanimebody-product-card__meta { font-size: 11px; color: #8c4157; margin-top: auto; padding-top: 8px; font-weight: 300; font-family: var(--fb); }
.hanimebody-product-card__price { font-size: 16px; font-weight: 600; color: #8c4157; font-family: var(--fb); white-space: nowrap; flex-shrink: 0; }
.hanimebody-product-card__price del { color: var(--mid); font-weight: 300; font-size: 11px; margin-right: 3px; text-decoration: line-through; }
.hanimebody-product-card__price ins { color: #8c4157; font-weight: 600; text-decoration: none; }

/* Star rating on card */
.hanimebody-product-card__stars { color: var(--pink); font-size: 11px; letter-spacing: 1px; margin-bottom: 6px; }

/* Section header with View All link */
.hanimebody-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.hanimebody-section-title { font-family: var(--fd); font-size: 38px; color: var(--wine); font-weight: 400; }
.hanimebody-view-all { font-size: 12px; font-family: var(--fb); color: var(--wine); text-decoration: none; letter-spacing: .08em; border-bottom: 1px solid var(--wine); padding-bottom: 1px; transition: opacity var(--transition); }
.hanimebody-view-all:hover { opacity: .6; }

/* ── BEST SELLERS HOMEPAGE SECTION ───────── */
.hanimebody-bestsellers-section {
  padding: 72px 48px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.38), transparent 34%),
    linear-gradient(180deg, #f5e7e4 0%, #f7ece8 100%);
}
.hanimebody-bestsellers-header {
  margin-bottom: 24px;
}
.hanimebody-bestsellers-section .hanimebody-section-title {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1;
  color: #8c4157;
}
.hanimebody-products-grid--bestsellers {
  gap: 28px;
}
.hanimebody-bestsellers-section .hanimebody-product-card__badge {
  background: rgba(255,255,255,.94);
}
.hanimebody-bestsellers-footer {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.hanimebody-bestsellers-section .hanimebody-view-all {
  display: inline-block;
  padding: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: #8c4157;
  letter-spacing: 0;
}
.hanimebody-bestsellers-section .hanimebody-view-all:hover {
  opacity: .88;
}

/* ── CATEGORY SECTION BLOCK ───────────────── */
.hanimebody-cat-section { background: var(--blush); margin-bottom: 2px; }
.hanimebody-cat-section + .hanimebody-cat-section { background: var(--white); }
.hanimebody-cat-section:nth-child(odd) { background: var(--blush); }
.hanimebody-cat-section:nth-child(even) { background: var(--white); }

/* Bundle section special header */
.hanimebody-bundle-header {
  padding: 40px 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hanimebody-bundle-header__left .hanimebody-cat-header__label { color: var(--wine); }
.hanimebody-bundle-header__title { font-family: var(--fd); font-size: 52px; color: var(--wine); font-weight: 400; line-height: 1; }
.hanimebody-bundle-header__sub { font-size: 13px; color: var(--mid); line-height: 1.7; margin-top: 8px; font-weight: 300; }
.hanimebody-bundle-header__img { border-radius: var(--radius-md); overflow: hidden; height: 200px; background: var(--blush); }
.hanimebody-bundle-header__img img { width: 100%; height: 100%; object-fit: cover; }

/* Limited edition header */
.hanimebody-limited-header {
  padding: 40px 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hanimebody-limited-header__label { font-size: 10px; letter-spacing: .18em; color: var(--pink); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; font-family: var(--fb); }
.hanimebody-limited-header__title { font-family: var(--fd); font-size: 36px; color: var(--wine); font-weight: 400; font-style: italic; margin-bottom: 8px; }
.hanimebody-limited-header__sub { font-size: 13px; color: var(--mid); line-height: 1.7; font-weight: 300; }

/* ── PRESS LOGOS ──────────────────────────── */
.hanimebody-press {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hanimebody-press__item {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--dark);
  opacity: .55;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.hanimebody-press__item:hover { opacity: .85; }
.hanimebody-press__item small { display: block; font-size: 10px; letter-spacing: .04em; text-align: center; font-family: var(--fb); font-weight: 400; margin-top: 2px; }

/* ── FEATURES SECTION ─────────────────────── */
.hanimebody-features { padding: 80px 48px; background: var(--blush); }
.hanimebody-features__header { margin-bottom: 48px; }
.hanimebody-features__title { font-family: var(--fd); font-size: 46px; color: var(--wine); font-weight: 400; line-height: 1.1; margin-bottom: 12px; }
.hanimebody-features__sub { font-size: 14px; color: var(--mid); line-height: 1.7; font-weight: 300; max-width: 460px; }
.hanimebody-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hanimebody-features__grid--count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hanimebody-feature-card { background: #fff; border-radius: var(--radius-md); padding: 32px 28px; border: 1px solid var(--border); transition: border-color var(--transition); }
.hanimebody-feature-card:hover { border-color: var(--pink); }
.hanimebody-feature-card__icon { margin-bottom: 16px; color: var(--wine); line-height: 1; }
.hanimebody-feature-card__icon-img { width: 56px; height: 56px; object-fit: contain; display: block; }
.hanimebody-feature-card__title { font-family: var(--fd); font-size: 20px; color: var(--wine); font-weight: 500; margin-bottom: 8px; }
.hanimebody-feature-card__desc { font-size: 13px; color: var(--mid); line-height: 1.7; font-weight: 300; }
.hanimebody-features--home,
.hanimebody-features--product {
  padding: 64px 48px;
  background: #fff7fa;
  border-top: 1px solid rgba(94,24,64,.08);
  border-bottom: 1px solid rgba(94,24,64,.08);
}
.hanimebody-features--home .hanimebody-features__inner,
.hanimebody-features--product .hanimebody-features__inner {
  max-width: none;
  margin: 0 auto;
}
.hanimebody-features--home .hanimebody-features__header,
.hanimebody-features--product .hanimebody-features__header {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}
.hanimebody-features__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.hanimebody-features--home .hanimebody-features__title,
.hanimebody-features--product .hanimebody-features__title {
  margin-bottom: 0;
  font-size: clamp(32px, 3.2vw, 46px);
}
.hanimebody-features--home .hanimebody-features__sub,
.hanimebody-features--product .hanimebody-features__sub {
  max-width: 560px;
  margin: 0;
  color: #8b4c62;
}
.hanimebody-features--home .hanimebody-feature-card,
.hanimebody-features--product .hanimebody-feature-card {
  background: rgba(255,255,255,.72);
  border-color: rgba(94,24,64,.1);
  box-shadow: 0 12px 34px rgba(94,24,64,.05);
}
.hanimebody-features--home .hanimebody-feature-card__icon,
.hanimebody-features--product .hanimebody-feature-card__icon {
  color: var(--pink);
}
.hanimebody-features--product,
.hanimebody-features--product .hanimebody-features__inner,
.hanimebody-features--product .hanimebody-features__header,
.hanimebody-features--product .hanimebody-features__title,
.hanimebody-features--product .hanimebody-features__sub,
.hanimebody-features--product .hanimebody-feature-card,
.hanimebody-features--product .hanimebody-feature-card__title,
.hanimebody-features--product .hanimebody-feature-card__desc {
  min-width: 0;
  max-width: 100%;
}
.hanimebody-features--product .hanimebody-features__title,
.hanimebody-features--product .hanimebody-features__sub,
.hanimebody-features--product .hanimebody-feature-card__title,
.hanimebody-features--product .hanimebody-feature-card__desc {
  overflow-wrap: anywhere;
}

/* ── Homepage Collection Story ───────────────── */
.hb-collection-story {
  background: #f9e2de;
  padding: 72px 48px 84px;
}
.hb-collection-story__inner {
  max-width: none;
  margin: 0 auto;
}
.hb-collection-story__header {
  max-width: min(100%, 980px);
  margin-bottom: 32px;
}
.hb-collection-story__lockup {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: .22em;
  width: max-content;
  max-width: 100%;
}
.hb-collection-story__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}
.hb-collection-story__title {
  display: contents;
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.04;
  color: var(--wine);
  font-weight: 400;
  max-width: none;
}
.hb-collection-story__title-lead,
.hb-collection-story__title-tail {
  grid-row: 1;
  white-space: nowrap;
}
.hb-collection-story__title-lead {
  grid-column: 1;
}
.hb-collection-story__title-tail {
  grid-column: 2;
}
.hb-collection-story__sub {
  grid-column: 2;
  margin: 12px 0 0;
  max-width: none;
  font-size: 15px;
  line-height: 1.7;
  color: #8b4c62;
}
.hb-collection-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 30px;
  align-items: start;
}
.hb-collection-story__card {
  min-width: 0;
  height: 100%;
}
.hb-collection-story__card--large {
  grid-row: 1 / span 2;
}
.hb-collection-story__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #f3cbc3;
  box-shadow: inset 0 0 0 1px rgba(140,77,96,.08);
  height: 100%;
}
.hb-collection-story__card--large .hb-collection-story__media {
  aspect-ratio: 1.43 / 1;
  min-height: 0;
  height: auto;
}
.hb-collection-story__card:not(.hb-collection-story__card--large) .hb-collection-story__media {
  aspect-ratio: 1280 / 1241;
  height: auto;
}
.hb-collection-story__card--brand-art .hb-collection-story__media {
  background: #fff7fa;
}
.hb-collection-story__card--feature-art .hb-collection-story__media {
  background: #fff7fa;
}
.hb-collection-story__card--feature-art .hb-collection-story__media::after {
  content: none;
}
.hb-collection-story__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hb-collection-story__card--brand-art .hb-collection-story__media img {
  object-fit: cover;
  object-position: center center;
}
.hb-collection-story__card--feature-art .hb-collection-story__media img {
  object-fit: cover;
  object-position: center center;
}
.hb-collection-story__overlay {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--wine);
  font-family: var(--fd);
  font-size: clamp(26px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 1px 16px rgba(255,255,255,.5);
}
.hb-collection-story__overlay span {
  display: block;
  max-width: 760px;
}
.hb-collection-story__overlay small {
  display: block;
  margin-top: 8px;
  font-family: var(--fb);
  font-size: clamp(12px, 1.05vw, 17px);
  line-height: 1.45;
  color: #8b4c62;
  text-shadow: 0 1px 12px rgba(255,255,255,.45);
}
.hb-collection-story__overlay svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 9px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 14px 28px rgba(94,24,64,.18);
}
.hb-collection-story__copy {
  padding: 18px 4px 0;
}
.hb-collection-story__card--large .hb-collection-story__copy {
  padding-top: 20px;
}
.hb-collection-story__copy h3 {
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.08;
  color: var(--wine);
  font-weight: 500;
  letter-spacing: 0;
}
.hb-collection-story__card--large .hb-collection-story__copy h3 {
  font-size: clamp(30px, 3vw, 46px);
}
.hb-collection-story__card:not(.hb-collection-story__card--large) .hb-collection-story__copy h3 {
  font-size: clamp(23px, 1.65vw, 30px);
}
.hb-collection-story__heading--with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hb-collection-story__heading-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 12px 24px rgba(94,24,64,.14);
}
.hb-collection-story__heading-icon img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
  opacity: .9;
}
.hb-collection-story__heading-text {
  min-width: 0;
}
.hb-collection-story__copy p {
  margin: 8px 0 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.55;
  color: #8b4c62;
}
.hb-collection-story__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--wine);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(140,77,96,.35);
  padding-bottom: 3px;
}
.hb-collection-story__cta:hover {
  color: var(--pink);
  border-bottom-color: rgba(201,24,74,.35);
}

/* ── PRODUCT INFO EXTRAS ──────────────────── */
.hanime-product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.hanime-product-rating .star-rating { font-size: 14px; }
.hanime-product-rating__count { font-size: 12px; color: var(--mid); font-family: var(--fb); text-decoration: underline; }
.hanime-product-short-desc { font-size: 14px; color: var(--mid); line-height: 1.8; font-weight: 300; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }

/* ── WooCommerce star rating — theme colour ── */
.star-rating::before { color: var(--border) !important; }
.star-rating span::before { color: var(--pink) !important; }

/* ── WooCommerce variations table ── */
.hanime-atc-wrap table.variations {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
}
.hanime-atc-wrap table.variations tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.hanime-atc-wrap table.variations th.label {
  padding: 0 0 11px 0;
  border: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--wine);
  font-family: var(--fb);
  text-align: left;
  width: auto;
}
.hanime-atc-wrap table.variations th.label label { margin: 0; font-weight: 400; }
.hanime-atc-wrap table.variations td.value {
  padding: 0;
  border: none;
}

/* Custom-styled select for attribute options */
.hanime-atc-wrap table.variations td.value select {
  width: 100%;
  height: 44px;
  padding: 0 40px 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--dark);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a4a6a' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.hanime-atc-wrap table.variations td.value select:focus { border-color: var(--wine); }

/* "Clear" reset link */
.hanime-atc-wrap .reset_variations {
  display: none !important;
  visibility: hidden !important;
  margin-top: 0;
  font-size: 11.5px;
  color: var(--mid);
  font-family: var(--fb);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.hanime-atc-wrap .reset_variations:hover { color: var(--pink); }

/* WooCommerce "no options" notice */
.hanime-atc-wrap .woocommerce-variation-availability p { font-size: 12px; color: var(--mid); font-family: var(--fb); }

/* ── Quantity field with +/− ── */
.hanime-atc-wrap { margin-bottom: 20px; }
.hanime-atc-wrap .quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.hanime-atc-wrap input.qty {
  width: 56px;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: var(--dark);
  -moz-appearance: textfield;
  flex-shrink: 0;
}
.hanime-atc-wrap input.qty::-webkit-outer-spin-button,
.hanime-atc-wrap input.qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.hanime-atc-wrap input.qty:focus { border-color: var(--wine); outline: none; }

/* Injected +/− buttons */
.hanimebody-qty-btn-product {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--dark);
  flex-shrink: 0;
  font-family: var(--fb);
  font-weight: 300;
}
.hanimebody-qty-btn-product:hover { border-color: var(--wine); color: var(--wine); background: var(--blush); }

.hanime-atc-wrap .single_add_to_cart_button {
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--fb) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: 16px 40px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background var(--transition) !important;
}
.hanime-atc-wrap .single_add_to_cart_button:hover { background: var(--wine) !important; }
/* ── WooPay / express payment ─────────────────────────────── */
.wcpay-express-checkout-wrapper { margin-top: 12px; }
#wcpay-woopay-button { margin-top: 0; }

/* blocks-checkout.css is not loaded on product pages, so we must supply
   the button's visual styles ourselves. Plugin only loads express-checkout.css
   here, which has no button appearance rules — leaving light-outline as
   white-on-white (invisible). */
#wcpay-woopay-button .woopay-express-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 40px !important;
  background: #fff !important;
  border: 1.5px solid #000 !important;
  border-radius: 30px !important;
  overflow: hidden;
  cursor: pointer;
  opacity: 1 !important;
}
#wcpay-woopay-button .woopay-express-button .button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
#wcpay-woopay-button .woopay-express-button svg {
  width: 99px;
  height: auto;
  display: block;
}

/* OR-separator */
#wcpay-express-checkout-button-separator {
  margin: 12px 0 8px !important;
  font-size: 12px;
  color: var(--mid);
  text-align: center;
  font-family: var(--fb);
}

/* ── ACCORDION ────────────────────────────── */
.hanime-acc { margin-top: 24px; border-top: 1px solid var(--border); }
.hanime-acc__item { border-bottom: 1px solid var(--border); }
.hanime-acc__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--dark);
  text-align: left;
  text-transform: uppercase;
}
.hanime-acc__header svg { transition: transform var(--transition); flex-shrink: 0; }
.hanime-acc__item.open .hanime-acc__header svg { transform: rotate(180deg); }
.hanime-acc__body { display: none; padding-bottom: 18px; }
.hanime-acc__item.open .hanime-acc__body { display: block; }
.hanime-acc__content { font-size: 13.5px; color: var(--mid); line-height: 1.85; font-family: var(--fb); font-weight: 300; }
.hanime-acc__content p { margin-bottom: 8px; }
.hanime-acc__content a { color: var(--pink); }
.hanime-acc__content--desc ul { padding-left: 16px; margin: 8px 0; }
.hanime-acc__content--desc ul li { margin-bottom: 5px; list-style: disc; }
.hanime-acc__content--desc p { margin-bottom: 8px; }
.hanime-acc__content--desc strong { color: var(--dark); font-weight: 500; }
.hanime-desc p {
  margin: 0 0 10px;
}
.hanime-desc__lead {
  color: var(--mid);
}
.hanime-desc-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}
.hanime-desc-list li {
  position: relative;
  margin: 0 !important;
  padding-left: 18px;
  color: var(--mid);
  list-style: none !important;
}
.hanime-desc-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,24,74,.46);
}
.hanime-desc-list strong {
  color: var(--dark);
  font-weight: 500;
}
.hanime-desc-note {
  margin-top: 12px !important;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(252,232,242,.48);
  color: var(--dark);
}
.hanime-specs-table { width: 100%; border-collapse: collapse; }
.hanime-specs-table td { padding: 6px 0; font-size: 13px; color: var(--mid); border-bottom: 1px solid var(--border); }
.hanime-specs-table td:first-child { font-weight: 500; color: var(--dark); width: 40%; }

/* Nipple covers before / after block */
.hanime-before-after {
  background: #fff8fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
}
.hanime-before-after__inner {
  max-width: 1180px;
  margin: 0 auto;
  min-width: 0;
}
.hanime-before-after__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 32px;
  align-items: end;
}
.hanime-before-after__header > *,
.hanime-ba-feature > *,
.hanime-ba-grid > * {
  min-width: 0;
}
.hanime-before-after__eyebrow {
  margin: 0 0 10px;
  font-family: var(--fb);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}
.hanime-before-after__title {
  margin: 0;
  max-width: 620px;
  font-family: var(--fd);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 400;
  color: var(--wine);
  overflow-wrap: anywhere;
}
.hanime-before-after__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--mid);
}
.hanime-ba-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}
.hanime-ba-pair,
.hanime-ba-copy {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hanime-ba-pair__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(94,24,64,.12);
}
.hanime-ba-shot {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--cream);
  overflow: hidden;
}
.hanime-ba-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hanime-ba-pair--featured .hanime-ba-shot img {
  object-position: center 58%;
}
.hanime-ba-shot__label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.9);
  color: var(--wine);
  font-family: var(--fb);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 8px 18px rgba(94,24,64,.12);
}
.hanime-ba-shot__label--after {
  color: #fff;
  background: var(--pink);
}
.hanime-ba-pair__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.hanime-ba-pair__caption h3 {
  margin: 0;
  font-family: var(--fb);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--dark);
}
.hanime-ba-pair__caption span {
  flex-shrink: 0;
  font-family: var(--fb);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}
.hanime-ba-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}
.hanime-ba-copy__kicker {
  margin: 0 0 10px;
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}
.hanime-ba-copy h3 {
  margin: 0 0 18px;
  font-family: var(--fd);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--wine);
  overflow-wrap: anywhere;
}
.hanime-ba-copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.hanime-ba-copy li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--mid);
}
.hanime-ba-copy li::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201,24,74,.08);
  border: 1px solid rgba(201,24,74,.14);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 12.4l3.1 3.1L17 8.5' stroke='%23c9184a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}
.hanime-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* ── SINGLE PRODUCT PAGE ──────────────────── */
.hanimebody-single { padding: 0; }

/* Related products section (replaced inline style) */
.hanimebody-related-section { padding: 64px 48px; background: var(--blush); }
.hanimebody-related-title { font-family: var(--fd); font-size: 38px; color: var(--wine); font-weight: 400; margin-bottom: 32px; }
.hanimebody-single__wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 48px 80px;
  gap: 0;
  align-items: start;
  min-height: 1540px;
}

.hanime-product-video {
  padding: 0 48px 82px;
  background: #fff;
}
.hanime-product-video__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 600px);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hanime-product-video__copy {
  max-width: 560px;
}
.hanime-product-video__eyebrow {
  margin: 0 0 14px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
}
.hanime-product-video__copy h2 {
  margin: 0 0 14px;
  font-family: var(--fd);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--wine);
}
.hanime-product-video__copy p:not(.hanime-product-video__eyebrow) {
  max-width: 430px;
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}
.hanime-product-video__stage {
  width: min(100%, 410px);
  justify-self: end;
}
.hanime-product-video__playlist {
  display: flex;
  gap: 0;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(94,24,64,.08);
}
.hanime-product-video__playlist--single {
  overflow: visible;
}
.hanime-product-video__playlist--single .hanime-product-video__media {
  flex: 0 0 100%;
}
.hanime-product-video__playlist--multiple .hanime-product-video__media {
  flex: 0 0 100%;
}
.hanime-product-video__media {
  position: relative;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 10px;
  border: 1px solid rgba(94,24,64,.12);
  border-radius: 8px;
  background: #fff;
}
.hanime-product-video__playlist--multiple .hanime-product-video__media:not(.is-active) {
  opacity: .72;
}
.hanime-product-video__player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 680px;
  border-radius: 6px;
  background: #f7e9ee;
  object-fit: cover;
  cursor: pointer;
}
.hanime-product-video__toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(30,14,26,.46);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.96);
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.hanime-product-video__media:hover .hanime-product-video__toggle,
.hanime-product-video__media.is-paused .hanime-product-video__toggle,
.hanime-product-video__toggle:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.hanime-product-video__toggle:hover,
.hanime-product-video__toggle:focus-visible {
  background: rgba(30,14,26,.62);
}
.hanime-product-video__toggle:focus-visible {
  outline: 2px solid rgba(255,255,255,.78);
  outline-offset: 3px;
}
.hanime-product-video__toggle-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.hanime-product-video__toggle-icon--play {
  display: none;
  margin-left: 3px;
}
.hanime-product-video__media.is-paused .hanime-product-video__toggle-icon--pause {
  display: none;
}
.hanime-product-video__media.is-paused .hanime-product-video__toggle-icon--play {
  display: block;
}
.hanime-product-video__sound {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(30,14,26,.56);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color .18s ease, transform .18s ease;
}
.hanime-product-video__sound:hover,
.hanime-product-video__sound:focus-visible {
  background: rgba(30,14,26,.72);
  transform: scale(1.04);
}
.hanime-product-video__sound:focus-visible {
  outline: 2px solid rgba(255,255,255,.78);
  outline-offset: 3px;
}
.hanime-product-video__sound-icon {
  display: none;
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.hanime-product-video__media.is-muted .hanime-product-video__sound-icon--off {
  display: block;
}
.hanime-product-video__media:not(.is-muted) .hanime-product-video__sound-icon--on {
  display: block;
}
.hanime-product-video__nav {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.hanime-product-video__nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(94,24,64,.14);
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(94,24,64,.08);
  transition: border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.hanime-product-video__nav-btn:hover,
.hanime-product-video__nav-btn:focus-visible {
  border-color: rgba(94,24,64,.34);
  color: var(--pink);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(94,24,64,.12);
}
.hanime-product-video__nav-btn:focus-visible {
  outline: 2px solid rgba(94,24,64,.22);
  outline-offset: 3px;
}
.hanime-product-video__nav-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.hanime-product-video__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
}
.hanime-product-video__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(94,24,64,.24);
  padding: 0;
  cursor: pointer;
  transition: width .18s ease, background-color .18s ease, transform .18s ease;
}
.hanime-product-video__dot:hover,
.hanime-product-video__dot:focus-visible {
  background: rgba(94,24,64,.44);
  transform: scale(1.12);
}
.hanime-product-video__dot.is-active {
  width: 26px;
  background: var(--wine);
}
.hanime-product-video__dot:focus-visible {
  outline: 2px solid rgba(94,24,64,.22);
  outline-offset: 4px;
}

.hanime-lift-gallery {
  padding: 76px 48px 82px;
  background: #fff8fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hanime-lift-gallery__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
}
.hanime-lift-gallery__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  min-width: 0;
}
.hanime-lift-gallery__title {
  margin: 0;
  max-width: 760px;
  min-width: 0;
  font-family: var(--fd);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.03;
  font-weight: 400;
  color: var(--wine);
  overflow-wrap: anywhere;
}
.hanime-lift-gallery__viewport {
  position: relative;
  overflow: hidden;
}
.hanime-lift-gallery__nav-btn {
  position: absolute;
  z-index: 3;
  top: calc(50% - 11px);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(94,24,64,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(94,24,64,.12);
  transform: translateY(-50%);
  transition: border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.hanime-lift-gallery__nav-btn--prev {
  left: 12px;
}
.hanime-lift-gallery__nav-btn--next {
  right: 12px;
}
.hanime-lift-gallery__nav-btn:hover,
.hanime-lift-gallery__nav-btn:focus-visible {
  border-color: rgba(94,24,64,.34);
  background: #fff;
  color: var(--pink);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 16px 34px rgba(94,24,64,.16);
}
.hanime-lift-gallery__nav-btn:focus-visible {
  outline: 2px solid rgba(94,24,64,.22);
  outline-offset: 3px;
}
.hanime-lift-gallery__nav-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.hanime-lift-gallery__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 22px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hanime-lift-gallery__track::-webkit-scrollbar {
  display: none;
}
.hanime-lift-gallery__track.is-reel {
  overflow: visible;
  scroll-behavior: auto;
  scroll-snap-type: none;
  transform: translate3d(var(--hanime-lift-gallery-track-offset, 0), 0, 0);
  will-change: transform;
}
.hanime-lift-gallery__track.is-reel.is-moving {
  transition: none;
}
.hanime-lift-gallery__track.is-reel.is-centering {
  transition: transform .66s cubic-bezier(.22,.61,.36,1);
}
.hanime-lift-gallery__slide {
  flex: 0 0 clamp(280px, 31vw, 380px);
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  scroll-snap-align: start;
  cursor: pointer;
  opacity: .86;
  transform: none;
  transition: opacity .22s ease;
}
.hanime-lift-gallery__slide:hover,
.hanime-lift-gallery__slide:focus-visible,
.hanime-lift-gallery__slide.is-active {
  opacity: 1;
}
.hanime-lift-gallery__slide:focus-visible {
  outline: 0;
}
.hanime-lift-gallery__slide:focus-visible .hanime-lift-gallery__frame {
  outline: 2px solid rgba(94,24,64,.22);
  outline-offset: 4px;
}
.hanime-lift-gallery__frame {
  display: block;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(94,24,64,.12);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(94,24,64,.08);
  transition: border-color .22s ease, box-shadow .22s ease;
}
.hanime-lift-gallery--portrait .hanime-lift-gallery__frame {
  aspect-ratio: 3 / 4;
}
.hanime-lift-gallery__slide.is-active .hanime-lift-gallery__frame {
  border-color: rgba(201,24,74,.28);
  box-shadow: 0 22px 52px rgba(94,24,64,.14);
}
.hanime-lift-gallery__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hanime-lift-gallery__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 2px;
}
.hanime-lift-gallery__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(94,24,64,.24);
  padding: 0;
  cursor: pointer;
  transition: width .18s ease, background-color .18s ease, transform .18s ease;
}
.hanime-lift-gallery__dot:hover,
.hanime-lift-gallery__dot:focus-visible {
  background: rgba(94,24,64,.44);
  transform: scale(1.12);
}
.hanime-lift-gallery__dot.is-active {
  width: 26px;
  background: var(--wine);
}
.hanime-lift-gallery__dot:focus-visible {
  outline: 2px solid rgba(94,24,64,.22);
  outline-offset: 4px;
}
.hanime-product-video--static .hanime-product-video__inner {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 44px;
  max-width: 1080px;
  padding-top: 54px;
}
.hanime-product-video--static .hanime-product-video__copy {
  max-width: 720px;
  justify-self: center;
  text-align: center;
}
.hanime-product-video--static .hanime-product-video__copy h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
}
.hanime-product-video--static .hanime-product-video__stage {
  width: min(100%, 900px);
  justify-self: center;
}
.hanime-product-video--static .hanime-product-video__playlist--single {
  width: min(100%, 540px);
  margin: 0 auto;
}
.hanime-product-video--static .hanime-product-video__playlist--multiple {
  display: grid;
  grid-template-columns: repeat(var(--hanime-product-video-count, 2), minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hanime-product-video--static .hanime-product-video__playlist--multiple .hanime-product-video__media {
  width: 100%;
  opacity: .48;
  transform: scale(.96);
  transition: opacity .24s ease, transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.hanime-product-video--static .hanime-product-video__playlist--multiple .hanime-product-video__media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  background: rgba(30,14,26,.32);
  pointer-events: none;
  transition: opacity .24s ease;
}
.hanime-product-video--static .hanime-product-video__playlist--multiple .hanime-product-video__media.is-active {
  border-color: rgba(201,24,74,.3);
  box-shadow: 0 22px 52px rgba(94,24,64,.14);
  opacity: 1;
  transform: scale(1.025);
  z-index: 1;
}
.hanime-product-video--static .hanime-product-video__playlist--multiple .hanime-product-video__media.is-active::after {
  opacity: 0;
}
.is-ios-safari .hanime-product-video:not(.hanime-product-video--reel) .hanime-product-video__toggle,
.is-ios-safari .hanime-product-video:not(.hanime-product-video--reel) .hanime-product-video__sound,
.hanime-product-video--ios-safari .hanime-product-video__toggle,
.hanime-product-video--ios-safari .hanime-product-video__sound {
  display: none !important;
}
.hanime-product-video.hanime-product-video--reel {
  padding: 0;
  background: #fff6f8;
  overflow: hidden;
}
.hanime-product-video--reel .hanime-product-video__inner {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 46px;
  max-width: 1320px;
  min-height: 640px;
  padding: clamp(40px, 5vw, 64px) 48px clamp(58px, 6vw, 82px);
  border: 0;
}
.hanime-product-video--reel .hanime-product-video__copy {
  max-width: 720px;
  justify-self: center;
  text-align: center;
}
.hanime-product-video--reel .hanime-product-video__eyebrow {
  margin-bottom: 12px;
  letter-spacing: .16em;
}
.hanime-product-video--reel .hanime-product-video__copy h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.03;
}
.hanime-product-video--reel .hanime-product-video__copy p:not(.hanime-product-video__eyebrow) {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(94,24,64,.68);
}
.hanime-product-video--reel .hanime-product-video__stage {
  width: min(100%, 1120px);
  justify-self: center;
  overflow: visible;
}
.hanime-product-video--reel .hanime-product-video__playlist {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  overflow: visible;
  scroll-snap-type: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translate3d(var(--hanime-product-video-track-offset, 0), 0, 0);
  transition: transform .66s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.hanime-product-video--reel .hanime-product-video__playlist.is-moving {
  transition: none;
}
.hanime-product-video--reel .hanime-product-video__playlist.is-centering {
  transition: transform .66s cubic-bezier(.22,.61,.36,1);
}
.hanime-product-video--reel .hanime-product-video__playlist--single {
  max-width: 360px;
}
.hanime-product-video--reel .hanime-product-video__media {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  aspect-ratio: 9 / 16;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(94,24,64,.08);
  border-radius: 14px;
  background: #f5e5ea;
  box-shadow: 0 18px 42px rgba(94,24,64,.08);
  cursor: pointer;
  opacity: .56;
  transform: scale(.94);
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hanime-product-video--reel .hanime-product-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,246,248,.48);
  pointer-events: none;
  transition: opacity .22s ease;
}
.hanime-product-video--reel .hanime-product-video__media:hover,
.hanime-product-video--reel .hanime-product-video__media:focus-visible {
  opacity: .82;
  transform: scale(.97);
}
.hanime-product-video--reel .hanime-product-video__media.is-active {
  border-color: rgba(201,24,74,.42);
  box-shadow: 0 28px 62px rgba(94,24,64,.18);
  opacity: 1;
  transform: scale(1.08);
  z-index: 2;
}
.hanime-product-video--reel .hanime-product-video__media.is-active::after {
  opacity: 0;
}
.hanime-product-video--reel .hanime-product-video__media:focus-visible {
  outline: 2px solid rgba(201,24,74,.36);
  outline-offset: 4px;
}
.hanime-product-video--reel .hanime-product-video__player {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  max-height: none;
  border-radius: 0;
  background: #f5e5ea;
  object-fit: cover;
  cursor: pointer;
}
.hanime-product-video--reel .hanime-product-video__toggle,
.hanime-product-video--reel .hanime-product-video__nav {
  display: none !important;
}
.hanime-product-video--reel .hanime-product-video__sound {
  right: 12px;
  bottom: 12px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
}
.hanime-product-video--reel .hanime-product-video__media.is-active .hanime-product-video__sound {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* ── PRODUCT GALLERY (custom, no WC flexslider) ─── */
.hanimebody-gallery { position: sticky; top: 84px; align-self: start; min-width: 0; width: 100%; }

/* Main image area */
.hanimebody-gallery__main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blush);
  aspect-ratio: 1;
  cursor: zoom-in;
  width: 100%;
  max-width: 100%;
}
.hanimebody-gallery__zoom-link { display: block; width: 100%; height: 100%; }
.hanimebody-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.hanimebody-gallery__main:hover img { transform: scale(1.04); }
.hanimebody-gallery--portrait .hanimebody-gallery__main { aspect-ratio: 3 / 4; }
.hanimebody-gallery--portrait .hanimebody-gallery__main img { object-position: center top; }

/* Thumbnail strip */
.hanimebody-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.hanimebody-gallery__thumbs::-webkit-scrollbar { display: none; }
.hanimebody-gallery__thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--blush);
  padding: 0;
}
.hanimebody-gallery__thumb.active,
.hanimebody-gallery__thumb:hover { border-color: var(--wine); }
.hanimebody-gallery__thumb[hidden] { display: none !important; }
.hanimebody-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox hover states (structure is inline in HTML for reliability) */
#hanimebodyLightbox button:hover { background: rgba(255,255,255,.3) !important; }

/* Product info */
.hanimebody-product-info { padding: 0 0 0 52px; min-width: 0; }
.hanimebody-product-info__type { font-size: 10px; letter-spacing: .16em; color: var(--pink); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; font-family: var(--fb); }
.hanimebody-product-info__title { font-family: var(--fd); font-size: 44px; color: var(--wine); font-weight: 400; line-height: 1.05; margin-bottom: 14px; overflow-wrap: anywhere; }

/* Rating row */
.hanimebody-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hanimebody-rating-stars { color: var(--pink); font-size: 15px; letter-spacing: 2px; }
.hanimebody-rating-count { font-size: 13px; color: var(--mid); text-decoration: underline; cursor: pointer; font-family: var(--fb); }
.hanimebody-rating-count:hover { color: var(--pink); }

/* Badges */
.hanimebody-product-badges { display: flex; gap: 20px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.hanimebody-product-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--mid); font-family: var(--fb); font-weight: 400; letter-spacing: .02em; }
.hanimebody-product-badge__svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--mid); }
.hanimebody-product-badge__icon { width: 22px; height: 22px; flex-shrink: 0; object-fit: contain; display: block; }
.hanimebody-product-badges--count-4 { gap: 12px 16px; }

/* Price */
.hanimebody-product-price { font-size: 22px; font-weight: 500; color: var(--dark); margin-bottom: 14px; font-family: var(--fb); }
.hanimebody-product-price del { color: var(--mid); font-weight: 300; font-size: 16px; margin-right: 6px; }
.hanimebody-product-price ins { color: var(--pink); text-decoration: none; }

/* Short desc */
.hanimebody-product-desc { font-size: 14px; color: var(--mid); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

/* Option label */
.hanimebody-option-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--dark); margin-bottom: 10px; font-family: var(--fb); }
.hanimebody-option-label span { font-weight: 300; color: var(--mid); margin-left: 4px; }
.hanimebody-option-link { font-size: 12px; color: var(--pink); text-decoration: underline; margin-left: 8px; font-weight: 400; cursor: pointer; }

/* Color swatches — custom (.hanimebody-swatch) */
.hanimebody-swatches { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.hanimebody-swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}
.hanimebody-swatch::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid transparent; transition: border-color var(--transition); }
.hanimebody-swatch.active::after, .hanimebody-swatch:hover::after { border-color: var(--wine); }

/* ── Woo Variation Swatches plugin override ─ */
:root {
  --wvs-single-product-item-width: 25px;
  --wvs-single-product-item-height: 25px;
}
.woocommerce div.product form.cart .variations {
  margin-bottom: 18px;
}
.woocommerce div.product form.cart .variations tr {
  display: block;
  margin-bottom: 14px;
}
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  display: block;
  padding: 0;
  line-height: 1;
}
.woocommerce div.product form.cart .reset_variations {
  display: none !important;
}
/* Color swatch circle */
.variable-items-wrapper.color-variable-items-wrapper {
  display: flex !important;
  align-items: center;
  gap: 7px !important;
}
.variable-item.color-variable-item {
  width: 25px !important;
  height: 25px !important;
  border-radius: 50% !important;
  border: 0 !important;
  outline: 0 !important;
  outline-offset: 0;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background-color var(--transition);
}
.variable-item.color-variable-item .variable-item-contents {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.variable-item.color-variable-item .variable-item-span {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(94,24,64,.14);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}
/* Hover ring */
.variable-item.color-variable-item:hover {
  outline: 1px solid rgba(94,24,64,.34) !important;
  outline-offset: 1px;
  background: transparent !important;
  box-shadow: none !important;
}
/* Selected ring */
.variable-item.color-variable-item.selected,
.variable-item.color-variable-item.wvs-selected,
.variable-item.color-variable-item[aria-checked="true"] {
  border: 0 !important;
  outline: 2px solid var(--wine) !important;
  outline-offset: 1px;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents::before,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.wvs-selected:not(.no-stock) .variable-item-contents::before,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item[aria-checked="true"]:not(.no-stock) .variable-item-contents::before {
  content: none !important;
  display: none !important;
  background-image: none !important;
}
/* Disabled */
.variable-item.color-variable-item.disabled {
  opacity: .4;
  cursor: not-allowed;
}
.variable-item.color-variable-item.disabled::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 4px,
    rgba(255,255,255,.6) 4px, rgba(255,255,255,.6) 5px
  );
}
/* Tooltip */
.variable-item[data-wvstooltip]::before {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 4px;
}
/* Row label ("Color:") */
.wvs-pro-variation-items-wrapper .label,
table.variations td.label,
table.variations th.label {
  font-family: var(--fb);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--wine);
  padding-bottom: 9px;
}
/* Variation select dropdowns hide when swatches shown */
.wvs-style-select .variable-items-wrapper ~ select { display: none !important; }

/* Size swatch pills */
.variable-items-wrapper.button-variable-items-wrapper {
  display: flex !important;
  align-items: center;
  gap: 6px !important;
}
.variable-item.button-variable-item {
  min-width: 0 !important;
  width: auto !important;
  height: 32px !important;
  min-height: 32px !important;
  border-radius: 999px !important;
  border: 1.5px solid var(--border) !important;
  background: #fff !important;
  color: var(--dark) !important;
  box-shadow: none !important;
  padding: 0 13px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}
.variable-item.button-variable-item .variable-item-span,
.variable-item.button-variable-item .variable-item-span-button {
  color: inherit !important;
  font: inherit !important;
  line-height: 1 !important;
  padding: 0 !important;
}
.variable-item.button-variable-item:hover {
  border-color: var(--wine) !important;
  background: var(--blush) !important;
  color: var(--wine) !important;
  box-shadow: none !important;
}
.variable-item.button-variable-item.selected,
.variable-item.button-variable-item.wvs-selected,
.variable-item.button-variable-item[aria-checked="true"] {
  border-color: var(--wine) !important;
  background: var(--blush) !important;
  color: var(--wine) !important;
  box-shadow: inset 0 0 0 1px rgba(94,24,64,.10) !important;
  transform: none !important;
}
.variable-item.button-variable-item.disabled,
.variable-item.button-variable-item.disabled:hover {
  opacity: .38;
  cursor: not-allowed;
  background: #fff !important;
  color: var(--dark) !important;
}
.hanime-size-chart-row .value {
  padding-top: 0 !important;
}
.hanime-size-chart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(94,24,64,.16);
  border-radius: 999px;
  background: #fff7fa;
  color: var(--wine);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition), transform var(--transition);
}
.hanime-size-chart-trigger svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.hanime-size-chart-trigger:hover,
.hanime-size-chart-trigger:focus-visible {
  border-color: var(--wine);
  background: var(--blush);
  color: var(--wine);
  transform: translateY(-1px);
}
.hanime-size-chart-trigger:focus-visible {
  outline: 2px solid rgba(94,24,64,.24);
  outline-offset: 3px;
}

/* Size chart modal */
body.hanime-size-modal-open { overflow: hidden; }
.hanime-size-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hanime-size-modal.is-open { display: flex; }
.hanime-size-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,14,26,.58);
  backdrop-filter: blur(3px);
}
.hanime-size-modal__panel {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 32px));
  max-height: min(86vh, 760px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(94,24,64,.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(30,14,26,.22);
  padding: 34px;
  color: var(--dark);
}
.hanime-size-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(94,24,64,.14);
  background: #fff;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition);
}
.hanime-size-modal__close svg {
  width: 18px;
  height: 18px;
}
.hanime-size-modal__close:hover,
.hanime-size-modal__close:focus-visible {
  background: var(--blush);
  border-color: var(--wine);
}
.hanime-size-modal__header {
  max-width: 680px;
  padding-right: 42px;
  margin-bottom: 24px;
}
.hanime-size-modal__eyebrow {
  display: block;
  margin-bottom: 8px;
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.hanime-size-modal__header h2 {
  margin: 0 0 10px;
  color: var(--wine);
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
}
.hanime-size-modal__header p {
  margin: 0;
  color: var(--mid);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}
.hanime-size-modal__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 22px;
}
.hanime-size-modal__swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(94,24,64,.12);
  border-radius: 999px;
  color: var(--wine);
  font-family: var(--fb);
  font-size: 12px;
}
.hanime-size-modal__swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(94,24,64,.16);
  flex: 0 0 16px;
}
.hanime-size-table {
  margin-top: 18px;
}
.hanime-size-table h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hanime-size-table__scroll {
  overflow-x: auto;
  border: 1px solid rgba(94,24,64,.12);
  border-radius: 8px;
  background: #fff;
}
.hanime-size-table table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--fb);
  font-size: 13px;
}
.hanime-size-table th,
.hanime-size-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(94,24,64,.1);
  color: var(--mid);
  text-align: center;
  font-weight: 300;
  line-height: 1.35;
}
.hanime-size-table thead th {
  background: #fff7fa;
  color: var(--wine);
  font-weight: 600;
}
.hanime-size-table tbody th {
  color: var(--wine);
  font-weight: 600;
}
.hanime-size-table tbody tr:nth-child(even) {
  background: rgba(252,232,242,.26);
}
.hanime-size-table tbody tr:last-child th,
.hanime-size-table tbody tr:last-child td {
  border-bottom: 0;
}
.hanime-size-guide {
  display: grid;
  grid-template-columns: minmax(180px, .85fr) minmax(0, 1.4fr);
  gap: 18px;
  margin-top: 22px;
}
.hanime-size-guide__tips,
.hanime-size-guide__measure {
  border: 1px solid rgba(94,24,64,.12);
  border-radius: 8px;
  background: #fff7fa;
  padding: 18px;
  color: var(--mid);
  font-family: var(--fb);
}
.hanime-size-guide h3 {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hanime-size-guide ol {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}
.hanime-size-guide li + li {
  margin-top: 8px;
}
.hanime-size-guide__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.hanime-size-guide__points span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(94,24,64,.14);
  border-radius: 999px;
  background: #fff;
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hanime-size-guide p {
  margin: 0;
  color: var(--mid);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}
.hanime-size-guide p + p {
  margin-top: 10px;
}
.hanime-size-guide strong {
  color: var(--wine);
  font-weight: 600;
}
.hanime-size-modal__notes {
  margin: 18px 0 0;
  padding: 15px 18px;
  border-radius: 8px;
  background: #fff7fa;
  color: var(--mid);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}
.hanime-size-modal__notes li {
  margin-left: 16px;
}

/* Size buttons */
.hanimebody-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.hanimebody-size {
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--fb);
  font-size: 12.5px;
  color: var(--dark);
  cursor: pointer;
  background: #fff;
  transition: all var(--transition);
  font-weight: 400;
}
.hanimebody-size.active { background: var(--wine); border-color: var(--wine); color: #fff; font-weight: 500; }
.hanimebody-size:hover:not(.active) { border-color: var(--wine); color: var(--wine); }

/* Qty cards */
.hanimebody-qty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.hanimebody-qty-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  background: #fff;
}
.hanimebody-qty-card.active, .hanimebody-qty-card:hover { border-color: var(--wine); background: rgba(122,29,58,.04); }
.hanimebody-qty-card__saving {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  font-size: 9px; letter-spacing: .08em; font-weight: 600;
  padding: 3px 8px; border-radius: var(--radius-pill); white-space: nowrap;
  font-family: var(--fb);
}
.hanimebody-qty-card__pairs { font-size: 13px; font-weight: 600; color: var(--wine); font-family: var(--fb); letter-spacing: .04em; }
.hanimebody-qty-card__price { font-size: 13px; color: var(--dark); margin-top: 4px; font-family: var(--fb); }
.hanimebody-qty-card__was { font-size: 11px; color: var(--mid); text-decoration: line-through; margin-top: 2px; }

/* CTA */
.hanimebody-atc { margin-bottom: 12px; }
.hanimebody-atc-btn {
  width: 100%;
  padding: 16px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--fb);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.hanimebody-atc-btn:hover { background: var(--wine); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,23,75,.3); }
.hanimebody-shoppay-btn {
  width: 100%;
  padding: 15px;
  background: #5a31df;
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 16px;
}
.hanimebody-shoppay-btn:hover { background: #4a21cf; }

/* Pay note */
.hanimebody-pay-note { font-size: 12px; color: var(--mid); text-align: center; margin-bottom: 20px; font-family: var(--fb); font-weight: 300; }
.hanimebody-pay-note strong { color: var(--dark); font-weight: 500; }

/* Perks */
.hanimebody-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-top: 1px solid var(--border); padding-top: 20px; margin-bottom: 24px; }
.hanimebody-perk { display: flex; flex-direction: column; align-items: center; text-align: center; font-size: 10.5px; color: var(--mid); line-height: 1.5; font-family: var(--fb); font-weight: 300; gap: 7px; letter-spacing: .02em; }
.hanimebody-perk__svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--mid); stroke: currentColor; }

/* Accordion / tabs */
.hanimebody-accordion { border-top: 1px solid var(--border); }
.hanimebody-acc__item { border-bottom: 1px solid var(--border); }
.hanimebody-acc__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-size: 14px; color: var(--dark); font-family: var(--fb); font-weight: 400;
  user-select: none;
  transition: color var(--transition);
}
.hanimebody-acc__header:hover { color: var(--wine); }
.hanimebody-acc__arrow { color: var(--mid); font-size: 16px; transition: transform .3s; }
.hanimebody-acc__item.open .hanimebody-acc__arrow { transform: rotate(180deg); }
.hanimebody-acc__body { display: none; padding: 0 0 16px; font-size: 13.5px; color: var(--mid); line-height: 1.75; font-weight: 300; }
.hanimebody-acc__item.open .hanimebody-acc__body { display: block; }

/* ── SHOP / ARCHIVE PAGE ──────────────────── */
.hanimebody-shop-header { padding: 40px 48px 0; }
.hanimebody-shop-title { font-family: var(--fd); font-size: 52px; color: var(--wine); font-weight: 400; margin-bottom: 8px; }
.hanimebody-shop-sub { font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.6; }

/* Toolbar */
/* Breadcrumbs — hidden sitewide */
.hanimebody-breadcrumb { display: none !important; }

.hanimebody-shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px; border-bottom: 1px solid var(--border);
}
.hanimebody-shop-toolbar__right { display: flex; align-items: center; gap: 10px; }
.hanimebody-result-count { font-size: 13px; color: var(--mid); font-family: var(--fb); font-weight: 300; }

/* WooCommerce sets float:right on this form — override to work in flex */
.woocommerce-ordering { float: none !important; margin: 0 !important; display: flex !important; }

.hanimebody-sort-select,
.woocommerce-ordering select {
  border: 1.5px solid var(--border);
  padding: 8px 36px 8px 12px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
  border-radius: var(--radius-sm);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a4a6a' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
  height: 38px;
}
.hanimebody-sort-select:focus, .woocommerce-ordering select:focus { border-color: var(--wine); }

/* Filter toggle button */
.hanimebody-filter-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--dark);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
}
.hanimebody-filter-toggle:hover,
.hanimebody-filter-toggle[aria-expanded="true"] { border-color: var(--wine); color: var(--wine); background: var(--blush); }

/* Filter panel */
.hanimebody-filter-panel {
  display: none;
  padding: 24px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.hanimebody-filter-panel.is-open { display: block; }
.hanimebody-filter-panel__inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hanimebody-filter-panel .widget {
  min-width: 180px;
}
.hanimebody-filter-panel .widget-title,
.hanimebody-filter-panel .widgettitle {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.hanimebody-filter-panel ul { list-style: none; padding: 0; margin: 0; }
.hanimebody-filter-panel ul li { padding: 5px 0; }
.hanimebody-filter-panel ul li a { font-size: 13px; color: var(--mid); font-family: var(--fb); font-weight: 300; text-decoration: none; transition: color var(--transition); }
.hanimebody-filter-panel ul li a:hover { color: var(--pink); }
.hanimebody-filter-panel .chosen a { color: var(--wine); font-weight: 500; }
.hanimebody-filter-panel .price_slider_wrapper { max-width: 220px; }
.hanimebody-filter-panel .price_slider_amount { display: flex; gap: 10px; align-items: center; margin-top: 10px; }
.hanimebody-filter-panel .price_slider_amount button {
  padding: 6px 14px; background: var(--wine); color: #fff;
  border: none; border-radius: var(--radius-sm); font-family: var(--fb); font-size: 12px; cursor: pointer;
}
.hanimebody-filter-panel .price_slider_amount .price_label { font-size: 12px; color: var(--mid); font-family: var(--fb); }

/* Sidebar */
.hanimebody-shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 0; padding: 0; }
.hanimebody-sidebar { padding: 32px 24px 32px 48px; border-right: 1px solid var(--border); }
.hanimebody-sidebar__title { font-family: var(--fb); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--dark); font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.hanimebody-sidebar__widget { margin-bottom: 32px; }
.hanimebody-sidebar__item { font-size: 13.5px; color: var(--mid); padding: 6px 0; cursor: pointer; transition: color var(--transition); display: flex; align-items: center; gap: 6px; font-weight: 300; }
.hanimebody-sidebar__item:hover, .hanimebody-sidebar__item.active { color: var(--pink); }
.hanimebody-sidebar__item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background var(--transition); }
.hanimebody-sidebar__item:hover::before, .hanimebody-sidebar__item.active::before { background: var(--pink); }
.hanimebody-shop-main { padding: 32px 48px 32px 32px; }

/* Price slider */
.hanimebody-price-slider { margin: 12px 0; }
.hanimebody-price-slider input[type=range] { width: 100%; accent-color: var(--pink); }
.hanimebody-price-range { display: flex; justify-content: space-between; font-size: 12px; color: var(--mid); margin-top: 6px; }

/* ── CART PAGE ────────────────────────────── */
.hanimebody-cart { padding: 40px 48px 80px; max-width: 1200px; margin: 0 auto; }
.hanimebody-cart__title { font-family: var(--fd); font-size: 48px; color: var(--wine); font-weight: 400; margin-bottom: 36px; }

.hanimebody-cart .woocommerce-message,
.hanimebody-cart .woocommerce-info,
.hanimebody-cart .woocommerce-error {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  margin: 10px 0 34px;
  padding: 16px 18px;
  border: 1px solid rgba(94,24,64,.12);
  border-top: 0;
  border-radius: 8px;
  background: #fff7fa;
  box-sizing: border-box;
  box-shadow: inset 0 3px 0 var(--pink), 0 14px 36px rgba(94,24,64,.07);
  color: var(--dark);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  list-style: none;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.hanimebody-cart .woocommerce-message::before,
.hanimebody-cart .woocommerce-info::before,
.hanimebody-cart .woocommerce-error::before {
  position: static;
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207,21,83,.18);
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transform: none;
}
.hanimebody-cart .woocommerce-message::before { content: "\2713"; }
.hanimebody-cart .woocommerce-info::before { content: "i"; }
.hanimebody-cart .woocommerce-error::before { content: "!"; }
.hanimebody-cart .woocommerce-message::after,
.hanimebody-cart .woocommerce-info::after,
.hanimebody-cart .woocommerce-error::after {
  content: none;
}
.hanimebody-cart .woocommerce-message .button,
.hanimebody-cart .woocommerce-message .wc-forward,
.hanimebody-cart .woocommerce-info .button,
.hanimebody-cart .woocommerce-info .wc-forward,
.hanimebody-cart .woocommerce-error .button,
.hanimebody-cart .woocommerce-error .wc-forward {
  order: 2;
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  padding: 0 18px;
  float: none !important;
  border: 1px solid var(--wine);
  border-radius: var(--radius-pill);
  background: var(--wine);
  color: #fff !important;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
  white-space: nowrap;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}
.hanimebody-cart .woocommerce-message .button:hover,
.hanimebody-cart .woocommerce-message .wc-forward:hover,
.hanimebody-cart .woocommerce-info .button:hover,
.hanimebody-cart .woocommerce-info .wc-forward:hover,
.hanimebody-cart .woocommerce-error .button:hover,
.hanimebody-cart .woocommerce-error .wc-forward:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Layout = form with two columns */
.hanimebody-cart__layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.hanimebody-cart__items { min-width: 0; }

/* Empty cart */
.hanimebody-cart-empty {
  display: flex; flex-direction: column; align-items: center;
  padding: 80px 24px;
  text-align: center;
  color: var(--mid);
}
.hanimebody-cart-empty svg { opacity: .35; margin-bottom: 24px; }
.hanimebody-cart-empty__title { font-family: var(--fd); font-size: 32px; color: var(--wine); font-weight: 400; margin: 0 0 10px; }
.hanimebody-cart-empty__sub { font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--mid); margin: 0 0 28px; }

/* Column alignment */
.hanimebody-cart-th-qty,
.hanimebody-cart-td-qty { text-align: center; width: 120px; }
.hanimebody-cart-th-total,
.hanimebody-cart-td-total { text-align: right; }

/* WooCommerce quantity input inside cart */
.hanimebody-cart-table .quantity { display: flex; align-items: center; justify-content: center; gap: 6px; }
.hanimebody-cart-table .qty {
  width: 48px; text-align: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 6px 4px; font-family: var(--fb); font-size: 14px;
  color: var(--dark); outline: none; background: #fff;
}
.hanimebody-cart-table .qty:focus { border-color: var(--pink); }

/* Continue shopping link */
.hanimebody-cart-continue {
  display: inline-block; margin-top: 20px;
  font-family: var(--fb); font-size: 12.5px; letter-spacing: .06em;
  color: var(--mid); font-weight: 400;
  text-decoration: none; transition: color var(--transition);
}
.hanimebody-cart-continue:hover { color: var(--pink); }

/* Discount row */
.hanimebody-cart-discount { color: var(--pink); }

/* Cart table */
.hanimebody-cart-table { width: 100%; border-collapse: collapse; }
.hanimebody-cart-table thead th {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.hanimebody-cart-table thead th:last-child { text-align: right; }
.hanimebody-cart-row { border-bottom: 1px solid var(--border); }
.hanimebody-cart-row td { padding: 20px 0; vertical-align: middle; }
.hanimebody-cart-product { display: flex; align-items: center; gap: 16px; }
.hanimebody-cart-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; background: var(--blush); flex-shrink: 0; }
.hanimebody-cart-img img { width: 100%; height: 100%; object-fit: cover; }
.hanimebody-cart-name { font-family: var(--fd); font-size: 17px; color: var(--wine); font-weight: 500; margin-bottom: 4px; }
.hanimebody-cart-variant { font-size: 12px; color: var(--mid); font-weight: 300; }
.hanimebody-cart-remove { color: var(--mid); font-size: 11px; text-decoration: underline; cursor: pointer; margin-top: 6px; display: inline-block; }
.hanimebody-cart-remove:hover { color: var(--pink); }
.hanimebody-cart-qty { display: flex; align-items: center; gap: 10px; }
.hanimebody-qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); background: #fff; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.hanimebody-qty-btn:hover { border-color: var(--pink); color: var(--pink); }
.hanimebody-qty-num { font-family: var(--fb); font-size: 14px; width: 24px; text-align: center; }
.hanimebody-cart-price { font-family: var(--fb); font-size: 15px; font-weight: 500; text-align: right; color: var(--dark); }

/* Cart summary */
.hanimebody-cart-summary { background: var(--blush); border-radius: var(--radius-md); padding: 28px; }
.hanimebody-cart-summary__title { font-family: var(--fd); font-size: 24px; color: var(--wine); font-weight: 500; margin-bottom: 20px; }
.hanimebody-cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); font-family: var(--fb); font-weight: 300; color: var(--mid); }
.hanimebody-cart-summary__row:last-of-type { border: none; }
.hanimebody-cart-summary__total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; color: var(--dark); padding: 14px 0 20px; font-family: var(--fb); }
.hanimebody-coupon { display: flex; gap: 8px; margin-bottom: 16px; }
.hanimebody-coupon input { flex: 1; border: 1px solid var(--border); padding: 10px 14px; border-radius: var(--radius-sm); font-family: var(--fb); font-size: 13px; outline: none; }
.hanimebody-coupon input:focus { border-color: var(--pink); }
.hanimebody-coupon button { background: var(--wine); color: #fff; border: none; padding: 10px 18px; border-radius: var(--radius-sm); font-family: var(--fb); font-size: 12px; letter-spacing: .08em; font-weight: 600; cursor: pointer; }

/* ── CHECKOUT ─────────────────────────────── */
.hanimebody-checkout { padding: 40px 48px 80px; max-width: 1200px; margin: 0 auto; }
.hanimebody-checkout__title { font-family: var(--fd); font-size: 48px; color: var(--wine); font-weight: 400; margin-bottom: 36px; }
.hanimebody-checkout__layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.hanimebody-checkout__section-title { font-family: var(--fd); font-size: 24px; color: var(--wine); font-weight: 500; margin-bottom: 20px; }
.hanimebody-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.hanimebody-form-row--full { grid-template-columns: 1fr; }
.hanimebody-form-field { display: flex; flex-direction: column; gap: 6px; }
.hanimebody-form-field label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--dark); font-family: var(--fb); }
.hanimebody-form-field input,
.hanimebody-form-field select,
.hanimebody-form-field textarea {
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  background: #fff;
  outline: none;
}
.hanimebody-form-field input:focus,
.hanimebody-form-field select:focus,
.hanimebody-form-field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,23,75,.07); }

/* ── REVIEWS SECTION ──────────────────────── */

/* Part 1 — Featured cards (blush background) */
.hanimebody-reviews {
  padding: 80px 40px;
  background: var(--blush);
  text-align: center;
}
.hanimebody-reviews__title { font-family: var(--fd); font-size: 36px; color: var(--wine); font-weight: 400; margin-bottom: 8px; }
.hanimebody-reviews__sub { font-size: 13px; color: var(--mid); font-family: var(--fb); font-weight: 300; margin-bottom: 40px; }
.hanimebody-reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.hanimebody-review-card {
  background: #fff;
  border: 1px solid rgba(180,130,150,.2);
  border-radius: 8px;
  padding: 24px;
}
.hanimebody-review-card__head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.hanimebody-review-card__stars { color: var(--wine); font-size: 14px; letter-spacing: 1px; }
.hanimebody-review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blush);
  color: var(--wine);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  margin-left: auto;
  font-family: var(--fb);
  font-weight: 500;
}
.hanimebody-review-card__title { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 8px; font-family: var(--fb); }
.hanimebody-review-card__text { font-size: 12px; color: var(--mid); line-height: 1.6; font-weight: 300; margin-bottom: 10px; }
.hanimebody-review-card__author { font-size: 12px; color: var(--mid); font-family: var(--fb); }

/* Part 2 — Rating summary + list (white background) */
.hanimebody-rating-section { background: #fff; padding: 60px 40px; }
.hanimebody-rating-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.hanimebody-rating-big { text-align: center; background: var(--blush); border-radius: 10px; padding: 30px 50px; }
.hanimebody-rating-big__stars { font-size: 26px; color: var(--wine); letter-spacing: 2px; margin-bottom: 8px; }
.hanimebody-rating-big__num { font-family: var(--fd); font-size: 32px; color: var(--wine); font-weight: 400; }
.hanimebody-rating-big__total { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); font-family: var(--fb); font-weight: 300; margin-top: 4px; }
.hanimebody-rating-bars { display: flex; flex-direction: column; gap: 10px; min-width: 260px; }
.hanimebody-bar-row { display: flex; align-items: center; gap: 10px; }
.hanimebody-bar-label { font-size: 12px; color: var(--mid); width: 28px; text-align: right; font-family: var(--fb); flex-shrink: 0; }
.hanimebody-bar-track { flex: 1; height: 6px; background: rgba(201,24,74,.1); border-radius: 3px; overflow: hidden; }
.hanimebody-bar-fill { height: 100%; background: var(--wine); border-radius: 3px; transition: width .4s ease; }
.hanimebody-bar-count { font-size: 12px; color: var(--mid); width: 28px; font-family: var(--fb); }

/* Review list */
.hanimebody-review-list { max-width: 1100px; margin: 0 auto; }
.hanimebody-review-item {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.hanimebody-review-item__meta { font-size: 12px; }
.hanimebody-review-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
}
.hanimebody-verified-tag {
  background: var(--wine);
  color: #fff;
  font-size: 9px;
  letter-spacing: .06em;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  font-family: var(--fb);
}
.hanimebody-review-item__attr { font-size: 12px; color: var(--mid); line-height: 1.6; font-weight: 300; font-family: var(--fb); }
.hanimebody-review-item__stars { color: var(--wine); font-size: 15px; letter-spacing: 1px; margin-bottom: 6px; }
.hanimebody-review-item__title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; font-family: var(--fb); }
.hanimebody-review-item__text { font-size: 13px; color: var(--mid); line-height: 1.6; font-weight: 300; }
.hanimebody-review-item__date { font-size: 12px; color: var(--mid); white-space: nowrap; }
.hanimebody-read-more { color: var(--wine); text-decoration: underline; cursor: pointer; font-size: 12px; }

/* Write a review button */
.hanimebody-write-review-btn {
  display: inline-block;
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-family: var(--fb);
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition);
  flex-shrink: 0;
}
.hanimebody-write-review-btn:hover { background: #3d0e29; color: #fff; }

/* ── REVIEW FORM SECTION ──────────────────── */
#review_form_wrapper {
  background: #fff;
  padding: 64px 40px;
  border-top: 1px solid var(--border);
}
.hanimebody-review-form-section__title {
  font-family: var(--fd);
  font-size: 36px;
  color: var(--wine);
  font-weight: 400;
  margin-bottom: 36px;
  text-align: center;
}
#review_form_wrapper #review_form { max-width: 760px; margin: 0 auto; }
#review_form_wrapper #respond { border: none !important; padding: 0 !important; margin: 0 !important; background: transparent !important; }
#review_form_wrapper .comment-reply-title { display: none; }
#review_form_wrapper #commentform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
#review_form_wrapper .comment-form-author,
#review_form_wrapper .comment-form-email { margin: 0; }
#review_form_wrapper .comment-form-rating,
#review_form_wrapper .comment-form-review-variant,
#review_form_wrapper .comment-form-comment,
#review_form_wrapper .comment-form-review-photo,
#review_form_wrapper .form-submit { grid-column: 1 / -1; margin: 0; }
#review_form_wrapper label {
  display: block !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: var(--mid) !important;
  margin-bottom: 6px !important;
  font-family: var(--fb) !important;
  font-weight: 500 !important;
}
#review_form_wrapper input[type=text],
#review_form_wrapper input[type=email],
#review_form_wrapper select,
#review_form_wrapper textarea {
  width: 100% !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  font-family: var(--fb) !important;
  font-size: 14px !important;
  color: var(--dark) !important;
  background: #fff !important;
  outline: none !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition) !important;
}
#review_form_wrapper input[type=text]:focus,
#review_form_wrapper input[type=email]:focus,
#review_form_wrapper select:focus,
#review_form_wrapper textarea:focus {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(201,24,74,.07) !important;
}
#review_form_wrapper .comment-form-comment textarea#comment {
  min-height: 172px !important;
  padding: 18px 20px !important;
  border: 1.5px solid rgba(94,24,64,.22) !important;
  border-radius: var(--radius-md) !important;
  background: var(--cream) !important;
  color: var(--dark) !important;
  line-height: 1.65 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 24px rgba(94,24,64,.05) !important;
  resize: vertical;
}
#review_form_wrapper .comment-form-comment textarea#comment:focus {
  background: #fff !important;
  border-color: var(--pink) !important;
}
#review_form_wrapper .form-submit { text-align: left; }
#review_form_wrapper .form-submit input[type=submit],
#review_form_wrapper #submit {
  background: var(--wine) !important;
  color: #fff !important;
  border: none !important;
  padding: 14px 36px !important;
  border-radius: var(--radius-pill) !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  font-size: 12px !important;
  font-family: var(--fb) !important;
  box-shadow: none !important;
  transition: background var(--transition) !important;
  width: auto !important;
  min-height: 44px !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  display: inline-block !important;
}
#review_form_wrapper .form-submit input[type=submit]:hover,
#review_form_wrapper #submit:hover { background: #3d0e29 !important; }
#review_form_wrapper .hanimebody-review-form-section__notice { font-size: 14px; color: var(--mid); text-align: center; padding: 20px 0; font-family: var(--fb); }

/* ── FILE UPLOAD BUTTON ───────────────────── */
.comment-form-review-photo { margin-top: 2px; }
.comment-form-review-photo input[type=file] { display: none; }
#review_form_wrapper .review-photo-label-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px !important;
  width: auto !important;
  max-width: 100%;
  padding: 0 24px !important;
  background: transparent;
  border: 1.5px solid var(--wine);
  color: var(--wine) !important;
  border-radius: var(--radius-pill);
  font-size: 12px !important;
  font-family: var(--fb) !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: 0 !important;
  box-sizing: border-box;
  transition: background .2s, color .2s;
}
#review_form_wrapper .review-photo-label-btn svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
#review_form_wrapper .review-photo-label-btn:hover,
#review_form_wrapper .review-photo-label-btn:focus-visible {
  background: var(--wine);
  color: #fff !important;
}
.comment-form-review-photo .review-photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.comment-form-review-photo .review-photo-preview img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* ── CUSTOMER PHOTOS GALLERY ─────────────── */
.hanimebody-review-photos { padding: 24px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.hanimebody-review-photos__heading { font-size: 12px; font-family: var(--fb); color: var(--mid); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.hanimebody-review-photos__strip { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.hanimebody-review-photos__thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, opacity .2s;
  flex-shrink: 0;
  padding: 0;
  background: none;
}
.hanimebody-review-photos__thumb:hover { border-color: var(--wine); }
.hanimebody-review-photos__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── REVIEW ITEM PHOTOS — clickable ─────── */
.hanimebody-review-item__photos { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.hanimebody-review-item__photo {
  width: 132px;
  height: 132px;
  cursor: pointer;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hanimebody-review-item__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); display: block; transition: opacity .2s; }
.hanimebody-review-item__photo:hover img { opacity: .85; }

/* ── REVIEW PHOTO LIGHTBOX ───────────────── */
#reviewPhotoLightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100000;
  background: rgba(0,0,0,.92);
  flex-direction: column;
}
.rplb-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.rplb-main {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-height: 0;
}
.rplb-photo-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 32px;
  min-width: 0;
  position: relative;
}
.rplb-photo-area > img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.rplb-info {
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  padding: 36px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rplb-info__stars { color: var(--wine); font-size: 16px; letter-spacing: 1px; }
.rplb-info__name { font-size: 14px; font-weight: 600; color: var(--dark); font-family: var(--fb); }
.rplb-info__verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--pink); font-family: var(--fb); font-weight: 500;
  background: rgba(201,24,74,.08); padding: 2px 8px; border-radius: 20px; width: fit-content;
}
.rplb-info__date { font-size: 12px; color: var(--mid); font-family: var(--fb); font-weight: 300; }
.rplb-info__title { font-size: 15px; font-weight: 700; color: var(--dark); font-family: var(--fb); }
.rplb-info__text { font-size: 13px; color: var(--mid); line-height: 1.75; font-weight: 300; font-family: var(--fb); }
.rplb-strip {
  display: flex;
  gap: 8px;
  padding: 14px 24px;
  overflow-x: auto;
  background: rgba(0,0,0,.55);
  flex-shrink: 0;
  scrollbar-width: none;
}
.rplb-strip::-webkit-scrollbar { display: none; }
.rplb-strip__thumb {
  width: 56px; height: 56px;
  border-radius: 4px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  flex-shrink: 0; opacity: .55;
  transition: opacity .2s, border-color .2s;
  padding: 0; background: none;
}
.rplb-strip__thumb.active,
.rplb-strip__thumb:hover { border-color: #fff; opacity: 1; }
.rplb-strip__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rplb-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background .2s; line-height: 1;
}
.rplb-nav-btn:hover { background: rgba(255,255,255,.28); }
.rplb-nav-prev { left: 12px; }
.rplb-nav-next { right: 12px; }
.rplb-close {
  position: fixed; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.65); border: 1.5px solid rgba(255,255,255,.5);
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 100001; transition: background .2s;
}
.rplb-close:hover { background: rgba(0,0,0,.9); }

/* ── FAQ SECTION ──────────────────────────── */
.hanimebody-faq { padding: 80px 48px; background: var(--cream); }
.hanimebody-faq__grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; }
.hanimebody-faq__left h2 { font-family: var(--fd); font-size: 44px; color: var(--wine); font-weight: 400; margin-bottom: 12px; }
.hanimebody-faq__left p { font-size: 13.5px; color: var(--mid); line-height: 1.7; font-weight: 300; }
.hanimebody-faq__list { display: flex; flex-direction: column; }
.hanimebody-faq__item { border-bottom: 1px solid var(--border); }
.hanimebody-faq__header { display: flex; align-items: center; gap: 10px; padding: 16px 0; cursor: pointer; user-select: none; }
.hanimebody-faq__icon { color: var(--pink); font-size: 15px; font-weight: 600; flex-shrink: 0; font-family: var(--fb); }
.hanimebody-faq__q { font-size: 14px; color: var(--dark); font-weight: 400; flex: 1; font-family: var(--fb); }
.hanimebody-faq__arrow { color: var(--mid); font-size: 14px; transition: transform .3s; }
.hanimebody-faq__item.open .hanimebody-faq__arrow { transform: rotate(180deg); }
.hanimebody-faq__answer { display: none; padding: 0 26px 14px; font-size: 13.5px; color: var(--mid); line-height: 1.75; font-weight: 300; }
.hanimebody-faq__item.open .hanimebody-faq__answer { display: block; }

/* ── PAGINATION ───────────────────────────── */
.hanimebody-pagination { display: flex; gap: 6px; justify-content: center; padding: 32px 0; }
.hanimebody-page-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
  font-family: var(--fb); background: #fff; color: var(--dark);
  text-decoration: none; transition: all var(--transition);
}
.hanimebody-page-btn.active, .hanimebody-page-btn:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ── FOOTER ───────────────────────────────── */
.hanimebody-footer { background: var(--cream); border-top: 1px solid var(--border); padding: 60px 48px 32px; }
.hanimebody-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.hanimebody-footer__logo-text { font-family: var(--fd); font-size: 21px; letter-spacing: .22em; color: var(--wine); font-weight: 600; }
.hanimebody-footer__logo-sub { font-family: var(--fb); font-size: 9px; letter-spacing: .12em; color: var(--mid); display: block; margin-top: -2px; margin-bottom: 14px; }
.hanimebody-footer__tagline { font-size: 13px; color: var(--mid); line-height: 1.7; font-weight: 300; margin-bottom: 20px; max-width: 320px; }
.hanimebody-footer__socials { display: flex; gap: 12px; margin-bottom: 22px; }
.hanimebody-footer__social {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: 13px; text-decoration: none;
  transition: all var(--transition);
}
.hanimebody-footer__social:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.hanimebody-footer__email-form {
  display: flex;
  gap: 0;
  margin-top: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #fff;
}
.hanimebody-footer__email-input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 12px 16px;
  font-family: var(--fb);
  font-size: 13px;
  outline: none;
  color: var(--dark);
  background: transparent;
}
.hanimebody-footer__email-input::placeholder { color: var(--mid); }
.hanimebody-footer__email-btn {
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  transition: background var(--transition);
  flex-shrink: 0;
}
.hanimebody-footer__email-btn:hover { background: var(--pink); }
.hanimebody-footer__email-btn:disabled { cursor: wait; opacity: .72; }
.hanimebody-footer__email-message {
  display: none;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.hanimebody-footer__email-message.is-visible { display: block; }
.hanimebody-footer__email-message.is-success { color: #2f7d4f; }
.hanimebody-footer__email-message.is-error { color: var(--pink); }
.hanimebody-footer__email-note { font-size: 11px; color: var(--mid); margin-top: 10px; line-height: 1.6; font-weight: 300; }
.hanimebody-footer__email-note a { color: var(--pink); }
.hanimebody-footer__col-title { font-family: var(--fb); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--dark); font-weight: 600; margin-bottom: 18px; }
.hanimebody-footer__links { display: flex; flex-direction: column; gap: 11px; }
.hanimebody-footer__links a { font-size: 13.5px; color: var(--mid); text-decoration: none; font-weight: 300; transition: color var(--transition); }
.hanimebody-footer__links a:hover { color: var(--pink); }
.hanimebody-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hanimebody-footer__copy { font-size: 12px; color: var(--mid); font-weight: 300; }
.hanimebody-footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.hanimebody-footer__legal a { font-size: 12px; color: var(--mid); text-decoration: none; transition: color var(--transition); }
.hanimebody-footer__legal a:hover { color: var(--pink); }

/* ── MOBILE NAV ───────────────────────────── */
.hanime-mobile-nav {
  --hanime-mobile-nav-top: 0px;
  display: block;
  position: fixed;
  top: var(--hanime-mobile-nav-top);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 145;
  background: rgba(30, 14, 26, .5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.hanime-mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hanime-mobile-nav__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(40rem, 100vw);
  height: 100%;
  background: #fff;
  padding: 0;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform .25s ease, visibility .25s ease;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  box-shadow: 12px 0 35px rgba(30, 14, 26, .12);
}
.hanime-mobile-nav.open .hanime-mobile-nav__panel { transform: translateX(0); }
.hanime-mobile-nav__navigation {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 30px 0;
}
.hanime-mobile-nav__menu { margin: 0; padding: 0; list-style: none; }
.hanime-mobile-nav__menu--root > li {
  margin: 0 8px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.hanime-mobile-nav__details { position: static; }
.hanime-mobile-nav__details > summary { list-style: none; }
.hanime-mobile-nav__details > summary::-webkit-details-marker { display: none; }
.hanime-mobile-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
  margin: 0;
  padding: 7px 32px;
  border-radius: 10px;
  color: var(--dark);
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: none;
}
.hanime-mobile-nav__link:hover,
.hanime-mobile-nav__link:focus,
.hanime-mobile-nav__back:hover,
.hanime-mobile-nav__back:focus,
.hanime-mobile-nav__submenu-link:hover,
.hanime-mobile-nav__submenu-link:focus {
  color: var(--dark);
  background: rgba(30, 14, 26, .04);
}
.hanime-mobile-nav__link--summary {
  background: #fef4f4;
  font-weight: 600;
  padding-top: 11px;
  padding-bottom: 11px;
}
.hanime-mobile-nav__link--highlighted { background: #fef4f4; }
.hanime-mobile-nav__arrow {
  width: 14px;
  height: 10px;
  flex: 0 0 auto;
  margin-left: 18px;
}
.hanime-mobile-nav__submenu {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  background: #fff;
  overflow: hidden;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .25s ease, visibility .25s ease;
}
.hanime-mobile-nav__details[open] > .hanime-mobile-nav__submenu {
  transform: translateX(0);
  visibility: visible;
}
.hanime-mobile-nav__inner-submenu {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 40px;
}
.hanime-mobile-nav__back {
  width: 100%;
  margin: 24px 0 30px;
  padding: 11px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: #fef4f4;
  color: var(--dark);
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
.hanime-mobile-nav__back-icon {
  width: 14px;
  height: 10px;
  transform: rotate(180deg);
  flex: 0 0 auto;
}
.hanime-mobile-nav__group {
  margin-bottom: 46px;
}
.hanime-mobile-nav__section-title {
  display: block;
  padding: 7px 32px;
  color: var(--dark);
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: lowercase;
}
.hanime-mobile-nav__submenu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 32px;
  color: var(--dark);
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}
.hanime-mobile-nav__badge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 7px;
  border-radius: 20px;
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
.hanime-mobile-nav__style-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 32px;
  row-gap: 24px;
  width: fit-content;
  padding: 12px 32px;
}
.hanime-mobile-nav__style-link {
  width: fit-content;
  color: var(--dark);
  font-family: var(--fb);
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
}
.hanime-mobile-nav__style-link:hover { color: var(--pink); }
.hanime-mobile-nav__type-link {
  display: flex;
  width: auto;
  flex-direction: column;
  margin: 0 32px 12px;
  padding: 17px;
  background: #fef3f4;
  color: var(--dark);
  text-decoration: none;
}
.hanime-mobile-nav__type-link span {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.3;
}
.hanime-mobile-nav__type-link small {
  margin-top: 4px;
  color: var(--mid);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
}
.hanime-mobile-nav__utility-links {
  position: relative;
  padding: 18px 32px calc(18px + env(safe-area-inset-bottom));
  background: #fef4f4;
}
.hanime-mobile-nav__account {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--dark);
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.hanime-mobile-nav__account-icon {
  width: 20px;
  height: 20px;
}
body.hanime-mobile-nav-open { overflow: hidden; }

/* ── ABOUT PAGE ──────────────────────────── */
.hanime-about-page { background: var(--cream); min-height: 60vh; }

.hanime-about-header {
  text-align: center;
  padding: 72px 48px 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hanime-about-header__label {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 16px;
}
.hanime-about-header__title {
  font-family: var(--fd);
  font-size: 54px;
  color: var(--wine);
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1.1;
}
.hanime-about-header__sub {
  font-size: 14.5px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--fb);
}

.hanime-about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 48px 96px;
  align-items: start;
}

.hanime-about-img { position: sticky; top: 90px; }
.hanime-about-img__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  object-fit: cover;
}

.hanime-about-content__title {
  font-family: var(--fd);
  font-size: 52px;
  color: var(--wine);
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.05;
}
.hanime-about-content__subtitle {
  font-family: var(--fd);
  font-size: 17px;
  font-style: italic;
  color: var(--mid);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px;
}
.hanime-about-content__intro {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 24px;
}
.hanime-about-content__body p {
  font-family: var(--fb);
  font-size: 14.5px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.85;
  margin: 0 0 18px;
}
.hanime-about-content__body strong { color: var(--dark); font-weight: 500; }
.hanime-about-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0 20px;
}
.hanime-about-copyright {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
  margin: 0 0 28px;
}

/* ── FAQS PAGE ───────────────────────────── */
.hanime-faqs-page { background: var(--cream); min-height: 60vh; }

.hanime-faqs-header {
  text-align: center;
  padding: 72px 48px 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hanime-faqs-header__label {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 16px;
}
.hanime-faqs-header__title {
  font-family: var(--fd);
  font-size: 54px;
  color: var(--wine);
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1.1;
}
.hanime-faqs-header__sub {
  font-size: 14.5px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--fb);
}

.hanime-faqs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  align-items: start;
}

.hanime-faqs-col__title {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin: 0 0 20px;
}

.hanime-faqs-list { border-top: 1px solid var(--border); }

.hanime-faqs-item { border-bottom: 1px solid var(--border); }

.hanime-faqs-item__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 17px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  gap: 12px;
  transition: color var(--transition);
}
.hanime-faqs-item__btn:hover { color: var(--pink); }
.hanime-faqs-item__arrow {
  flex-shrink: 0;
  color: var(--mid);
  transition: transform var(--transition);
}
.hanime-faqs-item.is-open .hanime-faqs-item__arrow { transform: rotate(180deg); }

.hanime-faqs-item__body {
  display: none;
  padding-bottom: 18px;
}
.hanime-faqs-item.is-open .hanime-faqs-item__body { display: block; }

.hanime-faqs-item__answer {
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.8;
}
.hanime-faqs-item__answer strong { color: var(--dark); font-weight: 500; }
.hanime-faqs-item__answer a { color: var(--pink); }
.hanime-faqs-item__answer a:hover { color: var(--wine); }

.hanime-faqs-cta {
  text-align: center;
  padding: 40px 48px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hanime-faqs-cta__text {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  margin: 0;
}

/* ── SHIPPING PAGE ───────────────────────── */
.hanime-shipping-page { background: #fff7fb; min-height: 60vh; overflow-x: hidden; }

.hanime-shipping-header {
  display: block;
  max-width: none;
  text-align: center;
  padding: 56px 24px 48px;
  background: linear-gradient(180deg, #fff 0%, #fff9fc 100%);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}
.hanime-shipping-header__label {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 12px;
}
.hanime-shipping-header__title {
  font-family: var(--fd);
  font-size: clamp(44px, 4.4vw, 62px);
  color: var(--wine);
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.02;
}
.hanime-shipping-header__sub {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
  max-width: 610px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.hanime-shipping-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 48px 24px;
  box-sizing: border-box;
}
.hanime-shipping-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  box-sizing: border-box;
}
.hanime-shipping-card__label {
  display: block;
  font-family: var(--fb);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 10px;
}
.hanime-shipping-card__value {
  display: block;
  font-family: var(--fd);
  font-size: 30px;
  line-height: 1.08;
  color: var(--wine);
  font-weight: 400;
  margin-bottom: 10px;
}
.hanime-shipping-card__text {
  font-family: var(--fb);
  font-size: 13px;
  line-height: 1.65;
  color: var(--mid);
  font-weight: 300;
  margin: 0;
}

.hanime-shipping-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 48px;
  box-sizing: border-box;
}
.hanime-shipping-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 34px;
  align-items: start;
}
.hanime-shipping-section__intro {
  max-width: 680px;
  margin-bottom: 22px;
}
.hanime-shipping-section__eyebrow {
  display: block;
  font-family: var(--fb);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 10px;
}
.hanime-shipping-section__title {
  font-family: var(--fd);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.08;
  color: var(--wine);
  font-weight: 400;
  margin: 0 0 12px;
}
.hanime-shipping-section__text {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

.hanime-shipping-table-wrap {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.hanime-shipping-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--fb);
}
.hanime-shipping-table th {
  padding: 15px 18px;
  background: #fff0f6;
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.hanime-shipping-table td {
  padding: 17px 18px;
  color: var(--mid);
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 300;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.hanime-shipping-table tr:last-child td { border-bottom: 0; }
.hanime-shipping-table td:first-child {
  color: var(--dark);
  font-weight: 500;
}

.hanime-shipping-steps {
  list-style: none;
  counter-reset: shipping-step;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.hanime-shipping-steps li {
  counter-increment: shipping-step;
  position: relative;
  padding: 20px 0 20px 52px;
  border-bottom: 1px solid var(--border);
}
.hanime-shipping-steps li::before {
  content: counter(shipping-step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--pink);
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
}
.hanime-shipping-steps span {
  display: block;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 5px;
}
.hanime-shipping-steps p {
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.72;
  font-weight: 300;
  margin: 0;
}

.hanime-shipping-note {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
}
.hanime-shipping-note__title {
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin: 0 0 14px;
}
.hanime-shipping-note__list {
  margin: 0;
  padding: 0 0 0 18px;
  font-family: var(--fb);
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--mid);
  font-weight: 300;
}
.hanime-shipping-note__list li + li { margin-top: 10px; }

.hanime-shipping-policy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hanime-shipping-policy {
  display: flex;
  gap: 12px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 17px 18px;
  box-sizing: border-box;
}
.hanime-shipping-policy__mark {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 8px;
}
.hanime-shipping-policy p {
  font-family: var(--fb);
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--mid);
  font-weight: 300;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.hanime-shipping-cta {
  text-align: center;
  padding: 18px 48px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hanime-shipping-cta__text {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  margin: 0;
}

/* ── CONTACT PAGE ─────────────────────────── */
.hanime-contact-page { background: var(--cream); min-height: 60vh; }

.hanime-contact-header {
  text-align: center;
  padding: 72px 48px 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hanime-contact-header__label {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 16px;
}
.hanime-contact-header__title {
  font-family: var(--fd);
  font-size: 54px;
  color: var(--wine);
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1.1;
}
.hanime-contact-header__sub {
  font-size: 14.5px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--fb);
}

.hanime-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  align-items: start;
}

.hanime-contact-info { display: flex; flex-direction: column; gap: 32px; }

.hanime-contact-info__block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.hanime-contact-info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--blush);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-top: 2px;
}
.hanime-contact-info__title {
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  margin: 0 0 6px;
}
.hanime-contact-info__link {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 400;
  transition: opacity var(--transition);
  display: block;
  margin-bottom: 4px;
}
.hanime-contact-info__link:hover { opacity: .75; }
.hanime-contact-info__note,
.hanime-contact-info__text {
  font-size: 13px;
  color: var(--mid);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.hanime-contact-info__socials { display: flex; flex-direction: row; gap: 10px; margin-top: 10px; align-items: center; }
.hanime-contact-info__social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}
.hanime-contact-info__social-btn:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

.hanime-contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

/* Contact Form 7 inside the box */
.hanime-contact-form-box .wpcf7 { width: 100%; }
.hanime-contact-form-box .wd-grid-f-stretch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.hanime-contact-form-box .wd-col { display: flex; flex-direction: column; gap: 5px; }
/* CF7 wraps label+input in <p> — reset margins and make each a column */
.hanime-contact-form-box p { margin: 0 0 14px; }
.hanime-contact-form-box .wd-col p { margin-bottom: 0; }
.hanime-contact-form-box .wd-col p,
.hanime-contact-form-box .wd-grid-g > div > p {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
/* Make CF7 control wrapper block so input stretches full width */
.hanime-contact-form-box .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.hanime-contact-form-box label {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--fb);
}
.hanime-contact-form-box input[type=text],
.hanime-contact-form-box input[type=email],
.hanime-contact-form-box input[type=tel],
.hanime-contact-form-box textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
  outline: none;
  appearance: none;
}
.hanime-contact-form-box input[type=text]:focus,
.hanime-contact-form-box input[type=email]:focus,
.hanime-contact-form-box input[type=tel]:focus,
.hanime-contact-form-box textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(201,24,74,.07);
}
.hanime-contact-form-box textarea { resize: vertical; min-height: 120px; }
.hanime-contact-form-box input[type=submit],
.hanime-contact-form-box .wpcf7-submit,
.hanime-contact-form-box .btn-color-black {
  display: inline-block;
  margin-top: 6px;
  padding: 14px 36px;
  background: var(--wine);
  color: #fff;
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hanime-contact-form-box input[type=submit]:hover,
.hanime-contact-form-box .wpcf7-submit:hover,
.hanime-contact-form-box .btn-color-black:hover { background: var(--pink); transform: translateY(-1px); }
.hanime-contact-form-box .wpcf7-not-valid-tip { font-size: 11.5px; color: var(--pink); font-family: var(--fb); margin-top: 4px; }
.hanime-contact-form-box .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--fb);
  font-size: 13px;
}
.hanime-contact-form-box .wpcf7-mail-sent-ok { background: #f0faf3; border-color: #34a853; color: #1a6b34; }
.hanime-contact-form-box .wpcf7-validation-errors,
.hanime-contact-form-box .wpcf7-mail-sent-ng { background: #fff5f7; border-color: var(--pink); color: var(--wine); }

/* ── Editorial page refinements ───────────── */
:where(.hanime-about-page, .hanime-faqs-page, .hanime-shipping-page, .hanime-contact-page) {
  background: #fff7fb;
  overflow-x: hidden;
}
:where(.hanime-about-header, .hanime-faqs-header, .hanime-shipping-header, .hanime-contact-header) {
  display: block;
  max-width: none;
  text-align: center;
  padding: 56px 24px 48px;
  background: linear-gradient(180deg, #fff 0%, #fff9fc 100%);
  box-sizing: border-box;
}
:where(.hanime-about-header__label, .hanime-faqs-header__label, .hanime-shipping-header__label, .hanime-contact-header__label) {
  margin-bottom: 12px;
  color: var(--pink);
}
:where(.hanime-about-header__title, .hanime-faqs-header__title, .hanime-shipping-header__title, .hanime-contact-header__title) {
  margin: 0 0 14px;
  font-size: clamp(44px, 4.4vw, 62px);
  line-height: 1.02;
}
:where(.hanime-about-header__sub, .hanime-faqs-header__sub, .hanime-shipping-header__sub, .hanime-contact-header__sub) {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.hanime-about-wrap {
  max-width: 1160px;
  gap: 56px;
  padding: 58px 48px 76px;
  align-items: center;
  box-sizing: border-box;
}
.hanime-about-img {
  position: static;
}
.hanime-about-img__photo {
  height: min(58vw, 620px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}
.hanime-about-content {
  max-width: 560px;
  min-width: 0;
}
.hanime-about-content__title {
  font-size: clamp(42px, 4vw, 58px);
}
.hanime-about-content__subtitle {
  margin-bottom: 22px;
}
.hanime-about-content__intro {
  margin-bottom: 18px;
}
.hanime-about-content__body p {
  font-size: 14px;
  line-height: 1.78;
  margin-bottom: 15px;
}
.hanime-about-content .btn {
  margin-top: 4px;
}

.hanime-about-page {
  background: #fff;
}
.hanime-about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: min(720px, calc(100svh - 112px));
  padding: clamp(44px, 6vw, 82px) clamp(20px, 6vw, 72px) clamp(34px, 5vw, 58px);
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff7fb 54%, #f6fbf8 100%);
}
.hanime-about-hero__content,
.hanime-about-hero__media {
  position: relative;
  z-index: 1;
}
.hanime-about-hero__eyebrow,
.hanime-about-story__intro span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #51675d;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hanime-about-hero__eyebrow::before,
.hanime-about-story__intro span::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.hanime-about-hero__title {
  margin: 0 0 18px;
  font-size: clamp(68px, 10vw, 148px);
  line-height: .94;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--wine);
  transform: translateX(-0.05em);
}
.hanime-about-hero__lead {
  max-width: 600px;
  margin: 0;
  display: grid;
  gap: 16px;
  font-family: var(--fb);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.66;
  font-weight: 300;
  color: #482b3d;
}
.hanime-about-hero__lead p {
  margin: 0;
}
.hanime-about-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.hanime-about-hero__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 15px;
  border: 1px solid rgba(94, 24, 64, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--wine);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}
.hanime-about-hero__media {
  justify-self: end;
  width: min(100%, 720px);
  margin: 0;
}
.hanime-about-hero__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(94, 24, 64, .13);
}
.hanime-about-story {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 48px) clamp(58px, 7vw, 96px);
  border-top: 1px solid rgba(94, 24, 64, .1);
}
.hanime-about-story__intro span {
  margin: 0;
  color: var(--pink);
}
.hanime-about-story__copy {
  display: grid;
  gap: 22px;
}
.hanime-about-story__copy p {
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.14;
  font-weight: 300;
  color: var(--wine);
  letter-spacing: 0;
}

.hanime-faqs-wrap {
  max-width: 1080px;
  gap: 32px;
  padding: 54px 48px 48px;
  box-sizing: border-box;
}
.hanime-faqs-col,
.hanime-contact-info,
.hanime-contact-form-box {
  min-width: 0;
}
.hanime-faqs-col__title {
  margin-bottom: 14px;
}
.hanime-faqs-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-sizing: border-box;
  max-width: 100%;
}
.hanime-faqs-item {
  border-bottom: 1px solid var(--border);
}
.hanime-faqs-item:last-child {
  border-bottom: 0;
}
.hanime-faqs-item__btn {
  min-height: 58px;
  padding: 17px 20px;
  font-size: 14px;
  line-height: 1.35;
  min-width: 0;
}
.hanime-faqs-item__btn span { min-width: 0; overflow-wrap: anywhere; }
.hanime-faqs-item__body {
  padding: 0 20px 20px;
}
.hanime-faqs-item__answer {
  font-size: 13.5px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}
.hanime-faqs-cta {
  padding: 18px 48px 64px;
}

.hanime-contact-wrap {
  grid-template-columns: minmax(260px, 360px) minmax(0, 580px);
  justify-content: center;
  gap: 44px;
  max-width: 1080px;
  padding: 54px 48px 76px;
  box-sizing: border-box;
}
.hanime-contact-info {
  gap: 16px;
}
.hanime-contact-info__block {
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.hanime-contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-top: 0;
}
.hanime-contact-form-box {
  border-radius: 8px;
  padding: 32px 40px;
  box-shadow: 0 18px 44px rgba(94,24,64,.07);
}
.hanime-contact-form-box textarea {
  min-height: 136px;
  height: 136px;
}
.hanime-contact-form-box input[type=submit],
.hanime-contact-form-box .wpcf7-submit,
.hanime-contact-form-box .btn-color-black {
  width: 100%;
  min-height: 46px;
}

/* ── CHECKOUT & MY ACCOUNT PAGES ─────────── */
.hanimebody-wc-page {
  padding: 0 48px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.hanimebody-wc-page__title {
  font-family: var(--fd);
  font-size: 48px;
  color: var(--wine);
  font-weight: 400;
  padding: 40px 0 32px;
}

/* WC notices */
.hanimebody-wc-page .woocommerce-error,
.hanimebody-wc-page .woocommerce-message,
.hanimebody-wc-page .woocommerce-info {
  font-family: var(--fb);
  font-size: 13px;
  padding: 12px 18px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  list-style: none;
  display: block;
}
.hanimebody-wc-page .woocommerce-error { background: #fff5f7; border-left: 3px solid var(--pink); color: var(--wine); }
.hanimebody-wc-page .woocommerce-message { background: #f0faf3; border-left: 3px solid #34a853; color: #1a6b34; }
.hanimebody-wc-page .woocommerce-info { background: var(--blush); border-left: 3px solid var(--wine); color: var(--dark); border-top: none; }
.hanimebody-wc-page .woocommerce-info a { color: var(--wine); font-weight: 600; }
.hanimebody-wc-page .woocommerce-info a:hover { color: var(--pink); }

/* ── CHECKOUT ─────────────────────── */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanimebody-wc-page__title { padding-bottom: 28px; }

/* 2-column grid via CSS on flat form structure */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0 48px;
  align-items: start;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #customer_details {
  grid-column: 1;
  grid-row: 1 / 20;
  float: none !important;
  width: auto !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--fd);
  font-size: 22px;
  color: var(--wine);
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #order_review {
  grid-column: 2;
  grid-row: 2 / 20;
  position: sticky;
  top: 88px;
}

/* Reset WC's float-based col2-set */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #customer_details.col2-set { display: block; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #customer_details .col-1,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #customer_details .col-2 { float: none !important; width: auto !important; }

/* Section headings in billing/shipping */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) h3#ship-to-different-address { margin: 28px 0 12px; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-billing-fields > h3,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-fields > h3,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-additional-fields > h3 {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--wine);
  font-weight: 500;
  margin: 28px 0 16px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-billing-fields > h3 { margin-top: 0; }

/* Ship-to-different-address toggle */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #ship-to-different-address label {
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #ship-to-different-address input[type=checkbox] { accent-color: var(--wine); }

/* Field wrapper: 2-col grid */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) p.form-row-wide { grid-column: 1 / -1; }

/* Individual form row (p tag) */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) p.form-row {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) p.form-row > label {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--fb);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) p.form-row .required { color: var(--pink); }

/* Inputs */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) input.input-text,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) select {
  border: 1px solid var(--border) !important;
  padding: 12px 14px !important;
  font-family: var(--fb) !important;
  font-size: 13.5px !important;
  color: var(--dark) !important;
  border-radius: var(--radius-sm) !important;
  transition: border-color var(--transition) !important;
  background: #fff !important;
  outline: none !important;
  width: 100% !important;
  height: auto !important;
  box-shadow: none !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) input.input-text:focus,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) select:focus {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(201,24,74,.07) !important;
}

/* Order review panel */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-review-order {
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: 20px 24px 24px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table thead th {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table thead th.product-total { text-align: right; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table tbody td {
  padding: 10px 0;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table tbody .product-total { text-align: right; font-size: 13px; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table .product-quantity { color: var(--mid); font-size: 12px; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table tfoot tr th,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table tfoot tr td {
  padding: 9px 0;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table tfoot td { text-align: right; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table tr.order-total th,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table tr.order-total td {
  font-size: 15px;
  font-weight: 700;
  color: var(--wine);
  padding-top: 14px;
  border-bottom: none;
}

/* Coupon row in order table */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table .cart-discount th,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) table.woocommerce-checkout-review-order-table .cart-discount td { color: var(--pink); }

/* Payment methods */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment {
  margin-top: 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods { list-style: none; margin: 0; padding: 0; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods li {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods li:last-child { border-bottom: none; }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods label {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods input[type=radio] { accent-color: var(--wine); }
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .payment_box {
  padding: 12px 16px;
  background: var(--blush);
  font-family: var(--fb);
  font-size: 12.5px;
  color: var(--mid);
  border-top: 1px solid var(--border);
}

/* Place order button */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #place_order {
  width: 100% !important;
  background: var(--wine) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 16px 32px !important;
  font-family: var(--fb) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 20px !important;
  transition: background var(--transition) !important;
  display: block !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #place_order:hover { background: var(--pink) !important; }

/* Terms & conditions link */
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-terms-and-conditions-wrapper {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--mid);
  margin-top: 12px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-terms-and-conditions-wrapper a { color: var(--wine); }

/* ── MY ACCOUNT PAGE ──────────────────────── */
body.woocommerce-account .hanimebody-wc-page__title { padding-bottom: 0; margin-bottom: 0; }

/* Sidebar + content 2-column layout */
body.woocommerce-account .woocommerce {
  display: block;
  padding-top: 8px;
}

/* Nav sidebar */
body.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: 8px 0;
  position: sticky;
  top: 88px;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
body.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 11px 20px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: .02em;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  color: var(--wine);
  background: rgba(94,24,64,.06);
  border-left-color: var(--wine);
}
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account.is-active a {
  color: var(--wine);
  font-weight: 600;
  background: rgba(201,24,74,.07);
  border-left-color: var(--pink);
}
body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child a { color: var(--mid); font-size: 12px; }
body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child a:hover { color: var(--pink); }

/* Content area */
body.woocommerce-account .woocommerce-MyAccount-content { min-width: 0; }

/* Account page sub-heading */
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: var(--fd);
  font-size: 28px;
  color: var(--wine);
  font-weight: 400;
  margin-bottom: 24px;
}
body.woocommerce-account .woocommerce-MyAccount-content p {
  font-family: var(--fb);
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}
body.woocommerce-account .woocommerce-MyAccount-content a { color: var(--wine); }
body.woocommerce-account .woocommerce-MyAccount-content a:hover { color: var(--pink); }
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px !important;
  border: 1px solid rgba(201,24,74,.12) !important;
  border-left: 1px solid rgba(201,24,74,.12) !important;
  border-radius: 18px !important;
  background: #fff3f8 !important;
  box-shadow: none !important;
  color: var(--dark) !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::after,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::after,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error::after,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message::after {
  display: none !important;
  content: none !important;
}

/* Edit account form: 2-col first+last */
body.woocommerce-account .woocommerce-EditAccountForm {
  max-width: 640px;
}
body.woocommerce-account .woocommerce-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
body.woocommerce-account .woocommerce-form-row--first,
body.woocommerce-account .woocommerce-form-row--last {
  display: inline-flex;
  flex-direction: column;
  width: calc(50% - 8px);
  vertical-align: top;
  gap: 6px;
  margin-bottom: 16px;
}
body.woocommerce-account .woocommerce-form-row--first { margin-right: 16px; }

body.woocommerce-account .woocommerce-form-row label {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--fb);
}
body.woocommerce-account .woocommerce-form-row span em {
  font-size: 12px;
  color: var(--mid);
  font-style: normal;
  font-weight: 300;
}
body.woocommerce-account .woocommerce-form-row .required { color: var(--pink); }

/* Account inputs */
body.woocommerce-account .woocommerce-Input,
body.woocommerce-account input.input-text {
  border: 1px solid var(--border) !important;
  padding: 12px 14px !important;
  font-family: var(--fb) !important;
  font-size: 13.5px !important;
  color: var(--dark) !important;
  border-radius: var(--radius-sm) !important;
  transition: border-color var(--transition) !important;
  background: #fff !important;
  outline: none !important;
  width: 100% !important;
  box-shadow: none !important;
}
body.woocommerce-account .woocommerce-Input:focus,
body.woocommerce-account input.input-text:focus {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(201,24,74,.07) !important;
}

/* Password fieldset */
body.woocommerce-account fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px 8px;
  margin: 28px 0 24px;
}
body.woocommerce-account fieldset legend {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
  padding: 0 8px;
}

/* Save button */
body.woocommerce-account .woocommerce-Button[name="save_account_details"],
body.woocommerce-account button[name="save_account_details"] {
  background: var(--wine) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 14px 40px !important;
  font-family: var(--fb) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background var(--transition) !important;
}
body.woocommerce-account .woocommerce-Button[name="save_account_details"]:hover,
body.woocommerce-account button[name="save_account_details"]:hover { background: var(--pink) !important; }

/* Orders table in My Account */
body.woocommerce-account .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--fb);
  font-size: 13px;
}
body.woocommerce-account .woocommerce-orders-table th {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid);
  padding: 0 12px 12px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
body.woocommerce-account .woocommerce-orders-table td {
  padding: 12px 12px 12px 0;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
body.woocommerce-account .woocommerce-orders-table .woocommerce-button {
  display: inline-block;
  padding: 6px 16px;
  background: var(--wine);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition);
}
body.woocommerce-account .woocommerce-orders-table .woocommerce-button:hover { background: var(--pink); }

/* My Account address boxes */
body.woocommerce-account .woocommerce-Address { margin-bottom: 32px; }
body.woocommerce-account .woocommerce-Address-title {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
body.woocommerce-account .woocommerce-Address-title .edit {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--mid);
  text-decoration: underline;
}

body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanimebody-wc-page,
body.woocommerce-account .hanimebody-wc-page {
  padding-top: 32px;
}

.hanimebody-checkout-shell {
  display: grid;
  gap: 28px;
}
.hanimebody-checkout-intro,
.hanimebody-account-hero,
.hanimebody-auth-intro {
  background: linear-gradient(135deg, #fff, var(--blush));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 32px;
}
.hanimebody-checkout-intro__eyebrow,
.hanimebody-account-hero__eyebrow,
.hanimebody-auth-intro__eyebrow,
.hanimebody-account-nav__eyebrow,
.hanimebody-account-card__label,
.hanimebody-checkout-summary-head__eyebrow {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 10px;
}
.hanimebody-checkout-intro__title,
.hanimebody-account-hero__title,
.hanimebody-auth-intro__title {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--wine);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.hanimebody-checkout-intro__text,
.hanimebody-account-hero__text,
.hanimebody-auth-intro__text,
.hanimebody-account-note {
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
}

body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-coupon-toggle,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-login-toggle {
  margin-bottom: 16px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-coupon-toggle .woocommerce-info,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-login-toggle .woocommerce-info {
  margin-bottom: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-coupon-toggle .woocommerce-info::before,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-login-toggle .woocommerce-info::before,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-NoticeGroup .woocommerce-info::before,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-NoticeGroup .woocommerce-message::before,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-NoticeGroup .woocommerce-error::before {
  display: none;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.checkout_coupon,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.woocommerce-form-login {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
  background: #fff;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.checkout_coupon p,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.woocommerce-form-login p,
body.woocommerce-account .hanimebody-auth-card p,
body.woocommerce-account .hanimebody-account-card p,
body.woocommerce-account .hanimebody-account-note,
body.woocommerce-account .woocommerce-address-fields p {
  font-family: var(--fb);
  color: var(--mid);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-info,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-message,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-error {
  position: relative;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-info a,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-message a,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-error a {
  font-weight: 600;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.checkout_coupon .form-row-first,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.checkout_coupon .form-row-last {
  float: none;
  width: 100%;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.checkout_coupon .form-row-last,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.woocommerce-form-login .form-row:last-child {
  margin-top: 12px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-contact,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-delivery,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-billing,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #customer_details .woocommerce-additional-fields {
  margin-bottom: 26px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-contact__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-contact__head h3,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-delivery > h3,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-billing > h3 {
  margin: 0 0 18px;
  color: var(--wine);
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-contact__head h3 {
  margin: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-contact__signin {
  color: var(--wine);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-contact__email {
  display: grid;
  gap: 12px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-news,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanimebody-same-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 0;
  color: var(--dark);
  font-family: var(--fb);
  font-size: 13px;
  line-height: 1.45;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanimebody-same-address {
  padding: 13px 14px;
  border: 1px solid rgba(94,24,64,.11);
  border-radius: 14px;
  background: #fff;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanime-cakes-news input,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanimebody-same-address input {
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--wine);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanimebody-billing-address {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(94,24,64,.09);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .hanimebody-billing-address[hidden] {
  display: none !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-login .woocommerce-form-login__submit,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .checkout_coupon button[type="submit"] {
  background: var(--wine) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  padding: 13px 24px !important;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px !important;
  font-weight: 600;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .checkout_coupon button[type="submit"]:hover,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-form-login .woocommerce-form-login__submit:hover {
  background: var(--pink) !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-review-order-table .product-name {
  padding-right: 16px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-methods,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-methods li,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #shipping_method li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--dark);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-methods li input,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #shipping_method li input {
  margin-top: 4px;
  flex-shrink: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-methods li label,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #shipping_method li label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-methods li label .amount,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #shipping_method li label .amount {
  white-space: nowrap;
  font-weight: 600;
  color: var(--wine);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-payment .form-row {
  margin-bottom: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-review-order-table tfoot #shipping_method {
  margin-top: 2px;
}
.hanimebody-checkout-summary-head {
  grid-column: 2;
  grid-row: 1;
}
.hanimebody-checkout-summary-head__eyebrow {
  margin-bottom: 6px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-review-order-table td {
  vertical-align: top;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_methods > li > label {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  line-height: 1.5;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_methods > li > label img,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_methods > li > label .payment_box_icon,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_methods > li > label .wc_payment_method_icon {
  margin-left: auto;
  max-height: 26px;
  width: auto;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_methods > li > .payment_box {
  margin-top: 12px;
  border-radius: 14px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box p {
  font-size: 12.5px;
  line-height: 1.75;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box fieldset,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box .form-row {
  margin-bottom: 12px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box input.input-text,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box select,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box textarea {
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box iframe,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box .wc-stripe-elements-field,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box .wcpay-upe-element,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box .wcpay-payment-request-button {
  max-width: 100%;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_method .payment_box .wc-saved-payment-methods,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_method .payment_box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_method .payment_box ul li + li {
  margin-top: 10px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .payment_method_woocommerce_payments fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods .payment_method_ppcp-gateway label,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods .payment_method_stripe label,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_methods .payment_method_woocommerce_payments label {
  font-weight: 500;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .express-payment-methods,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc-stripe-payment-request-wrapper,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #wcpay-payment-request-wrapper {
  margin: 18px 0 22px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .express-payment-methods,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc-stripe-payment-request-wrapper,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #wcpay-payment-request-wrapper,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc_payment_method .payment_box {
  min-width: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .payment_box .wc-block-components-text-input input,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .payment_box .wc-block-components-combobox-control input {
  padding: 12px 14px !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .payment_box .woocommerce-SavedPaymentMethods-saveNew,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .payment_box .wc-woocommerce-payments-tokenization-modal {
  margin-top: 14px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .payment_box .woocommerce-SavedPaymentMethods-saveNew label {
  justify-content: flex-start !important;
  gap: 8px;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc-stripe-payment-request-wrapper,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #wcpay-payment-request-wrapper,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .express-payment-methods,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wcpay-payment-request-button-separator,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .wc-stripe-payment-request-button-separator,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #wcpay-woopay-button {
  display: none !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment {
  padding: 0 !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods {
  margin: 0 !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_box {
  border: 0 !important;
  border-top: 1px solid var(--border) !important;
  border-radius: 0 0 14px 14px !important;
  margin-top: 12px !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .woopay-save-new-user-container,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .save-details-form,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wcpay-upe-element,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wc-payment-form {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .save-details-form.form-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  max-height: none !important;
  overflow: visible !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .woopay-save-new-user-container {
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--border) !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .phone-input,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments #phone-number,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .iti {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #order_review {
  width: 100%;
  max-width: 440px;
  justify-self: end;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-review-order,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-checkout-review-order-table {
  width: 100%;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods > li {
  display: block;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods > li > label > img,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods > li > label > .about_paypal,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods > li > label > .payment_method_icons {
  margin-left: auto;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods .payment_method_woocommerce_payments .payment_box,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods .payment_method_ppcp-gateway .payment_box,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .wc_payment_methods .payment_method_stripe .payment_box {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wcpay-payment-request-button,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wc-payment-form,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .woocommerce-SavedPaymentMethods,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wcpay-upe-element {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wcpay-payment-request-button iframe,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments iframe {
  max-width: 100%;
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wcpay-payment-request-button-separator {
  text-align: center;
  margin: 18px 0;
  color: var(--mid);
}
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wcpay-payment-request-button-separator::before,
body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #payment .payment_method_woocommerce_payments .wcpay-payment-request-button-separator::after {
  background: var(--border);
}

/* ── RESPONSIVE ───────────────────────────── */

.hanimebody-account-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  width: 100%;
}
.hanimebody-account-nav {
  background: var(--blush);
  border-radius: 24px;
  padding: 24px 0 12px;
  border: 1px solid rgba(94,24,64,.08);
  float: none !important;
  width: 320px !important;
  min-width: 320px !important;
  max-width: 320px !important;
  flex: 0 0 320px !important;
  overflow: hidden;
}
body.woocommerce-account .woocommerce-MyAccount-navigation.hanimebody-account-nav {
  float: none !important;
  width: 320px !important;
  min-width: 320px !important;
  max-width: 320px !important;
}
body.woocommerce-account .woocommerce-MyAccount-content.hanimebody-account-content {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.hanimebody-account-nav__header {
  padding: 0 22px 18px;
  border-bottom: 1px solid rgba(94,24,64,.08);
  margin-bottom: 8px;
}
.hanimebody-account-nav__title {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 400;
  color: var(--wine);
  line-height: 1.15;
}
.hanimebody-account-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hanimebody-account-nav__list li {
  margin: 0;
}
.hanimebody-account-nav__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hanimebody-account-nav .woocommerce-MyAccount-navigation-link a,
.hanimebody-account-nav__list a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px !important;
  line-height: 1.35;
  white-space: normal;
}
.hanimebody-account-nav .woocommerce-MyAccount-navigation-link a span:last-child {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.hanimebody-account-nav__header p,
.hanimebody-account-nav__header h2,
.hanimebody-account-nav__title {
  max-width: none;
  word-break: normal;
  overflow-wrap: anywhere;
}
.hanimebody-account-content {
  min-width: 0;
}
.hanimebody-account-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 24px;
}
.hanimebody-account-hero__pill {
  flex-shrink: 0;
  max-width: 260px;
  padding: 14px 16px;
  background: rgba(201,24,74,.06);
  border: 1px solid rgba(201,24,74,.12);
  border-radius: 18px;
  font-family: var(--fb);
  font-size: 12px;
  line-height: 1.7;
  color: var(--wine);
}
.hanimebody-account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.hanimebody-account-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.hanimebody-account-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,24,74,.3);
  box-shadow: var(--shadow-card);
}
.hanimebody-account-card h3 {
  font-family: var(--fd);
  font-size: 28px;
  color: var(--wine);
  font-weight: 400;
  margin-bottom: 10px;
}
.hanimebody-newsletter-settings {
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
}
.hanimebody-newsletter-settings__eyebrow {
  margin: 0 0 10px;
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.hanimebody-newsletter-settings h2 {
  margin: 0 0 10px;
  font-family: var(--fd);
  font-size: 34px;
  line-height: 1.1;
  color: var(--wine);
  font-weight: 400;
}
.hanimebody-newsletter-settings__text {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.7;
}
.hanimebody-newsletter-settings__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(94,24,64,.1);
  border-radius: 16px;
  background: var(--blush);
}
.hanimebody-newsletter-settings__status span {
  font-size: 12px;
  color: var(--mid);
}
.hanimebody-newsletter-settings__status strong {
  font-size: 13px;
  color: var(--wine);
}
.hanimebody-newsletter-settings__status.is-subscribed strong { color: #2f7d4f; }
.hanimebody-newsletter-settings__status.is-unsubscribed strong { color: var(--pink); }
.hanimebody-newsletter-settings__form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hanimebody-auth-shell {
  display: grid;
  gap: 24px;
}
.hanimebody-auth-shell .col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.hanimebody-auth-shell--single .hanimebody-auth-card--single,
.hanimebody-auth-shell:not(.hanimebody-auth-shell--split) .col2-set {
  grid-template-columns: minmax(0, 620px);
}
.hanimebody-auth-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
}
.hanimebody-auth-card--accent {
  background: linear-gradient(180deg, #fff, #fff7fa);
}
.hanimebody-auth-card h2 {
  font-family: var(--fd);
  font-size: 34px;
  font-weight: 400;
  color: var(--wine);
  margin-bottom: 18px;
}
.hanimebody-auth-card__eyebrow {
  font-family: var(--fb);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 10px;
}
.hanimebody-auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 4px 0 18px;
}
.hanimebody-auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark);
}
.hanimebody-auth-link {
  font-size: 13px;
  color: var(--wine);
}
.hanimebody-auth-help {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 18px;
}
.hanimebody-auth-password-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 1025px) {
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell {
    max-width: 1192px;
    margin: 0 auto 72px;
    gap: 24px;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell #customer_login.u-columns.col2-set {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(360px, 420px)) !important;
    justify-content: center !important;
    align-items: start !important;
    gap: 32px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell #customer_login::before,
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell #customer_login::after {
    content: none !important;
    display: none !important;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell #customer_login .u-column1,
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell #customer_login .u-column2,
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell #customer_login .col-1,
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-shell #customer_login .col-2 {
    float: none !important;
    clear: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px;
    box-sizing: border-box;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-card form {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-card .form-row,
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-card .woocommerce-form-row {
    float: none !important;
    clear: none !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-card .woocommerce-Input,
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-card input.input-text {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px;
  }
  body.woocommerce-account:not(.logged-in) .hanimebody-auth-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    margin: 4px 0 20px;
  }
}

body.woocommerce-account .woocommerce-form-login .button,
body.woocommerce-account .woocommerce-form-register .button,
body.woocommerce-account .woocommerce-ResetPassword .button,
body.woocommerce-account .woocommerce-address-fields button,
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-orders-table .woocommerce-button,
body.woocommerce-account .woocommerce-PaymentMethod .button {
  background: var(--wine) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 14px 26px !important;
  font-family: var(--fb) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
body.woocommerce-account .woocommerce-form-login .button:hover,
body.woocommerce-account .woocommerce-form-register .button:hover,
body.woocommerce-account .woocommerce-ResetPassword .button:hover,
body.woocommerce-account .woocommerce-address-fields button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-orders-table .woocommerce-button:hover,
body.woocommerce-account .woocommerce-PaymentMethod .button:hover {
  background: var(--pink) !important;
}
body.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
}
body.woocommerce-account .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}
body.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
body.woocommerce-account .woocommerce-Addresses.u-columns,
body.woocommerce-account .woocommerce-Addresses.col2-set {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  gap: 24px !important;
}
body.woocommerce-account .woocommerce-Addresses .u-column1,
body.woocommerce-account .woocommerce-Addresses .u-column2,
body.woocommerce-account .woocommerce-Addresses .col-1,
body.woocommerce-account .woocommerce-Addresses .col-2 {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
}
body.woocommerce-account .woocommerce-Address {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  width: 100% !important;
  min-width: 0;
  margin: 0;
}
body.woocommerce-account .woocommerce-Address-title.title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
body.woocommerce-account .woocommerce-Address-title.title h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  flex: 1;
}
body.woocommerce-account .woocommerce-Address-title.title .edit {
  display: inline-block;
  flex: 0 0 auto;
  max-width: 120px;
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-Address address {
  font-style: normal;
  font-family: var(--fb);
  color: var(--dark);
  line-height: 1.9;
}
body.woocommerce-account .woocommerce-table--order-downloads,
body.woocommerce-account .woocommerce-table--order-details,
body.woocommerce-account .woocommerce-MyAccount-paymentMethods {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--fb);
}
body.woocommerce-account .woocommerce-table--order-downloads th,
body.woocommerce-account .woocommerce-table--order-details th,
body.woocommerce-account .woocommerce-MyAccount-paymentMethods th,
body.woocommerce-account .woocommerce-table--order-downloads td,
body.woocommerce-account .woocommerce-table--order-details td,
body.woocommerce-account .woocommerce-MyAccount-paymentMethods td {
  border-bottom: 1px solid var(--border);
  padding: 14px 12px 14px 0;
  text-align: left;
}
body.woocommerce-account .woocommerce-table--order-downloads th,
body.woocommerce-account .woocommerce-table--order-details th,
body.woocommerce-account .woocommerce-MyAccount-paymentMethods th {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
}
body.woocommerce-account .woocommerce-customer-details address {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  font-style: normal;
  line-height: 1.9;
}
body.woocommerce-account .woocommerce-order-details,
body.woocommerce-account .woocommerce-customer-details,
body.woocommerce-account .woocommerce-order-downloads {
  margin-top: 32px;
}
body.woocommerce-account .woocommerce-pagination {
  margin-top: 24px;
}
body.woocommerce-account .woocommerce-pagination .button {
  min-width: 140px;
}

@media (max-width: 1024px) {
  .hanimebody-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hanimebody-products-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hanimebody-features__grid--count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hb-collection-story__grid { grid-template-columns: 1fr 1fr; }
  .hb-collection-story__card--large { grid-row: auto; }
  .hanimebody-shop-layout { grid-template-columns: 1fr; }
  .hanimebody-sidebar { display: none; }
  .hanimebody-cart__layout { grid-template-columns: 1fr; }
  .hanimebody-checkout__layout { grid-template-columns: 1fr; }
  .hanime-about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
  }
  .hanime-about-hero__media {
    justify-self: start;
    width: min(100%, 680px);
  }
  .hanime-about-hero__photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .hanime-about-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hanimebody-account-shell,
  .hanimebody-auth-shell .col2-set,
  .hanimebody-account-dashboard-grid,
  .hanimebody-auth-password-grid,
  body.woocommerce-account .woocommerce-Addresses,
  body.woocommerce-account .woocommerce-Addresses.u-columns,
  body.woocommerce-account .woocommerce-Addresses.col2-set,
  body.woocommerce-account .woocommerce-address-fields__field-wrapper,
  body.woocommerce-checkout:not(.hanime-cakes-checkout-active) form.woocommerce-checkout {
    grid-template-columns: 1fr;
  }
  body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #customer_details,
  .hanimebody-checkout-summary-head,
  body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #order_review {
    grid-column: auto;
    grid-row: auto;
  }
  body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #order_review {
    position: static;
    max-width: none;
    justify-self: stretch;
  }
  body.woocommerce-checkout:not(.hanime-cakes-checkout-active) .woocommerce-shipping-methods li label,
  body.woocommerce-checkout:not(.hanime-cakes-checkout-active) #shipping_method li label {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Tablet: switch to hamburger earlier to avoid nav overflow */
@media (max-width: 960px) {
  .hanime-header__inner { padding: 0 24px; }
  .hanime-nav { display: none; }
  .hanime-hamburger { display: flex; }
  .hanime-before-after { padding: 56px 24px; }
  .hanime-before-after__header,
  .hanime-ba-feature { grid-template-columns: 1fr; }
  .hanime-before-after__title { font-size: 36px; }
  .hanime-ba-copy { padding: 26px; }
  .hanime-ba-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .hanimebody-single__wrap { grid-template-columns: 1fr; gap: 0; }
  .hanimebody-single__wrap { min-height: 0; }
  .hanimebody-product-info { padding: 32px 0 0; }
  .hanime-product-video { padding: 0 24px 64px; }
  .hanime-lift-gallery { padding: 62px 24px 64px; }
  .hanime-product-video__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 0;
  }
  .hanime-lift-gallery__inner { padding: 52px 0; }
  .hanime-lift-gallery__slide { flex-basis: min(44vw, 360px); }
  .hanime-product-video__stage {
    justify-self: center;
  }
  .hanime-product-video__media {
    justify-self: start;
  }
  /* gallery must be static once layout becomes single-column */
  .hanimebody-gallery { position: static; align-self: auto; }
}

@media (max-width: 768px) {
  .container, .container-fluid, .section-pad { padding: 0 16px; }
  .hanime-header__inner { padding: 0 16px; height: 56px; gap: 8px; }
  .hanime-mega { top: 56px; }
  .hanime-logo { --hanime-logo-main-size: 18px; --hanime-logo-body-size: 8px; flex-shrink: 1; min-width: 0; }
  .hanime-nipple-promo__inner,
  .hanime-cleavage-promo__inner { padding: 48px 16px !important; }
  .hanime-nipple-promo__layout,
  .hanime-cleavage-promo__layout { display: grid !important; grid-template-columns: 1fr !important; gap: 24px !important; }
  .hanime-nipple-promo__copy,
  .hanime-nipple-promo__media,
  .hanime-cleavage-promo__copy,
  .hanime-cleavage-promo__media { min-width: 0 !important; width: 100% !important; }
  .hanime-nipple-promo__media,
  .hanime-cleavage-promo__media { overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .hanime-nipple-promo__media::-webkit-scrollbar,
  .hanime-cleavage-promo__media::-webkit-scrollbar { display: none; }
  .hanime-nipple-promo__tile,
  .hanime-cleavage-promo__tile { flex: 0 0 44% !important; min-width: 136px; border-radius: var(--radius-md) !important; }
  .hanime-before-after { padding: 46px 16px; }
  .hanime-before-after__header { gap: 16px; }
  .hanime-before-after__title { font-size: 30px; line-height: 1.08; }
  .hanime-before-after__intro { font-size: 13px; }
  .hanime-lift-gallery { padding: 48px 16px 52px; }
  .hanime-lift-gallery__inner { padding: 0; }
  .hanime-lift-gallery__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
    width: 100%;
  }
  .hanime-lift-gallery__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 8.6vw, 40px);
    line-height: 1.05;
  }
  .hanime-lift-gallery__slide {
    flex-basis: 82vw;
    transform: none;
  }
  .hanime-lift-gallery__nav-btn {
    top: calc(50% - 9px);
    width: 38px;
    height: 38px;
  }
  .hanime-lift-gallery__nav-btn--prev {
    left: 6px;
  }
  .hanime-lift-gallery__nav-btn--next {
    right: 6px;
  }
  .hanime-lift-gallery__nav-btn svg {
    width: 21px;
    height: 21px;
  }
  .hanime-lift-gallery__track {
    gap: 12px;
    padding-bottom: 18px;
  }
  .hanime-ba-feature { margin-top: 24px; gap: 12px; }
  .hanime-ba-copy h3 { font-size: 26px; }
  .hanime-ba-grid { grid-template-columns: 1fr; gap: 12px; }
  .hanime-ba-pair__caption { align-items: flex-start; flex-direction: column; gap: 4px; padding: 12px; }
  .hanime-ba-shot__label { top: 8px; left: 8px; font-size: 9px; padding: 5px 8px; }
  .hanimebody-hero { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .hanimebody-hero__content { padding: 46px 20px 36px; }
  .hanimebody-hero__title { font-size: 34px; max-width: 340px; }
  .hanimebody-hero__sub { max-width: 350px; margin-bottom: 18px; }
  .hanimebody-hero__points { max-width: 360px; gap: 7px; margin-bottom: 22px; font-size: 12.5px; line-height: 1.55; }
  .hanimebody-hero__points li { gap: 8px; }
  .hanimebody-hero__icon-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; max-width: 360px; margin-top: 24px; }
  .hanimebody-hero__icon-strip li { font-size: 10.5px; line-height: 1.25; }
  .hanimebody-hero__icon-strip img { width: 31px; height: 31px; }
  .hanimebody-hero__benefits { gap: 11px; max-width: 350px; margin-bottom: 24px; }
  .hanimebody-hero__benefits li { grid-template-columns: 42px minmax(0, 1fr); gap: 10px; font-size: 12px; }
  .hanimebody-hero__benefit-icon { width: 42px; height: 42px; flex-basis: 42px; }
  .hanimebody-hero__benefit-icon img { width: 42px; height: 42px; }
  .hanimebody-hero__benefit-icon svg { width: 16px; height: 16px; }
  .hanimebody-hero__img {
    display: block;
    min-height: 210px;
    max-height: 300px;
    aspect-ratio: 16 / 10;
  }
  .hanimebody-hero__img img { object-position: center center; }
  .hb-banner-button {
    min-height: 46px;
    padding: 14px 24px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hb-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hb-banner__photo {
    height: clamp(430px, 128vw, 760px);
    min-height: 430px;
    aspect-ratio: auto;
  }
  .hb-banner__text {
    padding: 38px 24px 42px;
  }
  .hb-banner__content {
    max-width: none;
  }
  .hb-banner__title {
    font-size: clamp(30px, 9vw, 42px);
  }
  .hanimebody-shop-banner { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .hanimebody-shop-banner__img { display: none; }
  .hanimebody-shop-banner--parent-collection .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--full-body-shapers .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--waist-shapers .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--high-waist-panties .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--nipple-cover .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--bra-insert-padding .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--cleavage-bra .hanimebody-shop-banner__img {
    display: block;
    aspect-ratio: 4 / 3;
    width: 100%;
    min-height: 0;
  }
  .hanimebody-shop-banner--full-body-shapers .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--waist-shapers .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--high-waist-panties .hanimebody-shop-banner__img {
    aspect-ratio: 3 / 4;
  }
  .hanimebody-shop-banner--bra-insert-padding .hanimebody-shop-banner__img,
  .hanimebody-shop-banner--cleavage-bra .hanimebody-shop-banner__img {
    aspect-ratio: 1 / 1;
  }
  .hanimebody-shop-banner__text { padding: 32px 20px; }
  .hanimebody-shop-banner--shop-video .hanimebody-shop-banner__text {
    padding: 42px 20px 30px;
  }
  .hanimebody-shop-banner--shop-video .hanimebody-shop-banner__title {
    max-width: 360px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }
  .hanimebody-shop-banner--shop-video .hanimebody-shop-banner__sub {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.65;
  }
  .hanimebody-shop-banner--shop-video .hanimebody-shop-banner__img {
    display: block;
    width: 100%;
    height: clamp(460px, 138vw, 680px);
    min-height: 460px;
    aspect-ratio: auto;
  }
  .hanimebody-shop-banner--womenswear-video .hanimebody-shop-banner__img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 5 / 8;
  }
  .hanimebody-shop-banner--parent-collection .hanimebody-shop-banner__text,
  .hanimebody-shop-banner--full-body-shapers .hanimebody-shop-banner__text,
  .hanimebody-shop-banner--waist-shapers .hanimebody-shop-banner__text,
  .hanimebody-shop-banner--high-waist-panties .hanimebody-shop-banner__text,
  .hanimebody-shop-banner--nipple-cover .hanimebody-shop-banner__text,
  .hanimebody-shop-banner--bra-insert-padding .hanimebody-shop-banner__text,
  .hanimebody-shop-banner--cleavage-bra .hanimebody-shop-banner__text { padding-bottom: 24px; }
  .hanimebody-shop-banner__title { font-size: 36px; }
  .hanimebody-shop-banner__feature { min-height: 44px; }
  .hanimebody-shop-banner__feature-icon--image { width: 44px; height: 44px; flex-basis: 44px; }
  .hanimebody-shop-banner__feature-icon img { width: 44px; height: 44px; }
  .hanimebody-shop-banner__text-list { max-width: 360px; margin-bottom: 22px; font-size: 12.5px; line-height: 1.5; }
  .hanimebody-shop-banner__icon-strip { gap: 10px; max-width: 360px; margin-top: 0; }
  .hanimebody-shop-banner__icon-strip li { font-size: 10.5px; line-height: 1.25; letter-spacing: 0; }
  .hanimebody-shop-banner__icon,
  .hanimebody-shop-banner__icon img { width: 40px; height: 40px; }
  .hanimebody-products-grid, .hanimebody-products-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .hanimebody-filter-tabs { padding: 16px 16px 0; gap: 6px; }
  .hanimebody-filter-tab { padding: 6px 14px; font-size: 11px; }
  .hanimebody-cat-header { grid-template-columns: 1fr; gap: 12px; padding: 20px 16px 12px; }
  .hanimebody-cat-header__title { font-size: 34px; line-height: 1.08; overflow-wrap: anywhere; }
  .hanimebody-cat-header__img { display: none; }
  .hb-collection-story {
    padding: 48px 0 56px;
    overflow: hidden;
  }
  .hb-collection-story__header {
    margin-bottom: 24px;
    padding: 0 16px;
  }
  .hb-collection-story__lockup {
    display: block;
    width: auto;
    max-width: calc(100vw - 40px);
  }
  .hb-collection-story__title {
    display: block;
    margin: 0 0 10px;
    font-size: clamp(30px, 8.4vw, 38px);
    max-width: calc(100vw - 40px);
    overflow-wrap: normal;
  }
  .hb-collection-story__title-lead,
  .hb-collection-story__title-tail {
    display: inline;
    white-space: normal;
  }
  .hb-collection-story__sub {
    margin-top: 0;
    max-width: 620px;
    font-size: 14px;
  }
  .hb-collection-story__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(278px, 82vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 8px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hb-collection-story__grid::-webkit-scrollbar { display: none; }
  .hb-collection-story__card { scroll-snap-align: start; }
  .hb-collection-story__card--large { grid-column: auto; grid-row: auto; }
  .hb-collection-story__card--large .hb-collection-story__media,
  .hb-collection-story__card:not(.hb-collection-story__card--large) .hb-collection-story__media { aspect-ratio: 1280 / 1241; height: auto; min-height: 0; }
  .hb-collection-story__overlay { top: 18px; left: 18px; right: 18px; font-size: 18px; }
  .hb-collection-story__overlay svg { width: 24px; height: 24px; flex-basis: 24px; }
  .hb-collection-story__copy {
    max-width: none;
    padding: 14px 4px 0;
  }
  .hb-collection-story__copy h3,
  .hb-collection-story__card--large .hb-collection-story__copy h3,
  .hb-collection-story__card:not(.hb-collection-story__card--large) .hb-collection-story__copy h3 {
    max-width: none;
    font-size: clamp(23px, 6.1vw, 26px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .hb-collection-story__card--large .hb-collection-story__copy h3 {
    font-size: clamp(25px, 6.6vw, 28px);
  }
  .hb-collection-story__copy p {
    max-width: none;
    font-size: 14px;
  }
  .hanimebody-features--home,
  .hanimebody-features--product { padding: 44px 16px; }
  .hanimebody-features--home .hanimebody-features__header,
  .hanimebody-features--product .hanimebody-features__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-bottom: 20px;
  }
  .hanimebody-features--product .hanimebody-features__title,
  .hanimebody-features--product .hanimebody-features__sub,
  .hanimebody-features--product .hanimebody-feature-card {
    width: 100%;
    max-width: calc(100vw - 32px);
    white-space: normal;
  }
  .hanimebody-features--product .hanimebody-features__title {
    font-size: clamp(28px, 7.4vw, 30px);
    line-height: 1.08;
  }
  .hanimebody-product-info {
    width: 100%;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
  }
  .hanimebody-product-badges {
    width: calc(100vw - 32px);
    max-width: 358px;
    box-sizing: border-box;
  }
  .hanimebody-features__grid { grid-template-columns: 1fr; }
  .hanimebody-features__grid--count-4 {
    grid-template-columns: minmax(0, 1fr);
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
  .hanimebody-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hanimebody-reviews { padding: 40px 16px; }
  .hanimebody-reviews-grid { grid-template-columns: 1fr; }
  .hanimebody-rating-section { padding: 40px 16px; }
  .hanimebody-rating-summary { flex-direction: column; gap: 32px; text-align: center; padding-bottom: 32px; }
  .hanimebody-rating-big { padding: 24px 32px; }
  .hanimebody-rating-bars { min-width: auto; width: 100%; }
  #review_form_wrapper { padding: 40px 16px; }
  #review_form_wrapper #commentform { grid-template-columns: 1fr; }
  .hanimebody-faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .hanimebody-review-item { grid-template-columns: 1fr; gap: 12px; }
  .hanimebody-review-item__date { text-align: left; }
  .hanimebody-footer { padding: 40px 16px 24px; }
  .hanimebody-products-section { padding: 0 16px 32px; }
  .hanimebody-shop-toolbar {
    padding: 10px 16px;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
    overflow: visible;
  }
  .hanimebody-result-count {
    flex: 0 0 100%;
    font-size: 12px;
    line-height: 1.35;
    min-width: 0;
  }
  .hanimebody-result-count .woocommerce-result-count { margin: 0; }
  .hanimebody-shop-toolbar__right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 100%;
    justify-content: flex-start;
    min-width: 0;
  }
  /* Sort select: takes remaining space, compact on mobile */
  .woocommerce-ordering { flex: 1 1 auto; min-width: 0; max-width: none; }
  .woocommerce-ordering select,
  .hanimebody-sort-select {
    width: 100%;
    padding: 7px 28px 7px 10px;
    font-size: 12px;
    height: 36px;
    background-position: right 8px center;
  }
  /* Filter toggle: compact */
  .hanimebody-filter-toggle {
    padding: 7px 12px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
    height: 36px;
  }
  .hanimebody-product-badges--count-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: calc(100vw - 32px);
    max-width: 358px;
    gap: 8px;
    align-items: start;
  }
  .hanimebody-product-badges--count-4 .hanimebody-product-badge {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    gap: 4px;
    font-size: clamp(8px, 2vw, 9px);
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
  }
  .hanimebody-product-badges--count-4 .hanimebody-product-badge__icon {
    width: 18px;
    height: 18px;
  }
  .hanimebody-product-badges--count-4 .hanimebody-product-badge__svg {
    width: 14px;
    height: 14px;
  }
  .hanime-size-chart-trigger {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 11px;
  }
  .hanime-size-modal {
    padding: 12px;
    align-items: flex-end;
  }
  .hanime-size-modal__panel {
    width: 100%;
    max-height: 88vh;
    padding: 26px 16px 18px;
    border-radius: 8px 8px 0 0;
  }
  .hanime-size-modal__close {
    top: 12px;
    right: 12px;
  }
  .hanime-size-modal__header {
    padding-right: 42px;
    margin-bottom: 18px;
  }
  .hanime-size-modal__header h2 {
    font-size: 31px;
    overflow-wrap: anywhere;
  }
  .hanime-size-modal__header p {
    font-size: 13px;
  }
  .hanime-size-table table {
    min-width: 520px;
    font-size: 12px;
  }
  .hanime-size-table th,
  .hanime-size-table td {
    padding: 11px 10px;
  }
  .hanime-size-guide {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hanime-size-guide__tips,
  .hanime-size-guide__measure {
    padding: 15px;
  }
  /* Filter tabs: horizontal scroll on mobile */
  .hanimebody-filter-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .hanimebody-filter-tabs::-webkit-scrollbar { display: none; }
  .hanimebody-filter-tab { flex-shrink: 0; }
  .hanimebody-filter-panel { padding: 20px 16px; }
  .hanimebody-filter-panel__inner { gap: 28px; }
  .hanimebody-shop-header { padding: 20px 16px 0; }
  .hanimebody-shop-title { font-size: 36px; }
  .hanimebody-single__wrap { padding: 20px 16px 48px; }
  .hanime-product-video { padding: 0 16px 48px; }
  .hanime-product-video__inner {
    gap: 24px;
    padding: 38px 0;
  }
  .hanime-product-video__eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .hanime-product-video__copy h2 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.08;
  }
  .hanime-product-video__copy p:not(.hanime-product-video__eyebrow) {
    max-width: none;
    font-size: 14px;
  }
  .hanime-product-video__stage {
    width: min(100%, 340px);
  }
  .hanime-product-video__media {
    width: 100%;
    justify-self: center;
    padding: 8px;
  }
  .hanime-product-video__playlist--multiple .hanime-product-video__media {
    flex-basis: 100%;
  }
  .hanime-product-video__player {
    max-height: 600px;
  }
  .hanime-product-video__nav {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
    margin-top: 12px;
  }
  .hanime-product-video__nav-btn {
    width: 40px;
    height: 40px;
  }
  .hanime-product-video__sound {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }
  .hanimebody-product-info__title { font-size: 32px; }
  .hanimebody-qty-grid { grid-template-columns: repeat(3, 1fr); }
  .hanimebody-perks { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hanimebody-bundle-header, .hanimebody-limited-header { grid-template-columns: 1fr; }
  .hanime-announce { padding: 8px 12px; font-size: 11px; }
  /* Related products: match gallery horizontal padding on mobile */
  .hanimebody-bestsellers-section { padding: 40px 16px 48px; }
  .hanimebody-bestsellers-header { margin-bottom: 18px; }
  .hanimebody-products-grid--bestsellers { gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hanimebody-bestsellers-section .hanimebody-product-card { border-radius: 22px; }
  .hanimebody-bestsellers-section .hanimebody-product-card__img { border-radius: 22px 22px 0 0; }
  .hanimebody-bestsellers-section .hanimebody-product-card__body { padding: 14px 12px 12px; }
  .hanimebody-bestsellers-section .hanimebody-product-card__name-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .hanimebody-bestsellers-section .hanimebody-product-card__name {
    width: 100%;
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  .hanimebody-bestsellers-section .hanimebody-product-card__price {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hanimebody-bestsellers-section .hanimebody-view-all { width: auto; }
  .hanimebody-product-card { border-radius: 22px; }
  .hanimebody-product-card__img { border-radius: 22px 22px 0 0; }
  .hanimebody-product-card__body { padding: 14px 12px 12px; }
  .hanimebody-product-card__name-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
  }
  .hanimebody-product-card__name {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .hanimebody-product-card__price {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.28;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hanimebody-related-section { padding: 32px 16px 48px; }
  .hanimebody-related-title { font-size: 28px; margin-bottom: 20px; }
  .hanimebody-press { gap: 20px; padding: 24px 16px; flex-wrap: wrap; }
  .hanimebody-faq { padding: 40px 16px; }
  .hanimebody-features { padding: 48px 16px; }
  .hanimebody-cart { padding: 20px 16px 48px; }
  .hanimebody-cart .woocommerce-message,
  .hanimebody-cart .woocommerce-info,
  .hanimebody-cart .woocommerce-error {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 26px;
    padding: 15px;
    font-size: 13px;
  }
  .hanimebody-cart .woocommerce-message .button,
  .hanimebody-cart .woocommerce-message .wc-forward,
  .hanimebody-cart .woocommerce-info .button,
  .hanimebody-cart .woocommerce-info .wc-forward,
  .hanimebody-cart .woocommerce-error .button,
  .hanimebody-cart .woocommerce-error .wc-forward {
    min-height: 34px;
    padding: 0 13px;
    font-size: 10px;
    letter-spacing: .08em;
  }
  .hanimebody-form-row { grid-template-columns: 1fr; }
  .hanimebody-wc-page { padding: 0 16px 48px; }
  .hanimebody-wc-page__title { font-size: 34px; padding: 28px 0 24px; }
  .hanimebody-checkout-intro,
  .hanimebody-account-hero,
  .hanimebody-auth-intro,
  .hanimebody-auth-card,
  .hanimebody-account-nav,
  body.woocommerce-account .woocommerce-Address {
    border-radius: 20px;
  }
  .hanimebody-checkout-intro,
  .hanimebody-account-hero,
  .hanimebody-auth-intro,
  .hanimebody-auth-card {
    padding: 22px 20px;
  }
  .hanimebody-account-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .hanimebody-account-hero__pill {
    max-width: none;
    width: 100%;
  }
  .hanimebody-auth-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  body.woocommerce-account .woocommerce-form-row--first,
  body.woocommerce-account .woocommerce-form-row--last {
    width: 100%;
    margin-right: 0;
  }
  body.woocommerce-account .woocommerce,
  .hanimebody-account-shell {
    gap: 20px;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation,
  .hanimebody-account-nav {
    position: static;
    top: auto;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
  body.woocommerce-account .woocommerce-orders-table,
  body.woocommerce-account .woocommerce-table--order-downloads,
  body.woocommerce-account .woocommerce-table--order-details,
  body.woocommerce-account .woocommerce-MyAccount-paymentMethods {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  body.woocommerce-account .woocommerce-Address-title.title {
    flex-wrap: wrap;
  }
  body.woocommerce-account .woocommerce-Address-title.title .edit {
    max-width: none;
    text-align: left;
  }
  /* Gallery on mobile */
  .hanimebody-gallery { position: static; }
  .hanimebody-gallery__thumb { width: 60px; height: 60px; }
  .hanimebody-lightbox__img { max-width: 96vw; max-height: 80vh; }
  .hanimebody-lightbox__nav { width: 38px; height: 38px; font-size: 20px; }
  /* Mobile drawer fills the phone viewport */
  .hanime-mobile-nav__panel { width: 100%; }
  /* Editorial pages */
  :where(.hanime-about-header, .hanime-faqs-header, .hanime-shipping-header, .hanime-contact-header) {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 42px 20px 34px;
    text-align: center;
  }
  :where(.hanime-about-header__label, .hanime-faqs-header__label, .hanime-shipping-header__label, .hanime-contact-header__label) {
    margin-bottom: 10px;
  }
  :where(.hanime-about-header__title, .hanime-faqs-header__title, .hanime-shipping-header__title, .hanime-contact-header__title) {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.02;
    margin-bottom: 14px;
  }
  :where(.hanime-about-header__sub, .hanime-faqs-header__sub, .hanime-shipping-header__sub, .hanime-contact-header__sub) {
    max-width: 330px;
    margin: 0 auto;
    line-height: 1.65;
  }
  .hanime-about-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
    max-width: 100%;
    padding: 28px 16px 52px;
  }
  .hanime-about-img { position: static; }
  .hanime-about-img__photo { height: auto; aspect-ratio: 4 / 3; }
  .hanime-about-content,
  .hanime-about-content__body,
  .hanime-about-content__title,
  .hanime-about-content__subtitle,
  .hanime-about-content__intro,
  .hanime-about-content__body p {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .hanime-about-content__title { font-size: 40px; }
  .hanime-about-content__subtitle { font-size: 16px; }
  .hanime-about-hero {
    padding: 36px 16px 28px;
  }
  .hanime-about-hero__eyebrow,
  .hanime-about-story__intro span {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .hanime-about-hero__eyebrow::before,
  .hanime-about-story__intro span::before {
    width: 30px;
  }
  .hanime-about-hero__title {
    font-size: clamp(54px, 17vw, 82px);
    margin-bottom: 14px;
  }
  .hanime-about-hero__lead {
    font-size: 16px;
    line-height: 1.62;
  }
  .hanime-about-hero__tags {
    gap: 8px;
    margin-top: 24px;
  }
  .hanime-about-hero__tags span {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 11.5px;
  }
  .hanime-about-hero__photo {
    aspect-ratio: 3 / 2;
    border-radius: 8px;
  }
  .hanime-about-story {
    padding: 34px 16px 58px;
  }
  .hanime-about-story__copy {
    gap: 18px;
  }
  .hanime-about-story__copy p {
    font-size: clamp(27px, 8.2vw, 36px);
  }
  .hanime-faqs-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
    max-width: 100%;
    padding: 28px 16px 36px;
  }
  .hanime-faqs-col,
  .hanime-faqs-list,
  .hanime-faqs-item,
  .hanime-faqs-item__btn,
  .hanime-faqs-item__body {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .hanime-faqs-item__btn { padding: 16px; }
  .hanime-faqs-item__body { padding: 0 16px 18px; }
  .hanime-faqs-cta { padding: 14px 16px 46px; }
  .hanime-shipping-overview,
  .hanime-shipping-section {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hanime-shipping-overview,
  .hanime-shipping-section--split,
  .hanime-shipping-policy-list {
    grid-template-columns: 1fr;
  }
  .hanime-shipping-overview { gap: 12px; padding-top: 28px; padding-bottom: 12px; }
  .hanime-shipping-section { padding-top: 30px; padding-bottom: 30px; }
  .hanime-shipping-card,
  .hanime-shipping-note,
  .hanime-shipping-policy,
  .hanime-shipping-table-wrap {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .hanime-shipping-card { padding: 18px; }
  .hanime-shipping-card__text,
  .hanime-shipping-card__value,
  .hanime-shipping-section__text {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hanime-shipping-header__title,
  .hanime-shipping-section__title {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hanime-shipping-header__title { font-size: clamp(34px, 10vw, 40px); }
  .hanime-shipping-section__title { font-size: clamp(30px, 9vw, 38px); }
  .hanime-shipping-card__value { font-size: 28px; }
  .hanime-shipping-table thead { display: none; }
  .hanime-shipping-table,
  .hanime-shipping-table tbody,
  .hanime-shipping-table tr,
  .hanime-shipping-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .hanime-shipping-table tr {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  .hanime-shipping-table tr:last-child { border-bottom: 0; }
  .hanime-shipping-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    padding: 6px 16px;
    border-bottom: 0;
    overflow-wrap: anywhere;
  }
  .hanime-shipping-table td::before {
    content: attr(data-label);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 600;
  }
  .hanime-shipping-steps li { padding-left: 46px; }
  .hanime-shipping-note { padding: 20px; }
  .hanime-shipping-cta { padding: 10px 16px 48px; }
  .hanime-contact-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    max-width: 100%;
    padding: 28px 16px 52px;
  }
  .hanime-contact-info,
  .hanime-contact-info__block,
  .hanime-contact-form-box {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .hanime-contact-info__block { padding: 16px; }
  .hanime-contact-form-box { padding: 24px 16px; }
  .hanime-contact-form-box :where(input, textarea, select) {
    max-width: 100%;
    box-sizing: border-box;
  }
  .hanime-contact-form-box .wd-grid-f-stretch { grid-template-columns: 1fr; }
  .hanimebody-review-photos__thumb { width: 60px; height: 60px; }
  .rplb-nav-next { right: 8px; }
  .rplb-nav-prev { left: 8px; }
  .rplb-main { flex-direction: column; }
  .rplb-photo-area { padding: 48px 12px 12px; min-height: 0; }
  .rplb-photo-area > img { max-height: 100%; }
  .rplb-info { width: 100%; flex-shrink: 0; max-height: 38vh; overflow-y: auto; padding: 16px 20px; }
}

@media (max-width: 1024px) {
  .hanime-product-video.hanime-product-video--static .hanime-product-video__inner,
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 44px 24px 60px;
  }
}

@media (max-width: 768px) {
  .hanime-newsletter-popup {
    padding: 14px;
    align-items: end;
  }
  .hanime-newsletter-popup__panel {
    width: 100%;
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .hanime-newsletter-popup__media {
    min-height: 245px;
    max-height: 36vh;
  }
  .hanime-newsletter-popup__content {
    padding: 28px 18px 24px;
  }
  .hanime-newsletter-popup__brand {
    margin-bottom: 14px;
  }
  .hanime-newsletter-popup__eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .hanime-newsletter-popup h2 {
    max-width: 315px;
    font-size: 30px;
  }
  .hanime-newsletter-popup__text {
    max-width: 310px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
  }
  .hanime-newsletter-popup__form {
    max-width: 100%;
  }
  .hanime-newsletter-popup__form input[type="email"],
  .hanime-newsletter-popup__form button {
    min-height: 46px;
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__inner,
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__inner {
    gap: 34px;
    padding: 34px 16px 50px;
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__copy h2,
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__copy h2 {
    max-width: 360px;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.05;
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__copy p:not(.hanime-product-video__eyebrow) {
    max-width: 360px;
    font-size: 13.5px;
    line-height: 1.55;
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__stage {
    width: 100%;
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__playlist--single {
    width: min(100%, 390px);
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__playlist--multiple {
    display: flex;
    gap: 0;
    width: min(calc(100% + 18px), 408px);
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(94,24,64,.08);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__playlist--multiple::-webkit-scrollbar {
    display: none;
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__playlist--multiple .hanime-product-video__media,
  .hanime-product-video.hanime-product-video--static .hanime-product-video__playlist--multiple .hanime-product-video__media.is-active {
    flex: 0 0 calc(100% - 18px);
    width: 100%;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  .hanime-product-video.hanime-product-video--static .hanime-product-video__playlist--multiple .hanime-product-video__media::after {
    opacity: 0;
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__playlist {
    gap: 8px;
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__stage {
    width: min(100%, 390px);
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__media {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: auto;
    padding: 8px;
    overflow: visible;
    border-radius: 8px;
    background: #fff;
    transform: none;
    box-shadow: 0 18px 46px rgba(94,24,64,.08);
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__media::after {
    inset: 8px;
    border-radius: 6px;
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__media.is-active {
    transform: none;
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__media:hover,
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__media:focus-visible {
    transform: none;
  }
  .hanime-product-video.hanime-product-video--reel .hanime-product-video__player {
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 600px;
    border-radius: 6px;
  }
}
