/* ZauberTopf-inspired blog layout (local CSS only). */

:root {
  --zt-bg: #f7f4ee;
  --zt-card: #ffffff;
  --zt-text: #1f2328;
  --zt-muted: #5b6470;
  --zt-border: rgba(31, 35, 40, 0.12);
  --zt-accent: #1a7f5a;
  --zt-accent-2: #135f44;
  --zt-max: 72rem;
  --zt-radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.zauber-page {
  margin: 0;
  background: var(--zt-bg);
  color: var(--zt-text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
img { max-width: 100%; height: auto; }
a { color: var(--zt-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.zt-wrap { max-width: var(--zt-max); margin: 0 auto; padding: 0 1.25rem; }
.zt-muted { color: var(--zt-muted); }

.zt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--zt-border);
}
.zt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.zt-logo { display: inline-flex; flex-direction: column; gap: 0.1rem; color: inherit; }
.zt-logo__brand { font-weight: 900; letter-spacing: -0.03em; }
.zt-logo__brand span { color: var(--zt-accent); }
.zt-logo__tagline { font-size: 0.78rem; color: var(--zt-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.zt-nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.zt-nav a { color: inherit; font-weight: 600; }
.zt-actions { display: flex; align-items: center; gap: 0.75rem; }
.zt-actions { gap: 0.5rem; }
.zt-payments { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--zt-muted); font-size: 0.85rem; margin-right: 0.25rem; }
.zt-payments img { vertical-align: middle; margin-left: 0.25rem; }

.zt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--zt-border);
  font-weight: 700;
  text-decoration: none;
}
.zt-btn--primary {
  background: var(--zt-accent);
  color: #fff;
  border-color: transparent;
}
.zt-btn--primary:hover { background: var(--zt-accent-2); text-decoration: none; }

.zt-main { padding: 1.5rem 0 3rem; }
.zt-article { padding-top: 1rem; }
.zt-breadcrumb { margin: 0 0 0.75rem; color: var(--zt-muted); font-size: 0.9rem; }
.zt-kicker { margin: 0 0 0.75rem; font-size: 1.05rem; }
.zt-lead--product { padding-top: 0.9rem; }
.zt-lead--product .zt-h2 { margin-top: 0; }
body.zauber-page .product_info_img img { width: 120px; height: 120px; object-fit: cover; }
.zt-hero {
  margin: 0 0 1rem;
  border-radius: var(--zt-radius);
  overflow: hidden;
  border: 2px solid rgba(26, 127, 90, 0.35);
  background: #000;
  position: relative;
}
.zt-hero img {
  width: 100%;
  height: min(420px, 52vw);
  object-fit: cover;
  display: block;
  opacity: 0.96;
}
.zt-hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.25rem 1.1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.72) 100%);
}
.zt-hero__grid {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.zt-hero__left { max-width: 58rem; }
.zt-hero__badges {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 2;
}
.zt-hero__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
  font-size: 0.78rem;
  color: #111;
  text-align: center;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.zt-hero__title {
  margin: 0;
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.zt-hero__meta {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.zt-h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.zt-breadcrumb + .zt-h1 { margin-top: 20px; }

/* Product spacing tweaks (requested) */
body.zauber-page .zt-lead--product + #prices { margin-top: 40px; }
body.zauber-page #benefits { margin-top: 40px; }
body.zauber-page #shop-pharmacy { margin-top: 40px; }
body.zauber-page #faq { margin-top: 40px; }

body.zauber-page .amoxil-cmed24-product #description1 h4 { margin: 28px 0 10px; }
body.zauber-page .amoxil-cmed24-product #description1 h4:first-of-type { margin-top: 12px; }

@media (max-width: 900px) {
  .zt-hero__grid { flex-direction: column; align-items: flex-start; }
  .zt-hero__badges { position: static; margin: 0.75rem 0 0; flex-wrap: wrap; justify-content: flex-start; }
}

/* Reviews: show 2 by default */
#reviewsList .zt-review--hidden { display: none; }
#reviewsList.is-expanded .zt-review--hidden { display: block; }

/* Comments: show 3 by default */
#commentsList .zt-comment--hidden { display: none; }
#commentsList.is-expanded .zt-comment--hidden { display: list-item; }
.zt-comment-list .zt-comment--hidden { display: none; }
.zt-comment-list.is-expanded .zt-comment--hidden { display: list-item; }

/* Comments accordion (click title to show list). Form remains visible. */
.zt-comments.is-collapsed .zt-comment-list { display: none; }
.zt-comments.is-collapsed #commentsToggle { display: none; }
.zt-comments__title[role="button"] { cursor: pointer; user-select: none; }
.zt-comments__title[role="button"]:hover { text-decoration: none; }
.zt-comments__title[role="button"]{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:0.6rem;
}
.zt-comments__title[role="button"]::before{
  content:"▶";
  display:inline-block;
  color: var(--zt-text);
  transform: rotate(0deg);
  transition: transform 120ms ease;
  font-size: 1.15em;
  line-height: 1;
}
.zt-comments__title[role="button"][aria-expanded="true"]::before{
  transform: rotate(90deg);
}
.zt-lead {
  background: var(--zt-card);
  border: 1px solid var(--zt-border);
  border-radius: var(--zt-radius);
  padding: 1rem 1.1rem;
  margin: 0 0 1.25rem;
}
.zt-section { margin: 1.25rem 0; }
.zt-h2 { margin: 0 0 0.75rem; font-size: 1.25rem; letter-spacing: -0.01em; }
.zt-h3 { margin: 0 0 0.5rem; font-size: 1.05rem; letter-spacing: -0.01em; }
.zt-section ul { margin: 0.5rem 0 0.75rem 1.2rem; }
.zt-section li { margin: 0.25rem 0; }

.zt-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.75rem;
}
@media (max-width: 980px) { .zt-three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .zt-three { grid-template-columns: 1fr; } }

.zt-info {
  background: var(--zt-card);
  border: 1px solid var(--zt-border);
  border-radius: var(--zt-radius);
  padding: 1rem;
}
.zt-info p { margin: 0; }
.zt-three + .zt-lead { margin-top: 1rem; }

.zt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (max-width: 980px) { .zt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .zt-grid { grid-template-columns: 1fr; } .zt-payments{display:none;} }

.zt-card, .zt-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--zt-card);
  border: 1px solid var(--zt-border);
  border-radius: var(--zt-radius);
  color: inherit;
  text-decoration: none;
}
.zt-card:hover, .zt-card__link:hover { text-decoration: none; border-color: rgba(26,127,90,0.35); }
.zt-card__title { font-weight: 800; }
.zt-card__meta { color: var(--zt-muted); font-size: 0.9rem; }

