/*
Theme Name: Natuhai Store WC
Theme URI: https://example.com/natuhai-store-wc
Author: Codex
Author URI: https://example.com
Description: A fast WooCommerce storefront homepage theme for sticker, decal, print, and custom design shops.
Version: 1.1.26
Requires at least: 6.2
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: natuhai-store-wc
Tags: ecommerce, custom-logo, custom-menu, featured-images, block-styles, wide-blocks
*/

:root {
  --nh-green-50: #f4fbf5;
  --nh-green-900: #044d25;
  --nh-green-800: #06602e;
  --nh-green-700: #078438;
  --nh-green-600: #0a973f;
  --nh-green-100: #eaf8ed;
  --nh-orange: #ff642f;
  --nh-orange-700: #e84a21;
  --nh-orange-100: #fff1eb;
  --nh-yellow: #ffba3b;
  --nh-price: #e84a21;
  --nh-sale: #ef3834;
  --nh-rating: #f59e0b;
  --nh-rating-soft: #fde68a;
  --nh-focus: rgba(255, 100, 47, 0.48);
  --nh-ink: #172018;
  --nh-muted: #5c695d;
  --nh-line: #e4ebe5;
  --nh-soft: #f6faf6;
  --nh-white: #ffffff;
  --nh-shadow: 0 18px 42px rgba(9, 63, 31, 0.12);
  --nh-shadow-soft: 0 8px 24px rgba(19, 53, 29, 0.07);
  --nh-radius: 8px;
  --nh-container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfdfb;
  color: var(--nh-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.natuhai-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--nh-focus);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--nh-container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nh-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--nh-radius);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:visited,
.btn:hover,
.btn:focus {
  color: #fff;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--nh-green-700);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(7, 132, 56, 0.24);
}

.btn-primary:hover {
  background: var(--nh-green-800);
}

.btn-accent {
  background: var(--nh-orange);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(255, 100, 47, 0.26);
}

.btn-accent:hover {
  background: var(--nh-orange-700);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--nh-green-800);
  font-weight: 900;
}

.topbar {
  background: linear-gradient(90deg, var(--nh-green-700), var(--nh-green-900));
  color: #fff;
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.topbar__socials {
  display: inline-flex;
  gap: 9px;
}

.topbar__socials a,
.topbar__socials span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.topbar__socials a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(228, 235, 229, 0.9);
  backdrop-filter: blur(16px);
}

.site-header__main {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(360px, 520px) minmax(340px, 390px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
}

.brand {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  gap: 12px;
  min-width: 0;
  justify-self: start;
}

.brand__fallback,
.brand .custom-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid #18a94d;
  border-radius: 50%;
  color: var(--nh-green-700);
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
  font-style: italic;
  background: #fff;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  background: var(--nh-green-700);
}

.brand__mark::before {
  top: 5px;
  left: -8px;
  width: 18px;
  height: 12px;
  border-radius: 18px 18px 2px 18px;
  transform: rotate(-28deg);
}

.brand__mark::after {
  right: 4px;
  bottom: 7px;
  width: 13px;
  height: 9px;
  border-radius: 14px 14px 14px 2px;
  transform: rotate(-22deg);
}

.brand__text {
  min-width: 0;
}

.brand__name {
  display: block;
  color: var(--nh-green-800);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.brand__tagline {
  display: block;
  color: var(--nh-muted);
  font-size: 12px;
  font-weight: 700;
}

.brand .custom-logo {
  width: auto;
  max-width: 260px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.brand--custom {
  min-height: 72px;
}

.header-search {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.header-search form {
  display: grid;
  grid-template-columns: 1fr 56px;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: var(--nh-shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search form:focus-within {
  border-color: rgba(7, 132, 56, 0.34);
  box-shadow: 0 14px 30px rgba(7, 132, 56, 0.12);
}

.header-search input[type="search"] {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--nh-ink);
}

.header-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--nh-green-700);
  color: #fff;
  cursor: pointer;
}

.header-actions {
  display: grid;
  grid-column: 3;
  grid-row: 1;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  align-items: center;
  justify-self: end;
  gap: 10px;
  width: 100%;
  max-width: 390px;
}

.header-action {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 56px;
  padding: 7px 6px;
  color: var(--nh-ink);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  border-radius: var(--nh-radius);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--nh-green-100);
  color: var(--nh-green-800);
  transform: translateY(-1px);
}

.header-action span:last-child {
  color: var(--nh-muted);
  font-size: 10px;
  font-weight: 700;
}

.header-action__badge {
  position: absolute;
  top: 2px;
  right: 18px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--nh-orange);
  color: #fff;
  font-size: 10px;
  line-height: 18px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
  color: var(--nh-green-800);
}

