:root {
  --soft-ivory: #f6f5f2;
  --warm-white: #fbfaf7;
  --deep-slate: #243447;
  --cool-gray: #7b8794;
  --deep-emerald: #1f7a68;
  --boston-green: #1f7a68;
  --emerald-dark: #145f51;
  --sage: #abc5b8;
  --light-stone: #d8ddd7;
  --line: rgba(36, 52, 71, 0.14);
  --shadow: 0 24px 70px rgba(36, 52, 71, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--deep-slate);
  background: var(--soft-ivory);
  font-family: Inter, Manrope, Arial, Helvetica, sans-serif;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--deep-emerald);
  outline-offset: 3px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-slate);
  letter-spacing: 0;
}

.logo-mark {
  position: relative;
  width: 42px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--deep-emerald);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  border: 2px solid var(--deep-emerald);
  border-left: 0;
}

.logo-mark::before {
  top: 5px;
  right: 3px;
  width: 24px;
  height: 23px;
  border-radius: 0 18px 18px 0;
}

.logo-mark::after {
  right: 3px;
  bottom: 6px;
  width: 30px;
  height: 27px;
  border-radius: 0 22px 22px 0;
}

.logo strong,
.logo small {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: lowercase;
}

.logo strong {
  font-size: 1.8rem;
}

.logo small {
  margin-top: 0;
  color: var(--deep-emerald);
  font-size: 1.8rem;
}

.logo strong::first-letter,
.logo small::first-letter {
  text-transform: uppercase;
}

.nav-links {
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: clamp(28px, 4vw, 62px);
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--deep-slate);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--deep-emerald);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--deep-slate);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--deep-emerald);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  color: var(--warm-white);
  background: var(--deep-emerald);
  font-size: 0.68rem;
  font-weight: 900;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  color: var(--deep-slate);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  height: min(714px, calc(100svh - 112px));
  min-height: 620px;
  padding: clamp(96px, 12svh, 128px) max(24px, calc((100vw - 1180px) / 2)) 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: start;
  gap: 54px;
  background: var(--warm-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.94) 34%, rgba(251, 250, 247, 0.36) 45%, rgba(251, 250, 247, 0) 54%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--deep-emerald);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 640px;
  color: var(--deep-slate);
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-mobile-eyebrow,
.hero-title-mobile {
  display: none;
}

.hero .hero-title {
  margin: 0 0 1.1rem;
  font-size: 3.87rem;
  line-height: 1.12;
}

.hero-benefits {
  max-width: 520px;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #314150;
  font-size: 0.9rem;
  line-height: 1.4;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 28px;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 17px;
  height: 17px;
  background: var(--deep-emerald);
  border-radius: 50%;
}

