:root {
  --product-bg: #fff;
  --product-soft: #fafafa;
  --product-text: #1d1d1f;
  --product-muted: #6e6e73;
  --product-line: #e5e5ea;
  --product-accent: #00a651;
  --product-shop-blue: #123f8c;
  --product-shop-blue-dark: #06215a;
  --product-radius: 24px;
  --product-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  --product-ease: 360ms ease-out;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--product-bg);
  color: var(--product-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

body.product-detail-open {
  overflow: hidden;
}

.products-public-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 118, 210, 0.55), transparent 34rem),
    linear-gradient(180deg, var(--product-shop-blue-dark) 0%, #123f8c 34rem, #f3f6fb 34.1rem, #fff 100%);
}

.products-public-top {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 31, 80, 0.74);
  backdrop-filter: saturate(180%) blur(20px);
}

.products-public-top .portal-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  color: var(--product-text);
}

.products-public-top .portal-brand-text strong,
.products-public-top .portal-brand-text small,
.products-public-top .portal-nav a,
.products-public-top .portal-lang a {
  color: #fff;
}

.products-public-top .portal-brand-text small,
.products-public-top .portal-lang a {
  color: rgba(255, 255, 255, 0.72);
}

.products-public-top .portal-mark {
  width: 44px;
  height: 44px;
}

.products-public-top .portal-nav a[aria-current="page"] {
  color: #fff;
}

.products-public-top .portal-lang {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.products-public-top .portal-lang a.active,
.products-public-top .portal-lang a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.products-public-top .portal-nav a::after {
  background: #fff;
}

.products-hero,
.products-page,
.products-cta,
.products-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.products-hero {
  min-height: clamp(360px, 56vh, 620px);
  display: grid;
  place-items: center;
  padding: 62px 0 54px;
  text-align: center;
}

.products-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
  gap: 42px;
  align-items: center;
  max-width: 1080px;
  text-align: left;
}

.products-catalog-cover {
  grid-column: 2;
  grid-row: 1 / 4;
  border: 9px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(2.2deg);
}

.products-catalog-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 260;
  border-radius: 22px;
  object-fit: cover;
}

.products-hero h1 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 8vw, 90px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.products-hero p {
  grid-column: 1;
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.55;
}

.products-scroll-indicator {
  grid-column: 1;
  width: 1px;
  height: 56px;
  margin: 56px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.products-scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: #fff;
  animation: productScroll 1.8s ease-in-out infinite;
}

.products-page {
  margin-top: -18px;
  border-radius: 34px 34px 0 0;
  background: #f7f9fc;
  padding: 28px 20px 96px;
  box-shadow: 0 -18px 60px rgba(5, 23, 60, 0.16);
}

.products-toolbar {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  padding: 10px 0 24px;
  background: transparent;
}

.products-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.products-search-shell {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid rgba(232, 217, 184, 0.92);
  border-radius: 999px;
  background: #fffdf8;
  color: #0f4a38;
  padding: 0 18px;
  box-shadow: 0 12px 30px rgba(8, 60, 47, 0.06);
}

.products-search-shell svg {
  width: 21px;
  height: 21px;
  stroke: #0f4a38;
}

.products-toolbar input {
  min-height: 50px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--product-text);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 0;
}

.products-search-shell:focus-within {
  border-color: rgba(214, 173, 75, 0.9);
  box-shadow: 0 0 0 4px rgba(214, 173, 75, 0.16), 0 12px 30px rgba(8, 60, 47, 0.08);
}

.products-filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  border: 1px solid rgba(214, 173, 75, 0.72);
  border-radius: 999px;
  background: #083c2f;
  color: #fffdf8;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  padding: 0 18px;
  box-shadow: 0 14px 34px rgba(8, 60, 47, 0.14);
}

.products-filter-toggle svg {
  width: 20px;
  height: 20px;
}

.products-pills {
  display: none !important;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.products-toolbar.is-filter-open .products-pills {
  display: flex;
}

.products-pills::-webkit-scrollbar {
  display: none;
}

.products-pill {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--product-line);
  border-radius: 999px;
  background: #fff;
  color: var(--product-text);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 0 18px;
  transition: background var(--product-ease), color var(--product-ease), transform var(--product-ease);
}

