:root {
  --forest: #173d2b;
  --forest-deep: #0e2b1e;
  --sage: #cddcc6;
  --sage-pale: #edf3e9;
  --ivory: #f8f4ea;
  --paper: #fffdf8;
  --terracotta: #c66e4e;
  --ink: #17201b;
  --muted: #657068;
  --line: rgba(23, 61, 43, 0.14);
  --white: #fff;
  --shadow: 0 24px 80px rgba(23, 61, 43, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100% - 40px));
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

body[dir="rtl"] h1,
body[dir="rtl"] h2 {
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.25;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6vw, 6rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.3vw, 4.25rem);
  font-weight: 600;
}

h3 {
  line-height: 1.25;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.announcement {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 18px;
  color: #f8f4ea;
  background: var(--forest-deep);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

body[dir="rtl"] .announcement {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  align-items: center;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(23, 61, 43, 0.09);
  background: rgba(255, 253, 248, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 148px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.cart-button {
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.language-toggle {
  padding: 0 15px;
}

.language-toggle:hover,
.cart-button:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.language-current {
  color: var(--terracotta);
}

.cart-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 6px 5px 17px;
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.cart-button > [aria-hidden="true"] {
  display: none;
}

.cart-count {
  display: grid;
  min-width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sage);
  font-size: 0.75rem;
}

.hero {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 60px;
  padding-block: clamp(72px, 9vw, 128px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[dir="rtl"] .eyebrow {
  letter-spacing: 0;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 12px 28px rgba(23, 61, 43, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-deep);
}

.button-quiet {
  border-color: var(--line);
  color: var(--forest);
  background: transparent;
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-block {
  width: 100%;
}

.hero-trust {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-trust > span {
  display: grid;
  gap: 5px;
  padding: 17px 14px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

body[dir="rtl"] .hero-trust > span {
  padding-right: 0;
  padding-left: 14px;
}

.hero-trust b {
  color: var(--forest);
  font-size: 0.68rem;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 46% 46% 24px 24px;
  background: linear-gradient(145deg, #dce7d5 0%, #f0e6d6 100%);
  isolation: isolate;
}

.hero-showcase::after {
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: 11%;
  left: 10%;
  height: 28px;
  border-radius: 50%;
  background: rgba(23, 61, 43, 0.2);
  content: "";
  filter: blur(20px);
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(23, 61, 43, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: 7%;
  right: 8%;
  width: 380px;
  height: 380px;
}

.orbit-two {
  top: 20%;
  right: 21%;
  width: 220px;
  height: 220px;
}

.hero-bottle {
  position: absolute;
  margin: 0;
  filter: drop-shadow(0 24px 24px rgba(23, 61, 43, 0.18));
}

.hero-bottle img {
  width: 100%;
}

.hero-bottle-main {
  z-index: 3;
  right: 19%;
  bottom: 3%;
  width: 58%;
}

.hero-bottle-left {
  z-index: 2;
  bottom: 6%;
  left: -8%;
  width: 48%;
  transform: rotate(-6deg);
}

.hero-bottle-right {
  z-index: 1;
  right: -10%;
  bottom: 7%;
  width: 48%;
  transform: rotate(7deg);
}

.bottle-brand {
  position: absolute;
  top: 43%;
  left: 34%;
  display: flex;
  width: 33%;
  min-height: 21%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 2px;
  color: var(--forest);
  background: #fff;
  text-align: center;
}

.bottle-brand img {
  width: 76%;
  height: auto;
}

.bottle-brand b {
  font-size: clamp(0.36rem, 0.75vw, 0.65rem);
  line-height: 1.05;
}

.hero-note {
  position: absolute;
  z-index: 8;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 195px;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-note strong {
  color: var(--forest);
  font-size: 1rem;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--line);
  background: var(--ivory);
}

.value-strip p {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0;
  border-inline-end: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.value-strip p:first-child {
  border-inline-start: 1px solid var(--line);
}

.value-strip p > span:first-child {
  color: var(--terracotta);
  font-size: 0.55rem;
}

.shop-section,
.commitment-section,
.faq-section {
  padding-block: clamp(86px, 10vw, 142px);
}

.section-heading {
  max-width: 740px;
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 60px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 42px 34px;
}

.category-tab {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.category-tab.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover {
  border-color: rgba(23, 61, 43, 0.28);
  box-shadow: 0 20px 56px rgba(23, 61, 43, 0.1);
  transform: translateY(-5px);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(155deg, #f6f7f1, #e7eee2);
}

.product-media::after {
  position: absolute;
  right: 22%;
  bottom: 13%;
  left: 22%;
  height: 13px;
  border-radius: 50%;
  background: rgba(23, 61, 43, 0.14);
  content: "";
  filter: blur(10px);
}

.product-media > img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 280px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card:hover .product-media > img {
  transform: scale(1.035);
}

.product-media .bottle-brand {
  z-index: 2;
  top: 43%;
  left: 35%;
  width: 30%;
  min-height: 19%;
}

.product-media .bottle-brand b {
  font-size: 0.52rem;
}

.product-media.hair .bottle-brand {
  top: 39%;
  left: 37%;
  width: 26%;
  min-height: 17%;
}

.product-media.oil-visual .bottle-brand {
  top: 42%;
  left: 37%;
  width: 26%;
  min-height: 16%;
}

.product-media.hair .bottle-brand b {
  font-size: 0.46rem;
}

.product-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.92);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[dir="rtl"] .product-badge {
  right: 14px;
  left: auto;
  letter-spacing: 0;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-category {
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body[dir="rtl"] .product-category {
  letter-spacing: 0;
}

.product-content h3 {
  margin-bottom: 8px;
  color: var(--forest-deep);
  font-size: 1.08rem;
}

.product-content > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.product-meta span {
  color: var(--muted);
}

.product-meta strong {
  color: var(--forest);
  font-size: 1.15rem;
}

.product-add {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.product-add:hover,
.product-add:focus-visible {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-1px);
}

.bundle-section {
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.bundle-layout {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 72px;
}

.bundle-visual {
  position: relative;
  min-height: 560px;
}

.bundle-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  border-radius: 46% 54% 65% 35% / 45% 37% 63% 55%;
  background: var(--sage);
  opacity: 0.86;
  transform: translate(-50%, -50%);
}

.bundle-shampoo,
.bundle-oil {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.22));
}

.bundle-shampoo {
  z-index: 2;
  bottom: 8%;
  left: 23%;
  width: 48%;
  height: 76%;
}

.bundle-oil {
  z-index: 3;
  right: 6%;
  bottom: 8%;
  width: 42%;
  height: 62%;
}

.bundle-sticker {
  position: absolute;
  z-index: 5;
  top: 17%;
  left: 12%;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--ivory);
  font-size: 0.95rem;
  font-weight: 700;
  transform: rotate(-8deg);
}

.bundle-copy {
  max-width: 530px;
}

.bundle-copy .eyebrow {
  color: #ecc0a9;
}

.bundle-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 27px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  inset-inline-start: 0;
  color: var(--sage);
  content: "✓";
  font-weight: 800;
}

.bundle-buy {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bundle-buy p {
  display: grid;
  margin: 0;
}

.bundle-buy strong {
  font-size: 2rem;
  line-height: 1.1;
}

.bundle-buy del {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.commitment-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.commitment-grid article {
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff, #f5f5ed);
}

.commitment-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sage-pale);
  font-size: 0.74rem;
  font-weight: 700;
}

.commitment-grid h3 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: 1.12rem;
}

.commitment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.steps-section {
  padding-block: 100px;
  background: var(--sage-pale);
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.steps-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  padding-top: 0;
}

.steps-list b {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 0.82rem;
}

.steps-list span {
  display: grid;
  gap: 3px;
}

.steps-list strong {
  color: var(--forest-deep);
}

.steps-list small {
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.62fr 1.08fr;
  gap: 96px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  color: var(--forest-deep);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

body[dir="rtl"] .faq-list summary {
  padding-right: 0;
  padding-left: 44px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--terracotta);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  transform: translateY(-50%);
}

body[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 4px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding-right: 42px;
  color: var(--muted);
  font-size: 0.88rem;
}

body[dir="rtl"] .faq-list details p {
  padding-right: 0;
  padding-left: 42px;
}

.final-cta {
  color: var(--white);
  background: var(--terracotta);
}

.final-cta-inner {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .eyebrow {
  color: #f6ddcd;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand img {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.83rem;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  display: block;
  margin-bottom: 10px;
  font-size: 0.79rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 560px;
  text-align: end;
}

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

dialog::backdrop {
  background: rgba(8, 22, 15, 0.58);
  backdrop-filter: blur(5px);
}

.cart-dialog {
  width: min(470px, 100%);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
}

body[dir="rtl"] .cart-dialog {
  margin: 0 auto 0 0;
}

.drawer-panel {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr auto;
  padding: 28px;
  background: var(--paper);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 6px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 2rem;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
  padding-block: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 13px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.cart-line-image {
  position: relative;
  display: grid;
  min-height: 86px;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  background: var(--sage-pale);
}

.cart-line-image img {
  width: 74px;
  height: 82px;
  object-fit: contain;
}

.cart-line-info h3 {
  margin: 3px 0 4px;
  font-size: 0.82rem;
}

.cart-line-info p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.7rem;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 28px 30px 28px;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
}

.quantity-control button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-line-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 9px;
  font-size: 0.78rem;
}

body[dir="rtl"] .cart-line-price {
  align-items: flex-start;
}

.remove-line {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  text-decoration: underline;
}

.cart-empty {
  display: grid;
  align-self: center;
  place-items: center;
  padding: 50px 20px;
  text-align: center;
}

.cart-empty > span {
  margin-bottom: 15px;
  color: var(--sage);
  font-size: 3rem;
}

.cart-empty h3 {
  margin-bottom: 5px;
}

.cart-empty p {
  color: var(--muted);
  font-size: 0.8rem;
}

.drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.76rem;
}

.cart-total strong {
  color: var(--forest);
  font-size: 1.35rem;
}

.drawer-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: center;
}

.checkout-dialog {
  width: min(1000px, calc(100% - 32px));
  max-width: none;
  max-height: min(880px, calc(100% - 32px));
  border-radius: var(--radius-md);
  background: var(--paper);
}

.checkout-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
}

.checkout-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  background: var(--paper);
}

body[dir="rtl"] .checkout-close {
  right: auto;
  left: 18px;
}

.checkout-intro {
  padding: 50px 38px;
  color: var(--white);
  background: var(--forest);
}

.checkout-intro h2 {
  font-size: 2.7rem;
}

.checkout-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.checkout-intro .eyebrow {
  color: #ecc0a9;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.checkout-summary-row,
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
}

.checkout-summary-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1rem;
  font-weight: 700;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 50px 38px 36px;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--forest-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.order-form label:has(textarea),
.checkbox-label,
.health-note,
.order-form .button,
.form-status {
  grid-column: 1 / -1;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 0.82rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.order-form input,
.order-form select {
  height: 48px;
  padding: 0 13px;
}

.order-form textarea {
  min-height: 74px;
  padding: 12px 13px;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 61, 43, 0.08);
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.health-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  background: var(--sage-pale);
  font-size: 0.65rem;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 0.75rem;
  text-align: center;
}

.form-status.is-error {
  color: #9e2f24;
}

.form-status.is-success {
  color: var(--forest);
}

.toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 13px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body[dir="rtl"] .toast {
  right: auto;
  left: 24px;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cart-bar {
  display: none;
}

.legal-page {
  min-height: 100vh;
  background: var(--ivory);
}

.legal-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.legal-header img {
  width: 150px;
}

.legal-header a:last-child {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-card {
  max-width: 900px;
  margin: 42px auto 90px;
  padding: clamp(30px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(23, 61, 43, 0.08);
}

.legal-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.legal-card h2 {
  margin-top: 38px;
  font-family: inherit;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-warning {
  padding: 16px 18px;
  border-left: 3px solid var(--terracotta);
  border-radius: 6px;
  color: #70412f !important;
  background: #fff0e8;
}

.thank-you-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(205, 220, 198, 0.72), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(198, 110, 78, 0.18), transparent 26%),
    var(--ivory);
}

.thank-you-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 18px;
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(34px, 8vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card > img {
  width: 150px;
  height: auto;
  margin: 0 auto 30px;
}

.success-mark {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 2rem;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 8vw, 4.5rem);
}

.thank-you-card > p:not(.eyebrow, .security-note) {
  color: var(--muted);
}

.order-reference {
  display: inline-grid;
  min-width: 180px;
  gap: 2px;
  margin: 16px auto 26px;
  padding: 12px 20px;
  border-radius: 14px;
  color: var(--forest);
  background: var(--sage-pale);
  font-size: 0.74rem;
}

.order-reference[hidden] {
  display: none;
}

.order-reference strong {
  font-size: 1.15rem;
}

.thank-you-steps {
  display: grid;
  gap: 8px;
  margin: 20px 0 26px;
  text-align: start;
}

.thank-you-steps p {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.78rem;
}

.thank-you-steps b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 0.68rem;
}

.security-note {
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .hero-showcase {
    min-height: 520px;
  }

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

  .bundle-layout {
    gap: 35px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-showcase {
    min-height: 540px;
  }

  .value-strip {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip p:nth-child(2) {
    border-inline-end: 1px solid var(--line);
  }

  .value-strip p:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .split-heading,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .bundle-layout {
    grid-template-columns: 1fr;
    padding-block: 50px 70px;
  }

  .bundle-visual {
    min-height: 470px;
  }

  .bundle-copy {
    max-width: none;
  }

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

  .commitment-grid article {
    min-height: 230px;
  }

  .commitment-icon {
    margin-bottom: 30px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .checkout-dialog {
    max-height: calc(100% - 20px);
  }

  .checkout-panel {
    grid-template-columns: 1fr;
  }

  .checkout-intro,
  .order-form {
    padding: 38px 28px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .announcement {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.61rem;
    letter-spacing: 0.03em;
  }

  .site-header {
    min-height: 66px;
    padding: 9px 12px;
  }

  .brand img {
    width: 118px;
  }

  .language-toggle {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .cart-button {
    min-width: 40px;
    min-height: 40px;
    padding: 4px;
  }

  .cart-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .cart-count {
    min-width: 30px;
    height: 30px;
  }

  .hero {
    min-height: 0;
    padding-block: 48px 55px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust > span {
    grid-template-columns: 30px 1fr;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-showcase {
    min-height: 390px;
    border-radius: 44% 44% 20px 20px;
  }

  .hero-note {
    right: 12px;
    bottom: 12px;
    width: 165px;
    padding: 12px;
  }

  .value-strip {
    padding-inline: 0;
  }

  .value-strip p {
    min-height: 65px;
    padding: 8px;
    font-size: 0.68rem;
  }

  .shop-section,
  .commitment-section,
  .faq-section {
    padding-block: 78px;
  }

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

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

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

  .product-media {
    min-height: 340px;
  }

  .product-media > img {
    height: 324px;
  }

  .product-media .bottle-brand {
    left: 36%;
    width: 28%;
  }

  .bundle-visual {
    min-height: 360px;
  }

  .bundle-blob {
    width: 320px;
    height: 320px;
  }

  .bundle-sticker {
    top: 10%;
    left: 2%;
    width: 72px;
    height: 72px;
    font-size: 0.78rem;
  }

  .bundle-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .steps-section {
    padding-block: 75px;
  }

  .final-cta-inner {
    min-height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .footer-bottom p:last-child {
    text-align: start;
  }

  .cart-dialog {
    width: 100%;
  }

  .drawer-panel {
    padding: 20px 16px;
  }

  .checkout-dialog {
    width: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .checkout-intro {
    padding: 42px 20px 28px;
  }

  .checkout-intro h2 {
    padding-right: 32px;
    font-size: 2.25rem;
  }

  body[dir="rtl"] .checkout-intro h2 {
    padding-right: 0;
    padding-left: 32px;
  }

  .order-form {
    grid-template-columns: 1fr;
    padding: 28px 20px 34px;
  }

  .order-form label,
  .order-form label:has(textarea) {
    grid-column: 1 / -1;
  }

  .toast {
    right: 12px;
    bottom: 82px;
    left: 12px;
    max-width: none;
    text-align: center;
  }

  body[dir="rtl"] .toast {
    right: 12px;
    left: 12px;
  }

  .mobile-cart-bar {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: grid;
    min-height: 58px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 0;
    border-radius: 18px;
    color: var(--white);
    background: var(--forest-deep);
    box-shadow: 0 14px 36px rgba(14, 43, 30, 0.3);
    font-size: 0.68rem;
  }

  .mobile-cart-bar[hidden] {
    display: none;
  }

  .mobile-cart-bar > span:first-child {
    text-align: start;
  }

  .mobile-cart-bar > span:last-child {
    color: var(--sage);
    font-weight: 700;
    text-align: end;
  }

  .legal-card {
    margin-block: 20px 50px;
    border-radius: 24px;
  }
}

/* EVADAMCARE 2026 — premium wellness visual system */
:root {
  --forest: #0f4937;
  --forest-deep: #082c21;
  --sage: #cce8d6;
  --sage-pale: #eef8f1;
  --ivory: #f7f4ed;
  --paper: #fcfaf5;
  --terracotta: #e2684f;
  --ink: #12251e;
  --muted: #64736c;
  --line: color-mix(in srgb, var(--forest) 14%, transparent);
  --shadow: 0 28px 90px rgba(8, 44, 33, 0.14);
  --shadow-soft: 0 16px 48px rgba(8, 44, 33, 0.09);
  --accent-lime: #cbf17c;
  --accent-gold: #d3a34d;
  --radius-sm: 16px;
  --radius-md: 30px;
  --radius-lg: 52px;
  --shell: min(1240px, calc(100% - 48px));
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(181, 236, 204, 0.22), transparent 24rem),
    radial-gradient(circle at 92% 34%, rgba(255, 199, 184, 0.16), transparent 28rem),
    var(--paper);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", Tahoma, Arial, sans-serif;
}

body::before {
  position: fixed;
  z-index: -5;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(15, 73, 55, 0.075) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.32;
  animation: ambient-grid-drift 28s linear infinite;
}

h1,
h2 {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-weight: 760;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 750px;
  font-size: clamp(3.5rem, 6.4vw, 6.8rem);
  line-height: 0.94;
}

.announcement {
  min-height: 34px;
  color: #eaf8ef;
  background: linear-gradient(90deg, #07261c, #104a38 48%, #07261c);
}

.site-header {
  min-height: 82px;
  border-color: rgba(15, 73, 55, 0.08);
  background: rgba(252, 250, 245, 0.78);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 8px 36px rgba(8, 44, 33, 0.035);
}

.brand img {
  width: 190px;
  max-height: 48px;
  object-fit: contain;
}

.footer-brand img {
  width: 210px;
  height: auto;
}

.desktop-nav {
  gap: 42px;
  font-size: 0.83rem;
}

.language-toggle,
.cart-button {
  border-color: rgba(15, 73, 55, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cart-button {
  color: #fff;
  background: var(--forest-deep);
}

.cart-count {
  color: var(--forest-deep);
  background: #cbf17c;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100vh - 116px));
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding-block: clamp(62px, 8vw, 108px);
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 8%;
  left: -18vw;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: rgba(178, 234, 199, 0.23);
  content: "";
  filter: blur(80px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
}

.button {
  min-height: 56px;
  padding-inline: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, #11543f, #082c21);
  box-shadow: 0 16px 34px rgba(8, 44, 33, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-quiet {
  border-color: rgba(15, 73, 55, 0.16);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.hero-trust {
  max-width: 680px;
  margin-top: 46px;
  border: 1px solid rgba(15, 73, 55, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px);
}

.hero-trust > span {
  min-height: 78px;
  padding: 16px 18px;
  border-inline-end: 1px solid rgba(15, 73, 55, 0.09);
}

.hero-trust > span:last-child {
  border-inline-end: 0;
}

.hero-showcase {
  min-height: 630px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 48% 48% 70px 70px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.95), transparent 23%),
    radial-gradient(circle at 12% 78%, rgba(192, 239, 207, 0.9), transparent 36%),
    radial-gradient(circle at 88% 20%, rgba(234, 207, 255, 0.74), transparent 32%),
    linear-gradient(145deg, #eaf8ef, #f4edff 58%, #fff2e8);
  box-shadow: 0 42px 100px rgba(8, 44, 33, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-showcase::before {
  position: absolute;
  z-index: -1;
  inset: 8% -7% -7% 7%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(146, 226, 177, 0.45), rgba(237, 190, 255, 0.35));
  content: "";
  filter: blur(38px);
}

.hero-showcase::after {
  right: 13%;
  bottom: 7%;
  left: 13%;
  height: 35px;
  background: rgba(8, 44, 33, 0.22);
  filter: blur(25px);
}

.hero-orbit {
  border-color: rgba(15, 73, 55, 0.13);
}

.orbit-one {
  top: 12%;
  right: 5%;
  width: 480px;
  height: 480px;
}

.orbit-two {
  top: 25%;
  right: 23%;
  width: 240px;
  height: 240px;
}

.hero-bottle {
  filter: drop-shadow(0 28px 24px rgba(8, 44, 33, 0.19));
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}

.hero-bottle img {
  height: 100%;
  object-fit: contain;
}

.hero-bottle figcaption {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.63rem;
  font-weight: 750;
  transform: translateX(-50%);
}

.hero-bottle-main {
  right: 12%;
  bottom: 6%;
  width: 68%;
  height: 78%;
}

.hero-bottle-left {
  bottom: 7%;
  left: -17%;
  width: 55%;
  height: 64%;
  transform: rotate(-7deg);
}

.hero-bottle-right {
  z-index: 4;
  right: -20%;
  bottom: 2%;
  width: 54%;
  height: 63%;
  transform: rotate(7deg);
}

.hero-showcase:hover .hero-bottle-main {
  transform: translateY(-8px);
}

.hero-showcase:hover .hero-bottle-left {
  transform: translate(-5px, -4px) rotate(-9deg);
}

.hero-showcase:hover .hero-bottle-right {
  transform: translate(5px, -3px) rotate(9deg);
}

.hero-note {
  right: 18px;
  bottom: 18px;
  width: 205px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 38px rgba(8, 44, 33, 0.1);
  backdrop-filter: blur(18px) saturate(1.4);
}

.value-strip {
  width: var(--shell);
  margin-inline: auto;
  padding: 8px;
  border: 1px solid rgba(15, 73, 55, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.value-strip p {
  min-height: 66px;
  border-color: rgba(15, 73, 55, 0.08);
}

.shop-section,
.commitment-section,
.faq-section {
  padding-block: clamp(94px, 11vw, 156px);
}

.category-tabs {
  margin-block: 46px 30px;
}

.category-tab {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

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

.product-card {
  isolation: isolate;
  border-color: rgba(15, 73, 55, 0.09);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(8, 44, 33, 0.055);
  backdrop-filter: blur(14px);
}

.product-card:hover {
  border-color: rgba(15, 73, 55, 0.18);
  box-shadow: 0 28px 70px rgba(8, 44, 33, 0.12);
  transform: translateY(-8px);
}

.product-card::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 14%;
  left: 14%;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover::before {
  opacity: 0.9;
}

.product-media {
  width: 100%;
  min-height: 390px;
  padding: 0;
  border: 0;
  border-radius: 30px 30px 24px 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 24%),
    linear-gradient(150deg, #ebf7ef, #d9efe2);
  cursor: pointer;
  isolation: isolate;
}

.product-card[data-tone="lavender"] .product-media { background: radial-gradient(circle at 50% 42%, #fff, transparent 24%), linear-gradient(145deg, #f5eeff, #dfd5ff); }
.product-card[data-tone="botanical"] .product-media { background: radial-gradient(circle at 50% 42%, #fff, transparent 24%), linear-gradient(145deg, #f1f6dc, #d9edc2); }
.product-card[data-tone="pearl"] .product-media { background: radial-gradient(circle at 50% 42%, #fff, transparent 24%), linear-gradient(145deg, #fff4ef, #f3dfd3); }
.product-card[data-tone="sky"] .product-media { background: radial-gradient(circle at 50% 42%, #fff, transparent 24%), linear-gradient(145deg, #eef7ff, #d7eafa); }
.product-card[data-tone="ocean"] .product-media { background: radial-gradient(circle at 50% 42%, #fff, transparent 24%), linear-gradient(145deg, #eef9ff, #cfeafa); }
.product-card[data-tone="orchid"] .product-media { background: radial-gradient(circle at 50% 42%, #fff, transparent 24%), linear-gradient(145deg, #fff0fb, #ead4f4); }

.product-media::after {
  right: 25%;
  bottom: 9%;
  left: 25%;
  height: 24px;
  background: rgba(8, 44, 33, 0.2);
  filter: blur(16px);
}

.product-glow {
  position: absolute;
  z-index: -1;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(22px);
}

.product-media > img {
  width: 95%;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(8, 44, 33, 0.16));
  transform: translateY(8px) scale(1.04);
}

.product-card:hover .product-media > img {
  transform: translateY(-2px) scale(1.085);
}

.product-badge {
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.product-gallery-count {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 22px rgba(8, 44, 33, 0.08);
  font-size: 0.62rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

body[dir="rtl"] .product-gallery-count {
  right: auto;
  left: 18px;
}

.product-view {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 44, 33, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .product-view,
.product-media:focus-visible .product-view {
  opacity: 1;
  transform: translateY(0);
}

.product-content {
  padding: 26px;
}

.product-content h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.product-content > p {
  min-height: 50px;
  font-size: 0.84rem;
}

.product-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 73, 55, 0.09);
}

.product-meta strong {
  color: var(--forest-deep);
  font-size: 1.15rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9px;
  margin-top: 17px;
}

.product-discover,
.product-add {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 750;
}

.product-discover {
  border: 1px solid rgba(15, 73, 55, 0.14);
  color: var(--forest);
  background: transparent;
  cursor: pointer;
}

.product-add {
  color: #fff;
  background: linear-gradient(135deg, #11543f, #082c21);
}

.bundle-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 50%, rgba(188, 240, 207, 0.16), transparent 30%),
    linear-gradient(145deg, #082c21, #0e4735 62%, #155742);
}

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

.bundle-promo {
  padding-block: clamp(28px, 4vw, 58px);
}

.bundle-promo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(18px, 2.4vw, 36px);
  background: #083326;
  box-shadow: 0 34px 80px rgba(3, 24, 18, 0.32);
}

.bundle-promo-image {
  display: block;
  width: 100%;
  height: auto;
}

.bundle-promo-hotspot {
  position: absolute;
  top: 81.2%;
  left: 71.9%;
  width: 15.1%;
  height: 9.7%;
  border: 2px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.bundle-promo-hotspot:hover,
.bundle-promo-hotspot:focus-visible {
  border-color: rgba(203, 241, 124, 0.9);
  background: rgba(203, 241, 124, 0.12);
  outline: none;
  box-shadow: 0 0 0 5px rgba(203, 241, 124, 0.18);
}

.bundle-promo-mobile-cta,
.bundle-live-layout {
  display: none;
}

[dir="rtl"] .bundle-promo {
  display: none;
}

[dir="rtl"] .bundle-live-layout {
  display: grid;
}

.bundle-visual img {
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.26));
}

.bundle-shampoo {
  width: 58%;
  height: 96%;
}

.bundle-oil {
  right: -2%;
  width: 56%;
  height: 90%;
}

.bundle-sticker {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--forest-deep);
  background: #cbf17c;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

@media (max-width: 700px) {
  .bundle-promo-frame {
    border-radius: 18px;
  }

  .bundle-promo-hotspot {
    display: none;
  }

  .bundle-promo-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
  }

  .bundle-promo-mobile-cta p {
    display: grid;
    margin: 0;
  }

  .bundle-promo-mobile-cta strong {
    font-size: 1.65rem;
    line-height: 1;
  }

  .bundle-promo-mobile-cta del {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
  }

  .bundle-promo-mobile-cta .button {
    min-width: 158px;
  }
}

@media (max-width: 430px) {
  .bundle-promo-mobile-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .bundle-promo-mobile-cta .button {
    width: 100%;
  }
}

.commitment-grid article,
.steps-list li,
.faq-list details {
  border-color: rgba(15, 73, 55, 0.09);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 36px rgba(8, 44, 33, 0.045);
  backdrop-filter: blur(12px);
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 9vw, 138px) 0 clamp(72px, 8vw, 112px);
  color: var(--white);
  background: transparent;
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  bottom: -42%;
  left: -12%;
  width: clamp(320px, 42vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 221, 176, 0.25), rgba(132, 221, 176, 0) 67%);
  content: "";
  filter: blur(8px);
  animation: cta-halo-float 15s ease-in-out infinite alternate;
}

.final-cta-inner {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  align-items: center;
  padding: clamp(48px, 6vw, 82px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 56px;
  background: #082c21;
  box-shadow: 0 38px 110px rgba(8, 44, 33, 0.25);
}

.final-cta-inner::before,
.final-cta-inner::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
}

.final-cta-inner::before {
  background: linear-gradient(90deg, rgba(5, 37, 27, 0.99) 0%, rgba(5, 37, 27, 0.93) 38%, rgba(5, 37, 27, 0.38) 67%, rgba(5, 37, 27, 0.03) 100%);
}

.final-cta-inner::after {
  opacity: 0.42;
  background:
    radial-gradient(circle at 11% 17%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.8px),
    radial-gradient(circle at 26% 72%, rgba(211, 163, 77, 0.65) 0 1px, transparent 1.7px),
    radial-gradient(circle at 63% 15%, rgba(203, 241, 124, 0.55) 0 1px, transparent 1.6px);
  background-size: 96px 96px, 138px 138px, 172px 172px;
  animation: cta-particles 22s linear infinite;
}

body[dir="rtl"] .final-cta-inner::before {
  background: linear-gradient(270deg, rgba(5, 37, 27, 0.99) 0%, rgba(5, 37, 27, 0.93) 38%, rgba(5, 37, 27, 0.38) 67%, rgba(5, 37, 27, 0.03) 100%);
}

.final-cta-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  opacity: 0.9;
  transform: scale(1.035);
  animation: cta-artwork-float 16s ease-in-out infinite alternate;
}

body[dir="rtl"] .final-cta-art {
  object-position: center left;
  transform: scaleX(-1) scale(1.035);
  animation-name: cta-artwork-float-rtl;
}

.final-cta-atmosphere {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.6), rgba(203, 241, 124, 0.08) 42%, transparent 70%);
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.08), 0 0 34px rgba(203, 241, 124, 0.08);
  backdrop-filter: blur(2px);
}

.cta-orb-one {
  top: 14%;
  right: 7%;
  width: 74px;
  height: 74px;
  animation: cta-orb-one 10s ease-in-out infinite alternate;
}

.cta-orb-two {
  right: 42%;
  bottom: 9%;
  width: 30px;
  height: 30px;
  animation: cta-orb-two 8s ease-in-out infinite alternate;
}

.cta-orb-three {
  top: 12%;
  left: 47%;
  width: 18px;
  height: 18px;
  animation: cta-orb-three 7s ease-in-out infinite alternate;
}

.final-cta-copy {
  position: relative;
  z-index: 3;
  width: min(620px, 56%);
}

body[dir="rtl"] .final-cta-copy {
  margin-inline-start: auto;
}

.final-cta .eyebrow {
  margin-bottom: 24px;
  color: #f3d6bf;
}

.final-cta h2 {
  max-width: none;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 5.45vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body[dir="rtl"] .final-cta h2 {
  letter-spacing: 0;
  line-height: 1.13;
}

.final-cta-lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.final-cta .button-light {
  min-width: 210px;
  justify-content: center;
  color: #0b3023;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.final-cta .button-light::after {
  margin-inline-start: 10px;
  content: "↗";
}

body[dir="rtl"] .final-cta .button-light::after {
  content: "↖";
}

.final-cta .button-light:hover,
.final-cta .button-light:focus-visible {
  background: #cbf17c;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.final-cta-proof {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 50% -25%, rgba(87, 151, 113, 0.28), transparent 46%),
    #071f18;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.025) 49%, rgba(255, 255, 255, 0.025) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.018) 49%, rgba(255, 255, 255, 0.018) 51%, transparent 52%);
  background-size: 54px 92px;
  content: "";
  opacity: 0.55;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  justify-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 88px);
  padding-bottom: 68px;
  text-align: center;
}

.footer-brand,
.footer-grid > div {
  width: 100%;
  max-width: 380px;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin: 0 auto 22px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-grid h3::after {
  position: absolute;
  right: 24%;
  bottom: -10px;
  left: 24%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d3a34d, transparent);
  content: "";
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin-bottom: 11px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #cbf17c;
  transform: translateY(-1px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p:last-child {
  max-width: 720px;
  text-align: center;
}

@keyframes ambient-grid-drift {
  to { background-position: 72px 54px; }
}

@keyframes cta-halo-float {
  to { transform: translate3d(80px, -46px, 0) scale(1.08); }
}

@keyframes cta-particles {
  to { background-position: 96px -96px, -138px 138px, 172px -172px; }
}

@keyframes cta-artwork-float {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes cta-artwork-float-rtl {
  from { transform: scaleX(-1) scale(1.035) translate3d(0, 0, 0); }
  to { transform: scaleX(-1) scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes cta-orb-one {
  to { transform: translate3d(-18px, 28px, 0) scale(1.12); }
}

@keyframes cta-orb-two {
  to { transform: translate3d(24px, -18px, 0) scale(0.88); }
}

@keyframes cta-orb-three {
  to { transform: translate3d(-12px, 16px, 0); opacity: 0.52; }
}

@media (max-width: 980px) {
  .final-cta-inner {
    min-height: 600px;
    padding: 54px 46px;
  }

  .final-cta-copy {
    width: min(620px, 67%);
  }

  .final-cta h2 {
    font-size: clamp(3rem, 7vw, 4.5rem);
  }

  .final-cta-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .final-cta-proof {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .final-cta {
    padding-block: 74px 68px;
  }

  .final-cta-inner {
    min-height: 680px;
    align-items: end;
    padding: 52px 28px;
    border-radius: 42px;
  }

  .final-cta-inner::before,
  body[dir="rtl"] .final-cta-inner::before {
    background: linear-gradient(180deg, rgba(5, 37, 27, 0.12) 0%, rgba(5, 37, 27, 0.74) 46%, rgba(5, 37, 27, 0.99) 70%);
  }

  .final-cta-art,
  body[dir="rtl"] .final-cta-art {
    object-position: 68% center;
    opacity: 0.86;
  }

  .final-cta-copy,
  body[dir="rtl"] .final-cta-copy {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .final-cta .eyebrow {
    justify-content: center;
  }

  .final-cta-lead {
    margin-inline: auto;
  }

  .final-cta-actions {
    align-items: center;
  }

  .cta-orb-three {
    left: 18%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-brand,
  .footer-grid > div {
    max-width: 480px;
  }
}

@media (max-width: 430px) {
  .final-cta {
    padding-block: 58px 54px;
  }

  .final-cta-inner {
    min-height: 650px;
    padding: 44px 20px;
    border-radius: 34px;
  }

  .final-cta h2 {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }

  .final-cta-lead {
    font-size: 0.88rem;
  }

  .final-cta .button-light {
    width: 100%;
    min-width: 0;
  }

  .final-cta-proof {
    font-size: 0.66rem;
  }

  .site-footer {
    padding-top: 66px;
  }

  .footer-grid {
    padding-bottom: 52px;
  }

  .footer-bottom {
    min-height: 126px;
    padding-inline: 8px;
  }
}

/* Product detail gallery */
.product-dialog {
  width: min(1160px, calc(100% - 32px));
  max-width: none;
  max-height: min(900px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 36px;
  color: var(--ink);
  background: #fbfaf6;
  box-shadow: 0 40px 130px rgba(2, 24, 16, 0.4);
}

.product-dialog::backdrop {
  background: rgba(4, 27, 19, 0.64);
  backdrop-filter: blur(12px);
}

.product-detail-panel {
  position: relative;
  display: grid;
  max-height: min(900px, calc(100vh - 32px));
  overflow: auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.product-detail-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(8, 44, 33, 0.12);
  backdrop-filter: blur(14px);
}

body[dir="rtl"] .product-detail-close {
  right: auto;
  left: 18px;
}

.product-detail-gallery {
  position: relative;
  display: grid;
  min-height: 690px;
  padding: 34px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.92), transparent 24%),
    linear-gradient(145deg, #e6f4eb, #d5ebdd);
}

.product-detail-gallery::before {
  position: absolute;
  inset: 24px auto 24px 24px;
  width: 1px;
  background: linear-gradient(transparent, rgba(15, 73, 55, 0.16), transparent);
  content: "";
  opacity: 0.35;
}

.product-detail-gallery[data-tone="lavender"] { background: radial-gradient(circle at 50% 34%, #fff, transparent 24%), linear-gradient(145deg, #f4edff, #ddd2ff); }
.product-detail-gallery[data-tone="botanical"] { background: radial-gradient(circle at 50% 34%, #fff, transparent 24%), linear-gradient(145deg, #f1f5df, #d8eabd); }
.product-detail-gallery[data-tone="pearl"] { background: radial-gradient(circle at 50% 34%, #fff, transparent 24%), linear-gradient(145deg, #fff3ed, #efdacc); }
.product-detail-gallery[data-tone="sky"] { background: radial-gradient(circle at 50% 34%, #fff, transparent 24%), linear-gradient(145deg, #edf7ff, #d5e9fa); }
.product-detail-gallery[data-tone="ocean"] { background: radial-gradient(circle at 50% 34%, #fff, transparent 24%), linear-gradient(145deg, #edf9ff, #cbe9f9); }
.product-detail-gallery[data-tone="orchid"] { background: radial-gradient(circle at 50% 34%, #fff, transparent 24%), linear-gradient(145deg, #fff0fc, #ead1f4); }

.product-detail-main {
  display: grid;
  min-height: 0;
  place-items: center;
}

.product-image-zoom {
  position: relative;
  display: grid;
  width: 100%;
  height: 520px;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.18);
  cursor: zoom-in;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-image-zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(8, 44, 33, 0.19));
  transition: width 260ms cubic-bezier(.2,.8,.2,1), transform 260ms cubic-bezier(.2,.8,.2,1);
}

.product-image-zoom.is-zoomed {
  place-items: start center;
  overflow: auto;
  cursor: zoom-out;
  background: rgba(255, 255, 255, 0.72);
}

.product-image-zoom.is-zoomed img {
  width: 155%;
  max-width: none;
  height: auto;
  min-height: 100%;
  object-fit: contain;
  filter: none;
}

.product-image-view-label,
.product-zoom-hint {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(8, 44, 33, 0.1);
  font-size: 0.64rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.product-image-view-label {
  top: 16px;
  left: 16px;
}

.product-zoom-hint {
  right: 16px;
  bottom: 16px;
  color: #fff;
  background: rgba(8, 44, 33, 0.84);
}

.product-image-zoom.is-zoomed .product-image-view-label,
.product-image-zoom.is-zoomed .product-zoom-hint {
  position: sticky;
}

.product-image-zoom.is-zoomed .product-image-view-label {
  top: 14px;
  left: 14px;
  justify-self: start;
}

.product-image-zoom.is-zoomed .product-zoom-hint {
  right: 14px;
  bottom: 14px;
  align-self: end;
  justify-self: end;
}

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

.product-thumbnail {
  display: grid;
  min-width: 0;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(15, 73, 55, 0.09);
  border-radius: 14px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
  text-align: start;
  backdrop-filter: blur(12px);
}

.product-thumbnail.is-active {
  border-color: var(--forest);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(8, 44, 33, 0.1);
}

.product-thumbnail img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(34px, 5vw, 64px);
}

.product-detail-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.product-detail-lead {
  color: var(--muted);
  font-size: 1rem;
}

.product-brief {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 73, 55, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 0%, rgba(203, 241, 124, 0.34), transparent 32%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(8, 44, 33, 0.055);
}

.product-brief h3 {
  margin: 0 0 10px;
  color: var(--forest-deep);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[dir="rtl"] .product-brief h3 {
  letter-spacing: 0;
}

.product-brief ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-brief li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.product-brief li::before {
  position: absolute;
  top: 0.15em;
  inset-inline-start: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--accent-lime);
  content: "✓";
  font-size: 0.56rem;
  font-weight: 900;
}

.product-detail-facts {
  display: grid;
  margin-block: 24px;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(15, 73, 55, 0.1);
}

.product-detail-facts span {
  display: grid;
  gap: 3px;
  padding: 16px 12px 16px 0;
}

.product-detail-facts small {
  color: var(--muted);
  font-size: 0.65rem;
}

.product-detail-facts strong {
  color: var(--forest-deep);
  font-size: 0.74rem;
}

.product-caution {
  padding: 14px 16px;
  border: 1px solid rgba(15, 73, 55, 0.09);
  border-radius: 14px;
  color: var(--muted);
  background: var(--sage-pale);
  font-size: 0.72rem;
  line-height: 1.5;
}

.product-detail-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.product-detail-buy > strong {
  color: var(--forest-deep);
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(.2,.8,.2,1), box-shadow 200ms ease, border-color 200ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@supports not (color: color-mix(in srgb, black, white)) {
  :root { --line: rgba(15, 73, 55, 0.14); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-showcase {
    min-height: 560px;
  }

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

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

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 700px); }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 610px;
    margin-top: 16px;
  }

  .value-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-detail-gallery {
    min-height: 620px;
  }

  .product-detail-copy {
    padding: 46px 34px;
  }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }

  h1 {
    font-size: clamp(3rem, 14.4vw, 4.4rem);
    line-height: 0.97;
  }

  .site-header {
    min-height: 68px;
  }

  .hero {
    padding-block: 52px 60px;
  }

  .hero-trust {
    border-radius: 18px;
  }

  .hero-trust > span {
    min-height: auto;
    border-inline-end: 0;
  }

  .hero-showcase {
    min-height: 430px;
    border-radius: 48% 48% 34px 34px;
  }

  .hero-bottle-main {
    right: 8%;
    width: 76%;
  }

  .hero-bottle-left {
    left: -22%;
    width: 60%;
  }

  .hero-bottle-right {
    right: -24%;
    width: 59%;
  }

  .hero-bottle figcaption {
    display: none;
  }

  .hero-note {
    width: 155px;
    font-size: 0.61rem;
  }

  .value-strip {
    width: calc(100% - 24px);
    padding: 5px;
  }

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

  .product-media {
    min-height: 370px;
  }

  .product-media > img {
    height: 350px;
  }

  .product-view {
    opacity: 1;
    transform: none;
  }

  .product-dialog {
    width: 100vw;
    max-width: 100vw;
    max-height: 100%;
    border-radius: 0;
  }

  .product-detail-panel {
    width: 100%;
    max-height: 100vh;
    overflow-x: hidden;
  }

  .product-detail-gallery,
  .product-detail-copy {
    min-width: 0;
  }

  .product-detail-gallery {
    min-height: 520px;
    padding: 24px 14px 18px;
  }

  .product-detail-close {
    top: 12px;
    right: 12px;
  }

  body[dir="rtl"] .product-detail-close {
    right: auto;
    left: 12px;
  }

  .product-image-zoom {
    height: 390px;
  }

  .product-image-zoom img {
    height: 100%;
  }

  .product-image-zoom.is-zoomed img {
    width: 175%;
    height: auto;
  }

  .product-thumbnails {
    gap: 6px;
  }

  .product-thumbnail {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 5px;
    text-align: center;
  }

  .product-thumbnail img {
    width: 48px;
    height: 48px;
  }

  .product-thumbnail span {
    display: none;
  }

  .product-detail-copy {
    padding: 40px 20px 36px;
  }

  .product-detail-copy h2 {
    font-size: clamp(2.15rem, 11vw, 2.7rem);
    overflow-wrap: anywhere;
  }

  .product-detail-lead {
    overflow-wrap: anywhere;
  }

  .product-brief {
    padding: 16px;
  }

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

  .product-detail-facts span {
    grid-template-columns: 0.8fr 1.2fr;
    padding-block: 10px;
    border-bottom: 1px solid rgba(15, 73, 55, 0.08);
  }

  .product-detail-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .product-detail-buy .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-bottle,
  .product-media > img {
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Organic discovery and internal linking */
.organic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  padding-block: 74px 110px;
}

.organic-intro h2 {
  max-width: 760px;
  margin: 8px 0 20px;
  color: var(--forest-deep);
  font-size: clamp(2.4rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.organic-intro > p:last-child {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

.organic-links {
  display: grid;
  gap: 12px;
}

.organic-links a {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 16px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(12, 58, 43, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(12, 58, 43, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.organic-links a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 22px;
  content: "↗";
  color: var(--forest);
  font-size: 1.1rem;
  transform: translateY(-50%);
}

body[dir="rtl"] .organic-links a::after { content: "↖"; }
.organic-links a:hover { border-color: rgba(12, 93, 65, 0.3); box-shadow: 0 20px 44px rgba(12, 58, 43, 0.12); transform: translateY(-3px); }
.organic-links span { grid-row: span 2; color: var(--terracotta); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.08em; }
.organic-links strong { padding-inline-end: 32px; color: var(--forest-deep); font-size: 1.02rem; }
.organic-links small { padding-inline-end: 32px; color: var(--muted); line-height: 1.5; }

.product-seo-link,
.product-full-page {
  display: inline-block;
  margin-top: 12px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 780;
  text-decoration: underline;
  text-decoration-color: rgba(15, 91, 65, 0.32);
  text-underline-offset: 4px;
}

.product-seo-link:hover,
.product-full-page:hover { color: var(--terracotta); }

.footer-grid { grid-template-columns: 1.4fr repeat(3, minmax(0, 0.8fr)); gap: clamp(30px, 4vw, 64px); }

@media (max-width: 980px) {
  .organic-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .organic-section { padding-block: 52px 74px; }
  .organic-links a { grid-template-columns: 36px 1fr; padding: 19px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}