.site-nav {
  border-top: 1px solid rgba(228, 235, 229, 0.72);
  background: linear-gradient(90deg, var(--nh-green-800), var(--nh-green-700));
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
}

.nav-menu,
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--nh-radius);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-menu .current-menu-item > a,
.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-nav .nav-menu a,
.site-nav .menu a,
.site-nav__inner a:not(.nav-cta),
.site-nav .nav-menu a:visited,
.site-nav .menu a:visited,
.site-nav .nav-menu a:hover,
.site-nav .menu a:hover,
.site-nav .nav-menu a:focus,
.site-nav .menu a:focus {
  color: #fff !important;
}

.site-nav .nav-cta,
.site-nav .nav-cta:visited,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  color: #fff !important;
}

.nav-cta {
  flex: 0 0 auto;
}

.hero {
  padding: 22px 0 24px;
}

.hero__slider {
  position: relative;
}

.hero__track {
  position: relative;
}

.hero__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(420px, 1.06fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #dbeadf;
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.92) 0 10%, transparent 24%),
    linear-gradient(115deg, #ffffff 0%, #f2fff1 46%, #ccefc9 100%);
  box-shadow: var(--nh-shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 42px 48px;
}

.hero__eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid #b9e7c2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--nh-green-800);
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: #171d18;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--nh-green-800);
}