.products-pill:hover,
.products-pill:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.products-pill.is-active,
.products-pill[aria-selected="true"] {
  border-color: var(--product-text);
  background: var(--product-text);
  color: #fff;
}

.products-meta {
  margin: 28px 0 26px;
  color: var(--product-muted);
  font-size: 14px;
}

.products-top-packages {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(220px, 320px));
  gap: 18px;
  align-items: stretch;
  margin: 8px 0 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 94% 0%, rgba(255, 255, 255, 0.34), transparent 15rem),
    linear-gradient(135deg, #08245f, #1550a8);
  color: #fff;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 18px 44px rgba(18, 63, 140, 0.22);
}

.products-top-packages.is-hidden {
  display: none;
}

.products-top-packages span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-top-packages h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.05;
}

.products-top-packages p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.55;
}

.top-package-card {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 18px;
  text-decoration: none;
  transition: transform var(--product-ease), box-shadow var(--product-ease);
}

.top-package-card strong {
  font-size: 24px;
  line-height: 1.05;
}

.top-package-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.top-package-card b {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  padding: 8px 11px;
}

.top-package-card em {
  width: fit-content;
  margin-top: 8px;
  border-radius: 999px;
  background: #fff;
  color: #123f8c;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 9px 13px;
}

.top-package-card-5in1 {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    url("../image/5in1/ambient-bg.png") center / cover;
}

.top-package-card-5in1 b {
  background: rgba(255, 255, 255, 0.22);
}

.top-package-card:hover,
.top-package-card:focus-visible {
  transform: translateY(-3px);
  outline: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.health-program-custom {
  display: grid;
  gap: 26px;
}

.hp-benefit-banner {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 104px;
  border: 1px solid rgba(126, 177, 139, 0.55);
  border-radius: 22px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 16px 42px rgba(8, 60, 47, 0.07);
}

.hp-benefit-banner img {
  display: block;
  width: 100%;
  min-height: 82px;
  object-fit: contain;
}

.hp-benefit-banner.is-fallback::before {
  content: "✓ Maksimalna udobnost   % Maksimalni popust   🎁 Garantovani pokloni   🚚 Besplatna dostava   3+1 ponude";
  color: #79ad87;
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-align: center;
}

.hp-block,
.hp-hm-card {
  border: 2px solid #7fb28d;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 60, 47, 0.08);
}

.hp-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.35fr);
  gap: 0;
  overflow: hidden;
}

.hp-block-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #82b690;
  color: #fff;
  padding: 14px 18px;
}

.hp-block-title span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.hp-block-title h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.hp-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-right: 1px solid #8dbd99;
}

.hp-program-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  min-height: 168px;
  border-right: 1px solid #8dbd99;
  border-bottom: 1px solid #8dbd99;
  padding: 18px;
  overflow: hidden;
}

.hp-program-item:nth-child(2n) {
  border-right: 0;
}

.hp-program-item.is-text-only {
  grid-template-columns: 1fr;
}

.hp-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #83b891;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  z-index: 1;
}

.hp-program-img {
  display: grid;
  place-items: center;
  align-self: center;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #f8fbf8;
  padding: 12px;
}

.hp-program-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hp-program-copy h3 {
  margin: 0 0 6px;
  color: #1d1d1f;
  font-size: 16px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.hp-program-copy p {
  margin: 0 0 8px;
  color: #3f4b44;
  font-size: 13px;
  line-height: 1.35;
}

.hp-program-copy dl {
  display: grid;
  gap: 2px;
  margin: 0;
}

.hp-program-copy dl div {
  display: flex;
  gap: 6px;
  align-items: baseline;
  min-width: 0;
}

.hp-program-copy dt {
  color: #66756a;
  font-size: 12px;
  font-weight: 800;
}

.hp-program-copy dd {
  margin: 0;
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hp-option-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  border-bottom: 1px solid #8dbd99;
  padding: 18px;
}

.hp-option-panel h3,
.hp-hm-options h3 {
  width: fit-content;
  margin: 0;
  border-radius: 0;
  background: #82b690;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.hp-option-panel ul,
.hp-hm-options ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-option-panel li,
.hp-hm-options li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  color: #1d1d1f;
  font-size: 14px;
  line-height: 1.25;
}

.hp-option-panel li > span,
.hp-hm-options li > span {
  width: 20px;
  height: 20px;
  border: 1px solid #99a49c;
  background: #fff;
}

.hp-option-panel strong,
.hp-hm-options strong {
  font-weight: 950;
}

.hp-option-panel small {
  display: block;
  margin-top: 2px;
  color: #3f4b44;
  font-size: 12px;
}

.hp-hm-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 18px;
  padding: 20px;
}