.zt-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (max-width: 980px) { .zt-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .zt-stats { grid-template-columns: 1fr; } }
.zt-stat {
  background: var(--zt-card);
  border: 1px solid var(--zt-border);
  border-radius: var(--zt-radius);
  padding: 1rem;
}
.zt-stat h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.zt-stat p { margin: 0; color: var(--zt-muted); }

.zt-cta {
  background: linear-gradient(180deg, rgba(26,127,90,0.08), rgba(26,127,90,0.02));
  border: 1px solid rgba(26,127,90,0.18);
  border-radius: var(--zt-radius);
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
}

.zt-comments { margin-top: 1.75rem; }
.zt-comment-list, .zt-children {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
}
.zt-comment { margin: 0 0 0.9rem; }
.zt-comment__body {
  background: var(--zt-card);
  border: 1px solid var(--zt-border);
  border-radius: var(--zt-radius);
  padding: 1rem 1.1rem;
}
.zt-comment__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
}
.zt-comment__author { font-weight: 800; }
.zt-comment__date { color: var(--zt-muted); font-size: 0.9rem; }
.zt-comment__reply { display: inline-block; margin-top: 0.25rem; font-weight: 700; }
.zt-comment__body p { margin: 0.35rem 0 0; }
.zt-children { margin-top: 0.75rem; padding-left: 1.25rem; }
.zt-comment--child .zt-comment__body { border-left: 4px solid rgba(26,127,90,0.25); }

.zt-comment-form {
  margin-top: 1rem;
  background: var(--zt-card);
  border: 1px solid var(--zt-border);
  border-radius: var(--zt-radius);
  padding: 1rem 1.1rem;
}
.zt-comment-form--comment {
  width: 100%;
  margin-left: 0;
}
@media (max-width: 980px) {
  .zt-comment-form--comment { width: 100%; }
}
.zt-comment-form .zt-btn { margin-top: 50px; }
.zt-review-form {
  width: min(48%, 34rem);
  margin-left: 0;
  margin-top: 50px;
}
.zt-review-form .zt-btn { margin-top: 50px; }
@media (max-width: 980px) {
  .zt-review-form { width: 100%; }
}
.zt-label { display: block; font-weight: 800; margin: 0.75rem 0 0.35rem; }
.zt-input {
  width: 100%;
  border: 1px solid var(--zt-border);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
}
.zt-input:focus { outline: 2px solid rgba(26,127,90,0.25); border-color: rgba(26,127,90,0.35); }
.zt-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; margin-bottom: 0.9rem; }
@media (max-width: 640px) { .zt-form-row { grid-template-columns: 1fr; } }

.zt-footer { border-top: 1px solid var(--zt-border); padding: 2rem 0; }
.zt-footer__inner p { margin: 0.25rem 0; }

/* Tabs table (keep existing tab CSS but ensure it fits page). */
.amoxil-cmed24-product { margin-top: 0.25rem; }
.amoxil-cmed24-product .tableTab table { width: 100%; }

/* Synonyms: show one line by default, expand on click */
#synonyms .synonyms-list {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#synonyms.is-expanded .synonyms-list {
  white-space: normal;
}

