@font-face {
  font-family: "YekanBakhGlobal";
  src: url("/wp-content/plugins/persian-woocommerce/assets/fonts/yekanbakh/yekanbakh-fanum.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YekanBakhFaNum";
  src: url("/wp-content/uploads/2024/05/YekanBakhFaNum-Light.woff2") format("woff2"),
       url("/wp-content/uploads/2024/05/YekanBakhFaNum-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YekanBakhFaNum";
  src: url("/wp-content/uploads/2024/05/YekanBakhFaNum-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YekanBakhFaNum";
  src: url("/wp-content/uploads/2024/05/YekanBakhFaNum-Black.woff2") format("woff2"),
       url("/wp-content/uploads/2024/05/YekanBakhFaNum-Black.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --hp-bg: #f6fbfa;
  --hp-ink: #071412;
  --hp-muted: #58706c;
  --hp-card: rgba(255, 255, 255, 0.78);
  --hp-border: rgba(104, 175, 166, 0.22);
  --hp-teal: #68afa6;
  --hp-teal-strong: #4dafa2;
  --hp-teal-soft: #e0efed;
  --hp-deep: #061110;
  --hp-deep-2: #0b2421;
  --hp-radius: 24px;
  --hp-shadow: 0 24px 70px rgba(7, 20, 18, 0.12);
  --hp-container: min(1180px, calc(100vw - 32px));
  --hp-font: "YekanBakhGlobal", "YekanBakhFaNum", "Yekan Bakh", "YekanBakh", "IRANYekan", "Vazirmatn", "Tahoma", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(104, 175, 166, .26), transparent 30vw),
    radial-gradient(circle at 88% 12%, rgba(6, 17, 16, .08), transparent 34vw),
    linear-gradient(180deg, #ffffff 0%, var(--hp-bg) 42%, #edf7f5 100%);
  color: var(--hp-ink);
  font-family: var(--hp-font);
  font-weight: 300;
}

body, button, input, textarea, select, .elementor-widget-container {
  font-family: var(--hp-font) !important;
}

body .site-header.dynamic-header,
body .site-footer.dynamic-footer {
  display: none !important;
}

.hp-site-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,.24), transparent 34%),
    linear-gradient(135deg, #4dafa2 0%, #68afa6 48%, #3f988f 100%);
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
  transition: opacity .5s ease, visibility .5s ease;
}

.hp-site-loader::before,
.hp-site-loader::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hp-site-loader::before {
  width: min(520px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.24);
  animation: hp-loader-ring 1.8s ease-in-out infinite;
}

.hp-site-loader::after {
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 68%);
  opacity: .42;
}

.hp-loader-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 22px;
  animation: hp-loader-float 1.55s ease-in-out infinite;
}

.hp-loader-mark img {
  width: min(176px, 48vw);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .98;
}

.hp-loader-mark span {
  position: relative;
  width: 112px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.26);
}

.hp-loader-mark span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: inherit;
  background: #fff;
  animation: hp-loader-line 1.15s ease-in-out infinite;
}

.hp-site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes hp-loader-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -8px, 0) scale(1.025);
  }
}

@keyframes hp-loader-ring {
  0%, 100% {
    transform: scale(.94);
    opacity: .42;
  }
  50% {
    transform: scale(1.04);
    opacity: .18;
  }
}

@keyframes hp-loader-line {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-loader-mark,
  .hp-loader-mark span::after,
  .hp-site-loader::before {
    animation: none;
  }
}

.hp-header {
  position: sticky;
  top: 12px;
  z-index: 9999;
  width: var(--hp-container);
  margin: 12px auto 0;
  border: 1px solid rgba(104, 175, 166, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 48px rgba(7, 20, 18, .10);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.hp-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(104, 175, 166, .42);
  box-shadow: 0 22px 64px rgba(7, 20, 18, .14);
}

.hp-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 18px;
}

.hp-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--hp-teal);
  text-decoration: none;
}

.hp-logo-img {
  display: block;
  width: auto;
  max-width: 126px;
  height: auto;
  object-fit: contain;
}

.hp-logo-text {
  font-size: 24px;
  font-weight: 600;
}

.hp-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.hp-menu,
.hp-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hp-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--hp-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.hp-menu .current-menu-item > a,
.hp-menu a:hover {
  background: rgba(104, 175, 166, .14);
  color: var(--hp-ink);
  transform: translateY(-1px);
}

.hp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.hp-link {
  color: var(--hp-muted);
  font-size: 14px;
  text-decoration: none;
}

.hp-button,
.hp-ghost,
.hp-link {
  font-family: var(--hp-font);
}

.hp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(104, 175, 166, .46);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hp-teal), var(--hp-teal-strong));
  color: #061110 !important;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(77, 175, 162, .24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.hp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(77, 175, 162, .34);
  filter: saturate(1.06);
}

.hp-button-light {
  background: linear-gradient(135deg, #ffffff, var(--hp-teal-soft));
  color: var(--hp-deep) !important;
}

.hp-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(104, 175, 166, .36);
  border-radius: 999px;
  color: #fff;
  background: rgba(6,17,16,.92);
  text-decoration: none;
}

.hp-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(104, 175, 166, .36);
  border-radius: 50%;
  background: rgba(104, 175, 166, .10);
  padding: 0;
}

.hp-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--hp-teal-strong);
  margin: 5px auto;
}

.hp-hero {
  position: relative;
  overflow: hidden;
  margin-top: -96px;
  padding: 160px 0 76px;
  background: #f4f0e8;
  color: var(--hp-ink);
}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #f4f0e8;
}

.hp-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .8s ease, transform 5.2s ease;
}

.hp-hero-bg img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.54) 0%, rgba(255,255,255,.30) 48%, rgba(255,255,255,.06) 100%),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.42), transparent 36vw);
  pointer-events: none;
}

.hp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(104,175,166,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104,175,166,.10) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 76%);
}

.hp-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--hp-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.hp-kicker {
  display: inline-flex;
  border: 1px solid rgba(104,175,166,.34);
  border-radius: 999px;
  background: rgba(104,175,166,.12);
  padding: 8px 14px;
  color: var(--hp-teal-strong);
  backdrop-filter: blur(14px);
}

.hp-hero h1 {
  max-width: 740px;
  margin: 22px 0 18px;
  color: var(--hp-teal-strong);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0;
}

.hp-hero p {
  max-width: 680px;
  color: var(--hp-muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  line-height: 2.1;
}

.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hp-hero-panel {
  min-height: 420px;
  border: 1px solid rgba(104,175,166,.24);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(224,239,237,.78)),
    radial-gradient(circle at 50% 42%, rgba(104,175,166,.16), transparent 38%);
  box-shadow: 0 30px 90px rgba(7,20,18,.12);
  backdrop-filter: blur(22px) saturate(130%);
  padding: 24px;
}

.hp-panel-top,
.hp-panel-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hp-panel-top {
  justify-content: flex-start;
}

.hp-panel-top span {
  color: var(--hp-muted);
}

.hp-panel-top strong {
  font-size: 34px;
  font-weight: 300;
  color: var(--hp-teal);
}

.hp-product-orbit {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-content: center;
}

.hp-product-orbit::before {
  content: "";
  position: absolute;
  inset: 18px;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .2;
  pointer-events: none;
}

.hp-product-orbit span,
.hp-panel-stats div {
  position: relative;
  border: 1px solid rgba(104,175,166,.24);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  padding: 18px;
  text-align: center;
  color: var(--hp-ink);
}

.hp-panel-stats div {
  flex: 1;
}

.hp-panel-stats b {
  display: block;
  color: var(--hp-teal);
  font-size: 28px;
  font-weight: 600;
}

.hp-panel-stats span {
  display: block;
  margin-top: 4px;
  color: var(--hp-muted);
  font-size: 12px;
}

.elementor-29 {
  width: var(--hp-container);
  margin: 56px auto 0;
  border-radius: 30px;
}

.elementor-29 .e-con,
.elementor-29 .elementor-widget-container {
  border-radius: 22px;
}

.hp-footer {
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  padding: 56px 0 22px;
  background:
    radial-gradient(circle at 14% 16%, rgba(104,175,166,.18), transparent 32vw),
    linear-gradient(180deg, #ffffff, #eef8f6);
  color: var(--hp-ink);
}

.hp-footer::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -180px;
  width: 420px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .09;
  pointer-events: none;
}

.hp-footer-inner {
  position: relative;
  width: var(--hp-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .8fr;
  gap: 28px;
}

.hp-footer p {
  max-width: 420px;
  color: var(--hp-muted);
  line-height: 2;
}

.hp-footer h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--hp-teal);
}

.hp-footer .hp-menu {
  display: grid;
  gap: 8px;
}

.hp-footer .hp-menu a,
.hp-footer-list a {
  color: var(--hp-muted);
  text-decoration: none;
  line-height: 2;
}

.hp-footer .hp-menu a:hover,
.hp-footer-list a:hover {
  color: var(--hp-ink);
}

.hp-footer-bottom {
  position: relative;
  width: var(--hp-container);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(104,175,166,.18);
  color: var(--hp-muted);
  font-size: 14px;
}

.hp-app-nav {
  display: none;
}

@media (max-width: 980px) {
  .hp-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    justify-content: stretch;
    border: 1px solid rgba(104, 175, 166, .28);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--hp-shadow);
    padding: 12px;
  }

  .hp-header.is-open .hp-nav {
    display: block;
  }

  .hp-menu {
    display: grid;
  }

  .hp-menu-toggle {
    display: block;
  }

  .hp-link {
    display: none;
  }

  .hp-hero-inner,
  .hp-footer-inner {
    grid-template-columns: 1fr;
  }

  .hp-hero {
    margin-top: -92px;
    padding-top: 150px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .hp-app-nav {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 10000;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    min-height: 66px;
    padding: 7px;
    border: 1px solid rgba(104,175,166,.22);
    border-radius: 28px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 18px 54px rgba(16,24,23,.14);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
  }

  .hp-app-nav-item {
    position: relative;
    min-width: 0;
    min-height: 52px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    border-radius: 21px;
    color: var(--hp-muted);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .hp-app-nav-item.is-active,
  .hp-app-nav-item:hover {
    background: rgba(104,175,166,.13);
    color: var(--hp-teal-strong);
  }

  .hp-app-nav-item:active {
    transform: scale(.97);
  }

  .hp-app-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    color: currentColor;
  }

  .hp-app-icon::before,
  .hp-app-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    border-color: currentColor;
  }

  .hp-app-label {
    max-width: 100%;
    overflow: hidden;
    color: currentColor;
    font-size: 11px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hp-app-badge {
    position: absolute;
    top: 5px;
    left: 14px;
    min-width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 999px;
    background: var(--hp-teal);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
  }

  .hp-app-icon-home .hp-app-icon::before {
    inset: 6px 4px 3px;
    border: 1.8px solid currentColor;
    border-top: 0;
    border-radius: 0 0 5px 5px;
  }

  .hp-app-icon-home .hp-app-icon::after {
    top: 3px;
    right: 5px;
    width: 12px;
    height: 12px;
    border-top: 1.8px solid currentColor;
    border-right: 1.8px solid currentColor;
    transform: rotate(-45deg);
    border-radius: 2px;
  }

  .hp-app-icon-shop .hp-app-icon::before {
    inset: 7px 3px 3px;
    border: 1.8px solid currentColor;
    border-radius: 4px 4px 6px 6px;
  }

  .hp-app-icon-shop .hp-app-icon::after {
    top: 3px;
    right: 7px;
    width: 8px;
    height: 7px;
    border: 1.8px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  .hp-app-icon-recipes .hp-app-icon::before {
    inset: 3px 7px 3px 7px;
    border-right: 1.8px solid currentColor;
    border-left: 1.8px solid currentColor;
    border-radius: 999px;
  }

  .hp-app-icon-recipes .hp-app-icon::after {
    top: 3px;
    right: 4px;
    width: 14px;
    height: 14px;
    border: 1.8px solid currentColor;
    border-radius: 50% 50% 50% 6px;
    transform: rotate(45deg);
  }

  .hp-app-icon-wholesale .hp-app-icon::before {
    inset: 4px 3px 5px;
    border: 1.8px solid currentColor;
    border-radius: 5px;
  }

  .hp-app-icon-wholesale .hp-app-icon::after {
    right: 6px;
    bottom: 2px;
    width: 10px;
    height: 5px;
    border: 1.8px solid currentColor;
    border-top: 0;
    border-radius: 0 0 5px 5px;
  }

  .hp-app-icon-cart .hp-app-icon::before {
    inset: 5px 3px 8px 4px;
    border: 1.8px solid currentColor;
    border-radius: 4px;
    transform: skewX(-7deg);
  }

  .hp-app-icon-cart .hp-app-icon::after {
    right: 5px;
    bottom: 3px;
    width: 12px;
    height: 3px;
    border-right: 3px solid currentColor;
    border-left: 3px solid currentColor;
  }

  .hp-app-icon-account .hp-app-icon::before {
    top: 3px;
    right: 7px;
    width: 8px;
    height: 8px;
    border: 1.8px solid currentColor;
    border-radius: 50%;
  }

  .hp-app-icon-account .hp-app-icon::after {
    right: 4px;
    bottom: 3px;
    width: 14px;
    height: 9px;
    border: 1.8px solid currentColor;
    border-radius: 11px 11px 5px 5px;
  }
}

@media (max-width: 560px) {
  :root {
    --hp-container: min(100vw - 22px, 520px);
  }

  .hp-header-inner {
    min-height: 64px;
  }

  .hp-logo-img {
    max-width: 96px;
    height: auto;
  }

  .hp-button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }

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

  .hp-hero-panel {
    min-height: auto;
  }

  .hp-panel-stats,
  .hp-hero-actions {
    flex-direction: column;
  }
}