.hp-hm-main {
  display: grid;
  align-content: start;
}

.hp-hm-main span {
  color: #7fb28d;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hp-hm-main h2 {
  max-width: 620px;
  margin: 6px 0 10px;
  color: #78aa85;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.02;
}

.hp-hm-main > b {
  width: fit-content;
  margin-bottom: 12px;
  background: #82b690;
  color: #fff;
  font-size: 20px;
  padding: 8px 14px;
}

.hp-hm-main ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: #2d352f;
  font-size: 15px;
  line-height: 1.35;
}

.hp-hm-main strong {
  width: fit-content;
  margin-top: auto;
  background: #1d1d1f;
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 0.02em;
  padding: 10px 22px;
}

.hp-hm-main p {
  margin: 8px 0 0;
  color: #2d352f;
  font-size: 15px;
}

.hp-hm-options {
  align-self: start;
  border: 1px solid #a2aaa4;
  padding: 14px;
}

.hp-hm-image {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 18px;
  background: #f8fbf8;
  overflow: hidden;
}

.hp-hm-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.products-category-landing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 12px 0 46px;
}

.product-category-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 173, 75, 0.82);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf8, #fffaf1);
  color: var(--product-text);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  text-align: left;
  box-shadow: 0 16px 38px rgba(8, 60, 47, 0.08);
  transition: transform var(--product-ease), box-shadow var(--product-ease);
}

.product-category-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, rgba(214, 173, 75, 0.2), #f4d779, rgba(15, 74, 56, 0.35), #d6ad4b);
  background-size: 260% 260%;
  animation: categoryGoldFlow 5s ease-in-out infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.product-category-card-media {
  display: grid;
  place-items: center;
  background: #fff;
  min-height: 0;
  padding: clamp(10px, 2.6vw, 24px);
}

.product-category-card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.product-category-card-body {
  display: grid;
  gap: 6px;
  align-self: end;
  min-height: 42%;
  padding: clamp(12px, 2.2vw, 18px);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.86), #fffdf8);
}

.product-category-card strong {
  color: #083c2f;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.12;
}

.product-category-card small {
  color: var(--product-muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-category-card em {
  width: fit-content;
  border-radius: 999px;
  background: rgba(214, 173, 75, 0.14);
  color: #0f4a38;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  padding: 7px 10px;
}

.product-category-card.is-active {
  border-color: #083c2f;
  box-shadow: 0 18px 50px rgba(8, 60, 47, 0.16);
}

.product-category-card.is-active .product-category-card-body {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(236, 248, 241, 0.98));
}

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

.products-grid.is-health-programs-view {
  display: block;
}

.products-grid.is-health-programs-view .reveal {
  opacity: 1;
  transform: none;
}

.product-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 42, 87, 0.08);
  transition: transform var(--product-ease), box-shadow var(--product-ease), border-color var(--product-ease);
}

.product-card:focus-visible {
  outline: 3px solid rgba(0, 166, 81, 0.35);
  outline-offset: 4px;
}