:root {
  --uaem-primary: #1e4d5c;
  --uaem-primary-dark: #163a46;
  --uaem-primary-darker: #0f2830;
  --uaem-accent: #e85d4c;
  --uaem-link: #1e4d5c;
  --uaem-lime: #e85d4c;
  --uaem-lime-hover: #cf4f40;
  --uaem-gold: #e85d4c;
  --uaem-gold-dark: #cf4f40;
  --uaem-green: var(--uaem-primary);
  --uaem-green-dark: var(--uaem-primary-dark);
  --uaem-green-light: var(--uaem-accent);
  --uaem-gold-light: #f4a89e;
  --uaem-text: #2c2c2c;
  --uaem-muted: #5a5a5a;
  --uaem-bg: #f8f6f3;
  --uaem-card: #ffffff;
  --uaem-border: #e0ddd8;
  --uaem-max: 75rem;
  --uaem-font: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --uaem-heading: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --uaem-shadow: rgba(30, 77, 92, 0.12);
  --uaem-bar: #1e4d5c;
  --uaem-bar-text: #ffffff;
  --uaem-bar-muted: #c8dde4;
  --text: #2c2c2c;
  --accent: #e85d4c;
  --accent-2: #cf4f40;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.thebe-page,
body.maket4-page,
body.maket4-page,
body.kinsta-page {
  margin: 0;
  font-family: var(--uaem-font);
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background: var(--uaem-bg);
}

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

body.thebe-page,
body.maket4-page .uaem-page-body a:not(.uaem-btn):not(.button-blue):not(.uaem-brand) {
  color: #333333;
}

body.thebe-page,
body.maket4-page .uaem-page-body a:not(.uaem-btn):not(.button-blue):hover {
  color: #333333;
  text-decoration: underline;
}

.uaem-wrap {
  max-width: var(--uaem-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

/* Header */
.uaem-header {
  background: var(--uaem-bar);
  border-bottom: 3px solid var(--uaem-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  color: var(--uaem-bar-text);
}

.uaem-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.85rem 0;
}

.uaem-header .uaem-brand {
  display: inline-block;
  text-decoration: none;
  color: var(--uaem-bar-text);
  line-height: 1.25;
  padding: 0.2rem 0.35rem;
  margin: -0.2rem -0.35rem;
  border-radius: 3px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.uaem-header .uaem-brand:hover,
.uaem-header .uaem-brand:focus-visible {
  color: var(--uaem-bar-text);
  background-color: rgba(255, 255, 255, 0.1);
}

.uaem-brand__title {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.uaem-header .uaem-brand .uaem-brand__online {
  color: #ffffff;
}

.uaem-header .uaem-brand .uaem-brand__pharmacy {
  color: var(--uaem-primary);
}

.uaem-header .uaem-brand:hover .uaem-brand__online,
.uaem-header .uaem-brand:focus-visible .uaem-brand__online {
  color: #ffffff;
}

.uaem-header .uaem-brand:hover .uaem-brand__pharmacy,
.uaem-header .uaem-brand:focus-visible .uaem-brand__pharmacy {
  color: var(--uaem-primary);
}

.uaem-brand__tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--uaem-bar-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: none;
}

.uaem-header .uaem-brand:hover .uaem-brand__tagline,
.uaem-header .uaem-brand:focus-visible .uaem-brand__tagline {
  color: #d8d8d8;
}

.uaem-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uaem-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--uaem-bar-text);
  text-decoration: none;
  border-radius: 2px;
}

.uaem-nav a:hover,
.uaem-nav a[aria-current="page"] {
  background: var(--uaem-primary);
  color: #fff;
}

.uaem-header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  padding-right: 0.25rem;
}

.uaem-header__payments {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--uaem-bar-muted);
}

.uaem-header__payments img {
  vertical-align: middle;
}

.uaem-btn {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid #000;
  cursor: pointer;
}

.uaem-btn--gold {
  background: var(--uaem-gold);
  color: #fff;
  border: 2px solid var(--uaem-gold-dark);
}

.uaem-btn--gold:hover {
  filter: brightness(1.08);
  color: #fff;
}

/* Hero slider */
.uaem-hero {
  position: relative;
  min-height: 140px;
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--uaem-primary) 0%, var(--uaem-accent) 100%);
}

.uaem-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
}

.uaem-hero .uaem-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  min-height: 272px;
  align-items: center;
}

.uaem-hero__copy {
  max-width: 36rem;
  margin-left: 0;
  margin-right: auto;
  padding: 2rem 0 2.25rem;
  color: #fff;
  text-align: left;
}

.uaem-hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--uaem-gold);
}

.uaem-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--uaem-heading);
  font-size: clamp(1.45rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.uaem-hero__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1.55;
}

.uaem-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
}

.uaem-hero__pill {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.uaem-page-body {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.uaem-breadcrumb {
  background: var(--uaem-card);
  border-bottom: 1px solid var(--uaem-border);
  font-size: 0.82rem;
}

.uaem-breadcrumb .uaem-wrap {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.uaem-breadcrumb a {
  color: var(--uaem-link);
  text-decoration: none;
}

.uaem-breadcrumb span {
  color: var(--uaem-muted);
  margin: 0 0.35rem;
}

/* Page lead (legacy; unused in code build) */
.uaem-page-lead {
  background: var(--uaem-card);
  border-bottom: 1px solid var(--uaem-border);
  box-shadow: none;
}

.uaem-page-lead .uaem-wrap {
  padding: 1rem 1.25rem 1.75rem;
}

/* Match Divi .entry-title on SDI prelaunch article (h1: 30px / 500 / #333 / Open Sans) */
.uaem-page-lead .entry-title {
  margin: 0 0 0.5rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
  letter-spacing: normal;
}

@media (max-width: 767px) {
  .uaem-page-lead .entry-title {
    font-size: 26px;
    line-height: 1.5;
  }
}

/* Layout — sidebar left, content right (maket1) */
.uaem-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1rem 0 2.5rem;
}

.uaem-layout .uaem-sidebar {
  grid-column: 1;
  grid-row: 1;
}

.uaem-layout .uaem-content {
  grid-column: 2;
  grid-row: 1;
}

.uaem-sidebar {
  background: var(--uaem-card);
  border: 1px solid var(--uaem-border);
  box-shadow: 0 2px 10px var(--uaem-shadow);
}

.uaem-sidebar__title {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--uaem-bar-text);
  background: var(--uaem-bar);
}

.uaem-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
  background: var(--uaem-card);
}