.hp-page-hero {
  position: relative;
  overflow: hidden;
  margin-top: -96px;
  padding: 152px 0 58px;
  background:
    radial-gradient(circle at 72% 22%, rgba(104,175,166,.22), transparent 32vw),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,248,246,.94));
  color: var(--hp-ink);
}

.hp-page-hero::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -190px;
  width: min(46vw, 480px);
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .12;
  pointer-events: none;
}

.hp-page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--hp-container);
  margin: 0 auto;
}

.hp-page-hero h1 {
  margin: 18px 0 12px;
  color: var(--hp-ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 300;
}

.hp-page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--hp-muted);
  font-size: 18px;
  line-height: 2;
}

.hp-trust {
  position: relative;
  z-index: 2;
  width: var(--hp-container);
  margin: -34px auto 54px;
  transition: background-color .7s ease, box-shadow .7s ease;
}

.hp-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(104,175,166,.22);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(7,20,18,.12);
  backdrop-filter: blur(18px) saturate(130%);
  overflow: hidden;
}

.hp-trust-inner div {
  padding: 22px;
  border-left: 1px solid rgba(104,175,166,.16);
}

.hp-trust-inner div:last-child {
  border-left: 0;
}

.hp-trust-inner b {
  display: block;
  margin-bottom: 8px;
  color: var(--hp-ink);
  font-size: 18px;
  font-weight: 600;
}

.hp-trust-inner span {
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.9;
}

.hp-section,
.hp-cta-band {
  width: var(--hp-container);
  margin: 64px auto 0;
}

.hp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.hp-section-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--hp-teal-strong);
  font-size: 14px;
  font-weight: 600;
}

.hp-section h2,
.hp-cta-band h2 {
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.35;
  font-weight: 300;
}

.hp-text-link {
  color: var(--hp-teal-strong);
  text-decoration: none;
  font-weight: 600;
}

.hp-value-icons {
  position: relative;
}

.hp-value-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hp-value-icon-card {
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 22px 18px 24px;
  border: 1px solid rgba(104,175,166,.2);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 46px rgba(7,20,18,.08);
  text-align: center;
}

.hp-value-icon-card img {
  width: min(148px, 72%);
  aspect-ratio: 1;
  margin-bottom: 16px;
  border-radius: 18px;
  object-fit: contain;
}

.hp-value-icon-card h3 {
  margin: 0;
  color: var(--hp-ink);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.hp-value-icon-card p {
  margin: 10px 0 0;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.95;
}

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

.hp-product-card {
  min-width: 0;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 46px rgba(7,20,18,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hp-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104,175,166,.42);
  box-shadow: 0 26px 64px rgba(7,20,18,.14);
}

.hp-product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 42%, rgba(104,175,166,.18), transparent 46%),
    #eef8f6;
  overflow: hidden;
}

.hp-product-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}

.hp-product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.hp-product-card:hover .hp-product-media img {
  transform: scale(1.045);
}

.hp-product-body {
  padding: 16px;
}

.hp-product-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

.hp-product-body h3 a {
  color: var(--hp-ink);
  text-decoration: none;
}

.hp-product-price {
  min-height: 30px;
  color: var(--hp-teal-strong);
  font-size: 15px;
  font-weight: 600;
}

.hp-product-price .woocommerce-Price-currencySymbol {
  margin-left: 3px;
}

.hp-product-action {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(6,17,16,.92);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}

.hp-product-action:hover {
  background: var(--hp-teal-strong);
  color: #061110;
  transform: translateY(-1px);
}

.hp-products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(104,175,166,.14), transparent 30%),
    rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(7,20,18,.06);
}

.hp-products-cta span {
  display: block;
  margin-bottom: 4px;
  color: var(--hp-teal-strong);
  font-size: 13px;
  font-weight: 700;
}

.hp-products-cta b {
  display: block;
  color: var(--hp-ink);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 600;
}

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

.hp-category-card {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(104,175,166,.2);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(224,239,237,.78));
  color: var(--hp-ink);
  text-decoration: none;
  box-shadow: 0 20px 56px rgba(7,20,18,.10);
}

.hp-category-card::after {
  content: "";
  position: absolute;
  left: -64px;
  bottom: -84px;
  width: 190px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .13;
  transition: transform .3s ease, opacity .3s ease;
}

.hp-category-card:hover::after {
  transform: scale(1.1) rotate(8deg);
  opacity: .2;
}

.hp-category-card span {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 300;
}

.hp-category-card b {
  position: relative;
  z-index: 1;
  color: var(--hp-teal);
  font-size: 14px;
  font-weight: 600;
}

.hp-story {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 20%, rgba(104,175,166,.16), transparent 34%),
    rgba(255,255,255,.68);
  box-shadow: var(--hp-shadow);
}

.hp-story-copy p {
  max-width: 580px;
  color: var(--hp-muted);
  line-height: 2.1;
  font-size: 17px;
}

.hp-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hp-story-grid div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
}

.hp-story-grid b {
  display: block;
  margin-bottom: 18px;
  color: var(--hp-teal-strong);
  font-size: 26px;
  font-weight: 300;
}

.hp-story-grid span {
  color: var(--hp-ink);
  font-weight: 600;
}

.hp-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(104,175,166,.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(224,239,237,.82));
  color: var(--hp-ink);
  box-shadow: 0 28px 80px rgba(7,20,18,.12);
}

.hp-cta-band span {
  color: var(--hp-teal);
  font-weight: 600;
}

.hp-cta-band h2 {
  margin-top: 8px;
  color: var(--hp-ink);
}

body:not(.home) .site-main,
body:not(.home) main#content,
body:not(.home) .page-content,
body:not(.home) .woocommerce {
  width: var(--hp-container);
  max-width: var(--hp-container);
  margin-right: auto;
  margin-left: auto;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  clear: both;
  align-items: stretch;
  margin-top: 18px;
  margin-bottom: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
  content: none !important;
  display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 14px !important;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 16px 42px rgba(7,20,18,.08);
  overflow: hidden;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  border-radius: 18px;
  height: 250px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: grid;
  grid-template-rows: 250px auto auto;
  gap: 12px;
  flex: 1 1 auto;
  text-decoration: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  color: var(--hp-ink);
  font-family: var(--hp-font) !important;
  font-weight: 600;
  letter-spacing: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--hp-teal-strong);
  font-weight: 600;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
  border: 0;
  border-radius: 999px;
  background: var(--hp-deep) !important;
  color: #fff !important;
  font-family: var(--hp-font) !important;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: var(--hp-teal-strong) !important;
  color: #061110 !important;
  transform: translateY(-1px);
}

.woocommerce div.product div.images img,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.elementor-widget-container form,
.wpcf7 form {
  border-radius: 24px;
}

.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.elementor-widget-container form,
.wpcf7 form {
  padding: 22px;
  border: 1px solid rgba(104,175,166,.18);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 48px rgba(7,20,18,.08);
}

.woocommerce div.product .woocommerce-tabs {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(104,175,166,.17);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 14%, rgba(104,175,166,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(248,253,252,.96));
  box-shadow: 0 28px 86px rgba(7,20,18,.085);
}

.woocommerce div.product .woocommerce-tabs::after {
  content: "";
  position: absolute;
  left: -96px;
  bottom: -118px;
  width: 310px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .055;
  pointer-events: none;
}

.woocommerce div.product .woocommerce-tabs > * {
  position: relative;
  z-index: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 22px !important;
  padding: 8px !important;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  content: none !important;
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  content: none !important;
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex !important;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px !important;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--hp-muted) !important;
  font-family: var(--hp-font) !important;
  font-size: 16px;
  font-weight: 800 !important;
  line-height: 1.4;
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-color: rgba(104,175,166,.28);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(224,239,237,.86));
  color: var(--hp-ink) !important;
  box-shadow: 0 12px 28px rgba(7,20,18,.065);
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 !important;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(104,175,166,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.74);
}

.woocommerce div.product .woocommerce-tabs .panel > h2:first-child,
.woocommerce #reviews #comments h2 {
  margin: 0 0 18px;
  color: #164846;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-Tabs-panel--description p {
  max-width: 1050px;
  margin: 0 0 16px;
  color: #486865;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 2.25;
}

.woocommerce div.product .woocommerce-Tabs-panel--description p:first-of-type {
  padding: 18px 20px;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 22px;
  background: rgba(224,239,237,.28);
}

.woocommerce #reviews {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
  gap: 18px;
}

.woocommerce #reviews #comments,
.woocommerce #reviews #review_form_wrapper {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(104,175,166,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.74);
}

.woocommerce #reviews .woocommerce-noreviews {
  margin: 0;
  color: var(--hp-muted);
  line-height: 2;
}

.woocommerce #review_form .comment-reply-title {
  display: block;
  margin-bottom: 14px;
  color: #164846;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 800;
}

.woocommerce #review_form .comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.woocommerce #review_form .comment-notes,
.woocommerce #review_form .comment-form-rating,
.woocommerce #review_form .comment-form-comment,
.woocommerce #review_form .comment-form-cookies-consent,
.woocommerce #review_form .form-submit {
  grid-column: 1 / -1;
}

.woocommerce #review_form label,
.woocommerce #review_form .comment-notes {
  color: var(--hp-muted);
  line-height: 1.9;
}

.woocommerce #review_form input:not([type="checkbox"]),
.woocommerce #review_form textarea,
.woocommerce #review_form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 18px;
  background: rgba(248,253,252,.96);
  color: var(--hp-ink);
  font-family: var(--hp-font);
}

.woocommerce #review_form textarea {
  min-height: 138px;
}

@media (max-width: 860px) {
  .woocommerce #reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .woocommerce div.product .woocommerce-tabs {
    margin-top: 28px;
    padding: 14px;
    border-radius: 24px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-radius: 22px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px !important;
    font-size: 14px;
  }

  .woocommerce div.product .woocommerce-tabs .panel,
  .woocommerce #reviews #comments,
  .woocommerce #reviews #review_form_wrapper {
    padding: 16px;
    border-radius: 20px;
  }

  .woocommerce div.product .woocommerce-tabs .panel > h2:first-child,
  .woocommerce #reviews #comments h2 {
    font-size: 26px;
  }

  .woocommerce div.product .woocommerce-Tabs-panel--description p {
    font-size: 15px;
    line-height: 2.05;
  }

  .woocommerce #review_form .comment-form {
    grid-template-columns: 1fr;
  }
}

.woocommerce-products-header {
  display: none;
}

.woocommerce-result-count,
.woocommerce-ordering {
  margin: 18px 0 18px !important;
}

.woocommerce-result-count {
  color: var(--hp-muted);
  line-height: 2;
}

.woocommerce-ordering select {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 999px;
  background: #fff;
  color: var(--hp-ink);
  font-family: var(--hp-font) !important;
}

.hp-shop-console {
  width: 100%;
  margin: 0 0 24px;
  padding: 26px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 14%, rgba(104,175,166,.12), transparent 34%),
    rgba(255,255,255,.94);
  box-shadow: var(--hp-shadow);
}

body.woocommerce-shop #main,
body.tax-product_cat #main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  grid-template-areas:
    "crumb crumb"
    "intro intro"
    "notices sidebar"
    "toolbar sidebar"
    "products sidebar"
    "pagination sidebar";
  gap: 18px;
  align-items: start;
  direction: ltr;
}

body.woocommerce-shop #main > *,
body.tax-product_cat #main > * {
  direction: rtl;
}

body.woocommerce-shop .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb,
body.woocommerce-shop .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header {
  grid-area: crumb;
}

body.woocommerce-shop .hp-shop-console,
body.tax-product_cat .hp-shop-console {
  grid-area: intro;
  margin-bottom: 0;
}

body.woocommerce-shop .hp-shop-sidebar,
body.tax-product_cat .hp-shop-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 104px;
  min-width: 0;
}

body.woocommerce-shop .woocommerce-notices-wrapper,
body.tax-product_cat .woocommerce-notices-wrapper {
  grid-area: notices;
}

body.woocommerce-shop .woocommerce-result-count,
body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_cat .woocommerce-ordering {
  grid-area: toolbar;
}

body.woocommerce-shop ul.products,
body.tax-product_cat ul.products,
body.woocommerce-shop .woocommerce-pagination,
body.tax-product_cat .woocommerce-pagination {
  grid-area: products;
}

body.woocommerce-shop ul.products,
body.tax-product_cat ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hp-shop-sidebar .hp-shop-filter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(104,175,166,.14), transparent 36%),
    rgba(255,255,255,.95);
  box-shadow: 0 20px 62px rgba(7,20,18,.075);
}