.hero-benefits li::after {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 5px;
  width: 7px;
  height: 4px;
  border: solid var(--warm-white);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.hero-benefits strong {
  color: var(--deep-slate);
}

.hero-actions {
  width: min(100%, 360px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .primary-button {
  order: 1;
  width: 100%;
  color: var(--warm-white);
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
}

.hero-contact-actions {
  order: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-contact-button {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.hero-contact-button--whatsapp {
  color: #25d366;
  border-color: #25d366;
}

.hero-contact-button--telegram {
  color: #229ed9;
  border-color: #229ed9;
}

.hero-contact-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-button,
.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-button,
.add-to-cart {
  color: var(--warm-white);
  background: var(--deep-emerald);
  border: 1px solid var(--deep-emerald);
}

.secondary-button {
  color: var(--deep-emerald);
  background: transparent;
  border: 1px solid var(--sage);
}

.hero-button:hover,
.hero-button:focus-visible,
.add-to-cart:hover,
.add-to-cart:focus-visible {
  transform: translateY(-2px);
}

.primary-button:hover,
.primary-button:focus-visible,
.add-to-cart:hover,
.add-to-cart:focus-visible {
  color: var(--deep-emerald);
  background: transparent;
}

.hero-actions .primary-button:hover,
.hero-actions .primary-button:focus-visible {
  color: var(--warm-white);
  background: #26977f;
  border-color: #26977f;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: var(--warm-white);
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
}

.hero-contact-button--whatsapp:hover,
.hero-contact-button--whatsapp:focus-visible {
  color: var(--warm-white);
  background: #25d366;
  border-color: #25d366;
}

.hero-contact-button--telegram:hover,
.hero-contact-button--telegram:focus-visible {
  color: var(--warm-white);
  background: #229ed9;
  border-color: #229ed9;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-picture,
.hero-picture img {
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: block;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

.research-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.research-section-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.research-pillar {
  min-height: 168px;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  align-content: center;
  border-right: 1px solid var(--line);
}

.research-pillar:last-child {
  border-right: 0;
}

.pillar-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  color: var(--deep-emerald);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.research-pillar h3 {
  margin: 0 0 8px;
  color: var(--deep-slate);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-pillar p {
  margin: 0;
  color: #60707c;
  font-size: 0.82rem;
  line-height: 1.55;
}

.content-section h2,
.quality-section h2,
.catalog-section h2 {
  color: var(--deep-slate);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.catalog-section {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  color: var(--deep-slate);
  background: var(--soft-ivory);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.catalog-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cool-gray);
  font-size: 0.9rem;
}

select {
  min-height: 42px;
  padding: 0 34px 0 12px;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid var(--light-stone);
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 34px;
}

.product-card {
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  transform: translateY(0);
  transition: transform 220ms ease;
}

.product-media {
  min-height: 320px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.product-media-carousel {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.product-media-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-media-viewport::-webkit-scrollbar {
  display: none;
}

.product-media-track {
  width: 100%;
  display: flex;
}

.product-media-frame {
  min-width: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  scroll-snap-align: center;
}

.product-media-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.product-media-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: #c8d0ca;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.product-media-dots button[aria-current="true"] {
  background: var(--deep-emerald);
}

.product-link,
.product-title-link {
  color: inherit;
}

.product-media img {
  width: 205px;
  height: 298px;
  object-fit: cover;
  filter: drop-shadow(0 22px 18px rgba(36, 52, 71, 0.18));
  transform: translateY(0) scale(1);
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  filter: drop-shadow(0 30px 24px rgba(36, 52, 71, 0.24));
  transform: translateY(-8px) scale(1.035);
}

.product-body {
  padding: 16px 0 0;
}

.product-body h3 {
  max-width: 320px;
  min-height: 42px;
  margin: 0 auto 8px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.12;
}

.product-title-link {
  transition: color 180ms ease;
}

.product-title-link:hover,
.product-title-link:focus-visible {
  color: var(--deep-emerald);
}

.product-card-rating {
  min-height: 22px;
  margin: -2px 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #5d6b75;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-card-rating-star {
  color: #d99a18;
  font-size: 0.96rem;
  line-height: 1;
  transform: translateY(-1px);
}

.product-card-rating-value {
  color: var(--deep-slate);
}

.product-card-rating-link {
  color: #6b7883;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.product-card-rating-count {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.product-card-rating-count::after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 1px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12.2a4.2 4.2 0 1 0 0-8.4 4.2 4.2 0 0 0 0 8.4Zm0 2.1c-4.1 0-7.4 2.4-7.4 5.4 0 .5.4.9.9.9h13c.5 0 .9-.4.9-.9 0-3-3.3-5.4-7.4-5.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12.2a4.2 4.2 0 1 0 0-8.4 4.2 4.2 0 0 0 0 8.4Zm0 2.1c-4.1 0-7.4 2.4-7.4 5.4 0 .5.4.9.9.9h13c.5 0 .9-.4.9-.9 0-3-3.3-5.4-7.4-5.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.product-card-rating-link:hover,
.product-card-rating-link:focus-visible {
  color: var(--deep-emerald);
  text-decoration: underline;
}

.product-dosage {
  margin: 0 0 8px;
  color: var(--cool-gray);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-gift-badge {
  width: fit-content;
  max-width: min(100%, 216px);
  margin: 0 auto 12px;
  padding: 6px 11px;
  color: var(--warm-white);
  background: #d88a1d;
  border: 1px solid #d88a1d;
  border-radius: 2px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-summary {
  max-width: 300px;
  min-height: 72px;
  margin: 0 auto 14px;
  display: -webkit-box;
  color: #60707c;
  font-size: 0.9rem;
  line-height: 1.55;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-price {
  margin: 0 0 18px;
  color: var(--deep-emerald);
  font-size: 1.25rem;
  font-weight: 900;
}

.product-dosage-chooser {
  width: min(220px, 100%);
  margin: 0 auto 10px;
  padding: 12px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.product-dosage-chooser[hidden] {
  display: none;
}

.product-dosage-chooser p {
  margin: 0 0 9px;
  color: var(--cool-gray);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-dosage-options {
  display: grid;
  gap: 8px;
}

.product-dosage-option {
  min-height: 42px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--deep-slate);
  background: #edf1ed;
  border: 1px solid #c8d0ca;
  cursor: pointer;
}

.product-dosage-option span,
.product-dosage-option strong {
  white-space: nowrap;
}

.product-dosage-option span {
  font-size: 0.86rem;
  font-weight: 900;
}

.product-dosage-option strong {
  color: var(--deep-emerald);
  font-size: 0.78rem;
}

.product-dosage-option:hover,
.product-dosage-option:focus-visible {
  border-color: var(--deep-emerald);
}

.add-to-cart,
.product-details-button {
  width: min(190px, 100%);
  min-height: 44px;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  background: var(--deep-emerald);
  border: 1px solid var(--deep-emerald);
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.product-details-button {
  display: inline-flex;
  margin-bottom: 10px;
}

.product-details-button:hover,
.product-details-button:focus-visible {
  color: var(--deep-emerald);
  background: transparent;
  border-color: var(--deep-emerald);
  transform: translateY(-1px);
}

.add-to-cart {
  color: var(--warm-white);
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
}

.add-to-cart:hover,
.add-to-cart:focus-visible {
  color: var(--warm-white);
  background: #176354;
  border-color: #176354;
}

body.modal-open {
  overflow: hidden;
}

.product-details-modal[hidden] {
  display: none;
}

.cart-added-modal[hidden] {
  display: none;
}

.product-details-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-details-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 26, 0.58);
  backdrop-filter: blur(8px);
}

.cart-added-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  padding: 24px;
  display: grid;
  place-items: center;
}

.cart-added-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 26, 0.58);
  backdrop-filter: blur(8px);
}

.cart-added-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 34px;
  overflow: auto;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid rgba(36, 52, 71, 0.16);
  box-shadow: 0 28px 80px rgba(12, 22, 30, 0.24);
}

.cart-added-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--deep-slate);
  background: transparent;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-added-eyebrow {
  margin: 0 0 8px;
  color: var(--deep-emerald);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-added-dialog h2 {
  margin: 0 52px 26px 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0;
}

.cart-added-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-added-media {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: #eef1ee;
  border: 1px solid rgba(36, 52, 71, 0.08);
}

.cart-added-media img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cart-added-body {
  min-width: 0;
}

.cart-added-title {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--deep-slate);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cart-added-meta {
  margin: 0;
  color: #5b6670;
  line-height: 1.45;
}

.cart-added-line-total {
  margin: 0;
  color: var(--deep-slate);
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}

.cart-added-summary {
  margin: 20px 0 26px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  color: var(--deep-slate);
  font-size: 1.15rem;
  font-weight: 900;
}

.cart-added-checkout,
.cart-added-continue {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.cart-added-checkout {
  color: var(--warm-white);
  background: #d88a1d;
  border: 1px solid #d88a1d;
}

.cart-added-checkout:hover,
.cart-added-checkout:focus-visible {
  background: #b86f13;
  border-color: #b86f13;
}

.cart-added-continue {
  margin-top: 10px;
  color: var(--deep-emerald);
  background: transparent;
  border: 1px solid var(--sage);
}

.product-details-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(720px, calc(100svh - 44px));
  overflow: auto;
  padding: 34px;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid rgba(36, 52, 71, 0.16);
  box-shadow: var(--shadow);
}

.product-details-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--deep-slate);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.product-details-dialog h2 {
  margin: 0 36px 10px 0;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.product-details-dosage {
  margin: 0 0 18px;
  color: var(--deep-emerald);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-details-text {
  margin: 0 0 20px;
  color: #52616d;
  font-size: 0.98rem;
  line-height: 1.75;
}

.product-details-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: #52616d;
  line-height: 1.7;
}

.product-details-list li + li {
  margin-top: 8px;
}

.product-details-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--warm-white);
  background: #156754;
  border: 1px solid #156754;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-section {
  padding: 84px max(24px, calc((100vw - 1180px) / 2));
  background: var(--warm-white);
  color: var(--deep-slate);
  border-top: 1px solid var(--line);
}

.content-section p {
  max-width: 760px;
  color: #4f5d68;
  line-height: 1.8;
}

.quality-section {
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background: var(--soft-ivory);
  border-top: 1px solid var(--line);
}

.quality-flow {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.flow-heading,
.quality-flow article {
  padding: 36px 30px;
}

.quality-flow article {
  border-left: 1px solid var(--line);
}

.quality-flow article span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--deep-emerald);
  border: 1px solid var(--sage);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.quality-flow h3 {
  margin: 0 0 10px;
  color: var(--deep-slate);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality-flow p {
  margin: 0;
  color: #60707c;
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-section {
  background: var(--warm-white);
}

.telegram-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pdp-main {
  background: var(--soft-ivory);
}

.product-detail {
  padding: 76px max(24px, calc((100vw - 1180px) / 2)) 64px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.pdp-gallery {
  position: relative;
  min-width: 0;
  min-height: 560px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--warm-white), #edf1ed);
  border: 1px solid var(--line);
}

.pdp-gallery img {
  width: min(360px, 78%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 28px rgba(36, 52, 71, 0.2));
}

.pdp-gallery-carousel {
  position: relative;
  align-content: center;
  gap: 18px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 44px);
}

.pdp-gallery-viewport {
  width: 100%;
  min-width: 0;
}

.pdp-gallery-frame {
  min-height: 460px;
}

.pdp-gallery-carousel img {
  width: min(360px, 82%);
  max-height: 460px;
}

.pdp-gallery-dots {
  align-self: end;
}

.pdp-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--deep-slate);
  background: rgba(251, 250, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(36, 52, 71, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.pdp-gallery-nav--prev {
  left: 22px;
}

.pdp-gallery-nav--next {
  right: 22px;
}

.pdp-gallery-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdp-gallery-nav:hover,
.pdp-gallery-nav:focus-visible {
  color: var(--warm-white);
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
}

.pdp-gallery-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.pdp-panel {
  min-width: 0;
  color: var(--deep-slate);
}

.pdp-panel h1 {
  max-width: 640px;
  font-size: 3.6rem;
}

.pdp-dosage {
  margin: 18px 0 22px;
  color: var(--deep-emerald);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pdp-gallery .product-gift-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  margin: 0;
}

.pdp-summary {
  max-width: 640px;
  margin: 0 0 18px;
  color: #4f5d68;
  font-size: 1rem;
  line-height: 1.8;
}

.pdp-benefits {
  max-width: 640px;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.pdp-benefits li {
  position: relative;
  padding-left: 22px;
  color: #4f5d68;
  line-height: 1.65;
}

.pdp-benefits li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--deep-emerald);
}

.pdp-note {
  max-width: 640px;
  margin: 0 0 26px;
  color: #60707c;
  line-height: 1.75;
}

.pdp-price {
  margin: 0 0 24px;
  color: var(--deep-emerald);
  font-size: 1.8rem;
  font-weight: 900;
}

.pdp-stock {
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 12px;
  color: #4f5d68;
  background: #edf1ed;
  border: 1px solid #c8d0ca;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdp-stock.is-unavailable {
  color: #59645f;
  background: #e5ebe6;
  border-color: #b9c3bd;
}

.pdp-purchase {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
}

.pdp-cart-action {
  display: grid;
  gap: 7px;
}

.pdp-payment-note {
  margin: 0;
  color: var(--deep-emerald);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.dosage-label,
.quantity-label {
  display: grid;
  gap: 7px;
  color: var(--cool-gray);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dosage-select,
.quantity-input {
  width: 96px;
  min-height: 48px;
  padding: 0 12px;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid var(--light-stone);
}

.dosage-select {
  border-radius: 0;
}

.dosage-select:disabled {
  color: var(--deep-slate);
  opacity: 1;
  cursor: default;
}

.quantity-input:disabled {
  color: #6a746f;
  background: #eef1ee;
  cursor: not-allowed;
}

.pdp-add-to-cart {
  width: 180px;
  min-height: 52px;
  padding: 0 16px;
  color: var(--warm-white);
  background: #d88a1d;
  border-color: #d88a1d;
  font-size: 0.7rem;
}

.pdp-add-to-cart:hover,
.pdp-add-to-cart:focus-visible {
  color: var(--warm-white);
  background: #b86f13;
  border-color: #b86f13;
}

.pdp-add-to-cart.is-unavailable,
.pdp-add-to-cart.is-unavailable:hover,
.pdp-add-to-cart.is-unavailable:focus-visible {
  color: #f8faf8;
  background: #7f8b85;
  border-color: #7f8b85;
  cursor: not-allowed;
  transform: none;
}

.pdp-trust-strip {
  max-width: 640px;
  margin: 16px 0 0;
  padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.pdp-trust-strip li {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 4px 14px;
}

.pdp-trust-strip li + li {
  border-left: 1px solid var(--line);
}

.pdp-trust-strip svg {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  color: #1f7a68;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdp-trust-strip strong,
.pdp-trust-strip small {
  min-width: 0;
  overflow-wrap: break-word;
}

.pdp-trust-strip strong {
  color: var(--deep-slate);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
}

.pdp-trust-strip small {
  color: #60707c;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.pdp-result-block {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 38px;
}

.pdp-result-inner {
  padding: 38px clamp(28px, 3.5vw, 54px) 34px;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pdp-result-block .eyebrow {
  margin: 0 0 10px;
  color: var(--boston-green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pdp-result-block h2 {
  margin: 0 0 12px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
}

.pdp-result-lead {
  margin: 0 0 22px;
  color: #4f5d68;
  font-size: 1rem;
  font-weight: 800;
}

.pdp-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.pdp-result-grid article {
  min-width: 0;
  padding: 0 18px 0 0;
}

.pdp-result-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.pdp-result-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  color: #1f7a68;
  background: #eef6f2;
  border: 1px solid #cfe1da;
  border-radius: 50%;
}

.pdp-result-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdp-result-grid h3 {
  margin: 0 0 8px;
  color: var(--deep-slate);
  font-size: 1rem;
  line-height: 1.25;
}

.pdp-result-grid p {
  margin: 0;
  color: #60707c;
  font-size: 0.93rem;
  line-height: 1.6;
}

.product-info-hub {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 84px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.info-block {
  padding: 34px 30px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.info-block h2 {
  margin: 0 0 14px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.1;
}

.info-block p {
  margin: 0;
  color: #60707c;
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-technical-desktop {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-technical-card {
  min-width: 0;
  padding: 36px 34px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.product-technical-card h2 {
  margin: 0 0 20px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.12;
}

.product-technical-card p {
  margin: 0;
  color: #60707c;
  font-size: 0.97rem;
  line-height: 1.75;
}

.product-technical-card p + p {
  margin-top: 12px;
}

.product-technical-card .certificate-button {
  margin-top: 18px;
}

.product-accordion {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-bottom: 36px;
}

.product-accordion .info-block {
  padding: 0;
}

.product-accordion summary {
  position: relative;
  display: block;
  padding: 22px 58px 22px 24px;
  color: var(--deep-slate);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 24px;
  height: 24px;
  color: var(--boston-green);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

.product-accordion details[open] summary::after {
  content: "-";
}

.product-accordion .product-specs-wrapper {
  padding: 0 24px 24px;
}

.product-accordion .product-specs-wrapper p + p {
  margin-top: 10px;
}

.product-purity-value {
  margin: 0 0 12px;
  color: var(--deep-emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.certificate-button {
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--boston-green);
  background: transparent;
  border: 1px solid #b6cec5;
  font-weight: 900;
  text-decoration: none;
}

.certificate-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-button:hover,
.certificate-button:focus-visible {
  color: var(--warm-white);
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
}

.product-info-hub.has-faq {
  padding-bottom: 36px;
}

.product-faq {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 84px;
}

.product-faq-inner {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.product-faq .eyebrow {
  margin: 0 0 10px;
  color: var(--boston-green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-faq h2 {
  margin: 0 0 24px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.product-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-faq details {
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.product-faq summary {
  position: relative;
  display: block;
  padding: 20px 54px 20px 22px;
  color: var(--deep-slate);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.product-faq summary::-webkit-details-marker {
  display: none;
}

.product-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 24px;
  color: var(--boston-green);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  transform: translateY(-50%);
}

.product-faq details[open] summary::after {
  content: "-";
}

.product-faq details p {
  margin: -4px 22px 22px;
  color: #60707c;
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-reviews {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 88px;
}

.product-reviews-inner {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.product-reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.product-reviews .eyebrow {
  display: none;
}

.product-reviews h2 {
  margin: 0;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.product-reviews-summary {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 34px;
  margin: 0;
  padding: 0 12px;
  color: var(--boston-green);
  background: #eef6f2;
  border: 1px solid #cfe1da;
  border-radius: 2px;
  font-size: 0.98rem;
  font-weight: 900;
  text-align: right;
}

.product-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-review-carousel {
  position: relative;
}

.product-review-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-review-viewport::-webkit-scrollbar {
  display: none;
}

.product-review-carousel .product-review-list {
  display: flex;
  grid-template-columns: none;
}

.product-review,
.review-form-panel {
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.product-review {
  padding: 20px;
}

.product-review-carousel .product-review {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.product-review-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.product-review h3 {
  margin: 0;
  color: var(--deep-slate);
  font-size: 1rem;
}

.product-review p {
  margin: 0;
  color: #60707c;
  font-size: 0.94rem;
  line-height: 1.6;
}

.product-review > p {
  white-space: pre-line;
}

.product-review-head p {
  margin-top: 4px;
  font-size: 0.82rem;
}

.review-stars {
  display: inline-block;
  flex: 0 0 auto;
  color: #c9d2ce;
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #1f7a68 var(--rating), #c9d2ce var(--rating));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-reviews-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  color: #60707c;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.product-review-carousel .product-reviews-empty {
  flex: 0 0 100%;
}

.product-review-controls,
.product-review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.product-review-controls[hidden] {
  display: none;
}

.product-review-nav {
  width: 42px;
  height: 42px;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.product-review-nav:disabled {
  color: #a9b5b0;
  cursor: default;
  opacity: 0.55;
}

.review-form-toggle {
  min-height: 42px;
  padding: 0 18px;
  color: var(--boston-green);
  background: transparent;
  border: 1px solid var(--boston-green);
  border-radius: 2px;
  font-weight: 900;
  cursor: pointer;
}

.review-form-toggle[aria-expanded="true"] {
  color: #fbfaf7;
  background: var(--boston-green);
}

.review-form-panel {
  margin-top: 14px;
  padding: 22px;
}

.review-form-panel h3 {
  margin: 0 0 16px;
  color: var(--deep-slate);
  font-size: 1.2rem;
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--deep-slate);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-form-hint {
  margin-top: -3px;
  color: #60707c;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  color: #243447;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-sizing: border-box;
  font: inherit;
}

.review-form input,
.review-form select {
  min-height: 42px;
  padding: 0 12px;
}

.review-form textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

.review-order-product-field textarea {
  min-height: 72px;
}

.review-form-wide,
.review-rating-field,
.review-form .form-message {
  grid-column: 1 / -1;
}

.review-rating-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating-field legend {
  margin-bottom: 7px;
  color: var(--deep-slate);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-rating-options {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
}

.review-rating-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.review-rating-options label {
  display: block;
  color: #c9d2ce;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.review-rating-options input:checked ~ label,
.review-rating-options label:hover,
.review-rating-options label:hover ~ label {
  color: #1f7a68;
}

.review-form button,
.admin-secret-form button,
.admin-review-toolbar button,
.admin-review-actions button {
  min-height: 42px;
  padding: 0 18px;
  color: #fbfaf7;
  background: var(--boston-green);
  border: 1px solid var(--boston-green);
  border-radius: 2px;
  font-weight: 900;
  cursor: pointer;
}

.admin-shell-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #172232;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(18, 29, 42, 0.16);
}

.admin-shell-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.admin-shell-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f7faf9;
}

.admin-shell-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #172232;
  background: #8ee0c8;
  border: 1px solid rgba(142, 224, 200, 0.28);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.admin-shell-brand strong,
.admin-shell-brand small {
  display: block;
  letter-spacing: 0;
}

.admin-shell-brand strong {
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
}

.admin-shell-brand small {
  margin-top: 2px;
  color: rgba(247, 250, 249, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-shell-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.admin-shell-nav a {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 250, 249, 0.82);
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.admin-shell-nav a:hover,
.admin-shell-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.admin-shell-nav a[aria-current="page"] {
  color: #172232;
  background: #f7faf9;
  border-color: #f7faf9;
}

.admin-reviews-main {
  min-height: calc(100vh - 68px);
  padding: 44px max(24px, calc((100vw - 1180px) / 2)) 88px;
}

.admin-reviews-panel h1 {
  margin: 0 0 24px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
}

.admin-secret-form,
.admin-review-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.admin-secret-form label {
  display: grid;
  gap: 7px;
  min-width: min(360px, 100%);
  color: var(--deep-slate);
  font-weight: 800;
}

.admin-secret-form input,
.admin-review-toolbar select {
  min-height: 42px;
  padding: 0 12px;
  color: #243447;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.admin-review-list {
  display: grid;
  gap: 12px;
}

.admin-review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.admin-review-card h2 {
  margin: 0 0 8px;
  color: var(--deep-slate);
  font-size: 1rem;
}

.admin-review-card p {
  margin: 0 0 8px;
  color: #60707c;
}

.admin-review-actions {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-review-actions button:nth-child(2) {
  color: #243447;
  background: #e7ece9;
  border-color: #c9d2ce;
}

.admin-review-actions .danger-button {
  color: #fff;
  background: #9f2f2f;
  border-color: #9f2f2f;
}

.admin-review-actions .danger-button:hover,
.admin-review-actions .danger-button:focus-visible {
  background: #7f2424;
  border-color: #7f2424;
}

.admin-review-actions button[data-review-action="approved"] {
  color: #fbfaf7;
  background: var(--boston-green);
  border-color: var(--boston-green);
}

.admin-review-actions button[data-review-action="pending"] {
  color: var(--deep-slate);
  background: #fff;
  border-color: var(--line);
}

.admin-review-actions button[data-review-action="rejected"] {
  color: #7d1f1f;
  background: #f7eeee;
  border-color: #e0c2c2;
}

.admin-review-actions[data-current-status="approved"] button[data-review-action="approved"],
.admin-review-actions[data-current-status="pending"] button[data-review-action="pending"],
.admin-review-actions[data-current-status="rejected"] button[data-review-action="rejected"] {
  display: none;
}

.admin-partner-form {
  margin: 24px 0;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 18px;
  scroll-margin-top: 96px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  outline: 0 solid transparent;
  outline-offset: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, outline-color 0.18s ease, outline-offset 0.18s ease;
}

.admin-partner-form.is-spotlighted {
  border-color: var(--deep-emerald);
  outline: 3px solid rgba(31, 122, 104, 0.34);
  outline-offset: 5px;
  box-shadow: 0 0 0 8px rgba(31, 122, 104, 0.08), 0 18px 38px rgba(18, 29, 42, 0.14);
}

.admin-partner-form-head,
.admin-partner-actions {
  grid-column: 1 / -1;
}

.admin-partner-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
}

.admin-partner-form-head h2 {
  margin: 0;
  color: var(--deep-slate);
  font-size: 1.1rem;
  line-height: 1.2;
}

.admin-partner-form-head p {
  margin: 5px 0 0;
  color: #60707c;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-partner-section {
  min-width: 0;
  margin: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.admin-partner-section legend {
  padding: 0 8px;
  color: var(--deep-slate);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-partner-form label {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: var(--deep-slate);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-field-wide {
  grid-column: 1 / -1;
}

.admin-field-title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.admin-field-help {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--deep-slate);
  background: #eef3f1;
  border: 1px solid #cfd8d5;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  cursor: help;
  text-transform: none;
}

.admin-field-help::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 30;
  width: min(260px, 76vw);
  padding: 10px 12px;
  color: #f7faf9;
  background: #172232;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 26px rgba(18, 29, 42, 0.22);
  content: attr(data-help);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.admin-field-help::before {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 3px);
  z-index: 31;
  width: 10px;
  height: 10px;
  background: #172232;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px) rotate(45deg);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.admin-field-help:hover,
.admin-field-help:focus-visible {
  color: #fff;
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
  outline: none;
}

.admin-field-help:hover::after,
.admin-field-help:focus-visible::after,
.admin-field-help:hover::before,
.admin-field-help:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0) rotate(0);
}

.admin-field-help:hover::before,
.admin-field-help:focus-visible::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.admin-partner-form input,
.admin-partner-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  background: var(--soft-ivory);
  border: 1px solid var(--line);
  color: var(--deep-slate);
  font: inherit;
}

.admin-partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 2px;
}

.admin-partner-form button {
  min-width: 180px;
  min-height: 44px;
  padding: 0 18px;
  align-self: center;
  color: var(--warm-white);
  background: var(--deep-emerald);
  border: 1px solid var(--deep-emerald);
  font-weight: 900;
  cursor: pointer;
}

.admin-partner-form button[type="button"] {
  color: var(--deep-slate);
  background: #fff;
  border-color: var(--line);
}

.admin-partner-card h2 {
  margin: 0 0 10px;
}

.partner-apply-main {
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 86px;
}

.partner-apply-hero {
  max-width: 760px;
  margin-bottom: 44px;
}

.partner-apply-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.partner-apply-hero p,
.partner-apply-copy p {
  color: #60707c;
  font-size: 1rem;
  line-height: 1.7;
}

.partner-apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

.partner-apply-copy h2 {
  margin: 0 0 16px;
  color: var(--deep-slate);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.partner-apply-form {
  padding: 28px;
  display: grid;
  gap: 16px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.partner-apply-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-slate);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-apply-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--deep-slate);
  background: var(--soft-ivory);
  border: 1px solid var(--line);
}

.cart-main {
  min-height: calc(100vh - 76px);
}

.cart-hero {
  padding: 74px max(24px, calc((100vw - 1180px) / 2)) 38px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.cart-hero h1 {
  margin: 8px 0 18px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
}

.cart-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: #566570;
  font-size: 1rem;
  line-height: 1.8;
}

.cart-layout {
  padding: 48px max(24px, calc((100vw - 1180px) / 2)) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  gap: 24px;
  align-items: start;
  overflow-x: clip;
}

.cart-items-panel,
.cart-summary,
.checkout-panel {
  min-width: 0;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.cart-items-panel {
  padding: 30px;
}

.cart-side {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.cart-summary,
.checkout-panel {
  padding: 26px;
}

#checkout-title {
  scroll-margin-top: 96px;
}

.cart-section-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cart-section-heading h2,
.cart-summary h2,
.checkout-panel h2 {
  margin: 0;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
}

.cart-status {
  padding-top: 5px;
  color: var(--deep-emerald);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-items {
  display: grid;
  gap: 1px;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto minmax(126px, auto);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cart-item:first-child {
  border-top: 0;
}

.cart-item-media {
  width: 88px;
  height: 116px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #edf1ec;
  border: 1px solid rgba(36, 52, 71, 0.08);
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-body h3 {
  margin: 0 0 8px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.15;
}

.cart-item-body p,
.cart-item-body span {
  margin: 0;
  color: #60707c;
  font-size: 0.93rem;
  line-height: 1.6;
}

.quantity-stepper {
  width: 116px;
  min-height: 38px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-stepper button {
  width: 36px;
  height: 38px;
  color: var(--deep-slate);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.quantity-stepper span {
  display: grid;
  place-items: center;
  color: var(--deep-slate);
  font-weight: 900;
}

.cart-line-total {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.cart-line-total span {
  color: var(--deep-slate);
  font-weight: 900;
}

.cart-line-total button {
  padding: 0;
  color: #7b4f4f;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.cart-empty {
  margin: 0;
  padding: 28px;
  color: #60707c;
  background: var(--soft-ivory);
  border: 1px dashed var(--line);
  text-align: center;
}

.promo-form {
  margin: 20px 0 24px;
}

.promo-form label,
.checkout-form label,
.checkout-form legend {
  display: grid;
  gap: 8px;
  color: var(--deep-slate);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-form label[hidden] {
  display: none;
}

.promo-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.promo-row input,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--deep-slate);
  background: var(--soft-ivory);
  border: 1px solid var(--line);
  border-radius: 0;
}

.checkout-form textarea {
  resize: vertical;
}

.promo-row button,
.checkout-submit {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.review-form button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: min(100%, 240px);
  min-height: 48px;
}

.checkout-submit {
  color: var(--warm-white);
  background: #d88a1d;
  border-color: #d88a1d;
}

.checkout-submit:hover,
.checkout-submit:focus-visible {
  color: var(--warm-white);
  background: #b86f13;
  border-color: #b86f13;
}

.summary-list {
  margin: 0;
  display: grid;
  gap: 14px;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #60707c;
}

.summary-list dt,
.summary-list dd {
  margin: 0;
}

.summary-list dd {
  color: var(--deep-slate);
  font-weight: 900;
}

.delivery-value span {
  margin-right: 8px;
  color: #7b8794;
  font-weight: 700;
  text-decoration: line-through;
}

.free-delivery-progress {
  width: 100%;
  margin-top: 18px;
  padding: 16px;
  color: var(--deep-slate);
  background: #fff7ea;
  border: 1px solid rgba(216, 138, 29, 0.34);
}

.free-delivery-progress[hidden] {
  display: none;
}

.free-delivery-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--deep-slate);
  font-size: 0.9rem;
  font-weight: 900;
}

.free-delivery-progress-head span {
  color: #b86f13;
  white-space: nowrap;
}

.free-delivery-progress-bar {
  height: 9px;
  margin: 12px 0 10px;
  overflow: hidden;
  background: rgba(216, 138, 29, 0.16);
}

.free-delivery-progress-bar span {
  height: 100%;
  display: block;
  background: #d88a1d;
  transition: width 180ms ease;
}

.free-delivery-progress p {
  margin: 0;
  color: #5f6871;
  font-size: 0.86rem;
  line-height: 1.45;
}

.register-invite-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  padding: 18px;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.register-invite-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.register-invite-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 26, 0.58);
  backdrop-filter: blur(8px);
}

.register-invite-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 30px;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid rgba(36, 52, 71, 0.16);
  box-shadow: 0 28px 80px rgba(12, 22, 30, 0.24);
}

.register-invite-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--deep-slate);
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.register-invite-kicker {
  margin: 0 0 10px;
  color: #d88a1d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.register-invite-dialog h2 {
  margin: 0 44px 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.register-invite-dialog p {
  margin: 0;
  color: #566570;
  line-height: 1.7;
}

.register-invite-actions {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.register-invite-primary,
.register-invite-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.register-invite-primary {
  color: var(--warm-white);
  background: #d88a1d;
  border: 1px solid #d88a1d;
}

.register-invite-primary:hover,
.register-invite-primary:focus-visible {
  background: #b86f13;
  border-color: #b86f13;
}

.register-invite-secondary {
  color: var(--deep-emerald);
  background: transparent;
  border: 1px solid var(--sage);
}

.summary-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 1.12rem;
}

.price-request-note,
.form-message {
  margin: 14px 0 0;
  color: #60707c;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-message.is-success {
  color: var(--deep-emerald);
}

.form-message.is-error {
  color: #8d3b3b;
}

.checkout-form {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.checkout-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-group label {
  min-height: 42px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-slate);
  background: var(--soft-ivory);
  border: 1px solid var(--line);
  letter-spacing: 0;
  text-transform: none;
}

.checkout-consents {
  display: grid;
  gap: 8px;
}

.checkout-consent {
  min-height: 0;
  padding: 0;
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 9px !important;
  align-items: start;
  color: #60707c !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.4;
  text-transform: none !important;
}

.checkout-consent input {
  width: 14px !important;
  min-height: 14px !important;
  height: 14px;
  margin: 2px 0 0;
  padding: 0 !important;
  accent-color: var(--deep-emerald);
}

.checkout-submit {
  width: 100%;
  margin-top: 4px;
}

.checkout-privacy-note {
  margin: -6px 0 0;
  color: #7b8794;
  font-size: 0.72rem;
  line-height: 1.45;
}

.newsletter-section {
  padding: 22px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 0.7fr);
  gap: 20px;
  align-items: center;
  color: var(--warm-white);
  background: #101820;
  border-top: 1px solid rgba(251, 250, 247, 0.08);
}

.newsletter-content h2,
.account-hero h1,
.account-dashboard h2,
.account-auth-panel h2 {
  margin: 0;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.newsletter-content h2 {
  color: var(--warm-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.newsletter-section .eyebrow {
  margin-bottom: 8px;
  color: #73c4af;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.newsletter-content p:last-child,
.account-hero p,
.account-auth-panel p,
.account-dashboard p,
.account-order p {
  color: #60707c;
  line-height: 1.65;
}

.newsletter-content p:last-child {
  max-width: 520px;
  margin: 7px 0 0;
  color: rgba(251, 250, 247, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

.newsletter-form,
.account-form {
  display: grid;
  gap: 12px;
}

.newsletter-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.newsletter-form input,
.account-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid rgba(251, 250, 247, 0.22);
  border-radius: 0;
}

.newsletter-submit,
.account-submit,
.account-logout {
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-submit {
  width: auto;
  min-width: 168px;
  color: var(--warm-white);
  background: var(--deep-emerald);
  border: 1px solid var(--deep-emerald);
}

.newsletter-submit:hover,
.newsletter-submit:focus-visible {
  color: var(--warm-white);
  background: #26977f;
  border-color: #26977f;
}

.newsletter-form .form-message {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: rgba(251, 250, 247, 0.8);
}

.newsletter-form .form-message.is-success {
  color: #8ee0c8;
}

.newsletter-form .form-message.is-error {
  color: #ffb3b3;
}

.newsletter-confirmed {
  padding: 12px 24px;
  color: var(--warm-white);
  background: #101820;
  border-top: 1px solid rgba(251, 250, 247, 0.08);
  text-align: center;
}

.newsletter-confirmed[hidden] {
  display: none;
}

.newsletter-confirmed p {
  margin: 0;
  font-weight: 900;
}

.newsletter-popup {
  position: fixed;
  right: auto;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 80;
  width: min(169px, calc(100vw - 16px));
  padding: 8px;
  color: var(--warm-white);
  background: #101820;
  border: 1px solid rgba(251, 250, 247, 0.12);
  box-shadow: 0 9px 24px rgba(16, 24, 32, 0.32);
  transform: translate(-50%, 9px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.newsletter-popup.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.newsletter-popup.is-collapsed {
  bottom: max(0px, env(safe-area-inset-bottom)) !important;
  width: auto !important;
  min-width: 112px;
  padding: 8px 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, 0) !important;
}

.newsletter-popup.is-collapsed .newsletter-popup-close,
.newsletter-popup.is-collapsed .newsletter-popup-copy,
.newsletter-popup.is-collapsed .newsletter-popup-form {
  display: none !important;
}

.newsletter-popup.is-collapsed .newsletter-popup-kicker {
  margin: 0 !important;
  color: #8ee0c8 !important;
  font-size: 0.62rem !important;
  line-height: 1.2;
  text-align: center;
}

.newsletter-popup-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 250, 247, 0.74);
  background: transparent;
  border: 1px solid rgba(251, 250, 247, 0.16);
  font-size: 0.62rem;
  line-height: 1;
  cursor: pointer;
}

.newsletter-popup-close:hover,
.newsletter-popup-close:focus-visible {
  color: var(--warm-white);
  border-color: rgba(251, 250, 247, 0.42);
}

.newsletter-popup-kicker {
  margin: 0 18px 2px 0;
  color: #8ee0c8;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-popup-copy {
  margin: 3px 0 6px;
  color: rgba(251, 250, 247, 0.74);
  font-size: 0.75rem;
  line-height: 1.4;
}

.newsletter-popup-form {
  display: grid;
  gap: 3px;
}

.newsletter-popup-form input,
.newsletter-popup-form button {
  width: 100%;
  min-height: 20px;
  border-radius: 2px;
}

.newsletter-popup-form input {
  padding: 4px 5px;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid rgba(251, 250, 247, 0.22);
  font-size: 0.62rem;
}

.newsletter-popup-form button {
  padding: 0 6px;
  color: var(--warm-white);
  background: var(--deep-emerald);
  border: 1px solid var(--deep-emerald);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-popup-form button:hover,
.newsletter-popup-form button:focus-visible {
  background: #26977f;
  border-color: #26977f;
}

.newsletter-popup-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-popup-form .newsletter-popup-decline {
  color: rgba(251, 250, 247, 0.9);
  background: #2f3a43;
  border-color: #56616b;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.newsletter-popup-form .newsletter-popup-decline:hover,
.newsletter-popup-form .newsletter-popup-decline:focus-visible {
  color: var(--warm-white);
  background: #3c4852;
  border-color: #6b7782;
}

.newsletter-popup-message {
  min-height: 8px;
  margin: 0;
  color: rgba(251, 250, 247, 0.78);
  font-size: 0.5rem;
  line-height: 1.25;
}

.newsletter-popup-message.is-success {
  color: #8ee0c8;
}

.newsletter-popup-message.is-error {
  color: #ffb3b3;
}

@media (max-width: 768px) {
  .newsletter-popup {
    left: 50% !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
    width: min(300px, calc(100vw - 16px)) !important;
    padding: 6px 8px !important;
    transform: translate(-50%, 9px);
  }

  .newsletter-popup.is-visible {
    transform: translate(-50%, 0);
  }

  .newsletter-popup-kicker {
    margin-bottom: 1px;
  }

  .newsletter-popup-copy {
    margin: 2px 18px 5px 0;
    font-size: 0.62rem;
    line-height: 1.2;
  }

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

  .newsletter-popup-form input,
  .newsletter-popup-message {
    grid-column: 1 / -1;
  }

  .newsletter-popup-form input,
  .newsletter-popup-form button {
    min-height: 18px;
  }

  .newsletter-popup-form input {
    padding: 3px 5px;
  }
}

.floating-whatsapp {
  position: fixed;
  top: 50%;
  right: max(18px, env(safe-area-inset-right));
  z-index: 90;
  width: 56px;
  height: 56px;
  transform: translateY(-50%);
}

.floating-whatsapp-link {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.3);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.floating-whatsapp-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-whatsapp-link:hover,
.floating-whatsapp-link:focus-visible {
  box-shadow: 0 22px 42px rgba(18, 140, 126, 0.38);
  transform: translateY(-2px);
}

.floating-whatsapp-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid rgba(36, 52, 71, 0.16);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(36, 52, 71, 0.18);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.floating-whatsapp-close:hover,
.floating-whatsapp-close:focus-visible {
  color: var(--warm-white);
  background: var(--deep-emerald);
  border-color: var(--deep-emerald);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-link {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-close {
    top: -8px;
    right: -8px;
  }
}

.account-main {
  min-height: calc(100vh - 76px);
  background: var(--soft-ivory);
}

.account-hero {
  padding: 64px max(24px, calc((100vw - 980px) / 2)) 30px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.account-hero h1 {
  max-width: 720px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.account-hero p {
  max-width: 720px;
  margin: 22px 0 0;
}

.account-layout {
  padding: 42px max(24px, calc((100vw - 980px) / 2)) 86px;
}

.account-page-loading {
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--deep-emerald);
  text-align: center;
}

.account-page-loading[hidden] {
  display: none;
}

.account-page-loading svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
  animation: account-spin 1s linear infinite;
}

.account-page-loading span {
  color: var(--cool-gray);
  font-size: 0.86rem;
  font-weight: 800;
}

.account-auth-panel,
.account-dashboard {
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.account-auth-panel {
  max-width: 430px;
  margin: 0 auto;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(26, 41, 35, 0.06);
}

.account-auth-panel .account-submit {
  min-height: 48px;
  border-radius: 6px;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.account-dashboard {
  padding: 30px;
}

.account-auth-panel h2,
.account-dashboard h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.account-auth-panel h2 {
  margin: 20px 0 22px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.account-auth-panel > p {
  margin-top: 0;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: var(--deep-slate);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.account-form input,
.account-form textarea {
  min-height: 40px;
  padding: 0 13px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--deep-slate);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.account-form textarea {
  min-height: 74px;
  padding-top: 12px;
  resize: vertical;
}

.account-form input[readonly] {
  color: var(--cool-gray);
  background: var(--soft-ivory);
}

.account-form input:focus,
.account-form textarea:focus {
  outline: 2px solid rgba(31, 122, 104, 0.22);
  outline-offset: 2px;
  border-color: var(--deep-emerald);
}

.account-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.account-form fieldset legend {
  color: var(--deep-slate);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.account-form .radio-group label {
  display: inline-flex;
  align-items: center;
  color: var(--deep-slate);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.account-auth-brand {
  margin: 0 auto 22px;
  display: grid;
  justify-items: center;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.86;
}

.account-auth-brand span,
.account-auth-brand strong {
  display: block;
  font-size: 2.05rem;
}

.account-auth-brand strong {
  color: var(--deep-emerald);
}

#google-signin-button {
  min-height: 48px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

#google-signin-button > div {
  margin-left: auto !important;
  margin-right: auto !important;
}

#google-signin-button iframe {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  min-height: 46px !important;
}

.account-auth-divider {
  display: none;
}

.account-tabs {
  margin: 0 0 22px;
  display: inline-grid;
  grid-auto-flow: column;
  gap: 4px;
  padding: 4px;
  background: var(--soft-ivory);
  border: 1px solid var(--line);
}

.account-tabs button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-tabs button.is-active {
  background: var(--warm-white);
  color: var(--deep-slate);
  box-shadow: 0 1px 0 rgba(26, 41, 35, 0.06);
}

.account-auth-switch {
  margin: 14px 0 0;
  padding-top: 0;
  border-top: 0;
  color: var(--cool-gray);
  text-align: center;
}

.account-auth-switch button {
  border: 0;
  background: transparent;
  color: var(--deep-emerald);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-forgot {
  width: 100%;
  margin: 14px 0 0;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--cool-gray);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
}

.account-forgot span {
  position: relative;
  width: 11px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  color: var(--deep-slate);
}

.account-forgot span::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -7px;
  width: 7px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.account-profile-form {
  max-width: 720px;
  gap: 18px;
}

.account-partner-cta,
.partner-status-card,
.partner-link-box,
.partner-balances article {
  padding: 18px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.account-partner-cta {
  max-width: 720px;
  margin-top: 22px;
}

.account-partner-cta h3,
.partner-status-card h3 {
  margin: 0 0 8px;
  color: var(--deep-slate);
  font-size: 1rem;
  font-weight: 900;
}

.account-partner-cta p,
.partner-status-card p {
  margin: 0 0 12px;
  color: var(--cool-gray);
  line-height: 1.55;
}

.account-partner-cta .secondary-button {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-dashboard {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.partner-link-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.partner-link-box label {
  display: grid;
  gap: 8px;
  color: var(--deep-slate);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-link-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--deep-slate);
  background: var(--soft-ivory);
  border: 1px solid var(--line);
}

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

.partner-balances article {
  display: grid;
  gap: 6px;
}

.partner-balances span {
  color: var(--cool-gray);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-balances strong {
  color: var(--deep-emerald);
  font-size: 1.25rem;
}

[data-account-panel="profile"] {
  padding-top: 12px;
}

[data-account-panel="profile"] h2 {
  margin-bottom: 20px;
}

.account-verify-panel {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.account-verify-panel h3 {
  margin: 0 0 10px;
  color: var(--deep-slate);
  font-size: 1rem;
  font-weight: 900;
}

.account-dashboard-head {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: start;
}

.account-orders {
  display: grid;
  gap: 1px;
}

.account-orders-loading {
  min-height: 120px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.account-orders-loading span {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(31, 122, 104, 0.18);
  border-top-color: var(--deep-emerald);
  border-radius: 50%;
  animation: account-spin 0.8s linear infinite;
}

.account-orders-loading p {
  margin: 0;
  color: var(--cool-gray);
  font-size: 0.9rem;
}

@keyframes account-spin {
  to {
    transform: rotate(360deg);
  }
}

.account-order {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.account-order h3 {
  margin: 0 0 7px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.account-order p {
  margin: 0;
}

.account-order-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--deep-slate);
  text-align: right;
}

.account-order-meta span {
  color: var(--deep-emerald);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.save-banner {
  display: none !important;
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px 13px 18px;
  color: var(--warm-white);
  background: var(--deep-emerald);
  border: 1px solid var(--deep-emerald);
  box-shadow: var(--shadow);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.save-banner button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--warm-white);
  background: transparent;
  border: 1px solid rgba(251, 250, 247, 0.8);
  cursor: pointer;
}

.site-footer {
  padding: 34px 24px;
  color: rgba(251, 250, 247, 0.78);
  text-align: center;
  background: var(--deep-emerald);
  border-top: 1px solid rgba(251, 250, 247, 0.18);
}

.footer-nav {
  width: min(100%, 860px);
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.footer-nav a {
  color: var(--warm-white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(251, 250, 247, 0.35);
  text-underline-offset: 5px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  text-decoration-color: var(--warm-white);
}

.site-footer p {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.info-main {
  padding: 70px max(24px, calc((100vw - 980px) / 2)) 86px;
  background: var(--warm-white);
}

.info-hero {
  max-width: 780px;
  margin-bottom: 42px;
}

.info-hero h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
}

.info-lead {
  margin: 24px 0 0;
  color: #4f5d68;
  font-size: 1.05rem;
  line-height: 1.8;
}

.info-status {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: var(--deep-emerald);
  background: #edf4ef;
  border: 1px solid #cbded4;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-content {
  display: grid;
  gap: 30px;
}

.info-block {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.info-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.info-block p,
.info-block li {
  color: #4f5d68;
  line-height: 1.75;
}

.info-block p {
  max-width: 820px;
  margin: 0 0 14px;
}

.info-block ul {
  margin: 0;
  padding-left: 20px;
}

.info-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-actions .primary-button,
.info-actions .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.research-main {
  background: var(--soft-ivory);
}

.research-hub-main {
  padding: 76px max(24px, calc((100vw - 1180px) / 2)) 92px;
}

.research-hub-hero {
  max-width: 860px;
  margin-bottom: 42px;
}

.research-hub-hero h1 {
  max-width: 860px;
  color: var(--deep-slate);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.research-hub-hero p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: #4f5d68;
  font-size: 1.05rem;
  line-height: 1.65;
}

.research-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.research-card {
  min-height: 260px;
  padding: 24px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.research-card-media {
  min-height: 212px;
  display: grid;
  place-items: center;
  background: #edf1ed;
  border: 1px solid rgba(36, 52, 71, 0.08);
}

.research-card-media img {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 16px 14px rgba(36, 52, 71, 0.18));
}

.research-card-body {
  display: grid;
  align-content: start;
}

.research-card-kicker {
  margin-bottom: 10px;
  color: var(--deep-emerald);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.research-card h2 {
  margin: 0 0 12px;
  color: var(--deep-slate);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.12;
}

.research-card h2 a {
  transition: color 180ms ease;
}

.research-card h2 a:hover,
.research-card h2 a:focus-visible {
  color: var(--deep-emerald);
}

.research-card p {
  margin: 0 0 18px;
  color: #60707c;
  font-size: 0.96rem;
  line-height: 1.58;
}

.research-card-link,
.research-back-link {
  width: fit-content;
  color: var(--deep-emerald);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.research-article {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 66px 24px 86px;
}

.research-back-link {
  display: inline-flex;
  margin-bottom: 30px;
}

.research-article-body {
  padding: 54px min(7vw, 72px);
  color: #3f4f5b;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.research-article-body h1,
.research-article-body h2,
.research-article-body h3 {
  max-width: 740px;
  color: var(--deep-slate);
  text-wrap: balance;
}

.research-article-body h1 {
  margin-bottom: 34px;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  line-height: 1.12;
}

.research-article-body h2 {
  margin-top: 44px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.research-article-body h3 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.research-article-body p,
.research-article-body li {
  font-size: 1rem;
  line-height: 1.7;
}

.research-article-body p {
  max-width: 740px;
  margin: 16px 0 0;
  text-align: justify;
  text-wrap: pretty;
}

.research-article-body ul,
.research-article-body ol {
  max-width: 740px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.research-article-body li + li {
  margin-top: 9px;
}

.research-article-body strong {
  color: var(--deep-slate);
  font-weight: 900;
}

.research-article-body a {
  color: var(--deep-emerald);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.research-article-body a:hover,
.research-article-body a:focus-visible {
  color: #0b5f4f;
}

.research-inline-product-link {
  color: var(--deep-slate);
  font-weight: 700;
}

.research-inline-product-link a {
  color: #0b8a72;
}

.research-article-body em {
  color: #586874;
}

.research-article-body hr {
  margin: 42px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.research-article-meta {
  margin: 0 0 28px !important;
  color: var(--deep-emerald);
  font-size: 0.86rem !important;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.research-product-cta {
  margin-top: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  color: var(--deep-slate);
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.research-product-cta-media {
  min-height: 190px;
  display: grid;
  place-items: center;
  background: #edf1ed;
  border: 1px solid rgba(36, 52, 71, 0.08);
}

.research-product-cta-media img {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 16px 14px rgba(36, 52, 71, 0.18));
}

.research-product-cta-body span {
  color: var(--deep-emerald);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-product-cta-body h2 {
  margin: 10px 0 12px;
  color: var(--deep-slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.research-product-cta-body p {
  max-width: 560px;
  margin: 0 0 20px;
  color: #60707c;
  font-size: 1rem;
  line-height: 1.55;
}

.research-cta-button {
  width: fit-content;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-media img,
  .hero-button,
  .add-to-cart,
  .product-details-button,
  .icon-button {
    transition: none;
  }

  .product-card:hover,
  .product-card:focus-within,
  .product-card:hover .product-media img,
  .product-card:focus-within .product-media img,
  .hero-button:hover,
  .hero-button:focus-visible,
  .add-to-cart:hover,
  .add-to-cart:focus-visible,
  .product-details-button:hover,
  .product-details-button:focus-visible,
  .icon-button:hover,
  .icon-button:focus-visible {
    transform: none;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .navbar {
    width: min(calc(100vw - 24px), 1180px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px 102px;
    gap: 8px;
    padding: 14px 0;
  }

  .logo {
    min-width: 0;
    gap: 10px;
    letter-spacing: 0;
  }

  .logo > span:last-child {
    min-width: 0;
  }

  .logo-mark {
    width: 36px;
    height: 50px;
    font-size: 2.25rem;
  }

  .logo strong {
    font-size: 1.55rem;
  }

  .logo small {
    font-size: 1.55rem;
    letter-spacing: 0;
  }

  .mobile-menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: 0;
    padding: 9px;
    justify-self: center;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding: 12px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-icons {
    width: 102px;
    justify-self: end;
    margin-left: 0;
    gap: 0;
  }

  .icon-button {
    width: 34px;
    height: 36px;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 76px) !important;
    padding: 58px 18px 42px !important;
    display: flex;
    align-items: flex-start;
    background: var(--deep-slate);
  }

  .site-header {
    backdrop-filter: none;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 18, 26, 0.52) 0%, rgba(8, 18, 26, 0.3) 34%, rgba(8, 18, 26, 0.72) 100%);
    pointer-events: none;
  }

  .hero-picture,
  .hero-picture img {
    width: 100%;
    height: 100%;
  }

  .hero-picture img {
    object-fit: cover;
    object-position: 75% center !important;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: calc(100svh - 176px);
    display: flex;
    flex-direction: column;
    transform: none;
  }

  .hero .eyebrow,
  .hero h1 {
    color: var(--warm-white);
    text-shadow: 0 2px 18px rgba(8, 18, 26, 0.34);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .hero-benefits {
    display: none;
  }

  .hero-actions {
    position: relative;
    z-index: 2;
    margin-top: auto;
  }

  .hero-button {
    width: 100%;
  }

  .hero-actions .secondary-button {
    color: var(--warm-white);
    border-color: rgba(251, 250, 247, 0.72);
  }

  .product-body {
    padding-top: 12px;
  }

  .product-summary {
    margin-bottom: 12px;
  }

  .product-price {
    margin-bottom: 10px;
  }

  .pdp-gallery .product-gift-badge {
    right: auto;
    left: 18px;
    max-width: calc(100% - 36px);
    white-space: normal;
  }

  .product-detail,
  .product-info-hub {
    width: 100%;
    max-width: 100vw;
    grid-template-columns: 1fr;
    overflow-x: clip;
  }

  .product-detail {
    gap: 22px;
    align-items: start;
  }

  .pdp-panel {
    display: flex;
    flex-direction: column;
  }

  .pdp-panel h1 {
    order: 1;
  }

  .pdp-dosage {
    order: 2;
  }

  .pdp-price {
    order: 3;
    margin-bottom: 14px;
  }

  .pdp-purchase {
    order: 4;
    margin-bottom: 20px;
  }

  .pdp-trust-strip {
    order: 5;
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .pdp-trust-strip li {
    padding: 10px 12px;
  }

  .pdp-trust-strip li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pdp-panel > .free-delivery-progress {
    order: 6;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .pdp-summary {
    order: 7;
  }

  .pdp-panel > p:not(.pdp-dosage):not(.pdp-summary):not(.pdp-price):not(.pdp-payment-note) {
    order: 8;
  }

  .pdp-result-block {
    padding-bottom: 28px;
  }

  .pdp-result-inner {
    padding: 24px 18px;
  }

  .pdp-result-grid {
    grid-template-columns: 1fr;
  }

  .pdp-result-grid article {
    padding: 18px;
  }

  .pdp-result-grid article + article {
    padding-left: 18px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-technical-desktop {
    display: none;
  }

  .product-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-accordion .info-block {
    padding: 0;
  }

  .product-accordion summary {
    position: relative;
    padding: 20px 52px 20px 18px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.3;
    cursor: pointer;
  }

  .product-accordion summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 24px;
    height: 24px;
    color: var(--boston-green);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    transform: translateY(-50%);
  }

  .product-accordion details[open] summary::after {
    content: "-";
  }

  .product-accordion .product-specs-wrapper {
    padding: 0 18px 20px;
  }

  .product-faq-list,
  .product-reviews-header {
    grid-template-columns: 1fr;
  }

  .pdp-panel,
  .product-faq-inner,
  .product-reviews-inner,
  .product-faq details,
  .product-review {
    min-width: 0;
    max-width: 100%;
  }

  .pdp-summary,
  .pdp-panel p {
    max-width: 100%;
  }

  .product-reviews-summary {
    justify-self: start;
    text-align: left;
  }

  .section-header,
  .catalog-controls {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-section h2,
  .product-faq h2,
  .product-reviews h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .product-details-button {
    display: inline-flex;
  }

  .product-details-modal {
    align-items: end;
    padding: 14px;
  }

  .product-details-dialog {
    width: 100%;
    max-height: calc(100svh - 28px);
    padding: 28px 22px 24px;
  }

  .cart-added-modal {
    padding: 14px;
  }

  .cart-added-dialog {
    width: min(100%, 430px);
    max-height: calc(100svh - 28px);
    padding: 26px 18px 20px;
  }

  .cart-added-close {
    top: 10px;
    right: 10px;
  }

  .cart-added-dialog h2 {
    margin-right: 44px;
    margin-bottom: 20px;
  }

  .cart-added-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-added-media {
    width: 72px;
    height: 72px;
  }

  .cart-added-media img {
    width: 60px;
    height: 60px;
  }

  .cart-added-line-total {
    grid-column: 2;
    justify-self: start;
  }

  .cart-added-summary {
    justify-content: space-between;
  }
}

@media (min-width: 769px) and (max-width: 1020px) {
  .navbar {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    padding: 12px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-icons {
    margin-left: auto;
  }

  .hero {
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 76px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.96) 48%, rgba(251, 250, 247, 0.58) 100%);
  }

  .hero-picture img {
    object-position: 64% center;
  }

  .research-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-pillar:nth-child(2) {
    border-right: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail,
  .product-info-hub {
    grid-template-columns: 1fr;
  }

  .product-faq-list {
    grid-template-columns: 1fr;
  }

  .product-reviews-header,
  .admin-review-card {
    grid-template-columns: 1fr;
  }

  .product-reviews-summary {
    justify-self: start;
    text-align: left;
  }

  .product-review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-review-carousel .product-review {
    flex-basis: calc((100% - 12px) / 2);
  }

  .pdp-gallery {
    min-height: 420px;
  }

  .pdp-gallery-frame {
    min-height: 360px;
  }

  .pdp-gallery-carousel img {
    max-height: 360px;
  }

  .quality-flow {
    grid-template-columns: 1fr;
  }

  .quality-flow article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-header,
  .catalog-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  .cart-side {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    width: 100%;
    min-width: 0;
  }

  .research-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .newsletter-section,
  .newsletter-form,
  .account-form-grid,
  .account-dashboard-head,
  .account-order,
  .partner-apply-layout,
  .partner-link-box,
  .partner-balances,
  .admin-partner-form {
    grid-template-columns: 1fr;
  }

  .admin-partner-section {
    grid-template-columns: 1fr;
  }

  .admin-partner-form-head {
    display: block;
  }

  .admin-partner-actions {
    justify-content: stretch;
  }

  .admin-partner-form button {
    width: 100%;
  }

  .admin-shell-inner {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .admin-shell-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-shell-nav a {
    min-width: 0;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .admin-reviews-main {
    padding-top: 28px;
  }

  .account-order-meta {
    justify-items: start;
    text-align: left;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  .cart-side {
    grid-template-columns: 1fr;
  }

  .cart-main,
  .cart-layout,
  .cart-items-panel,
  .cart-summary,
  .checkout-panel {
    max-width: 100%;
    overflow-x: clip;
  }

  .cart-summary,
  .checkout-panel {
    width: 100%;
  }

  .checkout-panel {
    scroll-margin-top: 92px;
  }

  .cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-item-media {
    width: 74px;
    height: 96px;
  }

  .quantity-stepper,
  .cart-line-total {
    grid-column: 1 / -1;
  }

  .cart-line-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .promo-row {
    grid-template-columns: 1fr;
  }

  .promo-row button,
  .checkout-submit {
    width: 100%;
  }

  .radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .radio-group label {
    min-width: 0;
    justify-content: center;
  }

  .free-delivery-progress {
    padding: 14px;
  }

  .free-delivery-progress-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .register-invite-dialog {
    padding: 26px 20px 20px;
  }

  .product-faq {
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 56px;
  }

  .product-faq-inner {
    padding-top: 28px;
  }

  .product-faq h2 {
    margin-bottom: 18px;
  }

  .product-faq summary {
    padding: 17px 48px 17px 18px;
    font-size: 0.96rem;
  }

  .product-faq summary::after {
    right: 18px;
  }

  .product-faq details p {
    margin: -2px 18px 18px;
    font-size: 0.9rem;
  }

  .product-reviews {
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 60px;
  }

  .product-review-list,
  .review-form {
    grid-template-columns: 1fr;
  }

  .product-review-carousel .product-review {
    flex-basis: 100%;
  }

  .product-review-controls,
  .product-review-actions {
    justify-content: stretch;
  }

  .product-review-nav,
  .review-form-toggle {
    flex: 1;
  }

  .product-review {
    padding: 18px;
  }

  .review-form-panel {
    padding: 18px;
  }

  .research-hub-main {
    padding: 52px 18px 68px;
  }

  .research-card {
    min-height: 0;
    padding: 16px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .research-card-media {
    min-height: 132px;
  }

  .research-card-media img {
    width: 70px;
  }

  .research-card p {
    font-size: 0.92rem;
  }

  .research-article {
    padding: 42px 18px 64px;
  }

  .research-article-body {
    padding: 30px 20px;
  }

  .research-article-body h1 {
    margin-bottom: 28px;
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .research-article-body p {
    text-align: left;
  }

  .research-product-cta {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .research-product-cta-media {
    min-height: 210px;
  }

  .research-cta-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .navbar {
    width: min(100% - 24px, 1180px);
  }

  .logo small {
    letter-spacing: 0;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-picture img {
    object-position: 70% center;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .product-detail {
    padding-top: 26px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .pdp-panel h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .pdp-gallery {
    min-height: 286px;
  }

  .pdp-gallery-carousel {
    gap: 12px;
    padding: 14px;
  }

  .pdp-gallery-nav {
    display: none;
  }

  .pdp-gallery-frame {
    min-height: 232px;
  }

  .pdp-gallery-carousel img {
    width: min(250px, 78%);
    max-height: 232px;
  }

  .pdp-purchase,
  .pdp-cart-action,
  .pdp-add-to-cart {
    width: 100%;
  }

  .research-section,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .research-pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .research-pillar:last-child {
    border-bottom: 0;
  }

  .cart-hero,
  .cart-layout {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cart-items-panel,
  .cart-summary,
  .checkout-panel {
    padding: 22px 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .navbar {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .mobile-menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    color: var(--deep-slate);
    background: transparent;
    border: 0;
  }

  .mobile-menu-toggle span {
    display: block;
    height: 1px;
    margin: 6px 0;
    background: currentColor;
  }

  .nav-links {
    display: none;
  }

  .nav-icons {
    margin-left: auto;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 76px) !important;
    padding: 58px 18px 42px !important;
    display: flex;
    align-items: flex-start;
    background: var(--deep-slate);
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 18, 26, 0.52) 0%, rgba(8, 18, 26, 0.3) 34%, rgba(8, 18, 26, 0.72) 100%);
    pointer-events: none;
  }

  .hero-picture,
  .hero-picture img {
    width: 100%;
    height: 100%;
  }

  .hero-picture img {
    object-fit: cover;
    object-position: 75% center !important;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: calc(100svh - 176px);
    display: flex;
    flex-direction: column;
    transform: none;
  }

  .hero-mobile-eyebrow,
  .hero h1 {
    color: var(--warm-white);
    text-shadow: 0 2px 18px rgba(8, 18, 26, 0.34);
  }

  .hero-mobile-eyebrow {
    display: block;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .hero-benefits {
    display: none;
  }

  .hero-actions {
    position: relative;
    z-index: 2;
    margin-top: auto;
  }

  .hero-button {
    width: 100%;
  }

  .hero-actions .secondary-button {
    color: var(--warm-white);
    border-color: rgba(251, 250, 247, 0.72);
  }

  .hero-contact-button {
    min-width: 0;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
  }

  .catalog-section {
    padding: 60px 24px 72px;
  }

  .section-header,
  .catalog-controls {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .section-header {
    gap: 18px;
    margin-bottom: 32px;
  }

  .catalog-section h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .catalog-controls select {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

}

/* Выравниваем стили внутренних абзацев под единый стандарт хаба */
.product-specs-wrapper p {
  margin: 0 0 16px 0; /* Создаем аккуратный отступ между характеристиками */
  color: #60707c; /* Синхронизируем цвет текста с соседними блоками */
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .navbar {
    width: min(calc(100vw - 24px), 1180px);
    min-height: 64px;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 102px;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
    max-width: 100%;
    gap: 7px;
    letter-spacing: 0;
  }

  .logo > span:last-child {
    min-width: 0;
    overflow: hidden;
  }

  .logo-mark {
    flex: 0 0 30px;
    width: 30px;
    height: 42px;
    font-size: 1.9rem;
  }

  .logo-mark::before {
    top: 4px;
    right: 2px;
    width: 17px;
    height: 16px;
    border-radius: 0 13px 13px 0;
  }

  .logo-mark::after {
    right: 2px;
    bottom: 5px;
    width: 22px;
    height: 20px;
    border-radius: 0 16px 16px 0;
  }

  .logo strong,
  .logo small {
    white-space: nowrap;
  }

  .logo strong {
    font-size: 1.22rem;
  }

  .logo small {
    margin-top: 0;
    font-size: 1.22rem;
    letter-spacing: 0;
  }

  .mobile-menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin: 0;
  }

  .nav-icons {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 102px;
    margin: 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 360px) {
  .navbar {
    grid-template-columns: 40px minmax(0, 1fr) 94px;
    gap: 6px;
  }

  .logo {
    gap: 6px;
  }

  .logo-mark {
    flex-basis: 28px;
    width: 28px;
    height: 39px;
    font-size: 1.75rem;
  }

  .logo strong {
    font-size: 1.08rem;
  }

  .logo small {
    font-size: 1.08rem;
    letter-spacing: 0;
  }

  .nav-icons {
    width: 94px;
  }

  .icon-button {
    width: 31px;
  }
}