.uaem-sidebar li {
  border-bottom: 1px solid #eef2f6;
}

.uaem-sidebar a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--uaem-text);
  text-decoration: none;
}

.uaem-sidebar a:hover,
.uaem-sidebar a[aria-current="page"] {
  background: var(--uaem-primary);
  color: #fff;
  border-left: none;
  padding-left: 1rem;
}

.uaem-content {
  min-width: 0;
}

/* Section blocks */
.uaem-section {
  background: var(--uaem-card);
  border: 1px solid var(--uaem-border);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px var(--uaem-shadow);
}

.uaem-section__head,
body.thebe-page,
body.maket4-page .uaem-cta-strip h2,
body.kinsta-page .uaem-cta-strip h2 {
  margin: 0;
  padding: 0.75rem 1.25rem 0.5rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #333333;
  background: none;
  border: none;
  border-bottom: none;
}

.uaem-section__body {
  padding: 1.25rem;
}

/* Product intro */
.uaem-product-intro .product_info.cfix::after {
  content: "";
  display: table;
  clear: both;
}

.uaem-product-intro .product_info_img {
  float: left;
  width: 6.5rem;
  margin: 0 1.25rem 0.5rem 0;
  text-align: center;
}

.uaem-product-intro .product_info_img img {
  border: 2px solid var(--uaem-border);
  border-radius: 4px;
}

.uaem-product-intro h1 {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  color: #333333;
}

.uaem-product-intro .product_info_desc {
  color: #333333;
  font-size: 0.92rem;
}

.uaem-product-intro .product_info_desc b {
  color: #333333;
}

.uaem-product-intro .product_info_summary p {
  margin: 0.5rem 0;
}

.uaem-product-intro #synonyms {
  max-height: 4.35em;
  overflow: hidden;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.uaem-product-intro #synonyms.is-expanded {
  max-height: none;
}

.uaem-product-intro #synonyms a {
  color: #333333;
}

.uaem-product-intro #synonymsHandler {
  font-size: 0.85rem;
  font-weight: 600;
}

.uaem-product-intro .product_info_payments {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--uaem-border);
  font-size: 0.85rem;
  color: var(--uaem-muted);
}

/* Mission-style split (benefits lead) */
.uaem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.uaem-mission-box {
  background: var(--uaem-card);
  border: 1px solid var(--uaem-border);
  border-top: 4px solid #333333;
  padding: 1.25rem;
  box-shadow: 0 2px 8px var(--uaem-shadow);
}

.uaem-mission-box h3,
.uaem-stat-card h3,
.uaem-faq summary {
  margin: 0 0 0.65rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: #333333;
}

.uaem-stat-card h3 {
  margin: 0 0 0.4rem;
}

.uaem-mission-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.6;
}

/* Benefits grid (FCQeI en números style) */
.uaem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.uaem-stat-card {
  text-align: center;
  padding: 1.1rem 0.75rem;
  background: var(--uaem-bg);
  border: 1px solid var(--uaem-border);
  border-bottom: 3px solid #333333;
}

.uaem-stat-card p {
  margin: 0;
  font-size: 0.82rem;
  color: #333333;
  line-height: 1.45;
}

/* CTA — без цветного фона, по центру */
body.thebe-page,
body.maket4-page .uaem-cta-strip {
  background: var(--uaem-card);
  color: #333333;
  padding: 0 0 1.25rem;
  text-align: center;
  border: 1px solid var(--uaem-border);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px var(--uaem-shadow);
}

body.thebe-page,
body.maket4-page .uaem-cta-strip h2 {
  padding-top: 0.75rem;
}

body.thebe-page,
body.maket4-page .uaem-cta-strip p {
  margin: 0 0 1rem;
  padding: 0 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  opacity: 1;
}

body.thebe-page,
body.maket4-page .uaem-cta-strip .uaem-btn--gold {
  display: inline-block;
  margin: 0 auto;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  background: var(--uaem-primary);
  color: #fff;
}

body.thebe-page,
body.maket4-page .uaem-cta-strip .uaem-btn--gold:hover {
  filter: brightness(1.08);
  background: var(--uaem-primary);
  color: #fff;
}

/* FAQ */
.uaem-faq details {
  border: 1px solid var(--uaem-border);
  margin-bottom: 0.5rem;
  background: var(--uaem-card);
}

.uaem-faq summary {
  padding: 0.75rem 1rem;
  margin: 0;
  cursor: pointer;
}

.uaem-faq details[open] summary {
  background: #edf5f0;
  border-bottom: 1px solid var(--uaem-border);
}

.uaem-faq details p {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.9rem;
  color: #333333;
}

/* Tabs / tables + body copy — text #333333 */
body.thebe-page,
body.maket4-page .amoxil-cmed24-product,
body.thebe-page,
body.maket4-page .amoxil-cmed24-product .productDescription,
body.thebe-page,
body.maket4-page .amoxil-cmed24-product .productDescription p,
body.thebe-page,
body.maket4-page .amoxil-cmed24-product .productDescription li,
body.thebe-page,
body.maket4-page .amoxil-cmed24-product .tableTab table td,
body.thebe-page,
body.maket4-page .amoxil-cmed24-product h4,
body.thebe-page,
body.maket4-page .uaem-content,
body.thebe-page,
body.maket4-page .uaem-section__body,
body.thebe-page,
body.maket4-page .uaem-section__body p,
body.thebe-page,
body.maket4-page .uaem-section__body li,
body.thebe-page,
body.maket4-page .product_info_desc,
body.thebe-page,
body.maket4-page .product_info_summary,
body.thebe-page,
body.maket4-page .synonyms-block,
body.thebe-page,
body.maket4-page .hub-medical-inline,
body.thebe-page,
body.maket4-page .uaem-stat-card,
body.thebe-page,
body.maket4-page .uaem-stat-card p,
body.thebe-page,
body.maket4-page .uaem-mission-box,
body.thebe-page,
body.maket4-page .uaem-mission-box p,
body.thebe-page,
body.maket4-page .uaem-sidebar a,
body.thebe-page,
body.maket4-page .uaem-faq summary,
body.thebe-page,
body.maket4-page .uaem-faq details p {
  color: #333333;
}