.hp-shop-filter-title {
  padding-bottom: 4px;
}

.hp-shop-filter-title .hp-section-eyebrow {
  margin-bottom: 5px;
}

.hp-shop-filter-title b {
  display: block;
  color: var(--hp-ink);
  font-size: 22px;
  line-height: 1.55;
}

.hp-shop-sidebar .hp-shop-filter-actions {
  display: grid;
  grid-template-columns: 1fr;
}

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

.hp-shop-console-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.45;
  font-weight: 300;
}

.hp-shop-console-head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--hp-muted);
  line-height: 2;
}

.hp-shop-filter {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.82);
}

.hp-shop-filter label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.hp-shop-filter label span {
  color: var(--hp-muted);
  font-size: 13px;
  font-weight: 600;
}

.hp-shop-filter input,
.hp-shop-filter select {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 17px;
  background: #fff;
  color: var(--hp-ink);
  font-family: var(--hp-font) !important;
  outline: none;
}

.hp-shop-filter input:focus,
.hp-shop-filter select:focus {
  border-color: rgba(104,175,166,.46);
  box-shadow: 0 0 0 4px rgba(104,175,166,.10);
}

.hp-shop-filter-actions {
  display: flex;
  gap: 8px;
}

body.woocommerce-shop .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count {
  align-self: center;
  justify-self: end;
  margin: 0 !important;
}

body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering {
  justify-self: start;
  align-self: center;
  margin: 0 !important;
}

.hp-shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.hp-shop-chips a,
.hp-shop-use-grid a {
  color: var(--hp-teal-strong);
  text-decoration: none;
}

.hp-shop-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
}

.hp-shop-chips a.is-active,
.hp-shop-chips a:hover {
  background: rgba(104,175,166,.13);
  border-color: rgba(104,175,166,.34);
  color: var(--hp-ink);
}

.hp-shop-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hp-shop-use-grid a {
  min-height: 132px;
  padding: 17px;
  border: 1px solid rgba(104,175,166,.15);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16,24,23,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hp-shop-use-grid a:hover,
.hp-shop-use-grid a.is-active {
  transform: translateY(-2px);
  border-color: rgba(104,175,166,.34);
  box-shadow: 0 20px 48px rgba(16,24,23,.09);
}

.hp-shop-use-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--hp-ink);
  font-size: 16px;
}

.hp-shop-use-grid span {
  display: block;
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.9;
}

.hp-shop-service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.hp-shop-service-row div {
  padding: 15px;
  border: 1px solid rgba(104,175,166,.13);
  border-radius: 20px;
  background: rgba(248,252,251,.92);
}

.hp-shop-service-row b {
  display: block;
  margin-bottom: 6px;
  color: var(--hp-ink);
}

.hp-shop-service-row span {
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.8;
}

#main.hp-shop-ajax-loading,
main.hp-shop-ajax-loading {
  position: relative;
}

#main.hp-shop-ajax-loading .woocommerce ul.products,
main.hp-shop-ajax-loading .woocommerce ul.products,
#main.hp-shop-ajax-loading .hp-shop-console,
main.hp-shop-ajax-loading .hp-shop-console,
#main.hp-shop-ajax-loading .hp-shop-sidebar,
main.hp-shop-ajax-loading .hp-shop-sidebar {
  opacity: .48;
  pointer-events: none;
  transition: opacity .18s ease;
}

#main.hp-shop-ajax-loading::after,
main.hp-shop-ajax-loading::after {
  content: "";
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(104,175,166,.18);
  border-top-color: var(--hp-teal);
  border-radius: 999px;
  z-index: 50;
  animation: hpSpin .75s linear infinite;
}

@keyframes hpSpin {
  to {
    transform: rotate(360deg);
  }
}

.hp-login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
  align-items: stretch;
}

.hp-login-shell .hp-login-panel-main:only-child {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin-inline: auto;
}

.hp-login-panel {
  padding: 28px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--hp-shadow);
}

.hp-login-panel-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(104,175,166,.12), transparent 36%),
    #fff;
}

.hp-login-panel-main::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -98px;
  width: 240px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}

.hp-login-panel > * {
  position: relative;
  z-index: 1;
}

.hp-login-panel h2 {
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 1.45;
  font-weight: 300;
}

.hp-login-panel p {
  color: var(--hp-muted);
  line-height: 2;
}

.hp-login-form,
#hp-password-login {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hp-login-form.is-ajax-loading {
  opacity: .62;
  pointer-events: none;
}

.hp-login-form label,
#hp-password-login p {
  display: grid;
  gap: 7px;
  margin: 0;
}

.hp-login-form span,
#hp-password-login label {
  color: var(--hp-muted);
  font-size: 13px;
  font-weight: 600;
}

.hp-login-form input,
#hp-password-login input[type="text"],
#hp-password-login input[type="password"] {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 17px;
  background: #fff;
  color: var(--hp-ink);
  font-family: var(--hp-font) !important;
  outline: none;
}

.hp-login-form input:focus,
#hp-password-login input[type="text"]:focus,
#hp-password-login input[type="password"]:focus {
  border-color: rgba(104,175,166,.46);
  box-shadow: 0 0 0 4px rgba(104,175,166,.10);
}

.hp-login-code-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(104,175,166,.14);
}

.hp-login-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hp-login-notice {
  margin: 16px 0;
  padding: 13px 15px;
  border-radius: 18px;
  line-height: 1.9;
}

.hp-login-notice-success {
  border: 1px solid rgba(104,175,166,.22);
  background: rgba(104,175,166,.10);
  color: var(--hp-teal-strong);
}

.hp-login-notice-error {
  border: 1px solid rgba(185,78,78,.20);
  background: rgba(185,78,78,.08);
  color: #a24545;
}

.hp-login-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

#hp-password-login .login-remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hp-muted);
}

#hp-password-login input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--hp-teal);
}

#hp-password-login .login-submit input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(104,175,166,.36);
  border-radius: 999px;
  background: linear-gradient(135deg, #7bbdb5, #68afa6);
  color: #fff;
  font-family: var(--hp-font) !important;
  font-weight: 600;
  cursor: pointer;
}

.hp-auth-lock {
  overflow: hidden;
}

.hp-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.hp-auth-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hp-auth-modal .hp-auth-backdrop {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 20% 12%, rgba(104,175,166,.25), transparent 36%),
    rgba(247,251,250,.72) !important;
  color: var(--hp-teal-strong) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px);
  appearance: none;
  cursor: pointer;
}

.hp-auth-modal .hp-auth-backdrop:hover,
.hp-auth-modal .hp-auth-backdrop:focus {
  background:
    radial-gradient(circle at 20% 12%, rgba(104,175,166,.25), transparent 36%),
    rgba(247,251,250,.72) !important;
  transform: none !important;
  outline: none;
}

.hp-auth-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(104,175,166,.20);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(249,253,252,.96)),
    #fff;
  box-shadow: 0 30px 90px rgba(26,55,52,.20);
  transform: translateY(12px) scale(.98);
  transition: transform .24s ease;
}

.hp-auth-modal.is-open .hp-auth-dialog {
  transform: translateY(0) scale(1);
}

.hp-auth-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--hp-teal-strong);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.hp-auth-copy {
  padding-left: 42px;
}

.hp-auth-copy h2 {
  margin: 12px 0 8px;
  color: var(--hp-ink);
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 300;
  line-height: 1.55;
}

.hp-auth-copy p {
  margin: 0;
  color: var(--hp-muted);
  line-height: 2;
}

.hp-auth-forms {
  margin-top: 18px;
}

.hp-auth-forms [hidden] {
  display: none !important;
}

.hp-text-button {
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--hp-teal-strong);
  font-family: var(--hp-font) !important;
  font-weight: 700;
  cursor: pointer;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  text-align: center;
}

.woocommerce ul.products li.product .price {
  display: block;
  min-height: 32px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 52px;
  line-height: 1.65;
}

.woocommerce ul.products li.product .button {
  margin-top: auto !important;
}

@media (max-width: 1100px) {
  .hp-products-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .hp-shop-filter-actions {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .hp-trust-inner,
  .hp-products-grid,
  .hp-category-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-section-head,
  .hp-story,
  .hp-cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hp-cta-band {
    display: grid;
  }

  .hp-shop-console-head,
  .hp-shop-service-row {
    grid-template-columns: 1fr;
  }

  .hp-shop-console-head {
    display: grid;
  }

  .hp-login-shell {
    grid-template-columns: 1fr;
  }

  .hp-auth-dialog {
    width: min(620px, 100%);
  }
}

@media (max-width: 560px) {
  .hp-page-hero {
    padding-top: 142px;
  }

  .hp-trust {
    margin-top: -24px;
  }

  .hp-trust-inner,
  .hp-products-grid,
  .hp-category-grid,
  .hp-story-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .hp-trust-inner div {
    border-left: 0;
    border-bottom: 1px solid rgba(104,175,166,.16);
  }

  .hp-trust-inner div:last-child {
    border-bottom: 0;
  }

  .hp-section,
  .hp-cta-band {
    margin-top: 44px;
  }

  .hp-story,
  .hp-cta-band {
    padding: 20px;
    border-radius: 24px;
  }

  .hp-shop-console {
    padding: 16px;
    border-radius: 24px;
  }

  .hp-shop-filter,
  .hp-shop-use-grid,
  .hp-shop-service-row {
    grid-template-columns: 1fr;
  }

  .hp-shop-filter {
    padding: 12px;
    border-radius: 20px;
  }

  .hp-shop-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hp-login-fields {
    grid-template-columns: 1fr;
  }

  .hp-auth-modal {
    align-items: end;
    padding: 10px;
  }

  .hp-auth-dialog {
    max-height: calc(100vh - 20px);
    padding: 24px 18px 18px;
    border-radius: 28px;
  }

  .hp-auth-copy {
    padding-left: 44px;
  }

  .hp-shop-console-head h2 {
    font-size: 25px;
  }

  .hp-shop-use-grid a {
    min-height: 0;
  }

  .woocommerce-result-count,
  .woocommerce-ordering {
    float: none !important;
    width: 100%;
  }

  .woocommerce-ordering select {
    width: 100%;
  }

  .hp-login-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .hp-login-actions {
    display: grid;
  }
}


/* Light mode refinement requested by the site owner. */
.hp-header .hp-menu a,
.hp-header .hp-link {
  color: var(--hp-muted);
}

.hp-header .hp-menu a:hover,
.hp-header .hp-menu .current-menu-item > a {
  color: var(--hp-ink);
}

.hp-hero,
.hp-page-hero,
.hp-hero h1,
.hp-page-hero h1,
.hp-cta-band,
.hp-cta-band h2,
.hp-category-card,
.hp-footer,
.hp-footer .hp-menu a:hover,
.hp-footer-list a:hover {
  color: var(--hp-ink);
}

.hp-hero p,
.hp-page-hero p,
.hp-panel-top span,
.hp-panel-stats span,
.hp-footer p,
.hp-footer .hp-menu a,
.hp-footer-list a {
  color: var(--hp-muted);
}

.hp-ghost,
.hp-product-action,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
  color: #fff !important;
}

.hp-hero .hp-kicker,
.hp-page-hero .hp-kicker {
  color: var(--hp-teal-strong);
  background: rgba(104,175,166,.12);
}


/* Brand-correct light palette and expanded homepage sections. */
:root {
  --hp-bg: #ffffff;
  --hp-ink: #101817;
  --hp-muted: #667b78;
  --hp-card: rgba(255,255,255,.92);
  --hp-border: rgba(104,175,166,.18);
  --hp-teal: #68afa6;
  --hp-teal-strong: #4f827c;
  --hp-teal-soft: #eef7f5;
  --hp-deep: #243f3c;
  --hp-deep-2: #315b56;
  --hp-shadow: 0 22px 60px rgba(16,24,23,.08);
  --hp-font: "YekanBakhGlobal", "YekanBakhFaNum", "Yekan Bakh", "YekanBakh", "IRANYekan", "Vazirmatn", "Tahoma", sans-serif;
}

body {
  background:
    radial-gradient(circle at 12% 6%, rgba(104,175,166,.10), transparent 30vw),
    radial-gradient(circle at 88% 10%, rgba(104,175,166,.08), transparent 34vw),
    linear-gradient(180deg, #fff 0%, #fbfefd 52%, #f4faf9 100%);
}

.hp-header {
  border-color: rgba(104,175,166,.18);
  background: rgba(255,255,255,.9);
}

.hp-button,
.hp-button-light,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
  background: linear-gradient(135deg, #7bbdb5, #68afa6) !important;
  border-color: rgba(104,175,166,.36) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(104,175,166,.24);
}

.hp-button:hover,
.hp-button-light:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: linear-gradient(135deg, #68afa6, #4f827c) !important;
  color: #fff !important;
}

.hp-ghost,
.hp-ghost-light {
  background: rgba(255,255,255,.86) !important;
  border-color: rgba(104,175,166,.26);
  color: var(--hp-teal-strong) !important;
  box-shadow: 0 10px 28px rgba(16,24,23,.06);
}

.hp-product-action {
  background: #68afa6;
  color: #fff !important;
}

.hp-product-action:hover {
  background: #4f827c;
  color: #fff !important;
}

.hp-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(104,175,166,.13), transparent 34vw),
    radial-gradient(circle at 10% 16%, rgba(238,247,245,.92), transparent 28vw),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,253,252,.95)),
    url("/wp-content/uploads/2024/05/Group-32.png") center/cover no-repeat;
}