.product-health-program-card {
  position: relative;
  border-color: rgba(214, 173, 75, 0.46);
  background:
    radial-gradient(circle at 88% 0%, rgba(214, 173, 75, 0.16), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fff 58%, #f8fbf8 100%);
  padding: 0;
}

.health-program-card-head {
  display: flex;
  min-height: 96px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(214, 173, 75, 0.26);
  padding: 22px 22px 18px;
}

.health-program-type,
.health-program-discount {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 9px 11px;
}

.health-program-type {
  border: 1px solid rgba(8, 60, 47, 0.12);
  background: rgba(8, 60, 47, 0.06);
  color: #083c2f;
}

.health-program-discount {
  background: #083c2f;
  color: #fffdf8;
}

.health-program-card-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.health-program-summary {
  min-height: 50px;
  margin: 0;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.55;
}

.health-program-visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.health-program-visuals.is-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.health-program-visuals span {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  border: 1px solid rgba(214, 173, 75, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  padding: 9px;
  text-align: center;
}

.health-program-visuals img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.health-program-visuals small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--product-muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.health-program-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.health-program-stats span {
  min-width: 0;
  border: 1px solid rgba(8, 60, 47, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px;
}

.health-program-stats small,
.health-program-stats b {
  display: block;
}

.health-program-stats small {
  color: var(--product-muted);
  font-size: 11px;
  line-height: 1.2;
}

.health-program-stats b {
  margin-top: 3px;
  color: var(--product-text);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fff, #f8fbff);
  padding: clamp(14px, 4vw, 28px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto minmax(34px, auto);
  gap: 8px;
  min-height: 0;
  padding: 0 12px 13px;
}

.product-name {
  display: -webkit-box;
  grid-column: 1 / -1;
  margin: 0;
  overflow: hidden;
  color: var(--product-text);
  font-size: clamp(13px, 3.7vw, 18px);
  font-weight: 800;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-category {
  grid-column: 1 / -1;
  color: var(--product-muted);
  font-size: 11px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description {
  display: -webkit-box;
  grid-column: 1 / -1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--product-muted);
  font-size: 12px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-prices {
  grid-column: 1 / -1;
  grid-row: auto;
  align-self: start;
  min-width: 0;
  min-height: 38px;
  color: var(--product-text);
  font-size: 13px;
  text-align: left;
}

.product-prices span {
  display: block;
  color: var(--product-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.product-prices strong {
  display: block;
  margin-top: 3px;
  font-weight: 850;
}

.product-discount {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 7px auto;
  border-radius: 999px;
  background: #083c2f;
  color: #fffdf8;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  padding: 7px 10px;
  box-shadow: 0 8px 18px rgba(8, 60, 47, 0.18);
}

.product-buttons {
  display: flex;
  grid-column: 1 / -1;
  align-self: end;
  gap: 7px;
  margin-top: auto;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.product-facts {
  display: none;
}

.product-buttons button,
.product-buttons a {
  display: inline-flex;
  flex: 1 1 0;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  padding: 0 10px;
  text-decoration: none;
}

.product-buttons button {
  background: #eef3fb;
  color: #123f8c;
}

.product-buttons a {
  background: #0b183d;
  color: #fff;
}

.products-empty {
  display: none;
  padding: 80px 0;
  color: var(--product-muted);
  text-align: center;
}

.products-load-sentinel {
  grid-column: 1 / -1;
  height: 1px;
}

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

.skeleton-card {
  height: 310px;
  border-radius: 18px;
  background: linear-gradient(90deg, #f5f5f7 0%, #fff 46%, #f5f5f7 100%);
  background-size: 220% 100%;
  animation: productShimmer 1.4s ease-in-out infinite;
}

.products-cta {
  padding: 96px 0 108px;
  text-align: center;
}

.products-cta h2 {
  margin: 0;
  color: var(--product-text);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.products-cta p {
  max-width: 620px;
  margin: 18px auto 32px;
  color: var(--product-muted);
  font-size: 18px;
  line-height: 1.6;
}

.products-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform var(--product-ease), background var(--product-ease);
}

.products-cta-button:hover,
.products-cta-button:focus-visible {
  background: var(--product-accent);
  outline: none;
  transform: translateY(-2px);
}

.products-cta-link {
  display: block;
  margin-top: 18px;
  color: var(--product-muted);
  font-size: 13px;
  text-decoration: none;
}

.products-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--product-line);
  padding: 28px 0 40px;
  color: #9b9ba0;
  font-size: 13px;
}

.products-footer a {
  color: #6e6e73;
  text-decoration: none;
}

.products-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 28, 24, 0.42);
  backdrop-filter: blur(18px);
  padding: 18px;
}

.product-detail-overlay.open {
  display: flex;
}

.product-detail-sheet {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
  align-items: start;
  width: min(1040px, 100%);
  height: min(760px, calc(100vh - 36px));
  overflow-y: auto;
  border: 1px solid var(--product-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.product-detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--product-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--product-text);
  cursor: pointer;
  font-size: 24px;
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 0;
  height: min(760px, calc(100vh - 36px));
  align-self: start;
  border-right: 1px solid var(--product-line);
  background: radial-gradient(circle at 50% 20%, #fff 0%, #fbfaf5 52%, #f4efe2 100%);
  padding: 42px;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-program-media {
  align-items: stretch;
  background:
    radial-gradient(circle at 24% 18%, rgba(214, 173, 75, 0.2), transparent 34%),
    linear-gradient(160deg, #fffdf8, #f5fbf7);
  padding: clamp(22px, 4vw, 46px);
}

.detail-program-card {
  display: grid;
  align-content: center;
  width: 100%;
  border: 1px solid rgba(214, 173, 75, 0.38);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 18px 48px rgba(8, 60, 47, 0.08);
}

.detail-program-card > span {
  width: fit-content;
  border-radius: 999px;
  background: #083c2f;
  color: #fffdf8;
  font-size: 12px;
  font-weight: 850;
  padding: 9px 12px;
}

.detail-program-card h3 {
  margin: 20px 0 12px;
  color: var(--product-text);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
}

.detail-program-card p {
  margin: 0;
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.65;
}

.detail-program-card > div:not(.health-program-visuals) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.detail-program-card b {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(8, 60, 47, 0.08);
  border-radius: 16px;
  background: #fff;
  color: #083c2f;
  font-size: 18px;
  padding: 13px;
}

.detail-program-card small {
  color: var(--product-muted);
  font-size: 11px;
  font-weight: 650;
}

.product-detail-body {
  min-height: 0;
  overflow: visible;
  padding: 58px 46px 44px;
}

.product-detail-eyebrow {
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(214, 173, 75, 0.42);
  border-radius: 999px;
  background: #fffdf8;
  color: #0f4a38;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.product-detail-body h2 {
  margin: 0 54px 10px 0;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.product-detail-category,
.product-detail-body p {
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 30px;
}

.product-detail-facts div {
  border: 1px solid rgba(214, 173, 75, 0.32);
  border-radius: 18px;
  background: #fffdf8;
  padding: 14px;
}

.product-detail-facts span {
  display: block;
  color: var(--product-muted);
  font-size: 12px;
}

.product-detail-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--product-text);
  font-size: 15px;
  font-weight: 500;
}

.product-detail-description-card {
  border: 1px solid var(--product-line);
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
}

.product-program-panel {
  margin: 0 0 26px;
  border: 1px solid rgba(214, 173, 75, 0.42);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(18, 36, 28, 0.06);
}

.product-program-panel > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  border: 1px solid rgba(214, 173, 75, 0.42);
  border-radius: 999px;
  background: rgba(214, 173, 75, 0.08);
  color: #7a5b16;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 8px 11px;
  text-transform: uppercase;
}

.product-detail-body .product-program-panel h3 {
  margin: 0;
  color: var(--product-text);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 650;
  letter-spacing: 0;
}

.product-detail-body .product-program-panel p {
  margin: 12px 0 0;
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.7;
  white-space: normal;
}

.product-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.product-program-grid div {
  min-height: 110px;
  border: 1px solid rgba(0, 166, 81, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 15px;
}

.product-program-grid b,
.product-program-grid small {
  display: block;
}

.product-program-grid b {
  margin-bottom: 7px;
  color: var(--product-text);
  font-size: 14px;
  font-weight: 650;
}

.product-program-grid small {
  color: var(--product-muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-program-kids {
  border-color: rgba(0, 166, 81, 0.22);
  background: linear-gradient(180deg, #f7fffb 0%, #fff 100%);
}

.product-program-kids > span {
  border-color: rgba(0, 166, 81, 0.22);
  background: rgba(0, 166, 81, 0.08);
  color: #05763c;
}

.product-detail-body h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.product-detail-body p {
  margin: 0;
  white-space: pre-line;
}

.product-detail-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--product-line);
  border-radius: 22px;
  background: #fff;
}

.product-detail-table-wrap h4 {
  margin: 0;
  border-bottom: 1px solid var(--product-line);
  background: var(--product-soft);
  color: var(--product-text);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 15px;
}

.product-detail-table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: var(--product-text);
  font-size: 13px;
  line-height: 1.45;
}

.product-detail-table-wrap th,
.product-detail-table-wrap td {
  border-bottom: 1px solid var(--product-line);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}

.product-detail-table-wrap th {
  background: #fafafa;
  font-weight: 600;
}

.product-detail-table-wrap tr:last-child th,
.product-detail-table-wrap tr:last-child td {
  border-bottom: 0;
}

.product-detail-actions a {
  display: inline-flex;
  margin-top: 26px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0 22px;
  text-decoration: none;
}

.products-floating-btn {
  position: fixed;
  right: 18px;
  z-index: 880;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 173, 75, 0.5);
  border-radius: 999px;
  background: #083c2f;
  color: #fffdf8;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 14px 30px rgba(8, 60, 47, 0.26);
}

.products-floating-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.products-floating-btn svg {
  width: 21px;
  height: 21px;
}

.products-floating-search {
  bottom: 86px;
}

.products-scroll-top-btn {
  bottom: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: var(--product-shadow);
  }

  .product-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 58px rgba(8, 60, 47, 0.14);
  }
}

@media (min-width: 760px) {
  .products-grid,
  .products-skeleton {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (min-width: 900px) {
  .products-category-landing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .products-grid,
  .products-skeleton {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .hp-block,
  .hp-hm-card {
    grid-template-columns: 1fr;
  }

  .hp-program-grid {
    grid-template-columns: 1fr;
    border-right: 0;
  }

  .hp-program-item,
  .hp-program-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .products-public-page {
    background:
      linear-gradient(180deg, #0b3275 0%, #1550a8 340px, #f5f8fc 341px, #fff 100%);
  }

  .products-public-top .portal-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .products-public-top .portal-brand {
    min-width: 0;
  }

  .products-public-top .portal-nav {
    order: 3;
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 0 2px;
    scrollbar-width: none;
  }

  .products-public-top .portal-nav::-webkit-scrollbar {
    display: none;
  }

  .products-public-top .portal-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    border: 1px solid var(--product-line);
    border-radius: 999px;
    background: var(--product-soft);
    color: var(--product-text);
    padding: 0 11px;
    font-size: 12px;
  }

  .products-public-top .portal-nav a::after {
    display: none;
  }

  .products-hero,
  .products-page,
  .products-cta,
  .products-footer {
    width: min(100% - 22px, 1180px);
  }

  .products-hero {
    min-height: 0;
    padding: 30px 0 18px;
  }

  .products-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .products-catalog-cover {
    grid-column: 1;
    grid-row: auto;
    order: -1;
    width: min(148px, 48vw);
    margin: 0 auto;
    border-width: 6px;
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  }

  .products-catalog-cover img {
    border-radius: 16px;
  }

  .products-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1;
  }

  .products-hero p,
  .products-scroll-indicator {
    margin-left: auto;
    margin-right: auto;
  }

  .products-hero p {
    border-radius: 18px;
    background: rgba(6, 31, 80, 0.58);
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
    margin-top: 4px;
    padding: 12px 14px;
    backdrop-filter: blur(8px);
  }

  .products-scroll-indicator {
    display: none;
  }

  .products-page {
    margin-top: 0;
    border-radius: 26px 26px 0 0;
    padding: 16px 12px 54px;
    box-shadow: 0 -8px 30px rgba(5, 23, 60, 0.1);
  }

  .products-toolbar {
    padding: 2px 0 14px;
  }

  .products-search-row {
    grid-template-columns: minmax(0, 1fr) 54px;
  }

  .products-filter-toggle {
    width: 54px;
    padding: 0;
  }

  .products-filter-toggle span {
    display: none;
  }

  .products-category-landing {
    gap: 10px;
    margin: 8px 0 24px;
  }

  .products-top-packages {
    grid-template-columns: 1fr;
    border-radius: 22px;
    gap: 12px;
    margin: 4px 0 18px;
    padding: 16px;
  }

  .products-top-packages h2 {
    font-size: 28px;
  }

  .products-top-packages p {
    font-size: 14px;
  }

  .top-package-card {
    min-height: 128px;
    border-radius: 18px;
    padding: 16px;
  }

  .top-package-card strong {
    font-size: 21px;
  }

  .health-program-custom {
    gap: 16px;
  }

  .hp-block,
  .hp-hm-card {
    grid-template-columns: 1fr;
  }

  .hp-program-grid {
    grid-template-columns: 1fr;
    border-right: 0;
  }

  .hp-program-item,
  .hp-program-item:nth-child(2n) {
    grid-template-columns: 96px minmax(0, 1fr);
    border-right: 0;
    min-height: auto;
    padding: 12px;
  }

  .hp-program-img {
    width: 96px;
    margin: 0;
    border-radius: 14px;
    padding: 8px;
  }

  .hp-discount {
    width: 46px;
    height: 46px;
    font-size: 12px;
  }

  .hp-block-title {
    display: grid;
    gap: 8px;
    padding: 14px;
  }

  .hp-block-title h2 {
    font-size: clamp(24px, 8vw, 34px);
    max-width: 100%;
  }

  .hp-block-title span {
    width: fit-content;
  }

  .hp-benefit-banner {
    min-height: 78px;
    border-radius: 18px;
    padding: 6px;
  }

  .hp-benefit-banner img {
    min-height: 58px;
  }

  .hp-block,
  .hp-hm-card {
    border-radius: 18px;
  }

  .hp-program-copy h3 {
    font-size: 15px;
  }

  .hp-program-copy p,
  .hp-program-copy dt,
  .hp-program-copy dd {
    font-size: 12px;
  }

  .hp-program-copy dl {
    gap: 4px;
  }

  .hp-program-copy dl div {
    display: grid;
    gap: 1px;
  }

  .hp-option-panel,
  .hp-hm-options {
    padding: 14px;
  }

  .hp-hm-card {
    gap: 14px;
    padding: 14px;
  }

  .hp-hm-main h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .hp-hm-main ul {
    font-size: 14px;
  }

  .hp-hm-image {
    min-height: 120px;
  }

  .hp-hm-image img {
    max-height: 220px;
  }

  .product-category-card {
    border-radius: 20px;
  }

  .product-category-card-media {
    padding: 10px;
  }

  .product-category-card-body {
    min-height: 43%;
    padding: 11px;
  }

  .product-category-card small {
    display: none;
  }

  .product-category-card strong {
    font-size: 15px;
  }

  .product-category-card em {
    font-size: 10px;
    padding: 5px 8px;
  }

  .product-content {
    padding: 0 12px 13px;
  }

  .product-buttons {
    gap: 6px;
  }

  .product-buttons button,
  .product-buttons a {
    min-height: 32px;
    font-size: 10px;
    padding: 0 8px;
  }

  .product-discount {
    margin-left: 0;
    font-size: 10px;
    padding: 6px 8px;
  }

  .product-detail-overlay {
    align-items: flex-end;
    padding: 10px;
  }

  .product-detail-sheet {
    display: block;
    height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .product-detail-media {
    height: 280px;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--product-line);
    padding: 34px;
  }

  .product-detail-body {
    padding: 26px 20px 34px;
  }

  .product-detail-description-card {
    padding: 16px;
  }

  .product-program-panel {
    padding: 18px;
  }

  .product-program-grid {
    grid-template-columns: 1fr;
  }

  .product-program-grid div {
    min-height: auto;
  }

  .product-detail-facts {
    grid-template-columns: 1fr 1fr;
  }

  .products-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hp-program-item,
  .hp-program-item:nth-child(2n) {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
  }

  .hp-program-img {
    width: 82px;
  }

  .hp-discount {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  .hp-program-copy h3 {
    padding-left: 26px;
  }

  .products-hero h1 {
    font-size: clamp(31px, 10vw, 42px);
  }
}

@keyframes productShimmer {
  to { background-position: -220% 0; }
}

@keyframes productScroll {
  0% { transform: translateY(-24px); opacity: 0; }
  30%, 70% { opacity: 1; }
  100% { transform: translateY(58px); opacity: 0; }
}

@keyframes categoryGoldFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@media (max-width: 760px) {
  .products-public-top .portal-header {
    flex-wrap: nowrap;
  }

  .products-public-top .portal-nav {
    display: none !important;
  }

  .products-public-top .portal-menu-toggle {
    display: inline-flex;
  }
}