body.thebe-page,
body.maket4-page .uaem-sidebar__title {
  color: var(--uaem-bar-text);
}

body.thebe-page,
body.maket4-page .uaem-sidebar a:hover,
body.thebe-page,
body.maket4-page .uaem-sidebar a[aria-current="page"] {
  color: #fff;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .boxTab #ex-one ul.nav li a:not(.current),
body.thebe-page,
body.maket4-page .amoxil-cmed24-product .boxTab .ex-one ul.nav li a:not(.current) {
  color: #333333;
  border-color: #333333;
  background: #fff;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .boxTab #ex-one ul.nav li a.current,
body.thebe-page,
body.maket4-page .amoxil-cmed24-product .boxTab .ex-one ul.nav li a.current {
  background: #333333;
  border-color: #333333;
  color: #fff;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .button-blue {
  background: #333333;
  color: #fff;
  border-radius: 2px;
  border: 2px solid #000;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .button-blue:hover,
body.thebe-page,
body.maket4-page .amoxil-cmed24-product .button-blue:focus-visible {
  background: #555555;
  color: #fff;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .tableTab table tr.head td {
  background-color: #f0f0f0;
  color: #333333;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .tableTab table tr td.price {
  color: #333333;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .free-product {
  color: var(--uaem-link);
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product {
  padding: 0;
}

body.thebe-page,
body.maket4-page .amoxil-cmed24-product .boxTab ul.nav {
  margin: 0 0 1rem;
}

/* Footer */
.uaem-footer {
  background: var(--uaem-bar);
  color: var(--uaem-bar-text);
  font-size: 0.88rem;
  margin-top: 1rem;
}

/* Footer: same grid as .uaem-layout — content only in main column (between guide lines) */
.uaem-footer__layout {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem 0 1.5rem;
}

.uaem-footer__main {
  min-width: 0;
}

.uaem-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.uaem-footer__col {
  min-width: 0;
}

.uaem-footer__layout--bottom {
  padding: 0.85rem 0;
}

.uaem-footer__copy {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--uaem-bar-muted);
}

.uaem-footer h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--uaem-accent);
}

.uaem-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uaem-footer li {
  margin: 0.35rem 0;
}

.uaem-footer a {
  color: #fff;
  text-decoration: none;
}

.uaem-footer a:hover {
  color: var(--uaem-primary);
}

.uaem-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
  .uaem-split,
  .uaem-stats {
    grid-template-columns: 1fr;
  }

  .uaem-layout {
    grid-template-columns: 1fr;
  }

  .uaem-sidebar ul {
    max-height: 16rem;
  }
}

@media (max-width: 720px) {
  .uaem-nav {
    width: 100%;
    order: 3;
  }

  .uaem-header__payments {
    display: none;
  }

  .uaem-footer__layout {
    grid-template-columns: 1fr;
  }

  .uaem-footer__spacer {
    display: none;
  }

  .uaem-footer__cols {
    grid-template-columns: 1fr;
  }

  .uaem-hero__copy {
    max-width: 100%;
    text-align: left;
  }

  .uaem-hero__pills {
    justify-content: flex-start;
  }

  .uaem-hero .uaem-wrap {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 1rem;
  }

  .uaem-page-body {
    margin-top: -2rem;
  }
}

/* Hub (depression-medication) */
.uaem-prose h3 {
  margin: 1.25rem 0 0.5rem;
  color: #333333;
  font-size: 1.1rem;
  font-weight: 600;
}

.uaem-prose p,
.uaem-prose li,
.uaem-prose ol {
  color: #333333;
  line-height: 1.65;
}

.uaem-prose ul,
.uaem-prose ol {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.hub-intro-figure {
  float: left;
  width: 6.5rem;
  margin: 0 1.25rem 0.5rem 0;
  text-align: center;
}

.hub-intro-figure img {
  display: block;
  width: 80px;
  height: auto;
  max-width: 100%;
  border-radius: 4px;
  border: 2px solid var(--uaem-border);
}

.hub-price-intro {
  margin: 0 0 1rem;
  color: #333333;
}

.hub-price-tables-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hub-price-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--uaem-card);
  border: 1px solid var(--uaem-border);
  border-radius: 4px;
  overflow: hidden;
}

.hub-price-table-wrap td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--uaem-border);
  font-size: 0.9rem;
  color: #333333;
}

.hub-price-table-wrap tr:last-child td {
  border-bottom: 0;
}

.hub-price-table-wrap td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--uaem-primary);
}

.hub-price-table-wrap a {
  color: var(--uaem-link);
  font-weight: 600;
  text-decoration: none;
}

.hub-price-table-wrap a:hover {
  text-decoration: underline;
}