.hp-hero-panel,
.hp-trust-inner,
.hp-product-card,
.hp-story,
.hp-cta-band,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: rgba(255,255,255,.92);
  border-color: rgba(104,175,166,.16);
}

.hp-category-card {
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,252,251,.92));
  border-color: rgba(104,175,166,.18);
}

.hp-shop-paths {
  position: relative;
}

.hp-shop-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hp-shop-path-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  grid-template-rows: 24px 58px minmax(58px, auto);
  align-content: start;
  row-gap: 8px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 12%, rgba(104,175,166,.12), transparent 36%),
    rgba(255,255,255,.94);
  color: var(--hp-ink);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(7,20,18,.065);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hp-shop-path-card::after {
  content: "";
  position: absolute;
  left: -64px;
  bottom: -82px;
  width: 180px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .055;
  pointer-events: none;
}

.hp-shop-path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(104,175,166,.34);
  box-shadow: 0 26px 68px rgba(7,20,18,.10);
}

.hp-shop-path-card span {
  position: relative;
  z-index: 1;
  align-self: start;
  color: var(--hp-teal-strong);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.hp-shop-path-card b,
.hp-shop-path-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.hp-shop-path-card b {
  align-self: end;
  margin: 0;
  color: var(--hp-ink);
  font-size: 21px;
  line-height: 1.55;
}

.hp-shop-path-card small {
  align-self: start;
  margin: 0;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.9;
}

.hp-feature-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(104,175,166,.10), transparent 36%),
    rgba(255,255,255,.92);
  box-shadow: var(--hp-shadow);
}

.hp-feature-copy p {
  max-width: 560px;
  color: var(--hp-muted);
  font-size: 17px;
  line-height: 2.1;
}

.hp-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hp-feature-cards div {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,24,23,.05);
}

.hp-feature-cards b {
  display: block;
  margin-bottom: 16px;
  color: var(--hp-ink);
  font-size: 18px;
  font-weight: 600;
}

.hp-feature-cards span {
  color: var(--hp-muted);
  line-height: 2;
}

.hp-assurance {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 16%, rgba(104,175,166,.10), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,253,252,.92));
  box-shadow: 0 24px 76px rgba(16,24,23,.07);
}

.hp-assurance-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hp-assurance-card {
  min-height: 184px;
  padding: 22px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16,24,23,.06);
}

.hp-assurance-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(104,175,166,.12), transparent 34%),
    #fff;
}

.hp-assurance-main::after {
  content: "";
  position: absolute;
  left: -72px;
  bottom: -88px;
  width: 220px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .08;
}

.hp-assurance-card > * {
  position: relative;
  z-index: 1;
}

.hp-assurance-card h2 {
  max-width: 660px;
}

.hp-assurance-card p {
  max-width: 640px;
  color: var(--hp-muted);
  line-height: 2.1;
}

.hp-assurance-card b {
  display: block;
  margin-bottom: 40px;
  color: var(--hp-teal);
  font-size: 34px;
  font-weight: 300;
}

.hp-assurance-card span {
  color: var(--hp-ink);
  font-weight: 600;
  line-height: 1.9;
}

.hp-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--hp-shadow);
}

.hp-contact-strip h2 {
  max-width: 760px;
}

.hp-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hp-brand-message {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 18%, rgba(104,175,166,.11), transparent 34%),
    #fff;
  box-shadow: var(--hp-shadow);
}

.hp-brand-message p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 18px;
  line-height: 2.15;
}

.hp-testimonials,
.hp-faq {
  padding: 30px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 32px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--hp-shadow);
}

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

.hp-quote-grid figure {
  margin: 0;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(104,175,166,.15);
  border-radius: 24px;
  background: #fff;
}

.hp-quote-grid blockquote {
  margin: 0;
  color: var(--hp-ink);
  font-size: 17px;
  line-height: 2;
}

.hp-quote-grid figcaption {
  margin-top: 16px;
  color: var(--hp-teal-strong);
  font-weight: 600;
}

.hp-faq-list {
  display: grid;
  gap: 12px;
}

.hp-faq-list details {
  border: 1px solid rgba(104,175,166,.15);
  border-radius: 20px;
  background: #fff;
  padding: 16px 18px;
}

.hp-faq-list summary {
  cursor: pointer;
  color: var(--hp-ink);
  font-weight: 600;
}

.hp-faq-list p {
  margin: 12px 0 0;
  color: var(--hp-muted);
  line-height: 2;
}

.hp-footer {
  border-top: 1px solid rgba(104,175,166,.14);
  background:
    radial-gradient(circle at 12% 18%, rgba(104,175,166,.08), transparent 34vw),
    linear-gradient(180deg, #fff, #f8fcfb);
}

@media (max-width: 1100px) {
  .hp-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-assurance-main {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .hp-feature-band,
  .hp-assurance,
  .hp-brand-message,
  .hp-contact-strip {
    grid-template-columns: 1fr;
  }

  .hp-feature-cards {
    grid-template-columns: 1fr;
  }

  .hp-contact-strip {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hp-footer {
    margin-top: 46px;
    padding: 28px 0 16px;
  }

  .hp-footer-inner {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  .hp-footer-inner > div {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(104,175,166,.14);
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 12px 32px rgba(16,24,23,.05);
  }

  .hp-footer-brand .hp-logo {
    margin-bottom: 10px;
  }

  .hp-footer p {
    max-width: none;
    margin: 8px 0 0;
    font-size: 14px;
  }

  .hp-footer h3 {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .hp-footer .hp-menu,
  .hp-footer-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hp-footer .hp-menu a,
  .hp-footer-list a {
    display: flex;
    min-height: 36px;
    align-items: center;
    padding: 4px 0;
    line-height: 1.6;
  }

  .hp-footer-bottom {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
  }

  .hp-feature-band,
  .hp-assurance-card,
  .hp-contact-strip {
    padding: 18px;
    border-radius: 22px;
  }

  .hp-brand-message,
  .hp-testimonials,
  .hp-faq {
    padding: 18px;
    border-radius: 22px;
  }

  .hp-shop-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hp-shop-path-card {
    min-height: 148px;
    grid-template-rows: 20px 42px minmax(44px, auto);
    row-gap: 6px;
    padding: 16px 14px;
    border-radius: 20px;
  }

  .hp-shop-path-card span {
    font-size: 12px;
    line-height: 1.45;
  }

  .hp-shop-path-card b {
    font-size: 16px;
    line-height: 1.55;
  }

  .hp-shop-path-card small {
    font-size: 12px;
    line-height: 1.8;
  }

  .hp-quote-grid {
    grid-template-columns: 1fr;
  }

  .hp-assurance {
    gap: 12px;
  }

  .hp-assurance-card {
    min-height: 128px;
  }

  .hp-assurance-card b {
    margin-bottom: 18px;
    font-size: 26px;
  }

  .hp-contact-actions {
    display: grid;
  }
}


/* Font normalization and legacy Elementor category grid fix. */
html,
body,
body p,
body a,
body span,
body button,
body input,
body textarea,
body select,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.elementor-widget-container,
.elementor-heading-title,
.elementor-button,
.woocommerce,
.woocommerce *:not(i):not(svg):not(path) {
  font-family: var(--hp-font) !important;
  letter-spacing: 0 !important;
}

.hp-hero,
.hp-page-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(104,175,166,.10), transparent 34vw),
    radial-gradient(circle at 10% 16%, rgba(246,251,250,.96), transparent 28vw),
    linear-gradient(135deg, rgba(255,255,255,.99), rgba(250,253,252,.97)) !important;
  color: var(--hp-ink) !important;
}

.hp-hero::after,
.hp-page-hero::after {
  opacity: .38;
}

.hp-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.22;
}

.hp-hero p {
  max-width: 700px;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 2;
}

.elementor-29 .elementor-element-724cb05 {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 28px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.elementor-29 .elementor-element-724cb05 > a.elementor-element {
  width: auto !important;
  min-width: 0 !important;
  min-height: 178px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 20px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  border: 1px solid rgba(104,175,166,.16) !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 14px 34px rgba(16,24,23,.07) !important;
  overflow: hidden !important;
}

.elementor-29 .elementor-element-724cb05 > a.elementor-element:hover {
  transform: translateY(-3px);
  border-color: rgba(104,175,166,.32) !important;
  box-shadow: 0 20px 46px rgba(16,24,23,.10) !important;
}

.elementor-29 .elementor-element-724cb05 .elementor-widget-image,
.elementor-29 .elementor-element-724cb05 .elementor-widget-heading,
.elementor-29 .elementor-element-724cb05 .elementor-widget-container {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.elementor-29 .elementor-element-724cb05 img {
  display: block !important;
  width: auto !important;
  max-width: 112px !important;
  height: 82px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  mix-blend-mode: multiply;
}

.elementor-29 .elementor-element-724cb05 h5,
.elementor-29 .elementor-element-724cb05 .elementor-heading-title {
  margin: 0 !important;
  color: var(--hp-teal) !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

@media (max-width: 980px) {
  .elementor-29 .elementor-element-724cb05 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: min(720px, calc(100vw - 28px)) !important;
    gap: 14px !important;
  }

  .elementor-29 .elementor-element-724cb05 > a.elementor-element {
    min-height: 158px !important;
    border-radius: 22px !important;
  }
}

@media (max-width: 560px) {
  .hp-hero h1 {
    font-size: 34px;
  }

  .elementor-29 .elementor-element-724cb05 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .elementor-29 .elementor-element-724cb05 > a.elementor-element {
    min-height: 136px !important;
    padding: 14px 8px !important;
    border-radius: 18px !important;
  }

  .elementor-29 .elementor-element-724cb05 img {
    max-width: 78px !important;
    height: 58px !important;
  }

  .elementor-29 .elementor-element-724cb05 h5,
  .elementor-29 .elementor-element-724cb05 .elementor-heading-title {
    font-size: 19px !important;
  }
}

/* Final theme-wide typography and smaller logo pass. */
body,
body :where(p, a, span, strong, b, small, label, button, input, textarea, select, option, h1, h2, h3, h4, h5, h6, li, td, th, figcaption, blockquote),
.elementor :where(.elementor-heading-title, .elementor-widget-container, .elementor-button, .elementor-icon-box-title, .elementor-icon-box-description),
.woocommerce :where(p, a, span, label, button, input, textarea, select, h1, h2, h3, h4, h5, h6, li, td, th, .price, .amount, .woocommerce-loop-product__title, .product_title) {
  font-family: var(--hp-font) !important;
  font-synthesis-weight: none;
  letter-spacing: 0 !important;
}

.hp-logo-img {
  max-width: 118px !important;
  height: auto !important;
}

.hp-header-inner {
  min-height: 66px;
}

@media (max-width: 560px) {
  .hp-logo-img {
    max-width: 88px !important;
  }

  .hp-header-inner {
    min-height: 60px;
  }
}

/* Homepage UX cleanup: keep the new custom page and suppress the old Elementor duplicate. */
body.home .elementor-29 {
  display: none !important;
}

body.home .hp-hero {
  min-height: auto;
  padding-top: 128px;
  padding-bottom: 58px;
}

body.home .hp-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 54px);
}

body.home .hp-hero-copy {
  width: 100%;
  max-width: min(720px, 100%);
  justify-self: left;
  text-align: right;
  padding: clamp(18px, 3vw, 34px) 0;
}

body.home .hp-hero h1,
body.home .hp-hero p {
  margin-left: 0;
  margin-right: 0;
}

body.home .hp-hero h1 {
  max-width: 980px;
}

body.home .hp-hero p {
  max-width: 900px;
}

body.home .hp-hero-actions,
body.home .hp-hero-slider-dots {
  justify-content: flex-start;
}

body.home .hp-hero h1 {
  max-width: 680px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.32;
}

body.home .hp-hero p {
  max-width: 650px;
  font-size: clamp(16px, 1.45vw, 19px);
}

body.home .hp-hero-panel {
  width: min(980px, 100%);
  justify-self: center;
  min-height: 360px;
  padding: 22px;
}

body.home .hp-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home .hp-section,
body.home .hp-cta-band {
  margin-top: 48px;
}

body.home .hp-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home .hp-product-card {
  border-radius: 20px;
}

body.home .hp-product-media {
  aspect-ratio: 1 / 1;
}

body.home .hp-product-body {
  padding: 14px;
}

body.home .hp-product-body h3 {
  font-size: 15px;
}

body.home .hp-category-card,
body.home .hp-assurance-card,
body.home .hp-feature-cards div,
body.home .hp-quote-grid figure,
body.home .hp-faq-list details {
  border-radius: 20px;
}

body.home .hp-footer {
  margin-top: 52px;
}

@media (max-width: 1100px) {
  body.home .hp-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home .hp-value-icons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body.home .hp-hero {
    padding-top: 132px;
  }

  body.home .hp-hero-inner {
    grid-template-columns: 1fr;
  }

  body.home .hp-hero-panel {
    min-height: auto;
  }

  body.home .hp-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.home .hp-hero {
    margin-top: -84px;
    padding-top: 124px;
    padding-bottom: 34px;
  }

  body.home .hp-hero h1 {
    font-size: 32px;
    line-height: 1.42;
  }

  body.home .hp-hero p {
    font-size: 15px;
    line-height: 2;
  }

  body.home .hp-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.home .hp-hero-actions .hp-button,
  body.home .hp-hero-actions .hp-ghost {
    width: 100%;
    justify-content: center;
  }

  body.home .hp-hero-panel {
    padding: 16px;
    border-radius: 22px;
  }

  body.home .hp-product-orbit {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .hp-product-orbit span,
  body.home .hp-panel-stats div {
    padding: 12px 8px;
    border-radius: 14px;
    font-size: 13px;
  }

  body.home .hp-panel-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.home .hp-panel-stats b {
    font-size: 20px;
  }

  body.home .hp-trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .hp-trust-inner div {
    padding: 16px 12px;
  }

  body.home .hp-products-grid,
  body.home .hp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  body.home .hp-value-icons-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.home .hp-value-icon-card {
    min-height: 0;
    padding: 18px 16px 20px;
  }

  body.home .hp-value-icon-card img {
    width: 126px;
    margin-bottom: 12px;
  }

  body.home .hp-product-body {
    padding: 10px;
  }

  body.home .hp-product-body h3 {
    min-height: 44px;
    font-size: 13px;
    line-height: 1.65;
  }

  body.home .hp-product-price {
    font-size: 12px;
  }

  body.home .hp-product-action {
    margin-top: 8px;
    padding: 8px 6px;
    font-size: 12px;
  }

  body.home .hp-category-card {
    min-height: 118px;
    padding: 16px 14px;
  }

  body.home .hp-category-card span {
    font-size: 18px;
  }

  body.home .hp-section,
  body.home .hp-cta-band {
    margin-top: 34px;
  }
}

@media (max-width: 360px) {
  body.home .hp-products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Second responsive pass: tighter editorial rhythm and compact commerce cards. */
html,
body {
  background-color: #fff !important;
}

body.home .hp-section h2,
body.home .hp-cta-band h2 {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.45;
}

body.home .hp-section-head {
  align-items: center;
}

body.home .hp-section-head > div {
  min-width: 0;
}

body.home .hp-products .hp-section-head h2 {
  max-width: 760px;
}

body.home .hp-products-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body.home .hp-product-media {
  aspect-ratio: 4 / 3;
}

body.home .hp-product-media img {
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

body.home .hp-product-body h3 {
  min-height: 52px;
}

body.home .hp-brand-message p,
body.home .hp-feature-copy p,
body.home .hp-assurance-card p,
body.home .hp-story-copy p {
  font-size: 16px;
}

body.home .hp-assurance {
  align-items: start;
}

body.home .hp-assurance-card:not(.hp-assurance-main) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 188px;
  padding: 20px;
}

body.home .hp-assurance-card:not(.hp-assurance-main) b {
  margin-bottom: 28px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

body.home .hp-assurance-card:not(.hp-assurance-main) span {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  body.home .hp-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home .hp-section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  body.home .hp-text-link {
    justify-self: start;
    font-size: 14px;
  }

  body.home .hp-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  body.home .hp-products-cta {
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
    text-align: center;
  }

  body.home .hp-products-cta .hp-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  body.home .hp-section h2,
  body.home .hp-cta-band h2 {
    font-size: 25px;
    line-height: 1.55;
  }

  body.home .hp-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .hp-product-media {
    aspect-ratio: 1 / 1;
  }

  body.home .hp-product-media img {
    padding: 8px;
  }

  body.home .hp-products-cta b {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* Blog, recipe posts, and archive templates. */
body.single-post .hp-page-hero,
body.category .hp-page-hero,
body.tag .hp-page-hero,
body.archive:not(.tax-product_cat) .hp-page-hero,
body.search-results .hp-page-hero,
body.blog .hp-page-hero {
  min-height: auto;
  padding-bottom: 58px;
}

body.single-post .hp-page-hero-inner,
body.category .hp-page-hero-inner,
body.tag .hp-page-hero-inner,
body.archive:not(.tax-product_cat) .hp-page-hero-inner,
body.search-results .hp-page-hero-inner,
body.blog .hp-page-hero-inner {
  max-width: 920px;
}

body.single-post main#content.site-main,
body.category main#content.site-main,
body.tag main#content.site-main,
body.archive:not(.tax-product_cat) main#content.site-main,
body.search-results main#content.site-main,
body.blog main#content.site-main {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  margin-bottom: 64px;
}

body.single-post main#content .page-header,
body.category main#content .page-header,
body.tag main#content .page-header,
body.archive:not(.tax-product_cat) main#content .page-header,
body.search-results main#content .page-header,
body.blog main#content .page-header {
  display: none;
}

body.single-post main#content .page-content {
  width: min(920px, calc(100vw - 32px)) !important;
  max-width: 920px !important;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,253,252,.96));
  box-shadow: 0 28px 90px rgba(7,20,18,.09);
}

body.single-post main#content .page-content > h2:first-child {
  display: none;
}

.hp-recipe-single-media {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(24px, 4vw, 42px);
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 30px;
  background: rgba(104,175,166,.08);
  box-shadow: 0 24px 70px rgba(7,20,18,.10);
}

.hp-recipe-single-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(6,17,16,.72), rgba(6,17,16,0));
  pointer-events: none;
}