.hero__text {
  max-width: 530px;
  margin: 20px 0 0;
  color: #243026;
  font-size: 20px;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero__actions .btn,
.hero__actions .btn:visited,
.hero__actions .btn:hover,
.hero__actions .btn:focus {
  color: #fff !important;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(5, minmax(72px, 1fr));
  gap: 14px;
  max-width: 600px;
  margin-top: 34px;
}

.hero-feature {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--nh-green-800);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.hero-feature .nh-icon {
  width: 30px;
  height: 30px;
}

.hero__art {
  position: relative;
  min-height: 430px;
}

.hero__image {
  position: absolute;
  inset: 24px 24px 18px 0;
  width: calc(100% - 24px);
  height: calc(100% - 42px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 34px rgba(4, 77, 37, 0.16));
}

.hero__badge {
  position: absolute;
  top: 44px;
  right: 42px;
  z-index: 3;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--nh-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 14px 24px rgba(232, 74, 33, 0.28);
}

.sticker-scene {
  position: absolute;
  inset: 0;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(4, 77, 37, 0.25);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.hero__dots button.is-active {
  width: 28px;
  background: var(--nh-green-700);
}

.sticker-sheet {
  position: absolute;
  top: 70px;
  left: 44px;
  width: 245px;
  height: 285px;
  border: 10px solid #fff;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 20%, #ffce44 0 11px, transparent 12px),
    radial-gradient(circle at 54% 19%, #111 0 12px, transparent 13px),
    radial-gradient(circle at 82% 20%, #f8f0e4 0 13px, transparent 14px),
    radial-gradient(circle at 26% 48%, #fe6c31 0 16px, transparent 17px),
    radial-gradient(circle at 55% 50%, #35a663 0 15px, transparent 16px),
    radial-gradient(circle at 80% 50%, #ffc93c 0 14px, transparent 15px),
    radial-gradient(circle at 30% 78%, #1c94d2 0 14px, transparent 15px),
    radial-gradient(circle at 62% 78%, #f3a4c4 0 16px, transparent 17px),
    linear-gradient(135deg, #ffffff 0%, #f8faf6 100%);
  box-shadow: -12px 18px 28px rgba(4, 77, 37, 0.18);
  transform: rotate(-12deg);
}

.sticker-sheet::after {
  content: "";
  position: absolute;
  inset: 24px;
  background-image:
    linear-gradient(#e8eee9 1px, transparent 1px),
    linear-gradient(90deg, #e8eee9 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.72;
}

.sticker-sheet--two {
  top: 96px;
  left: 162px;
  transform: rotate(10deg);
  opacity: 0.98;
}

.sticker-roll {
  position: absolute;
  right: 248px;
  bottom: 47px;
  width: 170px;
  height: 118px;
  border-radius: 26px 8px 8px 26px;
  background: linear-gradient(90deg, #b8844d 0 16%, #f2d4a9 17% 32%, #eef6e8 33% 100%);
  box-shadow: 0 18px 30px rgba(85, 73, 49, 0.21);
  transform: rotate(8deg);
}

.sticker-roll::after {
  content: "NATUHAI";
  position: absolute;
  top: 38px;
  right: 20px;
  color: var(--nh-green-700);
  font-weight: 950;
  transform: rotate(-8deg);
}

.bottle {
  position: absolute;
  right: 142px;
  bottom: 42px;
  width: 106px;
  height: 292px;
  border-radius: 36px 36px 24px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 20% 72%, rgba(0, 0, 0, 0.13)),
    linear-gradient(180deg, #0d873e, #026a35);
  box-shadow: 0 20px 34px rgba(2, 87, 43, 0.25);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 27px;
  width: 52px;
  height: 58px;
  border-radius: 12px 12px 4px 4px;
  background: #101612;
}

.bottle::after {
  content: "N";
  position: absolute;
  top: 112px;
  left: 22px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #f5fff6;
  color: var(--nh-green-700);
  font-size: 34px;
  font-weight: 950;
}

.cup {
  position: absolute;
  right: 28px;
  bottom: 38px;
  width: 112px;
  height: 226px;
  border-radius: 18px 18px 28px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 75%),
    #f7f8f1;
  box-shadow: 0 18px 30px rgba(41, 67, 43, 0.16);
}

.cup::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -4px;
  width: 120px;
  height: 32px;
  border-radius: 14px 14px 6px 6px;
  background: #111;
}

.cup::after {
  content: "coffee";
  position: absolute;
  top: 76px;
  left: 15px;
  width: 82px;
  color: var(--nh-green-700);
  font-size: 18px;
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
}

.sections {
  display: grid;
  gap: 34px;
  padding-bottom: 34px;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  display: grid;
  min-height: 170px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(19, 53, 29, 0.07);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--nh-shadow);
}

.quick-card__thumb {
  position: relative;
  width: 86px;
  height: 68px;
  border-radius: 8px;
  background: #edf8ee;
  overflow: hidden;
}

.quick-card__thumb::before,
.quick-card__thumb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.thumb-taxi::before {
  left: 8px;
  top: 24px;
  width: 70px;
  height: 24px;
  border-radius: 9px 16px 7px 7px;
  background: #ffd629;
  box-shadow: inset 28px -4px 0 #0a973f;
}

.thumb-taxi::after {
  left: 15px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  background: #121b14;
  box-shadow: 44px 0 0 #121b14;
}

.thumb-decals::before {
  inset: 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 28%, #ffca3b 0 8px, transparent 9px),
    radial-gradient(circle at 72% 33%, #111 0 8px, transparent 9px),
    radial-gradient(circle at 36% 70%, #ff642f 0 9px, transparent 10px),
    radial-gradient(circle at 74% 73%, #0a973f 0 8px, transparent 9px),
    #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.thumb-window::before {
  inset: 10px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.8) 50%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(255, 255, 255, 0.8) 50%, transparent 51%),
    linear-gradient(135deg, #59412d, #ad8059);
}

.thumb-fun::before {
  left: 24px;
  top: 11px;
  width: 39px;
  height: 44px;
  background: #8bdaf0;
  clip-path: polygon(50% 0, 95% 26%, 82% 100%, 18% 100%, 5% 26%);
}

.thumb-fun::after {
  left: 34px;
  top: 27px;
  width: 5px;
  height: 5px;
  background: #172018;
  box-shadow: 14px 0 0 #172018;
}

.thumb-signal::before {
  left: 12px;
  top: 18px;
  width: 62px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 45%, #111 46% 54%, transparent 55%),
    #ffca3b;
  box-shadow: inset 31px 0 0 rgba(255, 100, 47, 0.32);
}

.thumb-combo::before {
  inset: 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 25% 28%, #ff642f 0 8px, transparent 9px),
    radial-gradient(circle at 67% 28%, #ffd629 0 8px, transparent 9px),
    radial-gradient(circle at 28% 70%, #111 0 8px, transparent 9px),
    radial-gradient(circle at 72% 70%, #0a973f 0 8px, transparent 9px),
    #222;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, 18px);
  grid-template-rows: repeat(2, 18px);
  place-content: center;
  gap: 8px;
  background: #fff;
}

.thumb-grid::before {
  position: static;
  width: 18px;
  height: 18px;
  border: 3px solid var(--nh-green-700);
  border-radius: 3px;
  background: transparent;
  box-shadow: 26px 0 0 -3px #fff, 26px 0 0 0 var(--nh-green-700), 0 26px 0 -3px #fff, 0 26px 0 0 var(--nh-green-700), 26px 26px 0 -3px #fff, 26px 26px 0 0 var(--nh-green-700);
}

.quick-card strong {
  color: var(--nh-ink);
  font-size: 15px;
  line-height: 1.15;
}

.quick-card span {
  color: var(--nh-muted);
  font-size: 12px;
  font-weight: 650;
}

.section-card {
  padding: 24px;
  border: 1px solid var(--nh-line);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow: var(--nh-shadow-soft);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--nh-green-800);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-title .nh-icon {
  color: var(--nh-green-700);
}

.featured-tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-tile {
  position: relative;
  display: flex;
  min-height: 138px;
  overflow: hidden;
  align-items: flex-end;
  padding: 18px;
  border-radius: var(--nh-radius);
  background: linear-gradient(135deg, #073c34, #148346);
  color: #fff;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.32), transparent 22%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.06));
}

.feature-tile:nth-child(2) {
  background: linear-gradient(135deg, #075277, #0a9a9a);
}

.feature-tile:nth-child(3) {
  background: linear-gradient(135deg, #13231c, #bfd24d);
}

.feature-tile:nth-child(4) {
  background: linear-gradient(135deg, #4a4e42, #a2afa4);
}

.feature-tile:nth-child(5) {
  background: linear-gradient(135deg, #0e5d4c, #14a573);
}

.feature-tile__content {
  position: relative;
  z-index: 1;
}

.feature-tile strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
}

.feature-tile span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: var(--nh-shadow-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: rgba(7, 132, 56, 0.22);
  transform: translateY(-2px);
  box-shadow: var(--nh-shadow);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf6 100%);
}

.product-card__media a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--nh-sale);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(239, 56, 52, 0.2);
}

.product-badge--green {
  background: var(--nh-green-100);
  color: var(--nh-green-800);
  box-shadow: none;
}

.product-card__body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 14px;
}

.product-card__title {
  display: -webkit-box;
  min-height: 58px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0 0 8px;
  color: var(--nh-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-card__title a:hover {
  color: var(--nh-green-700);
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  margin-bottom: 8px;
  color: var(--nh-price);
  font-size: 17px;
  font-weight: 950;
}

.product-price del,
.product-price del .amount {
  color: #9ca59d;
  font-size: 13px;
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  color: var(--nh-rating);
  font-size: 13px;
}

.product-rating span:first-child {
  color: var(--nh-rating);
  letter-spacing: 1px;
}

.product-rating span:last-child {
  color: var(--nh-muted);
}

.product-card .btn {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  padding: 0 12px;
  color: #fff;
  font-size: 13px;
}

.product-card .btn:visited,
.product-card .btn:hover,
.product-card .btn:focus,
.nav-cta:visited,
.nav-cta:hover,
.nav-cta:focus {
  color: #fff;
}

.marketplace-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.marketplace-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 7px;
  color: #fff !important;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.marketplace-button:hover,
.marketplace-button:focus,
.marketplace-button:visited {
  color: #fff !important;
}

.marketplace-button:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

.marketplace-button--shopee {
  background: #ee4d2d;
}

.marketplace-button--tiktok {
  background: #111827;
}

.marketplace-button--lazada {
  background: #1a4bff;
}

.marketplace-button--tiki {
  background: #00a7e1;
}

.woocommerce ul.products li.product .marketplace-buttons,
.woocommerce-page ul.products li.product .marketplace-buttons {
  padding: 0 12px 14px;
}

.single-product .summary .marketplace-buttons {
  max-width: 420px;
  margin: 16px 0 22px;
}

.single-product .summary .marketplace-button {
  min-height: 42px;
  font-size: 14px;
}

.product-visual {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eff8f0, #fff);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 22%, #ffca3b 0 18px, transparent 19px),
    radial-gradient(circle at 53% 24%, #111 0 17px, transparent 18px),
    radial-gradient(circle at 80% 30%, #eaf8ed 0 20px, transparent 21px),
    radial-gradient(circle at 30% 62%, #ff642f 0 18px, transparent 19px),
    radial-gradient(circle at 65% 66%, #0a973f 0 19px, transparent 20px),
    #fff;
  box-shadow: 0 14px 28px rgba(4, 77, 37, 0.12);
}

.product-visual--window::before {
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.85) 50%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(255, 255, 255, 0.85) 50%, transparent 51%),
    linear-gradient(135deg, #463523, #b9895f);
}

.product-visual--logo::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 38px, transparent 39px),
    radial-gradient(circle at 50% 50%, var(--nh-green-700) 0 72px, transparent 73px);
}

.product-visual--cute::before {
  background:
    radial-gradient(circle at 18% 20%, #ffca3b 0 14px, transparent 15px),
    radial-gradient(circle at 46% 22%, #ff99c8 0 16px, transparent 17px),
    radial-gradient(circle at 75% 24%, #0a973f 0 15px, transparent 16px),
    radial-gradient(circle at 28% 64%, #111 0 14px, transparent 15px),
    radial-gradient(circle at 63% 67%, #ff642f 0 16px, transparent 17px),
    #fff;
}

.service-banner {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 82% 18%, rgba(10, 151, 63, 0.08), transparent 22%),
    linear-gradient(100deg, #ffffff 0%, #f5faf5 46%, #e8f3e7 100%);
  box-shadow: var(--nh-shadow-soft);
}

.service-banner__copy {
  padding: 34px 0 30px 64px;
}

.service-banner h2 {
  max-width: 430px;
  margin: 0;
  color: var(--nh-ink);
  font-size: 28px;
  line-height: 1.14;
}

.service-banner p {
  margin: 10px 0 18px;
  color: var(--nh-muted);
  font-weight: 700;
}

.service-banner .btn,
.service-banner .btn:visited,
.service-banner .btn:hover,
.service-banner .btn:focus {
  color: #fff !important;
}

.service-banner__art {
  position: relative;
  min-height: 190px;
}

.service-banner__image {
  position: absolute;
  inset: 18px 34px 18px 0;
  width: calc(100% - 34px);
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 26px rgba(18, 25, 19, 0.16));
}

.desk-scene {
  position: absolute;
  inset: 0;
}

.desk-scene::before {
  content: "";
  position: absolute;
  right: 88px;
  bottom: 30px;
  width: 250px;
  height: 138px;
  border: 9px solid #202421;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, #1f2e28, #223f33);
  box-shadow: 0 18px 26px rgba(18, 25, 19, 0.19);
}

.desk-scene::after {
  content: "YOUR DESIGN HERE";
  position: absolute;
  right: 131px;
  bottom: 84px;
  color: #ffd84a;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.plant,
.pencil-cup,
.lamp {
  position: absolute;
  bottom: 30px;
}

.plant {
  left: 52px;
  width: 72px;
  height: 86px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, transparent 0 44%, #d8a45d 45% 100%);
}

.plant::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 35% 60%, #329e55 0 14px, transparent 15px),
    radial-gradient(ellipse at 65% 50%, #0a7d38 0 17px, transparent 18px),
    radial-gradient(ellipse at 48% 28%, #5cbf72 0 16px, transparent 17px);
}

.pencil-cup {
  right: 20px;
  width: 72px;
  height: 84px;
  border-radius: 0 0 10px 10px;
  background: #f2f0e8;
  box-shadow: inset 0 8px 0 rgba(0, 0, 0, 0.08);
}

.pencil-cup::before {
  content: "";
  position: absolute;
  left: 13px;
  top: -28px;
  width: 7px;
  height: 50px;
  border-radius: 4px;
  background: #ff642f;
  box-shadow: 13px -6px 0 #0a973f, 26px 2px 0 #ffd84a, 39px -7px 0 #1d2520;
}

.lamp {
  left: 166px;
  width: 122px;
  height: 142px;
}

.lamp::before {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 15px;
  height: 110px;
  border-radius: 8px;
  background: #1f2420;
  transform: rotate(27deg);
  transform-origin: bottom;
}

.lamp::after {
  content: "";
  position: absolute;
  left: 58px;
  top: 6px;
  width: 58px;
  height: 38px;
  border-radius: 28px 28px 6px 6px;
  background: #222;
  transform: rotate(-10deg);
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.blog-tab {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--nh-muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.blog-tab:hover,
.blog-tab.is-active {
  background: var(--nh-green-100);
  color: var(--nh-green-800);
}

#blog .section-head {
  align-items: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.post-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: var(--nh-shadow-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  border-color: rgba(7, 132, 56, 0.22);
  transform: translateY(-2px);
  box-shadow: var(--nh-shadow);
}

.post-card__media {
  position: relative;
  display: block;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
  background: #ecf7ef;
}

.post-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.post-card__title {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0 0 9px;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.post-card__title a:hover {
  color: var(--nh-green-700);
}

.post-card__excerpt {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0 0 12px;
  color: var(--nh-muted);
  font-size: 13px;
  font-weight: 650;
}

.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #8b958d;
  font-size: 12px;
  font-weight: 700;
}

.video-showcase__head {
  margin-bottom: 18px;
}

.video-showcase__subtitle {
  margin: 7px 0 0;
  color: var(--nh-muted);
  font-size: 15px;
  font-weight: 700;
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.video-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: var(--nh-shadow-soft);
}

.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #072d1b, #0a7d38);
}

.video-card__media iframe,
.video-card__media video,
.video-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, #073c34, #0a973f);
}

.video-card__placeholder span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(4, 77, 37, 0.24);
}

.video-card__placeholder span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--nh-green-700);
}

.video-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.video-card__body h3 {
  margin: 0;
  color: var(--nh-ink);
  font-size: 19px;
  line-height: 1.24;
}

.video-card__body p {
  margin: 9px 0 14px;
  color: var(--nh-muted);
  font-size: 14px;
  font-weight: 650;
}

.video-card__body .btn-link {
  margin-top: auto;
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 28px;
  border: 1px solid var(--nh-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--nh-shadow-soft);
}

.benefit {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 58px;
}

.benefit .nh-icon {
  width: 38px;
  height: 38px;
  color: var(--nh-green-700);
}

.benefit strong {
  display: block;
  font-weight: 950;
}

.benefit span {
  display: block;
  color: var(--nh-muted);
  font-size: 13px;
  font-weight: 650;
}

.newsletter {
  padding: 34px 0 0;
}

.newsletter__panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 77, 37, 0.98), rgba(7, 132, 56, 0.96)),
    var(--nh-green-800);
  color: #fff;
  box-shadow: 0 18px 42px rgba(4, 77, 37, 0.2);
}

.newsletter__panel--solo {
  grid-template-columns: minmax(0, 1fr);
}

.newsletter h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
  text-transform: uppercase;
}

.newsletter p {
  margin: 7px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 132px;
  max-width: 530px;
  overflow: hidden;
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(4, 77, 37, 0.18);
}

.newsletter-form:focus-within {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: 3px;
}

.newsletter-form input {
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  padding: 0 18px;
}

.newsletter-form button {
  border: 0;
  background: var(--nh-orange);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: var(--nh-orange-700);
}

.newsletter-form-shortcode {
  max-width: 530px;
}

.newsletter-form-shortcode form {
  margin: 0;
}

.newsletter-form-shortcode input[type="email"],
.newsletter-form-shortcode input[type="text"] {
  min-height: 50px;
  border: 0;
  border-radius: var(--nh-radius);
  padding: 0 16px;
}

.newsletter-form-shortcode button,
.newsletter-form-shortcode input[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: var(--nh-radius);
  background: var(--nh-orange);
  color: #fff;
  font-weight: 950;
}

.newsletter__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.newsletter-benefit {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.newsletter-benefit .nh-icon {
  width: 34px;
  height: 34px;
  color: #c8f0d0;
}

.newsletter-benefit strong {
  font-weight: 950;
}

.newsletter-benefit span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.site-footer {
  position: relative;
  margin-top: 42px;
  border-top: 1px solid var(--nh-line);
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr 1.25fr 1.1fr;
  gap: 34px;
  padding: 46px 0 34px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand__logo {
  min-height: auto;
}

.footer-brand__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-brand__logo .custom-logo {
  width: auto;
  max-width: 230px;
  max-height: 64px;
  object-fit: contain;
}

.footer-brand .brand__mark {
  width: 42px;
  height: 42px;
  border-width: 2px;
  font-size: 22px;
}

.footer-brand .brand__name {
  font-size: 20px;
}

.footer-text {
  margin: 0 0 16px;
  color: var(--nh-muted);
  font-size: 14px;
  font-weight: 650;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--nh-green-100);
  color: var(--nh-green-800);
  font-size: 12px;
  font-weight: 950;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--nh-green-700);
  color: #fff;
  transform: translateY(-1px);
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--nh-ink);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li,
.footer-col a,
.footer-col p {
  color: var(--nh-muted);
  font-size: 14px;
  font-weight: 650;
}

.footer-col a:hover {
  color: var(--nh-green-700);
}

.footer-contact li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.footer-contact strong {
  color: var(--nh-muted);
  font-weight: 900;
}

.footer-contact .nh-icon {
  margin-top: 1px;
  color: var(--nh-green-700);
}

.qr-box {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
}

.qr-code {
  display: grid;
  width: 108px;
  height: 108px;
  padding: 10px;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background:
    linear-gradient(90deg, #111 8px, transparent 8px) 0 0 / 20px 20px,
    linear-gradient(#111 8px, transparent 8px) 0 0 / 20px 20px,
    #fff;
  background-blend-mode: normal;
}

.qr-code::before {
  content: "";
  border: 8px solid #fff;
  border-radius: 6px;
  background: #111;
  box-shadow: 54px 0 0 #111, 0 54px 0 #111;
}

.social-connect {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.social-connect__image {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
}

.social-connect__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-connect__image--placeholder {
  background:
    linear-gradient(90deg, #111 8px, transparent 8px) 0 0 / 20px 20px,
    linear-gradient(#111 8px, transparent 8px) 0 0 / 20px 20px,
    #fff;
}

.social-connect__image--placeholder::before {
  content: "";
  width: 70px;
  height: 70px;
  border: 8px solid #fff;
  border-radius: 6px;
  background: #111;
  box-shadow: 34px 34px 0 -10px #111;
}

.social-connect__content p {
  margin: 0 0 12px;
  color: var(--nh-muted);
  font-size: 14px;
  font-weight: 700;
}

.social-connect__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-connect__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--nh-green-100);
  color: var(--nh-green-800);
  font-size: 12px;
  font-weight: 900;
}

.social-connect__links a:hover {
  background: var(--nh-green-700);
  color: #fff;
}

.social-connect__links span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--nh-green-800);
  font-size: 10px;
  text-transform: lowercase;
}

.footer-back-to-top {
  position: absolute;
  right: max(28px, calc((100vw - var(--nh-container)) / 2 + 18px));
  bottom: 78px;
  z-index: 2;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--nh-green-700);
  color: #fff;
  opacity: 0;
  box-shadow: 0 16px 32px rgba(4, 77, 37, 0.24);
  cursor: pointer;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-back-to-top:hover,
.footer-back-to-top:focus {
  background: var(--nh-green-800);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(4, 77, 37, 0.3);
}

.footer-back-to-top .nh-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.footer-bottom {
  border-top: 1px solid var(--nh-line);
}

.footer-bottom__inner {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--nh-muted);
  font-size: 13px;
  font-weight: 650;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-main,
.content-area {
  padding: 34px 0;
}

.content-shell,
.woocommerce-shell {
  padding: 24px;
  border: 1px solid var(--nh-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(19, 53, 29, 0.06);
}

.entry-title {
  margin-top: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  float: none;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  background: #fff;
  box-shadow: var(--nh-shadow-soft);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: rgba(7, 132, 56, 0.22);
  transform: translateY(-2px);
  box-shadow: var(--nh-shadow);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 46px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
}

.woocommerce span.onsale,
.woocommerce-page span.onsale {
  display: inline-grid;
  min-width: 56px;
  min-height: 56px;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--nh-sale);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 12px 24px rgba(229, 57, 53, 0.24);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  display: block;
  width: 100%;
  height: 240px;
  margin: 0 0 16px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf6 100%);
  padding: 8px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 58px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding: 0 14px;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating,
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  margin-left: 14px;
  margin-right: 14px;
}

.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating {
  color: var(--nh-rating);
}

.woocommerce ul.products li.product .star-rating::before,
.woocommerce-page ul.products li.product .star-rating::before {
  color: var(--nh-rating-soft);
}

.woocommerce ul.products li.product .star-rating span::before,
.woocommerce-page ul.products li.product .star-rating span::before {
  color: var(--nh-rating);
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce ul.products li.product .price .amount,
.woocommerce-page ul.products li.product .price .amount {
  color: var(--nh-price);
  font-size: 17px;
  font-weight: 950;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del,
.woocommerce ul.products li.product .price del .amount,
.woocommerce-page ul.products li.product .price del .amount {
  color: #9ca59d;
  font-weight: 700;
}

.woocommerce ul.products li.product .natuhai-loop-rating,
.woocommerce-page ul.products li.product .natuhai-loop-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 14px 0;
  color: var(--nh-rating);
  font-size: 13px;
  line-height: 1;
}

.natuhai-loop-rating__stars {
  position: relative;
  display: inline-block;
  color: var(--nh-rating-soft);
  letter-spacing: 1px;
  white-space: nowrap;
}

.natuhai-loop-rating__stars::before {
  content: "★★★★★";
}

.natuhai-loop-rating__stars span {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: var(--nh-rating);
  white-space: nowrap;
}

.natuhai-loop-rating__count {
  color: var(--nh-muted);
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 28px);
  min-height: 42px;
  margin: 12px 14px 14px;
  padding: 0 12px;
  color: #fff !important;
  line-height: 1.1;
  text-align: center;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--nh-radius);
  background: var(--nh-green-700);
  color: #fff !important;
  font-weight: 900;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--nh-green-800);
  color: #fff !important;
  transform: translateY(-1px);
}

.woocommerce div.product .woocommerce-product-rating .star-rating,
.woocommerce-page div.product .woocommerce-product-rating .star-rating {
  color: var(--nh-rating);
}

.woocommerce div.product .woocommerce-product-rating .star-rating::before,
.woocommerce-page div.product .woocommerce-product-rating .star-rating::before {
  color: var(--nh-rating-soft);
}

.woocommerce div.product .woocommerce-product-rating .star-rating span::before,
.woocommerce-page div.product .woocommerce-product-rating .star-rating span::before {
  color: var(--nh-rating);
}

.woocommerce div.product .woocommerce-review-link,
.woocommerce-page div.product .woocommerce-review-link {
  color: var(--nh-ink);
  font-weight: 650;
}

.woocommerce div.product .woocommerce-review-link:hover,
.woocommerce-page div.product .woocommerce-review-link:hover {
  color: var(--nh-green-700);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price,
.woocommerce div.product p.price .amount,
.woocommerce div.product span.price .amount,
.woocommerce-page div.product p.price .amount,
.woocommerce-page div.product span.price .amount {
  color: var(--nh-price);
  font-size: 22px;
  font-weight: 950;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.woocommerce-page div.product p.price del,
.woocommerce-page div.product span.price del,
.woocommerce div.product p.price del .amount,
.woocommerce div.product span.price del .amount,
.woocommerce-page div.product p.price del .amount,
.woocommerce-page div.product span.price del .amount {
  color: #9ca59d;
  font-weight: 700;
  opacity: 1;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce-page div.product p.price ins,
.woocommerce-page div.product span.price ins {
  text-decoration: none;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .button.alt,
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce-page div.product form.cart .button,
.woocommerce-page div.product form.cart .button.alt,
.woocommerce-page div.product form.cart .single_add_to_cart_button {
  min-height: 44px;
  padding-inline: 22px;
  border-radius: var(--nh-radius);
  background: var(--nh-green-700) !important;
  color: #fff !important;
  font-weight: 950;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .button.alt:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce-page div.product form.cart .button:hover,
.woocommerce-page div.product form.cart .button.alt:hover,
.woocommerce-page div.product form.cart .single_add_to_cart_button:hover {
  background: var(--nh-green-800) !important;
  color: #fff !important;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
  border-radius: 12px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image,
.woocommerce-page div.product div.images .woocommerce-product-gallery__image {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header__main {
    grid-template-columns: minmax(190px, 220px) minmax(300px, 1fr) minmax(280px, 310px);
    gap: 16px;
  }

  .brand .custom-logo {
    max-width: 200px;
  }

  .header-actions {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 310px;
  }

  .header-action span:last-child {
    display: none;
  }

  .hero__panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero__features,
  .products-grid,
  .blog-grid,
  .featured-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img {
    height: 220px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 32px, var(--nh-container));
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__right {
    display: none;
  }

  .site-header__main {
    grid-template-columns: 44px 1fr auto;
    min-height: 72px;
  }

  .mobile-toggle {
    display: grid;
  }

  .brand {
    grid-column: 2;
    justify-content: center;
    justify-self: center;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .brand__name {
    font-size: 20px;
  }

  .brand__tagline {
    display: none;
  }

  .site-header__main .header-search {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 4;
    display: none;
    margin-bottom: 12px;
    max-width: none;
  }

  body.natuhai-menu-open .site-header__main .header-search {
    display: block;
  }

  .header-actions {
    grid-column: 3;
    display: flex;
    gap: 2px;
    max-width: none;
  }

  .header-action {
    min-width: 42px;
    min-height: 42px;
    padding: 4px;
  }

  .header-action strong,
  .header-action span:not(.header-action__badge) {
    display: none;
  }

  .header-action__badge {
    top: -4px;
    right: -2px;
  }

  .site-nav {
    display: none;
  }

  body.natuhai-menu-open .site-nav {
    display: block;
  }

  .site-nav__inner {
    display: grid;
    gap: 12px;
    padding-bottom: 14px;
  }

  .nav-menu,
  .nav-menu ul {
    display: grid;
    width: 100%;
  }

  .nav-menu a {
    min-height: 46px;
    padding-inline: 14px;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero__panel {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 34px 28px 10px;
  }

  .hero__text {
    font-size: 17px;
  }

  .hero__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__art {
    min-height: 340px;
  }

  .hero__image {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }

  .sticker-sheet {
    left: 40px;
    top: 48px;
    width: 190px;
    height: 220px;
  }

  .sticker-sheet--two {
    left: 140px;
    top: 70px;
  }

  .bottle {
    right: 110px;
    height: 230px;
  }

  .cup {
    right: 24px;
    height: 184px;
  }

  .sticker-roll {
    right: 190px;
    width: 132px;
  }

  .service-banner,
  .newsletter__panel {
    grid-template-columns: 1fr;
  }

  .service-banner__copy {
    padding: 28px 28px 0;
  }

  .service-banner__image {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }

  .benefits-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

}

@media (max-width: 680px) {
  .hero {
    padding-top: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__dots {
    bottom: 12px;
  }

  .quick-categories,
  .products-grid,
  .blog-grid,
  .featured-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .video-showcase__grid {
    grid-template-columns: 1fr;
  }

  .section-card {
    padding: 18px;
  }

  .section-head {
    display: grid;
    gap: 10px;
  }

  .section-title {
    font-size: 22px;
  }

  .product-card__title,
  .post-card__title {
    font-size: 14px;
  }

  .product-card__media {
    aspect-ratio: 1 / 0.92;
  }

  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img {
    height: 210px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: 0;
  }

  .blog-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .blog-tab {
    white-space: nowrap;
  }

  .benefits-strip,
  .newsletter__benefits,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .newsletter__panel {
    padding: 24px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    min-height: 48px;
  }

  .footer-bottom__inner {
    display: grid;
    justify-items: center;
    padding: 14px 0;
    text-align: center;
  }

  .footer-back-to-top {
    position: static;
    margin: -18px auto 18px;
  }

  .qr-box {
    grid-template-columns: 96px 1fr;
  }

  .qr-code {
    width: 96px;
    height: 96px;
  }

  .social-connect {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .social-connect__image {
    width: 96px;
    height: 96px;
  }

}

@media (max-width: 420px) {
  .quick-categories {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: 0;
  }

  .hero__copy {
    padding-inline: 20px;
  }

  .brand__text {
    display: none;
  }
}