.uaem-btn--outline {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 2px solid var(--uaem-primary);
  color: var(--uaem-primary);
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
}

.uaem-btn--outline:hover {
  background: var(--uaem-primary);
  color: #fff;
}

.hub-medical-callout {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: #f5f9fc;
  border: 1px solid var(--uaem-primary);
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333333;
}

.hub-medical-callout strong {
  color: var(--uaem-primary);
}

body.thebe-page,
body.maket4-page .hub-medical-inline {
  color: #333333;
}

.uaem-cta-block .uaem-section__body p {
  margin: 0 0 1rem;
}

@media (max-width: 900px) {
  .hub-price-tables-row {
    grid-template-columns: 1fr;
  }
}

/* Most popular medications — 3×2 grid */
.uaem-popular-meds {
  margin-bottom: 1.5rem;
}

.uaem-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.uaem-popular-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--uaem-border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--uaem-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.uaem-popular-card:hover {
  border-color: var(--uaem-gold);
  box-shadow: 0 4px 14px var(--uaem-shadow);
  text-decoration: none;
}

.uaem-popular-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.uaem-popular-card .uaem-popular-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.uaem-popular-card .uaem-popular-price {
  font-size: 0.85rem;
  color: var(--uaem-primary);
  font-weight: 600;
}

@media (max-width: 720px) {
  .uaem-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* code product pages — hero teaser (как amoxil / cmed24 banner) */
body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser {
  min-height: 272px;
  background: #bac9dd url(teaser-cmed.png) no-repeat center center;
  background-size: cover;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__overlay {
  background: linear-gradient(270deg, rgba(15, 61, 39, 0.9) 0%, rgba(15, 61, 39, 0.45) 48%, transparent 78%);
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-wrap {
  justify-content: flex-end;
  min-height: 272px;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__copy {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__eyebrow {
  color: #e8c547;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__pills {
  justify-content: flex-end;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__pill {
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__pill:hover {
  background: rgba(232, 93, 76, 0.45);
  border-color: rgba(244, 168, 158, 0.95);
  box-shadow: 0 0 14px rgba(232, 93, 76, 0.4);
}

@media (max-width: 720px) {
  body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__copy {
    max-width: 100%;
    text-align: left;
  }

  body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-hero__pills {
    justify-content: flex-start;
  }

  body.thebe-page,
body.maket4-page.maket3-page .uaem-hero--teaser .uaem-wrap {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 1rem;
  }
}

/* amoxil.html — content overlap hero, logo, sidebar hover */
body.thebe-page,
body.maket4-page.maket3-page .uaem-page-body {
  position: relative;
  z-index: 5;
  margin-top: -2rem;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-header .uaem-brand .uaem-brand__online {
  color: #ffffff;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-header .uaem-brand .uaem-brand__pharmacy {
  color: #f4a89e;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-header .uaem-brand:hover .uaem-brand__online,
body.thebe-page,
body.maket4-page.maket3-page .uaem-header .uaem-brand:focus-visible .uaem-brand__online {
  color: #ffffff;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-header .uaem-brand:hover .uaem-brand__pharmacy,
body.thebe-page,
body.maket4-page.maket3-page .uaem-header .uaem-brand:focus-visible .uaem-brand__pharmacy {
  color: #ffd4ce;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-header .uaem-brand__tagline {
  color: rgba(255, 255, 255, 0.82);
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-sidebar a {
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-sidebar a:hover,
body.thebe-page,
body.maket4-page.maket3-page .uaem-sidebar a:focus-visible {
  background: rgba(232, 93, 76, 0.18);
  color: var(--uaem-primary);
  box-shadow: 0 0 12px rgba(232, 93, 76, 0.25);
}

body.thebe-page,
body.maket4-page.maket3-page .uaem-sidebar a[aria-current="page"] {
  background: rgba(232, 93, 76, 0.28);
  color: var(--uaem-primary);
  box-shadow: 0 0 12px rgba(232, 93, 76, 0.3);
}

/* thebe — без левого меню Medications */
body.thebe-page,
body.maket4-page .uaem-layout--no-sidebar {
  grid-template-columns: minmax(0, 1fr);
}

body.thebe-page,
body.maket4-page .uaem-layout--no-sidebar .uaem-content {
  grid-column: 1;
  max-width: none;
}

body.thebe-page,
body.maket4-page .uaem-footer__spacer {
  display: none;
}

body.thebe-page,
body.maket4-page .uaem-footer__layout {
  grid-template-columns: minmax(0, 1fr);
}


/* --- beacon-page overrides --- */

/* Beacon Eastbourne layout shell + pharmacy overrides (amoxil2) */

@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

body.beacon-page,
body.maket4-page {
  margin: 0;
  background: #fff !important;
  font-family: "Source Sans 3", "museo-sans", "Helvetica Neue", Arial, sans-serif;
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
  --beacon-body-size: 1rem;
  --beacon-body-lh: 1.5;
}

body.beacon-page,
body.maket4-page.thebe-page .uaem-wrap {
  max-width: none;
  padding: 0;
}

body.beacon-page,
body.maket4-page .site-main {
  min-height: calc(100vh - 320px);
  background: #fff;
}

/* Back link arrow (local; theme SVG path missing offline) */
body.beacon-page,
body.maket4-page .u--back-link a::before {
  background: none;
  content: "← ";
  width: auto;
  height: auto;
  display: inline;
}

/* Header: OnlinePharmacy instead of Beacon logo */
body.beacon-page,
body.maket4-page #masthead {
  height: auto !important;
  min-height: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

body.beacon-page,
body.maket4-page #masthead .primary-header {
  padding: 1.25rem 0;
}

body.beacon-page,
body.maket4-page .beacon-pharmacy-logo {
  flex-basis: auto;
  min-width: 11rem;
}

body.beacon-page,
body.maket4-page .beacon-brand.uaem-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

body.beacon-page,
body.maket4-page .beacon-brand .uaem-brand__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.beacon-page,
body.maket4-page .beacon-brand .uaem-brand__online {
  color: #283380;
}

body.beacon-page,
body.maket4-page .beacon-brand .uaem-brand__pharmacy {
  color: #e85d4c;
}

body.beacon-page,
body.maket4-page .beacon-brand .uaem-brand__tagline {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #283380;
}

body.beacon-page,
body.maket4-page #masthead .primary-header > .container {
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

body.beacon-page,
body.maket4-page .beacon-header-bar {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

body.beacon-page,
body.maket4-page #masthead .main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

body.beacon-page,
body.maket4-page .beacon-header-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
  flex-wrap: nowrap;
  min-width: 0;
}

body.beacon-page,
body.maket4-page .beacon-pharmacy-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem 0.55rem;
}

body.beacon-page,
body.maket4-page .beacon-pharmacy-menu li {
  margin: 0;
  padding: 0;
}

body.beacon-page,
body.maket4-page .beacon-pharmacy-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  color: #283380;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

body.beacon-page,
body.maket4-page .beacon-pharmacy-menu a:hover {
  text-decoration: underline;
}

body.beacon-page,
body.maket4-page .beacon-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.65rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
  border-left: 1px solid #d8dce8;
  padding-left: 0.65rem;
  margin-left: 0.15rem;
}

body.beacon-page,
body.maket4-page .beacon-header__payments {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #283380;
  font-weight: 500;
  white-space: nowrap;
}

body.beacon-page,
body.maket4-page .beacon-header__payments span {
  margin-right: 0.15rem;
}

body.beacon-page,
body.maket4-page .beacon-header__payments img {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

body.beacon-page,
body.maket4-page .beacon-btn-buy.btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: #e85d4c;
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  font-size: 0.85rem;
  white-space: nowrap;
}

body.beacon-page,
body.maket4-page .beacon-btn-buy.btn:hover {
  background: #cf4f40;
  color: #fff;
}

@media only screen and (min-width: 1200px) {
  body.beacon-page,
body.maket4-page #masthead .menu-toggle {
    display: none;
  }

  body.beacon-page,
body.maket4-page .beacon-header-toolbar {
    display: flex;
  }
}

@media only screen and (max-width: 1199px) {
  body.beacon-page,
body.maket4-page .beacon-header-toolbar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(40, 51, 128, 0.96);
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  body.beacon-page,
body.maket4-page #site-navigation.toggled .beacon-header-toolbar {
    display: flex;
  }

  body.beacon-page,
body.maket4-page .beacon-pharmacy-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  body.beacon-page,
body.maket4-page .beacon-pharmacy-menu a {
    color: #fff;
    font-size: 1.15rem;
  }

  body.beacon-page,
body.maket4-page .beacon-header__actions {
    flex-direction: column;
    align-items: flex-start;
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }

  body.beacon-page,
body.maket4-page .beacon-header__payments {
    color: #fff;
  }

  body.beacon-page,
body.maket4-page .beacon-header-bar {
    flex: 0 0 auto;
  }
}

/* Single article (Beacon cineworld-membership layout) */
body.beacon-page,
body.maket4-page .single h1 {
  color: #283380;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 1.5rem 0 0;
}

body.beacon-page,
body.maket4-page .beacon-lead {
  color: #404040;
  font-size: var(--beacon-body-size);
  line-height: var(--beacon-body-lh);
  max-width: 52rem;
}

body.beacon-page,
body.maket4-page .beacon-lead > p {
  margin: 0 0 1.5em;
}

body.beacon-page,
body.maket4-page .beacon-flow .product_info_img {
  text-align: left;
  margin-left: 0;
}

body.beacon-page,
body.maket4-page .beacon-flow .product_info_img img {
  display: block;
  margin: 0;
}

/* One continuous content column — hide “card” blocks */
body.beacon-page,
body.maket4-page .beacon-flow {
  padding: 0.5rem 0 3rem;
  max-width: 100%;
}

body.beacon-page,
body.maket4-page .beacon-flow .beacon-chunk,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-section,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-cta-strip,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-split {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 0 2rem !important;
  padding: 0 !important;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-section__head,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-cta-strip h2 {
  margin: 2rem 0 0.75rem;
  padding: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: #283380;
  background: none;
  border: none;
}

body.beacon-page,
body.maket4-page .beacon-flow #prices .uaem-section__head,
body.beacon-page,
body.maket4-page .beacon-flow #benefits .uaem-section__head {
  margin-top: 3.25rem;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-section__body {
  padding: 0;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-cta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-cta-strip h2 {
  width: 100%;
  text-align: center;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-cta-strip p {
  margin: 0 0 1rem;
  padding: 0;
  max-width: 36rem;
  text-align: center;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-cta-strip .uaem-btn--gold {
  background: #e85d4c;
  color: #fff;
  border: 0;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  body.beacon-page,
body.maket4-page .beacon-flow .uaem-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body.beacon-page,
body.maket4-page .beacon-flow .uaem-stats {
    grid-template-columns: 1fr;
  }
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-stat-card {
  background: #f8f9fc;
  border: none;
  box-shadow: none;
  padding: 1rem;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-popular-grid {
  gap: 1rem;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-popular-card {
  border: 1px solid #e8ecf4;
  box-shadow: none;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-mission-box {
  background: #f8f9fc;
  border: none;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-product-intro h1 {
  font-size: var(--beacon-body-size);
  font-weight: 700;
  color: #404040;
}

/* Body text = Beacon article paragraph (1rem / 1.5) */
body.beacon-page,
body.maket4-page .beacon-flow,
body.beacon-page,
body.maket4-page .beacon-flow p,
body.beacon-page,
body.maket4-page .beacon-flow li,
body.beacon-page,
body.maket4-page .beacon-flow .product_info_desc,
body.beacon-page,
body.maket4-page .beacon-flow .product_info_summary,
body.beacon-page,
body.maket4-page .beacon-flow .product_info_summary p,
body.beacon-page,
body.maket4-page .beacon-flow .hub-medical-inline,
body.beacon-page,
body.maket4-page .beacon-flow .synonyms-block,
body.beacon-page,
body.maket4-page .beacon-flow .synonyms-list,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .productDescription,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .productDescription p,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .productDescription li,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .tableTab,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .tableTab td,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product h4,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-stat-card,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-stat-card p,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-stat-card h3,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-mission-box,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-mission-box p,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-mission-box h3,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-popular-name,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-popular-price,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-faq details,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-faq details p,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-faq summary,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-cta-strip p {
  font-size: var(--beacon-body-size) !important;
  line-height: var(--beacon-body-lh) !important;
}

body.beacon-page,
body.maket4-page .beacon-flow .uaem-stat-card h3,
body.beacon-page,
body.maket4-page .beacon-flow .uaem-mission-box h3 {
  font-weight: 600;
}

/* Product tabs: larger gaps between pills (default pill width) */
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .boxTab #ex-one ul.nav,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .boxTab .ex-one ul.nav {
  gap: 0.65rem 1.15rem !important;
}

body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .boxTab #ex-one ul.nav li,
body.beacon-page,
body.maket4-page .beacon-flow .amoxil-cmed24-product .boxTab .ex-one ul.nav li {
  margin: 0;
}

/* Synonyms: bold label, one line with ellipsis */
body.beacon-page,
body.maket4-page .beacon-flow .synonyms-block #synonyms {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  margin: 0.5rem 0 0;
  max-height: none !important;
  overflow: hidden;
  line-height: 1.45;
  white-space: nowrap;
}

body.beacon-page,
body.maket4-page .beacon-flow .synonyms-label {
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
}

body.beacon-page,
body.maket4-page .beacon-flow .synonyms-list {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.beacon-page,
body.maket4-page .beacon-flow #synonyms.is-expanded {
  display: block;
  white-space: normal;
  overflow: visible;
}

body.beacon-page,
body.maket4-page .beacon-flow #synonyms.is-expanded .synonyms-list {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

body.beacon-page,
body.maket4-page .beacon-flow .synonyms-block #synonymsHandler {
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.25rem;
}

body.beacon-page,
body.maket4-page .beacon-flow details {
  border-bottom: 1px solid #e8ecf4;
}

/* Suppress maket3 page chrome not used on beacon clone */
body.beacon-page,
body.maket4-page .uaem-hero,
body.beacon-page,
body.maket4-page .uaem-breadcrumb,
body.beacon-page,
body.maket4-page .uaem-page-body > .uaem-wrap:first-child,
body.beacon-page,
body.maket4-page .uaem-footer {
  display: none !important;
}

body.beacon-page,
body.maket4-page #colophon.beacon-pharmacy-footer {
  background: #283380;
  color: #fff;
  padding: 2rem 0 1.5rem;
  margin-top: 0;
}

body.beacon-page,
body.maket4-page .beacon-pharmacy-footer a {
  color: #fff;
  text-decoration: none;
}

body.beacon-page,
body.maket4-page .beacon-pharmacy-footer a:hover {
  text-decoration: underline;
}

body.beacon-page,
body.maket4-page .beacon-footer-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.beacon-page,
body.maket4-page .beacon-footer-item {
  white-space: nowrap;
  color: #fff;
}

body.beacon-page,
body.maket4-page .beacon-footer-bar .beacon-footer-item + .beacon-footer-item::before {
  content: none;
}

body.beacon-page,
body.maket4-page .beacon-footer-copy {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  opacity: 0.85;
  text-align: center;
}

/* Hamburger (minimal) */
body.beacon-page,
body.maket4-page .hamburger {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.beacon-page,
body.maket4-page .hamburger-box {
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

body.beacon-page,
body.maket4-page .hamburger-inner,
body.beacon-page,
body.maket4-page .hamburger-inner::before,
body.beacon-page,
body.maket4-page .hamburger-inner::after {
  width: 28px;
  height: 3px;
  background: #283380;
  position: absolute;
  left: 0;
  transition: transform 0.15s ease;
}

body.beacon-page,
body.maket4-page .hamburger-inner {
  top: 50%;
  margin-top: -1.5px;
}

body.beacon-page,
body.maket4-page .hamburger-inner::before {
  content: "";
  top: -8px;
}

body.beacon-page,
body.maket4-page .hamburger-inner::after {
  content: "";
  top: 8px;
}