.hp-recipe-single-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.hp-recipe-single-media figcaption {
  position: absolute;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 30px);
  left: clamp(16px, 4vw, 32px);
  z-index: 1;
  display: grid;
  gap: 8px;
  color: #fff;
}

.hp-recipe-single-media span,
.hp-recipe-single-media small {
  justify-self: start;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hp-recipe-single-media span {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hp-recipe-single-media strong {
  color: #fff;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 800;
}

.hp-recipe-single-media small {
  padding: 5px 10px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  line-height: 1.6;
}

body.single-post .page-content h2,
body.single-post .page-content h3,
body.single-post .comment-reply-title {
  color: #164846;
  font-weight: 800;
  letter-spacing: 0;
}

body.single-post .page-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
}

body.single-post .page-content h3 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
}

body.single-post .page-content p,
body.single-post .page-content li,
body.single-post .comment-notes,
body.single-post .comment-form label {
  color: var(--hp-muted);
  font-size: 18px;
  line-height: 2.15;
}

body.single-post .page-content > p:first-of-type {
  margin-top: 0;
  padding: 18px 20px;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 22px;
  background: rgba(224,239,237,.34);
  color: #315d59;
}

body.single-post .page-content ul,
body.single-post .page-content ol {
  margin: 0 0 24px;
  padding: 18px 34px 18px 18px;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
}

body.single-post .page-content li::marker {
  color: var(--hp-teal-strong);
  font-weight: 800;
}

body.single-post .page-content a:not(.hp-button):not(.hp-ghost) {
  color: var(--hp-teal-strong);
  font-weight: 700;
  text-decoration: none;
}

body.single-post .post-tags {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(104,175,166,.16);
}

body.single-post .tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--hp-muted);
  font-size: 14px;
}

body.single-post .tag-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 999px;
  background: rgba(104,175,166,.10);
  color: var(--hp-teal-strong);
  text-decoration: none;
}

.hp-post-cta {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(104,175,166,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(104,175,166,.20), transparent 32%),
    linear-gradient(135deg, #fff, #edf8f6);
  box-shadow: 0 22px 62px rgba(7,20,18,.08);
}

.hp-post-cta::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -95px;
  width: 260px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}

.hp-post-cta > * {
  position: relative;
  z-index: 1;
}

.hp-post-cta span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--hp-teal-strong);
  font-size: 14px;
  font-weight: 800;
}

body.single-post .page-content .hp-post-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.hp-post-cta p {
  max-width: 720px;
  margin: 10px 0 18px;
}

.hp-post-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.single-post .comments-area {
  width: min(920px, calc(100vw - 32px));
  max-width: 920px;
  margin: 22px auto 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 60px rgba(7,20,18,.06);
}

body.single-post .comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.single-post .comment-notes,
body.single-post .comment-form-comment,
body.single-post .comment-form-url,
body.single-post .comment-form-cookies-consent,
body.single-post .form-submit {
  grid-column: 1 / -1;
}

body.single-post .comment-form input:not([type="checkbox"]),
body.single-post .comment-form textarea {
  width: 100%;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 18px;
  background: rgba(248,253,252,.94);
  color: var(--hp-ink);
}

body.single-post .comment-form input:not([type="checkbox"]) {
  min-height: 48px;
}

body.single-post .form-submit .submit {
  min-height: 48px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--hp-teal);
  color: #fff;
  font-family: var(--hp-font);
  font-weight: 800;
}

body.category main#content .page-content,
body.tag main#content .page-content,
body.archive:not(.tax-product_cat) main#content .page-content,
body.search-results main#content .page-content,
body.blog main#content .page-content {
  width: var(--hp-container) !important;
  max-width: var(--hp-container) !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin: 0 auto;
}

body.category main#content article.post,
body.tag main#content article.post,
body.archive:not(.tax-product_cat) main#content article.post,
body.search-results main#content article.post,
body.blog main#content article.post {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 238px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 58px rgba(7,20,18,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.category main#content article.post::before,
body.tag main#content article.post::before,
body.archive:not(.tax-product_cat) main#content article.post::before,
body.search-results main#content article.post::before,
body.blog main#content article.post::before {
  content: "طعم‌نامه";
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(104,175,166,.12);
  color: var(--hp-teal-strong);
  font-size: 12px;
  font-weight: 800;
}

body.category main#content article.post:hover,
body.tag main#content article.post:hover,
body.archive:not(.tax-product_cat) main#content article.post:hover,
body.search-results main#content article.post:hover,
body.blog main#content article.post:hover {
  transform: translateY(-3px);
  border-color: rgba(104,175,166,.32);
  box-shadow: 0 26px 70px rgba(7,20,18,.10);
}

body.category main#content article.post .entry-title,
body.tag main#content article.post .entry-title,
body.archive:not(.tax-product_cat) main#content article.post .entry-title,
body.search-results main#content article.post .entry-title,
body.blog main#content article.post .entry-title {
  margin: 0;
  font-size: 21px;
  line-height: 1.7;
  font-weight: 800;
}

body.category main#content article.post .entry-title a,
body.tag main#content article.post .entry-title a,
body.archive:not(.tax-product_cat) main#content article.post .entry-title a,
body.search-results main#content article.post .entry-title a,
body.blog main#content article.post .entry-title a {
  color: var(--hp-ink);
  text-decoration: none;
}

body.category main#content article.post p,
body.tag main#content article.post p,
body.archive:not(.tax-product_cat) main#content article.post p,
body.search-results main#content article.post p,
body.blog main#content article.post p {
  margin: 12px 0 0;
  color: var(--hp-muted);
  font-size: 15px;
  line-height: 2;
}

body.category main#content article.post::after,
body.tag main#content article.post::after,
body.archive:not(.tax-product_cat) main#content article.post::after,
body.search-results main#content article.post::after,
body.blog main#content article.post::after {
  content: "خواندن مطلب";
  display: inline-flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--hp-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

body.category main#content .pagination,
body.tag main#content .pagination,
body.archive:not(.tax-product_cat) main#content .pagination,
body.search-results main#content .pagination,
body.blog main#content .pagination {
  width: var(--hp-container);
  margin: 24px auto 0;
  padding: 14px;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
}

body.category main#content .pagination a,
body.tag main#content .pagination a,
body.archive:not(.tax-product_cat) main#content .pagination a,
body.search-results main#content .pagination a,
body.blog main#content .pagination a {
  color: var(--hp-teal-strong);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  body.category main#content .page-content,
  body.tag main#content .page-content,
  body.archive:not(.tax-product_cat) main#content .page-content,
  body.search-results main#content .page-content,
  body.blog main#content .page-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.single-post main#content .page-content,
  body.single-post .comments-area {
    border-radius: 24px;
  }

  body.single-post .page-content p,
  body.single-post .page-content li,
  body.single-post .comment-notes,
  body.single-post .comment-form label {
    font-size: 15px;
    line-height: 2;
  }

  body.single-post .comment-form,
  body.category main#content .page-content,
  body.tag main#content .page-content,
  body.archive:not(.tax-product_cat) main#content .page-content,
  body.search-results main#content .page-content,
  body.blog main#content .page-content {
    grid-template-columns: 1fr;
  }

  .hp-post-cta div {
    display: grid;
  }

  .hp-post-cta .hp-button,
  .hp-post-cta .hp-ghost {
    justify-content: center;
    width: 100%;
  }
}

/* SEO + sales content engine: recipe and usage modules. */
.hp-recipes,
.hp-recipe-hub,
.hp-category-usage {
  position: relative;
}

