:root {
  --nhp-cream: #fff8f2;
  --nhp-purple: #3f3352;
  --nhp-pink: #e86fa6;
  --nhp-pink-light: #fde0ee;
  --nhp-yellow: #ffe88a;
  --nhp-mint: #b8f2d0;
  --nhp-blue: #aee6ff;
  --nhp-lilac: #d9c5ff;
  --nhp-white: #fff;
  --nhp-shadow: rgba(63, 51, 82, .11);
}

body.nhp-dynamic-product-page {
  background: var(--nhp-cream);
  color: var(--nhp-purple);
}

.nhp-announcement {
  overflow: hidden;
  color: #276b57;
  background: var(--nhp-mint);
  border-bottom: 1px solid rgba(63, 51, 82, .08);
}

.nhp-announcement-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: max-content;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nhp-announcement-track b { font-size: 13px; }

.nhp-brand-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid #f1dce8;
  background: rgba(255, 248, 242, .96);
  backdrop-filter: blur(15px);
}

.nhp-brand-header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(1240px, calc(100% - 44px));
  min-height: 112px;
  margin: 0 auto;
}

.nhp-brand-logo { display: inline-flex; align-items: center; }
.nhp-brand-logo img { display: block; width: 170px; height: 78px; object-fit: contain; }
.nhp-primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 36px); }
.nhp-primary-nav a,
.nhp-cart-link { color: var(--nhp-purple); font-size: 15px; font-weight: 800; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.nhp-primary-nav a:hover { color: var(--nhp-pink); transform: translateY(-2px); }
.nhp-cart-link { display: inline-flex; align-items: center; gap: 12px; min-height: 56px; padding: 12px 20px; border-radius: 23px; color: var(--nhp-white); background: var(--nhp-purple); box-shadow: 0 7px 0 #2b203b; }
.nhp-cart-link span { display: grid; place-items: center; min-width: 27px; height: 27px; padding: 0 6px; border-radius: 50%; color: var(--nhp-purple); background: var(--nhp-yellow); }
.nhp-menu-toggle { display: none; width: 48px; height: 48px; padding: 11px; border: 0; border-radius: 16px; background: var(--nhp-lilac); }
.nhp-menu-toggle > span:not(.screen-reader-text) { display: block; width: 100%; height: 3px; margin: 4px 0; border-radius: 99px; background: var(--nhp-purple); }

.nhp-single-product,
.nhp-single-product button,
.nhp-single-product input,
.nhp-single-product select {
  font-family: inherit;
}

.nhp-single-product * {
  box-sizing: border-box;
}

.nhp-single-product {
  overflow: hidden;
  padding: clamp(28px, 4vw, 64px) 22px 88px;
  background:
    radial-gradient(circle at 3% 14%, rgba(217, 197, 255, .34) 0 44px, transparent 45px),
    radial-gradient(circle at 96% 44%, rgba(184, 242, 208, .35) 0 55px, transparent 56px),
    var(--nhp-cream);
}

.nhp-product-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.nhp-breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #8773a3;
  font-size: 14px;
  font-weight: 700;
}

.nhp-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.nhp-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.nhp-gallery {
  position: sticky;
  top: 26px;
}

.nhp-main-image-wrap {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(18px, 4vw, 42px);
  border-radius: 34px;
  background: #f5b1d4;
  box-shadow: 0 14px 0 rgba(232, 111, 166, .16);
}

.nhp-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
  transition: opacity .22s ease, transform .4s cubic-bezier(.2,.8,.2,1);
}

.nhp-main-image.is-changing {
  opacity: .25;
  transform: scale(.97);
}

.nhp-thumbnail-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.nhp-thumbnail {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 7px;
  border: 2px solid transparent;
  border-radius: 18px;
  background: var(--nhp-white);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}

.nhp-thumbnail:nth-child(2) { background: var(--nhp-blue); }
.nhp-thumbnail:nth-child(3) { background: var(--nhp-mint); }
.nhp-thumbnail:nth-child(4) { background: var(--nhp-lilac); }
.nhp-thumbnail:nth-child(5) { background: var(--nhp-yellow); }
.nhp-thumbnail:hover,
.nhp-thumbnail.is-active { border-color: var(--nhp-pink); transform: translateY(-3px); }
.nhp-thumbnail img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.nhp-product-summary h1,
.nhp-single-product h2,
.nhp-single-product h3,
.nhp-product-summary strong {
  color: var(--nhp-purple);
}

.nhp-product-summary h1 {
  margin: 18px 0 12px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.04em;
}