.hp-recipe-hub {
  margin-top: 124px;
}

.hp-recipe-layout {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
}

.hp-recipe-lead,
.hp-recipe-card,
.hp-recipe-hub-intro,
.hp-audience-grid > div,
.hp-content-roadmap,
.hp-category-usage {
  border: 1px solid rgba(104,175,166,.16);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 48px rgba(16,24,23,.06);
}

.hp-recipe-lead {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
}

.hp-recipe-lead::after {
  content: "";
  position: absolute;
  left: -72px;
  bottom: -88px;
  width: 230px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .09;
  pointer-events: none;
}

.hp-recipe-lead > * {
  position: relative;
  z-index: 1;
}

.hp-recipe-lead span,
.hp-recipe-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(104,175,166,.12);
  color: var(--hp-teal-strong);
  font-size: 13px;
  font-weight: 600;
}

.hp-recipe-lead h3,
.hp-recipe-card h3 {
  margin: 0;
  color: var(--hp-ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.55;
  font-weight: 400;
}

.hp-recipe-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.hp-recipe-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hp-recipe-lead p,
.hp-recipe-card p,
.hp-recipe-hub-intro p,
.hp-category-usage p {
  color: var(--hp-muted);
  line-height: 2.05;
}

.hp-recipe-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hp-recipe-pills a,
.hp-usage-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 999px;
  background: #fff;
  color: var(--hp-teal-strong);
  text-decoration: none;
  font-weight: 600;
}

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

.hp-recipe-grid-wide {
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hp-recipe-card {
  display: flex;
  min-height: 232px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hp-recipe-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 18px;
  background: rgba(238,248,246,.72);
  text-decoration: none;
}

.hp-recipe-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.hp-recipe-card:hover .hp-recipe-card-media img {
  transform: scale(1.035);
}

.hp-recipe-card:hover {
  transform: translateY(-3px);
  border-color: rgba(104,175,166,.34);
  box-shadow: 0 26px 62px rgba(16,24,23,.10);
}

.hp-recipe-card p {
  margin: 12px 0 18px;
  font-size: 15px;
}

.hp-recipe-card .hp-text-link,
.hp-recipe-card .hp-button {
  margin-top: auto;
}

.hp-recipe-hub-intro,
.hp-content-roadmap {
  padding: 30px;
  border-radius: 30px;
}

.hp-recipe-hub-intro p {
  max-width: 920px;
  font-size: 17px;
}

.hp-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hp-audience-grid > div {
  min-height: 160px;
  padding: 20px;
  border-radius: 22px;
}

.hp-audience-grid b {
  display: block;
  margin-bottom: 12px;
  color: var(--hp-ink);
  font-size: 18px;
}

.hp-audience-grid span,
.hp-content-roadmap li {
  color: var(--hp-muted);
  line-height: 2;
}

.hp-content-roadmap {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 22px;
}

.hp-recipe-library {
  margin-top: 22px;
}

.hp-recipe-library .hp-section-head {
  margin-bottom: 18px;
}

.hp-recipe-library .hp-section-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--hp-muted);
  line-height: 2;
}

.hp-recipe-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hp-recipe-mini-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 46px rgba(16,24,23,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hp-recipe-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(104,175,166,.34);
  box-shadow: 0 26px 62px rgba(16,24,23,.09);
}

.hp-recipe-mini-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(104,175,166,.08);
  text-decoration: none;
}

.hp-recipe-mini-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-recipe-mini-media-fallback {
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(104, 175, 166, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(238, 248, 246, .74)),
    url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/72% no-repeat;
}

.hp-recipe-mini-media-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(16,24,23,.2));
  pointer-events: none;
}

.hp-recipe-mini-media-fallback img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-recipe-mini-media-fallback span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--hp-teal-strong);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.hp-recipe-mini-meta {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hp-recipe-mini-meta span,
.hp-recipe-mini-meta small {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.6;
}

.hp-recipe-mini-meta span {
  background: rgba(104,175,166,.12);
  color: var(--hp-teal-strong);
  font-weight: 700;
}

.hp-recipe-mini-meta small {
  color: var(--hp-muted);
  background: rgba(104,175,166,.06);
}

.hp-recipe-mini-card h3 {
  margin: 0;
  color: var(--hp-ink);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.hp-recipe-mini-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hp-recipe-mini-card p {
  margin: 10px 0 18px;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 2;
}

.hp-recipe-mini-card .hp-text-link {
  margin-top: auto;
}

.hp-magazine-shell {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.hp-magazine-shell .hp-section-head {
  padding: 26px;
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 62px rgba(7,20,18,.07);
}

.hp-magazine-shell .hp-section-head p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--hp-muted);
  line-height: 2;
}

.hp-magazine-chips {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.hp-magazine-chips a {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--hp-teal-strong);
  text-decoration: none;
  font-weight: 800;
}

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

.hp-static-page {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

body.hp-static-rendered main#content.site-main {
  display: none;
}

.hp-static-intro,
.hp-static-card,
.hp-static-faq details,
.hp-static-cta {
  border: 1px solid rgba(104,175,166,.16);
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 62px rgba(7,20,18,.07);
}

.hp-static-intro {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 24px;
  align-items: end;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 18%, rgba(104,175,166,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,251,250,.94));
}

.hp-static-intro::after {
  content: "";
  position: absolute;
  left: -92px;
  bottom: -116px;
  width: 310px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .055;
  pointer-events: none;
}

.hp-static-intro > * {
  position: relative;
  z-index: 1;
}

.hp-static-intro h2 {
  max-width: 780px;
  font-size: clamp(30px, 4.6vw, 54px);
}

.hp-static-intro p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--hp-muted);
  font-size: 18px;
  line-height: 2.15;
}

.hp-static-stats {
  display: grid;
  gap: 10px;
}

.hp-static-stats span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(104,175,166,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  color: var(--hp-teal-strong);
  font-weight: 800;
}

.hp-static-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hp-static-contact-us .hp-static-grid,
.hp-static-about-us .hp-static-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hp-static-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 174px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 26px;
  color: var(--hp-ink);
  text-decoration: none;
}

.hp-static-contact-us .hp-static-card,
.hp-static-about-us .hp-static-card {
  min-height: 148px;
  justify-content: center;
  gap: 12px;
  padding: 22px 24px;
  text-align: center;
}

.hp-static-card::after {
  content: "";
  position: absolute;
  left: -68px;
  bottom: -88px;
  width: 190px;
  aspect-ratio: 1;
  background: url("/wp-content/mu-plugins/hoseinian-polish/assets/hoseinian-pattern.png") center/contain no-repeat;
  opacity: .04;
  pointer-events: none;
}

.hp-static-card b,
.hp-static-card span {
  position: relative;
  z-index: 1;
}

.hp-static-card b {
  color: var(--hp-ink);
  font-size: 21px;
  line-height: 1.6;
}

.hp-static-contact-us .hp-static-card b,
.hp-static-about-us .hp-static-card b {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
}

.hp-static-card span {
  margin-top: 16px;
  color: var(--hp-muted);
  font-size: 15px;
  line-height: 2;
}

.hp-static-contact-us .hp-static-card span,
.hp-static-about-us .hp-static-card span {
  max-width: 360px;
  margin: 0 auto;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 2;
  overflow-wrap: anywhere;
}

.hp-static-about-us .hp-static-cta,
.hp-static-contact-us .hp-static-cta {
  align-items: center;
}

a.hp-static-card {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

a.hp-static-card:hover {
  transform: translateY(-3px);
  border-color: rgba(104,175,166,.34);
  box-shadow: 0 26px 72px rgba(7,20,18,.10);
}

.hp-static-faq {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hp-static-faq details {
  padding: 18px 20px;
  border-radius: 24px;
}

.hp-static-faq summary {
  cursor: pointer;
  color: var(--hp-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.8;
}

.hp-static-faq p {
  margin: 12px 0 0;
  color: var(--hp-muted);
  line-height: 2.05;
}

.hp-static-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(104,175,166,.16), transparent 32%),
    rgba(255,255,255,.94);
}

.hp-static-cta span {
  display: block;
  margin-bottom: 6px;
  color: var(--hp-teal-strong);
  font-size: 13px;
  font-weight: 800;
}

.hp-static-cta b {
  color: var(--hp-ink);
  font-size: 19px;
  line-height: 1.8;
}

.hp-static-cta > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hp-content-roadmap ol {
  margin: 0;
  padding: 0 24px 0 0;
}

.hp-category-usage {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
}

.hp-category-usage h2 {
  margin: 0;
}

.hp-usage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1100px) {
  .hp-recipe-grid-wide,
  .hp-audience-grid,
  .hp-recipe-library-grid,
  .hp-magazine-grid,
  .hp-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-static-intro {
    grid-template-columns: 1fr;
  }

  .hp-static-contact-us .hp-static-grid,
  .hp-static-about-us .hp-static-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hp-recipe-hub {
    margin-top: 96px;
  }

  .hp-recipe-layout,
  .hp-content-roadmap,
  .hp-category-usage {
    grid-template-columns: 1fr;
  }

  .hp-static-contact-us .hp-static-grid,
  .hp-static-about-us .hp-static-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hp-recipe-hub {
    margin-top: 82px;
  }

  .hp-recipe-grid,
  .hp-recipe-grid-wide,
  .hp-audience-grid,
  .hp-recipe-library-grid,
  .hp-magazine-grid,
  .hp-static-grid {
    grid-template-columns: 1fr;
  }

  .hp-recipe-lead,
  .hp-recipe-card,
  .hp-recipe-mini-card,
  .hp-recipe-hub-intro,
  .hp-content-roadmap,
  .hp-category-usage {
    padding: 18px;
    border-radius: 22px;
  }

  .hp-static-page {
    margin-top: -22px;
  }

  .hp-static-intro,
  .hp-static-card,
  .hp-static-cta,
  .hp-static-faq details {
    padding: 18px;
    border-radius: 22px;
  }

  .hp-static-intro p {
    font-size: 15px;
    line-height: 2;
  }

  .hp-static-stats {
    grid-template-columns: 1fr;
  }

  .hp-static-card {
    min-height: 132px;
  }

  .hp-static-card b {
    font-size: 18px;
  }

  .hp-static-cta,
  .hp-static-cta > div:last-child {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hp-static-cta .hp-button,
  .hp-static-cta .hp-ghost {
    width: 100%;
    justify-content: center;
  }

  .hp-recipe-card {
    min-height: 0;
  }

  .hp-content-roadmap ol {
    padding-right: 20px;
  }
}

/* Compact mobile shop pass: app-like buying surface. */
@media (max-width: 560px) {
  body.woocommerce-shop .hp-page-hero,
  body.tax-product_cat .hp-page-hero {
    padding-bottom: 34px;
  }

  body.woocommerce-shop .hp-shop-console,
  body.tax-product_cat .hp-shop-console {
    margin-bottom: 16px;
  }

  body.woocommerce-shop .hp-shop-console-head,
  body.tax-product_cat .hp-shop-console-head {
    gap: 14px;
    margin-bottom: 14px;
  }

  body.woocommerce-shop .hp-shop-console-head p,
  body.tax-product_cat .hp-shop-console-head p {
    display: none;
  }

  body.woocommerce-shop .hp-shop-filter,
  body.tax-product_cat .hp-shop-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  body.woocommerce-shop .hp-shop-filter label:first-child,
  body.tax-product_cat .hp-shop-filter label:first-child,
  body.woocommerce-shop .hp-shop-filter-actions,
  body.tax-product_cat .hp-shop-filter-actions {
    grid-column: 1 / -1;
  }

  body.woocommerce-shop .hp-shop-filter input,
  body.woocommerce-shop .hp-shop-filter select,
  body.tax-product_cat .hp-shop-filter input,
  body.tax-product_cat .hp-shop-filter select {
    min-height: 42px;
    border-radius: 14px;
    font-size: 13px;
  }

  body.woocommerce-shop .hp-shop-chips,
  body.tax-product_cat .hp-shop-chips {
    flex-wrap: nowrap;
    margin: 12px -16px 0;
    padding: 0 16px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.woocommerce-shop .hp-shop-chips::-webkit-scrollbar,
  body.tax-product_cat .hp-shop-chips::-webkit-scrollbar {
    display: none;
  }

  body.woocommerce-shop .hp-shop-chips a,
  body.tax-product_cat .hp-shop-chips a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 11px;
    font-size: 13px;
  }

  body.woocommerce-shop .hp-shop-use-grid,
  body.tax-product_cat .hp-shop-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 12px;
  }

  body.woocommerce-shop .hp-shop-use-grid a,
  body.tax-product_cat .hp-shop-use-grid a {
    padding: 13px;
    border-radius: 18px;
  }

  body.woocommerce-shop .hp-shop-use-grid b,
  body.tax-product_cat .hp-shop-use-grid b {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.5;
  }

  body.woocommerce-shop .hp-shop-use-grid span,
  body.tax-product_cat .hp-shop-use-grid span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body.woocommerce-shop .hp-shop-service-row,
  body.tax-product_cat .hp-shop-service-row {
    display: flex;
    gap: 9px;
    margin: 12px -16px 0;
    padding: 0 16px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.woocommerce-shop .hp-shop-service-row::-webkit-scrollbar,
  body.tax-product_cat .hp-shop-service-row::-webkit-scrollbar {
    display: none;
  }

  body.woocommerce-shop .hp-shop-service-row div,
  body.tax-product_cat .hp-shop-service-row div {
    flex: 0 0 220px;
    padding: 12px;
    border-radius: 16px;
  }

  body.woocommerce-shop .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.woocommerce-shop ul.products,
  body.tax-product_cat ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  body.woocommerce-shop .woocommerce ul.products li.product,
  body.tax-product_cat .woocommerce ul.products li.product,
  body.woocommerce-shop ul.products li.product,
  body.tax-product_cat ul.products li.product {
    min-height: 330px;
    padding: 10px !important;
    border-radius: 18px;
  }

  body.woocommerce-shop .woocommerce ul.products li.product a img,
  body.tax-product_cat .woocommerce ul.products li.product a img,
  body.woocommerce-shop ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img {
    height: 150px;
    padding: 6px;
    border-radius: 14px;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link,
  body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link {
    grid-template-rows: 150px auto auto;
    gap: 8px;
  }

  body.woocommerce-shop .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
    min-height: 44px;
    font-size: 13px;
  }

  body.woocommerce-shop .woocommerce ul.products li.product .price,
  body.tax-product_cat .woocommerce ul.products li.product .price,
  body.woocommerce-shop ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price {
    min-height: 28px;
    font-size: 12px;
  }

  body.woocommerce-shop .woocommerce ul.products li.product .button,
  body.tax-product_cat .woocommerce ul.products li.product .button,
  body.woocommerce-shop ul.products li.product .button,
  body.tax-product_cat ul.products li.product .button {
    min-height: 38px;
    padding: 9px 7px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  body.woocommerce-shop .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.woocommerce-shop ul.products,
  body.tax-product_cat ul.products {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px) {
  body.woocommerce-shop #main,
  body.tax-product_cat #main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "crumb"
      "intro"
      "sidebar"
      "notices"
      "toolbar"
      "products"
      "pagination";
  }

  body.woocommerce-shop .hp-shop-sidebar,
  body.tax-product_cat .hp-shop-sidebar {
    position: static;
  }

  .hp-shop-sidebar .hp-shop-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-shop-sidebar .hp-shop-filter-title,
  .hp-shop-sidebar .hp-shop-filter label:first-of-type,
  .hp-shop-sidebar .hp-shop-filter-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body.woocommerce-shop #main,
  body.tax-product_cat #main {
    gap: 14px;
  }

  body.woocommerce-shop .hp-shop-console,
  body.tax-product_cat .hp-shop-console {
    padding: 16px;
  }

  .hp-shop-sidebar .hp-shop-filter {
    grid-template-columns: 1fr !important;
    padding: 14px;
    border-radius: 22px;
  }

  .hp-shop-filter-title,
  .hp-shop-sidebar .hp-shop-filter label,
  .hp-shop-sidebar .hp-shop-filter-actions {
    grid-column: auto !important;
  }

  body.woocommerce-shop .woocommerce-result-count,
  body.tax-product_cat .woocommerce-result-count,
  body.woocommerce-shop .woocommerce-ordering,
  body.tax-product_cat .woocommerce-ordering {
    justify-self: stretch;
  }
}

/* Separate scroll-story video section below the homepage hero. */
.hp-hero-slider {
  position: relative;
  min-height: clamp(300px, 34vw, 430px);
  overflow: hidden;
}

.hp-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.hp-hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hp-hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.hp-hero-slider-dots button {
  width: 10px;
  height: 10px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(104,175,166,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
  transition: width .22s ease, background .22s ease, border-color .22s ease;
}

.hp-hero-slider-dots button.is-active {
  width: 28px;
  background: var(--hp-teal);
  border-color: var(--hp-teal);
}

.hp-scrollstory-section,
.hp-hero-scrollstory,
body.home .hp-scrollstory-section,
body.home .hp-hero-scrollstory {
  position: relative;
  overflow: visible;
  --hp-story-gap: clamp(20px, 3vw, 34px);
  --hp-story-stick-top: clamp(94px, 12vh, 118px);
  --hp-story-frame-height: min(627px, 59vh);
  min-height: 220vh;
  height: 220vh;
  margin-top: var(--hp-story-gap);
  padding: 0;
  background: var(--hp-bg) !important;
  color: #fff;
}

.hp-scrollstory-section::before,
.hp-scrollstory-section::after,
.hp-hero-scrollstory::before,
.hp-hero-scrollstory::after {
  display: none;
}

.hp-scrollstory-track {
  position: sticky;
  top: var(--hp-story-stick-top);
  height: var(--hp-story-frame-height);
  min-height: min(60vh, var(--hp-story-frame-height));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  background: #101817;
}

.hp-scrollstory-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hp-scrollstory-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  will-change: transform, opacity;
  transform: scale(1.01);
}

.hp-scrollstory-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 18, 16, .12), rgba(7, 18, 16, .03) 46%, rgba(7, 18, 16, .18));
}

.hp-scrollstory-track::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: #68afa6;
  transition: opacity .7s ease;
}

.hp-scrollstory-section.is-ended .hp-scrollstory-track::after {
  opacity: 1;
}

.hp-scrollstory-start-logo {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transform: translateY(var(--story-start-logo-y, 0)) scale(var(--story-start-logo-scale, 1));
  transition: opacity .18s ease, transform .18s ease;
  will-change: opacity, transform;
}

.hp-scrollstory-start-logo img {
  display: block;
  width: clamp(136px, 14vw, 220px);
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hp-scrollstory-endcard {
  position: absolute;
  inset: 0;
  z-index: 4;
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(1080px, calc(100% - 42px));
  margin: 0 auto;
  padding: clamp(42px, 7vh, 82px) 18px;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}

.hp-scrollstory-endcard.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hp-scrollstory-endcard .hp-kicker {
  margin-bottom: clamp(14px, 2vw, 24px);
  border-color: rgba(255, 255, 255, .52);
  color: #f6fffe;
  background: rgba(104, 175, 166, .2);
}

.hp-scrollstory-endcard h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: 1.18;
  font-weight: 300;
}

.hp-scrollstory-endcard p {
  max-width: 720px;
  margin: clamp(20px, 3vw, 30px) auto 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2.2vw, 27px);
  line-height: 2;
}

.hp-scrollstory-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  direction: rtl;
  pointer-events: none;
  display: grid;
  place-items: center;
  text-align: center;
}

.hp-scrollstory-copy {
  pointer-events: none;
  position: relative;
  background: transparent;
  width: min(900px, calc(100% - 72px));
  height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
}

.hp-scrollstory-step {
  position: absolute;
  inset: 0;
  background: transparent;
  max-width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(78px, 12vh, 120px) 24px clamp(28px, 6vh, 56px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  filter: blur(2px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  text-align: center;
}

.hp-scrollstory-step h1,
.hp-scrollstory-step h2 {
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  font-weight: 300;
}

.hp-scrollstory-step p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .91);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 2;
}

.hp-scrollstory-kicker,
.hp-scrollstory-step .hp-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  border-color: rgba(255, 255, 255, .5);
  color: #f6fffe;
  background: rgba(104, 175, 166, .16);
}

.hp-scrollstory-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(var(--story-brand-y, 26px));
  bottom: clamp(20px, 6vh, 56px);
  z-index: 4;
  width: min(480px, calc(100% - 36px));
  max-width: 430px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .24);
  backdrop-filter: blur(6px);
  color: var(--hp-ink);
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: auto;
  text-align: center;
}

.hp-scrollstory-brand img {
  width: 132px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.hp-scrollstory-brand p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 16px;
  line-height: 1.9;
}

.hp-scrollstory-actions {
  margin-top: 14px;
  justify-content: center;
}

.hp-scrollstory-cta {
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hp-scrollstory-copy {
    width: min(650px, calc(100% - 36px));
    padding: 0;
  }

  .hp-scrollstory-brand {
    left: 50%;
    width: auto;
    max-width: none;
    bottom: 16px;
  }
}

@media (max-width: 760px) {
  .hp-hero-slider {
    min-height: 330px;
  }

  .hp-hero-scrollstory,
  .hp-scrollstory-section,
  body.home .hp-scrollstory-section,
  body.home .hp-hero-scrollstory {
    --hp-story-gap: 18px;
    --hp-story-stick-top: 84px;
    --hp-story-frame-height: min(513px, 57vh);
    min-height: 220vh;
    height: 220vh;
  }

  .hp-scrollstory-copy {
    width: calc(100% - 24px);
    margin: 0;
  }

  .hp-scrollstory-step h1,
  .hp-scrollstory-step h2 {
    font-size: clamp(30px, 7vw, 38px);
  }

  .hp-scrollstory-endcard {
    width: calc(100% - 24px);
    padding: 42px 10px;
  }

  .hp-scrollstory-endcard h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hp-scrollstory-endcard p {
    font-size: 16px;
    line-height: 1.9;
  }

  .hp-scrollstory-step {
    padding: 72px 14px 30px;
  }
}

/* Keep text visually stable on hover. */
.elementor-kit-10 .hp-menu a,
.elementor-kit-10 .hp-menu a:hover,
.elementor-kit-10 .hp-link,
.elementor-kit-10 .hp-link:hover,
.elementor-kit-10 .hp-footer-list a,
.elementor-kit-10 .hp-footer-list a:hover {
  font-weight: 300 !important;
}

.elementor-kit-10 .hp-text-link,
.elementor-kit-10 .hp-text-link:hover,
.elementor-kit-10 .hp-button,
.elementor-kit-10 .hp-button:hover,
.elementor-kit-10 .hp-product-action,
.elementor-kit-10 .hp-product-action:hover,
.elementor-kit-10 .hp-recipe-pills a,
.elementor-kit-10 .hp-recipe-pills a:hover,
.elementor-kit-10 .hp-usage-list a,
.elementor-kit-10 .hp-usage-list a:hover {
  font-weight: 600 !important;
}

.elementor-kit-10 .hp-shop-path-card,
.elementor-kit-10 .hp-shop-path-card:hover,
.elementor-kit-10 .hp-recipe-card h3 a,
.elementor-kit-10 .hp-recipe-card h3 a:hover,
.elementor-kit-10 .hp-category-card,
.elementor-kit-10 .hp-category-card:hover,
.elementor-kit-10 a.hp-static-card,
.elementor-kit-10 a.hp-static-card:hover {
  font-weight: inherit !important;
}

.elementor-kit-10 .hp-shop-path-card span,
.elementor-kit-10 .hp-shop-path-card:hover span {
  color: var(--hp-teal-strong);
  font-weight: 800 !important;
}

.elementor-kit-10 .hp-shop-path-card b,
.elementor-kit-10 .hp-shop-path-card:hover b {
  color: var(--hp-ink);
  font-weight: 600 !important;
}

.elementor-kit-10 .hp-shop-path-card small,
.elementor-kit-10 .hp-shop-path-card:hover small {
  color: var(--hp-muted);
  font-weight: 300 !important;
}

.elementor-kit-10 .hp-recipe-card span,
.elementor-kit-10 .hp-recipe-card:hover span {
  font-weight: 600 !important;
}

.elementor-kit-10 .hp-recipe-card h3,
.elementor-kit-10 .hp-recipe-card:hover h3,
.elementor-kit-10 .hp-recipe-card h3 a,
.elementor-kit-10 .hp-recipe-card:hover h3 a {
  color: var(--hp-ink);
  font-weight: 600 !important;
}

.elementor-kit-10 .hp-recipe-card p,
.elementor-kit-10 .hp-recipe-card:hover p {
  color: var(--hp-muted);
  font-weight: 300 !important;
}

.hp-shop-path-card:hover,
.hp-recipe-card:hover,
.hp-recipe-mini-card:hover,
.hp-shop-use-grid a:hover,
a.hp-static-card:hover,
.elementor-29 .elementor-element-724cb05 > a.elementor-element:hover {
  transform: none !important;
}

/* Site-wide hover audit: hover must never make text heavier. */
.elementor-kit-10 a:hover,
.elementor-kit-10 button:hover,
.elementor-kit-10 [role="button"]:hover {
  font-weight: inherit !important;
}

.elementor-kit-10 .hp-ghost,
.elementor-kit-10 .hp-ghost:hover,
.elementor-kit-10 .hp-ghost-light,
.elementor-kit-10 .hp-ghost-light:hover {
  font-weight: 300 !important;
}

.elementor-kit-10 .hp-button,
.elementor-kit-10 .hp-button:hover,
.elementor-kit-10 button.hp-button,
.elementor-kit-10 button.hp-button:hover,
.elementor-kit-10 .woocommerce a.button,
.elementor-kit-10 .woocommerce a.button:hover,
.elementor-kit-10 .woocommerce button.button,
.elementor-kit-10 .woocommerce button.button:hover,
.elementor-kit-10 .woocommerce input.button,
.elementor-kit-10 .woocommerce input.button:hover {
  font-weight: 600 !important;
}