.nhp-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.nhp-pill,
.nhp-gift-ready {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.nhp-pill--mint { background: var(--nhp-mint); }
.nhp-pill--yellow { background: var(--nhp-yellow); }

.nhp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  margin-bottom: 20px;
  color: #5f5076;
  font-weight: 700;
}

.nhp-stars,
.nhp-rating-row .star-rating { color: #ffb82e; }
.nhp-rating-row .star-rating { margin: 0; float: none; }

.nhp-short-description {
  margin-bottom: 28px;
  color: #645576;
  font-size: 18px;
  line-height: 1.65;
}
.nhp-short-description p { margin: 0 0 7px; }

.nhp-eyebrow {
  margin: 0 0 10px;
  color: #917ca8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nhp-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nhp-package-card {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  min-height: 196px;
  padding: 22px 20px;
  text-align: left;
  color: var(--nhp-purple);
  border: 3px solid #ebe3ef;
  border-radius: 26px;
  background: var(--nhp-white);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.nhp-package-card:hover { transform: translateY(-4px); box-shadow: 0 10px 0 var(--nhp-shadow); }
.nhp-package-card.is-selected { border-color: var(--nhp-pink); background: var(--nhp-pink-light); }
.nhp-radio-dot { width: 19px; height: 19px; margin-top: 2px; border: 3px solid var(--nhp-purple); border-radius: 50%; }
.nhp-package-card.is-selected .nhp-radio-dot { box-shadow: inset 0 0 0 4px var(--nhp-pink-light); background: var(--nhp-purple); }
.nhp-package-copy { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.nhp-package-title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 19px; font-weight: 900; }
.nhp-gift-ready { min-height: 23px; padding: 5px 9px; background: var(--nhp-yellow); font-size: 9px; }
.nhp-package-price { font-size: 22px; font-weight: 900; }
.nhp-package-description { color: #685878; font-size: 14px; line-height: 1.5; }

.nhp-buy-row { margin-top: 22px; }
.nhp-price-block { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.nhp-selected-price { font-size: 36px; font-weight: 900; line-height: 1.15; }
.nhp-selected-price del { opacity: .45; font-size: .62em; }
.nhp-selected-price ins { text-decoration: none; }
.nhp-selected-label { color: #87749d; font-size: 13px; font-weight: 700; }

.nhp-cart-area {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.nhp-cart-area form.cart { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 0 !important; }
.nhp-cart-area form.variations_form { width: 100%; }
.nhp-has-package-cards .variations_form .variations { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.nhp-has-package-cards .variations_form .reset_variations { display: none !important; }
.nhp-has-package-cards .single_variation_wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.nhp-has-package-cards .woocommerce-variation { display: none !important; }
.nhp-cart-area .quantity { display: inline-flex; align-items: center; height: 58px; padding: 5px; border-radius: 999px; background: var(--nhp-white); box-shadow: 0 7px 0 var(--nhp-shadow); }
.nhp-cart-area .quantity input.qty { width: 46px !important; height: 46px; padding: 0 !important; border: 0 !important; background: transparent !important; color: var(--nhp-purple); font-size: 17px; font-weight: 900; text-align: center; appearance: textfield; }
.nhp-cart-area .quantity input.qty::-webkit-outer-spin-button,
.nhp-cart-area .quantity input.qty::-webkit-inner-spin-button { margin: 0; appearance: none; }
.nhp-qty-button { width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; color: var(--nhp-purple); background: var(--nhp-cream); font-size: 22px; font-weight: 900; cursor: pointer; }

.nhp-cart-area .single_add_to_cart_button,
.nhp-wishlist,
.nhp-bulk-card a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--nhp-white) !important;
  background: var(--nhp-pink) !important;
  box-shadow: 0 8px 0 #c44d86;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nhp-cart-area .single_add_to_cart_button:hover,
.nhp-bulk-card a:hover { transform: translateY(-2px); }
.nhp-cart-area .single_add_to_cart_button.disabled { opacity: .48; }
.nhp-wishlist { color: var(--nhp-purple) !important; background: var(--nhp-white) !important; box-shadow: 0 8px 0 var(--nhp-shadow); }
.nhp-wishlist.is-saved { background: var(--nhp-yellow) !important; }

.nhp-bulk-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px;
  border: 3px dashed var(--nhp-blue);
  border-radius: 26px;
}
.nhp-bulk-card div { display: flex; flex-direction: column; gap: 5px; }
.nhp-bulk-card strong { font-size: 21px; }
.nhp-bulk-card span { color: #685878; font-size: 14px; line-height: 1.5; }
.nhp-bulk-card a { flex: 0 0 auto; min-height: 52px; background: var(--nhp-purple) !important; box-shadow: 0 7px 0 #2b203b; font-size: 14px !important; }

.nhp-inside-card {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 28px;
  background: var(--nhp-white);
  box-shadow: 0 10px 0 var(--nhp-shadow);
}
.nhp-inside-card h2 { margin: 0 0 18px; font-size: 23px; }
.nhp-inside-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; margin: 0; padding: 0; list-style: none; }
.nhp-inside-card li { display: flex; align-items: center; gap: 10px; color: #463759; line-height: 1.4; }
.nhp-inside-card li span { display: grid; place-items: center; flex: 0 0 23px; width: 23px; height: 23px; border-radius: 50%; background: var(--nhp-mint); font-weight: 900; }

.nhp-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.nhp-benefit { display: flex; flex-direction: column; gap: 5px; padding: 18px; border-radius: 22px; }
.nhp-benefit strong { font-size: 15px; }
.nhp-benefit span { font-size: 12px; }
.nhp-benefit--blue { background: var(--nhp-blue); }
.nhp-benefit--pink { background: #ffb5d7; }
.nhp-benefit--lilac { background: var(--nhp-lilac); }

.nhp-comparison,
.nhp-story-card {
  width: min(760px, 100%);
  margin-top: 72px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 32px;
  background: var(--nhp-white);
  box-shadow: 0 11px 0 var(--nhp-shadow);
}
.nhp-comparison h2,
.nhp-story-card h2 { margin: 0 0 22px; font-size: clamp(29px, 3vw, 40px); line-height: 1.05; }
.nhp-compare-row { display: grid; grid-template-columns: minmax(0, 2fr) 1fr 1fr; gap: 12px; border-bottom: 1px solid #f0dce8; }
.nhp-compare-row span { padding: 14px 4px; }
.nhp-compare-row span:not(:first-child) { text-align: center; font-weight: 900; }
.nhp-compare-head { color: #9079a5; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.nhp-compare-row .is-yes { color: #288061; }
.nhp-compare-row .is-no { color: #cf7da3; }
.nhp-story-card { margin-left: auto; background: var(--nhp-yellow); }
.nhp-story-card > div { color: #5d4d70; line-height: 1.65; }
.nhp-story-card li { margin-bottom: 8px; }

.nhp-related-products { margin-top: 90px; }
.nhp-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.nhp-section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1; }
.nhp-section-heading a { color: var(--nhp-purple); font-weight: 900; text-decoration: none; }
.nhp-related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.nhp-related-card { overflow: hidden; border-radius: 28px; background: var(--nhp-white); box-shadow: 0 10px 0 var(--nhp-shadow); transition: transform .22s ease; }
.nhp-related-card:hover { transform: translateY(-6px) rotate(-.4deg); }
.nhp-related-image { display: block; aspect-ratio: 1 / 1; margin: 14px; overflow: hidden; border-radius: 22px; background: var(--nhp-blue); }
.nhp-related-card:nth-child(2) .nhp-related-image { background: var(--nhp-mint); }
.nhp-related-card:nth-child(3) .nhp-related-image { background: var(--nhp-yellow); }
.nhp-related-card:nth-child(4) .nhp-related-image { background: #f7cfb1; }
.nhp-related-image img { width: 100%; height: 100%; margin: 0 !important; object-fit: cover; transition: transform .35s ease; }
.nhp-related-card:hover img { transform: scale(1.04); }
.nhp-related-copy { padding: 0 20px 22px; }
.nhp-related-copy h3 { margin: 0 0 9px; font-size: 19px; }
.nhp-related-copy h3 a { color: inherit; text-decoration: none; }
.nhp-related-price { font-size: 18px; font-weight: 900; }

.nhp-site-footer {
  position: relative;
  margin-top: 34px;
  padding: 104px 22px 26px;
  color: #f7edf9;
  background: var(--nhp-purple);
}

.nhp-site-footer::before {
  content: '';
  position: absolute;
  top: -38px;
  left: 0;
  width: 100%;
  height: 48px;
  background: radial-gradient(42px 40px at 42px 42px, var(--nhp-purple) 97%, transparent 100%) 0 0 / 84px 48px repeat-x;
}

.nhp-footer-inner {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: clamp(34px, 6vw, 88px);
  width: min(1240px, 100%);
  margin: 0 auto;
}
.nhp-footer-inner h2 { margin: 12px 0 20px; color: var(--nhp-white); font-size: 17px; }
.nhp-footer-inner > div:not(.nhp-footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.nhp-footer-inner a { margin-bottom: 12px; color: #eadff0; text-decoration: none; }
.nhp-footer-inner a:hover { color: var(--nhp-yellow); }
.nhp-footer-brand img { display: block; width: 240px; height: auto; filter: drop-shadow(0 5px 2px rgba(0,0,0,.18)); }
.nhp-footer-brand p { max-width: 330px; margin: 18px 0; color: #eadff0; line-height: 1.65; }
.nhp-colour-dots { display: flex; gap: 8px; }
.nhp-colour-dots i { width: 16px; height: 16px; border-radius: 6px; background: #ffb5d7; }
.nhp-colour-dots i:nth-child(2) { background: var(--nhp-yellow); }
.nhp-colour-dots i:nth-child(3) { background: var(--nhp-blue); }
.nhp-colour-dots i:nth-child(4) { background: var(--nhp-mint); }
.nhp-footer-bottom { display: flex; justify-content: space-between; gap: 30px; width: min(1240px, 100%); margin: 38px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: #cdbed7; font-size: 13px; }

@media (max-width: 980px) {
  .nhp-brand-header-inner { grid-template-columns: 1fr auto auto; min-height: 92px; }
  .nhp-brand-logo img { width: 145px; height: 66px; }
  .nhp-menu-toggle { display: block; order: 2; }
  .nhp-cart-link { order: 3; min-height: 50px; padding: 10px 16px; }
  .nhp-primary-nav { position: absolute; top: 100%; left: 22px; right: 22px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px; border-radius: 0 0 24px 24px; background: var(--nhp-white); box-shadow: 0 15px 28px rgba(63,51,82,.16); }
  .nhp-primary-nav.is-open { display: flex; }
  .nhp-primary-nav a { padding: 13px 15px; border-radius: 13px; }
  .nhp-primary-nav a:hover { background: var(--nhp-pink-light); transform: none; }
  .nhp-product-hero { grid-template-columns: 1fr; }
  .nhp-gallery { position: relative; top: auto; }
  .nhp-main-image-wrap { max-height: 720px; }
  .nhp-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nhp-footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nhp-announcement-track { justify-content: flex-start; animation: nhp-ticker 22s linear infinite; }
  .nhp-brand-header-inner { width: calc(100% - 28px); grid-template-columns: 1fr auto auto; gap: 9px; min-height: 78px; }
  .nhp-brand-logo img { width: 116px; height: 56px; }
  .nhp-menu-toggle { width: 44px; height: 44px; }
  .nhp-cart-link { min-height: 44px; padding: 8px 11px; border-radius: 17px; font-size: 0; }
  .nhp-cart-link::before { content: 'Cart'; font-size: 13px; }
  .nhp-cart-link span { min-width: 23px; height: 23px; font-size: 12px; }
  .nhp-single-product { padding: 24px 14px 64px; }
  .nhp-breadcrumbs { margin-bottom: 18px; }
  .nhp-main-image-wrap { border-radius: 26px; }
  .nhp-thumbnail-row { gap: 7px; }
  .nhp-thumbnail { padding: 4px; border-radius: 13px; }
  .nhp-product-summary h1 { font-size: 43px; }
  .nhp-package-grid,
  .nhp-inside-card ul,
  .nhp-benefit-grid,
  .nhp-related-grid { grid-template-columns: 1fr; }
  .nhp-package-card { min-height: 0; }
  .nhp-bulk-card { align-items: stretch; flex-direction: column; }
  .nhp-bulk-card a { width: 100%; }
  .nhp-cart-area,
  .nhp-cart-area form.cart,
  .nhp-has-package-cards .single_variation_wrap { align-items: stretch; }
  .nhp-cart-area .single_add_to_cart_button,
  .nhp-wishlist { flex: 1 1 180px; }
  .nhp-section-heading { align-items: flex-start; flex-direction: column; }
  .nhp-comparison,
  .nhp-story-card { margin-top: 52px; padding: 24px 18px; }
  .nhp-compare-row { grid-template-columns: minmax(0, 1.6fr) .7fr .8fr; gap: 4px; font-size: 13px; }
  .nhp-compare-row span { padding: 13px 2px; }
  .nhp-related-products { margin-top: 64px; }
  .nhp-site-footer { padding-top: 86px; }
  .nhp-footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .nhp-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@keyframes nhp-ticker { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .nhp-single-product *,
  .nhp-single-product *::before,
  .nhp-single-product *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