.elementor-kit-10 .hp-product-card a:hover,
.elementor-kit-10 .hp-category-card:hover,
.elementor-kit-10 .hp-shop-chips a:hover,
.elementor-kit-10 .hp-shop-use-grid a:hover,
.elementor-kit-10 .hp-recipe-mini-card a:hover,
.elementor-kit-10 .hp-footer a:hover,
.elementor-kit-10 .page-content a:hover {
  font-weight: inherit !important;
}

.elementor-kit-10.single-post .page-content a:not(.hp-button):not(.hp-ghost),
.elementor-kit-10.single-post .page-content a:not(.hp-button):not(.hp-ghost):hover {
  font-weight: 700 !important;
}

/* Persian add-to-cart confirmation. */
.hp-cart-toast {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(96px, env(safe-area-inset-bottom));
  z-index: 100000;
  width: min(420px, calc(100vw - 28px));
  padding: 24px;
  direction: rtl;
  text-align: right;
  border: 1px solid rgba(104,175,166,.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(104,175,166,.14), transparent 34%),
    rgba(255,255,255,.96);
  box-shadow: 0 26px 78px rgba(16,24,23,.16);
  color: var(--hp-ink);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 16px, 0);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.hp-cart-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.hp-cart-toast-close {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(104,175,166,.32);
  border-radius: 50%;
  background: rgba(104,175,166,.10);
  color: var(--hp-teal-strong);
  font-size: 30px;
  line-height: 1;
}

.hp-cart-toast-kicker {
  display: block;
  margin-left: 48px;
  color: var(--hp-teal-strong);
  font-size: 14px;
  font-weight: 600;
}

.hp-cart-toast strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--hp-teal);
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.45;
  font-weight: 600;
}

.hp-cart-toast p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 17px;
  line-height: 1.9;
}

.hp-cart-toast-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.hp-cart-toast-actions .hp-button,
.hp-cart-toast-actions .hp-ghost {
  min-height: 52px;
  width: 100%;
  padding-inline: 14px;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .hp-cart-toast {
    right: 14px;
    bottom: 86px;
    padding: 20px;
    border-radius: 24px;
  }

  .hp-cart-toast-actions {
    grid-template-columns: 1fr;
  }
}

/* Brand color guard: remove WordPress/third-party pink accents from the public UI. */
:root {
  --wp--preset--color--pale-pink: var(--hp-teal-soft);
  --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, var(--hp-teal-soft), var(--hp-teal));
  --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, #ffffff, var(--hp-teal));
  accent-color: var(--hp-teal);
}

.hp-menu-toggle,
.hp-menu-toggle:hover,
.hp-menu-toggle:focus,
.hp-menu-toggle:active,
.hp-header.is-open .hp-menu-toggle,
body .has-pale-pink-background-color,
body .has-vivid-red-background-color,
body .has-blush-light-purple-gradient-background,
body .has-blush-bordeaux-gradient-background {
  border-color: rgba(104,175,166,.42) !important;
  background: rgba(104,175,166,.12) !important;
  background-color: rgba(104,175,166,.12) !important;
  color: var(--hp-teal-strong) !important;
  box-shadow: 0 14px 34px rgba(77,175,162,.18) !important;
}

.hp-menu-toggle span,
.hp-menu-toggle:hover span,
.hp-menu-toggle:focus span,
.hp-menu-toggle:active span,
.hp-header.is-open .hp-menu-toggle span {
  background: var(--hp-teal-strong) !important;
}

body .has-pale-pink-color,
body .has-vivid-red-color,
body .has-pale-pink-border-color,
body .has-vivid-red-border-color {
  border-color: rgba(104,175,166,.42) !important;
  color: var(--hp-teal-strong) !important;
}

/* Final polish guards for the current presentation layer. */
body .hp-kicker,
body .hp-hero .hp-kicker,
body .hp-page-hero .hp-kicker,
body .hp-scrollstory-step .hp-kicker,
body .hp-scrollstory-kicker {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: min(92vw, 340px) !important;
  min-height: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: clamp(12px, 1.7vw, 15px) !important;
  line-height: 1.45 !important;
  white-space: normal !important;
  text-align: center !important;
}

body.home .hp-hero .hp-kicker {
  margin-left: auto !important;
  margin-right: 0 !important;
}

body.home .hp-hero .hp-hero-slide h1,
body.home .hp-hero .hp-hero-slide.is-active h1 {
  color: var(--hp-teal-strong) !important;
}

body.home .hp-gift-lab {
  grid-template-columns: 1fr;
  grid-template-areas:
    "visual"
    "copy"
    "cards";
  align-items: stretch;
  gap: clamp(16px, 2vw, 26px);
  padding: clamp(18px, 2vw, 28px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 18%, rgba(104,175,166,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,253,252,.94));
  box-shadow: 0 26px 86px rgba(16,24,23,.08);
}

body.home .hp-gift-lab .hp-feature-copy {
  grid-area: copy;
  align-self: start;
  justify-self: center;
  max-width: 900px;
  padding: clamp(8px, 1.2vw, 16px);
  text-align: center;
}

body.home .hp-gift-lab .hp-feature-copy h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 18px;
  color: #101817;
  font-size: clamp(34px, 4.1vw, 64px);
  line-height: 1.25;
  font-weight: 300;
}

body.home .hp-gift-lab .hp-feature-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 22px;
  color: var(--hp-muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 2.05;
}

body.home .hp-gift-lab-media {
  grid-area: visual;
  position: relative;
  min-height: clamp(360px, 42vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(104,175,166,.14);
  border-radius: 28px;
  background: #f7f4ed;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

body.home .hp-gift-lab-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), transparent 38%),
    linear-gradient(180deg, transparent 68%, rgba(255,255,255,.52));
}

body.home .hp-gift-lab-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

body.home .hp-gift-lab .hp-feature-cards {
  grid-area: cards;
  align-self: start;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.home .hp-gift-lab .hp-feature-cards div {
  min-height: 178px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 46px rgba(16,24,23,.06);
}

body.home .hp-gift-lab .hp-feature-cards b {
  margin-bottom: 14px;
  font-size: clamp(17px, 1.35vw, 21px);
}

body.home .hp-gift-lab .hp-feature-cards span {
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 1100px) {
  body.home .hp-gift-lab {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy"
      "cards";
  }

  body.home .hp-gift-lab-media {
    min-height: clamp(300px, 48vw, 440px);
  }
}

@media (max-width: 760px) {
  body.home .hp-gift-lab {
    padding: 14px;
    border-radius: 24px;
  }

  body.home .hp-gift-lab-media {
    min-height: 260px;
    border-radius: 20px;
  }

  body.home .hp-gift-lab .hp-feature-copy h2 {
    font-size: 30px;
    line-height: 1.45;
  }

  body.home .hp-gift-lab .hp-feature-cards {
    grid-template-columns: 1fr;
  }

  body.home .hp-gift-lab .hp-feature-cards div {
    min-height: 0;
  }
}

body.home .hp-categories {
  margin-top: 60px;
}

body.home .hp-categories .hp-section-head {
  margin-bottom: 28px;
}

body.home .hp-categories .hp-section-head h2 {
  max-width: none;
  color: #111817;
  font-size: clamp(32px, 3.55vw, 52px);
  line-height: 1.28;
  font-weight: 300;
  white-space: nowrap;
}

body.home .hp-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

body.home .hp-category-card {
  min-height: clamp(310px, 25vw, 390px);
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  gap: 14px;
  padding: clamp(16px, 1.6vw, 22px);
  border: 1px solid rgba(104,175,166,.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,253,252,.94)),
    radial-gradient(circle at 50% 12%, rgba(104,175,166,.12), transparent 58%);
  box-shadow: 0 18px 58px rgba(16,24,23,.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

body.home .hp-category-card::after {
  display: none;
}

body.home .hp-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(104,175,166,.3);
  box-shadow: 0 28px 78px rgba(16,24,23,.12);
}

body.home .hp-category-card-media {
  min-height: 168px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

body.home .hp-category-card-media img {
  width: min(88%, 250px);
  max-height: 202px;
  object-fit: contain;
  filter: none;
  transform: translateY(3px);
  transition: transform .34s ease;
}

body.home .hp-category-card:hover .hp-category-card-media img {
  transform: translateY(-4px) scale(1.035);
  filter: none;
}

body.home .hp-category-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  text-align: right;
}

body.home .hp-category-card span {
  color: var(--hp-teal-strong);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.45;
  font-weight: 500;
}

body.home .hp-category-card p {
  margin: 0;
  min-height: 54px;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.85;
}

body.home .hp-category-card b {
  width: fit-content;
  justify-self: start;
  margin-top: 4px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(104,175,166,.11);
  color: var(--hp-teal-strong);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  body.home .hp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.home .hp-categories {
    margin-top: 42px;
  }

  body.home .hp-categories .hp-section-head h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.35;
    white-space: normal;
  }

  body.home .hp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  body.home .hp-category-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(108px, auto) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
  }

  body.home .hp-category-card-media {
    min-height: 108px;
    border-radius: 16px;
  }

  body.home .hp-category-card-media img {
    width: 94%;
    max-height: 100px;
  }

  body.home .hp-category-card span {
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.35;
  }

  body.home .hp-category-card p {
    min-height: 0;
    display: none;
  }

  body.home .hp-category-card b {
    justify-self: stretch;
    margin-top: 0;
    padding: 7px 8px;
    font-size: 11px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  body.home .hp-hero-copy {
    max-width: 100%;
    justify-self: center;
    padding: 22px 0;
    text-align: center;
    justify-items: center;
  }

  body.home .hp-hero-copy .hp-kicker {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.home .hp-hero h1,
  body.home .hp-hero p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  body.home .hp-hero h1 {
    margin-top: 18px;
    margin-bottom: 14px;
  }

  body.home .hp-hero p {
    max-width: min(92vw, 520px);
    margin-bottom: 0;
  }

  body.home .hp-hero-actions,
  body.home .hp-hero-slider-dots {
    justify-content: center;
  }

  body.home .hp-hero-slider {
    min-height: 0;
    overflow: visible;
  }

  body.home .hp-hero-slide {
    position: relative;
    inset: auto;
    display: none;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    opacity: 1;
    transform: none;
    pointer-events: none;
  }

  body.home .hp-hero-slide.is-active {
    display: flex;
    pointer-events: auto;
  }
}

/* Final responsive repair for the recipe intro and wholesale stat cards. */
body.home .hp-recipe-layout {
  display: flex;
  flex-direction: column;
  align-items: start !important;
  gap: 22px;
}

body.home .hp-recipe-grid {
  order: 1;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home .hp-recipe-lead {
  order: 2;
  width: 100%;
  min-height: 0 !important;
  height: auto !important;
  align-self: stretch !important;
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(28px, 4vw, 54px) !important;
}

body.home .hp-recipe-lead h3 {
  max-width: 900px;
}

body.home .hp-recipe-lead p {
  max-width: 980px;
}

body.home .hp-recipe-lead::after {
  opacity: .045;
}

body.home .hp-assurance {
  width: var(--hp-container);
  max-width: var(--hp-container);
  overflow: hidden;
}

@media (max-width: 900px) {
  body.home .hp-recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .hp-recipe-lead {
    padding: 22px !important;
  }

  body.home .hp-recipe-lead h3 {
    font-size: clamp(27px, 7vw, 42px);
    line-height: 1.5;
  }

  body.home .hp-recipe-lead p {
    font-size: 16px;
    line-height: 2;
  }

  body.home .hp-recipe-pills {
    justify-content: center;
  }

  body.home .hp-assurance {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  body.home .hp-assurance-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.home .hp-assurance-card,
  body.home .hp-assurance-card:not(.hp-assurance-main) {
    min-height: 0 !important;
    width: 100%;
    padding: 20px !important;
  }

  body.home .hp-assurance-card:not(.hp-assurance-main) {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
  }

  body.home .hp-assurance-card:not(.hp-assurance-main) b {
    margin: 0 !important;
    font-size: 28px !important;
  }

  body.home .hp-assurance-card:not(.hp-assurance-main) span {
    font-size: 18px !important;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  body.home .hp-recipe-grid {
    grid-template-columns: 1fr;
  }

  body.home .hp-recipe-lead {
    justify-items: stretch;
    text-align: right;
  }
}

@media (max-width: 560px) {
  body.home .hp-recipe-lead {
    padding: 18px !important;
    border-radius: 22px !important;
    overflow: visible !important;
  }

  body.home .hp-recipe-lead::after {
    display: none;
  }

  body.home .hp-recipe-lead h3 {
    font-size: 29px;
  }
}

/* Brand heading color pass. */
body :where(h1, h2, h3, h4, h5, h6),
body :where(h1, h2, h3, h4, h5, h6) a,
.elementor-kit-10 body :where(h1, h2, h3, h4, h5, h6),
.elementor-kit-10 body :where(h1, h2, h3, h4, h5, h6) a {
  color: var(--hp-teal-strong) !important;
}

@media (min-width: 901px) {
  body.home .hp-section-head h2 {
    max-width: none !important;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  body.home .hp-section-head h2 {
    white-space: normal;
  }
}
