/*
Theme Name: Daily Online Health
Theme URI: https://dailyonlinehealth.com/
Author: Daily Online Health
Author URI: https://dailyonlinehealth.com/
Description: A responsive healthcare, hospital and doctor directory, online consultation, medical tourism, and health marketplace theme for Daily Online Health.
Version: 1.5.2
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: daily-online-health
*/

:root {
  --doh-navy-950: #08283d;
  --doh-navy-900: #0d3652;
  --doh-navy-800: #164d68;
  --doh-teal-700: #087a78;
  --doh-teal-600: #0f918d;
  --doh-teal-500: #18aaa3;
  --doh-mint-100: #e8f8f5;
  --doh-mint-50: #f4fbfa;
  --doh-sky-100: #e9f4fb;
  --doh-magenta: #e845a3;
  --doh-coral: #f05b63;
  --doh-ink: #173042;
  --doh-muted: #617582;
  --doh-line: #dce8ec;
  --doh-white: #ffffff;
  --doh-bg: #f7fbfc;
  --doh-shadow-sm: 0 8px 30px rgba(11, 54, 80, 0.08);
  --doh-shadow: 0 22px 65px rgba(11, 54, 80, 0.13);
  --doh-radius-sm: 12px;
  --doh-radius: 20px;
  --doh-radius-lg: 32px;
  --doh-container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--doh-ink);
  background: var(--doh-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  content: "";
  background: rgba(8, 40, 61, 0.34);
  backdrop-filter: blur(2px);
}

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

a {
  color: var(--doh-teal-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--doh-navy-900);
}

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

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

:focus-visible {
  outline: 3px solid rgba(232, 69, 163, 0.45);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed !important;
  z-index: 9999;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  color: var(--doh-white);
  background: var(--doh-navy-950);
  border-radius: 8px;
}

.doh-container {
  width: min(calc(100% - 40px), var(--doh-container));
  margin-inline: auto;
}

.doh-section {
  padding: 92px 0;
}

.doh-section--soft {
  background: var(--doh-bg);
}

.doh-section--mint {
  background: linear-gradient(135deg, var(--doh-mint-50), var(--doh-sky-100));
}

.doh-section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.doh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--doh-teal-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doh-eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--doh-magenta);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--doh-navy-950);
  font-weight: 780;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.55rem, 5.6vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-top: 0;
}

.doh-lead {
  color: var(--doh-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.doh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  color: var(--doh-white);
  background: var(--doh-teal-700);
  border: 1px solid var(--doh-teal-700);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.doh-button:hover {
  color: var(--doh-white);
  background: var(--doh-navy-900);
  border-color: var(--doh-navy-900);
  box-shadow: 0 10px 24px rgba(13, 54, 82, 0.2);
  transform: translateY(-2px);
}

.doh-button--secondary {
  color: var(--doh-navy-900);
  background: var(--doh-white);
  border-color: var(--doh-line);
}

.doh-button--secondary:hover {
  color: var(--doh-navy-900);
  background: var(--doh-mint-100);
  border-color: var(--doh-teal-500);
}

.doh-button--ghost {
  color: var(--doh-navy-900);
  background: transparent;
  border-color: transparent;
}

.doh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--doh-navy-900);
  font-weight: 750;
  text-decoration: none;
}

.doh-text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.doh-text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.doh-topbar {
  color: #d7eef4;
  background: var(--doh-navy-950);
  font-size: 0.78rem;
}

.doh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 37px;
}

.doh-topbar p {
  margin: 0;
}

.doh-topbar__links {
  display: flex;
  gap: 18px;
}

.doh-topbar a {
  color: var(--doh-white);
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 232, 236, 0.9);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

.doh-header__inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.doh-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--doh-navy-950);
  text-decoration: none;
}

.doh-brand:hover {
  color: var(--doh-navy-950);
}

.doh-brand__mark,
.custom-logo {
  display: block;
  width: 53px;
  height: 53px;
  object-fit: contain;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.doh-brand__text {
  display: grid;
  line-height: 1.05;
}

.doh-brand__name {
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.doh-brand__tagline {
  margin-top: 5px;
  color: var(--doh-muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.doh-nav {
  margin-left: auto;
}

.doh-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.doh-nav a {
  display: block;
  padding: 10px 11px;
  color: var(--doh-ink);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.doh-nav a:hover,
.doh-nav .current-menu-item > a,
.doh-nav .current-menu-ancestor > a {
  color: var(--doh-teal-700);
  background: var(--doh-mint-50);
}

.doh-nav .menu > .menu-item-has-children {
  position: relative;
}

.doh-nav .menu > .menu-item-has-children > a {
  position: relative;
  padding-right: 28px;
}

.doh-nav .menu > .menu-item-has-children > a::after {
  position: absolute;
  top: 50%;
  right: 11px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.doh-nav .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  align-items: stretch;
  gap: 2px;
  min-width: 230px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: 14px;
  box-shadow: var(--doh-shadow-sm);
  transform: translateY(-7px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.doh-nav .sub-menu::before {
  position: absolute;
  top: -11px;
  right: 0;
  left: 0;
  height: 11px;
  content: "";
}

.doh-nav .sub-menu a {
  width: 100%;
  padding: 11px 13px;
  white-space: nowrap;
}

.doh-nav .menu-item-has-children:hover > .sub-menu,
.doh-nav .menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.doh-nav .menu-item-has-children:hover > a::after,
.doh-nav .menu-item-has-children:focus-within > a::after {
  transform: translateY(-25%) rotate(225deg);
}

.doh-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.doh-header__actions .doh-button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.doh-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  color: var(--doh-navy-950);
  background: var(--doh-mint-50);
  border: 1px solid var(--doh-line);
  border-radius: 10px;
  cursor: pointer;
}

.doh-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.doh-menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.doh-menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-child(2) {
  opacity: 0;
}

.doh-menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.doh-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 46px;
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 170, 163, 0.16), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(232, 69, 163, 0.08), transparent 26%),
    linear-gradient(180deg, #f9fdfd 0%, #ffffff 100%);
}

.doh-hero::after {
  position: absolute;
  right: -120px;
  bottom: -200px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(15, 145, 141, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(15, 145, 141, 0.03), 0 0 0 110px rgba(15, 145, 141, 0.025);
}

.doh-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.doh-hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
}

.doh-hero h1 span {
  color: var(--doh-teal-700);
}

.doh-hero__copy .doh-lead {
  max-width: 680px;
  margin-bottom: 30px;
}

.doh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.doh-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  color: var(--doh-muted);
  font-size: 0.84rem;
  font-weight: 650;
  list-style: none;
}

.doh-hero__assurances li::before {
  margin-right: 7px;
  color: var(--doh-teal-600);
  content: "\2713";
  font-weight: 900;
}

.doh-care-card {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 236, 0.9);
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow);
}

.doh-care-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.doh-care-card__logo {
  width: 86px;
  height: 82px;
  object-fit: contain;
}

.doh-online-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.doh-online-pill::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--doh-teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(24, 170, 163, 0.11);
}

.doh-care-card h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.doh-care-card > p {
  color: var(--doh-muted);
  font-size: 0.9rem;
}

.doh-care-options {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.doh-care-options a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  color: var(--doh-ink);
  background: var(--doh-bg);
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.doh-care-options a:hover {
  border-color: var(--doh-teal-500);
  transform: translateX(3px);
}

.doh-care-options__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-white);
  border-radius: 11px;
  font-size: 1.15rem;
  font-weight: 850;
  box-shadow: var(--doh-shadow-sm);
}

.doh-care-options strong,
.doh-care-options small {
  display: block;
}

.doh-care-options small {
  margin-top: 2px;
  color: var(--doh-muted);
  font-size: 0.74rem;
}

.doh-care-options__arrow {
  color: var(--doh-teal-700);
  font-weight: 900;
}

.doh-trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  box-shadow: var(--doh-shadow-sm);
}

.doh-trust-item {
  padding: 22px 24px;
  text-align: center;
}

.doh-trust-item + .doh-trust-item {
  border-left: 1px solid var(--doh-line);
}

.doh-trust-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--doh-navy-900);
  font-size: 1.02rem;
}

.doh-trust-item span {
  color: var(--doh-muted);
  font-size: 0.82rem;
}

/* Cards and grids */
.doh-grid {
  display: grid;
  gap: 22px;
}

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

.doh-service-card {
  display: flex;
  min-height: 290px;
  padding: 28px;
  flex-direction: column;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.doh-service-card:hover {
  border-color: rgba(15, 145, 141, 0.45);
  box-shadow: var(--doh-shadow-sm);
  transform: translateY(-5px);
}

.doh-service-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 900;
}

.doh-service-card:nth-child(2n) .doh-service-card__icon {
  color: #b42c7d;
  background: #fff0f8;
}

.doh-service-card p {
  color: var(--doh-muted);
  font-size: 0.92rem;
}

.doh-service-card .doh-text-link {
  margin-top: auto;
  font-size: 0.88rem;
}

/* Medical tourism */
.doh-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(46px, 8vw, 100px);
}

.doh-travel-visual {
  position: relative;
  min-height: 520px;
  padding: 38px;
  overflow: hidden;
  color: var(--doh-white);
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 69, 163, 0.35), transparent 24%),
    linear-gradient(145deg, var(--doh-navy-950), var(--doh-teal-700));
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow);
}

.doh-travel-visual::before,
.doh-travel-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.doh-travel-visual::before {
  right: -80px;
  bottom: -80px;
  width: 330px;
  height: 330px;
}

.doh-travel-visual::after {
  right: 20px;
  bottom: 20px;
  width: 130px;
  height: 130px;
}

.doh-route-label {
  display: inline-block;
  padding: 7px 11px;
  color: var(--doh-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doh-travel-visual h3 {
  max-width: 420px;
  margin: 120px 0 16px;
  color: var(--doh-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.doh-travel-visual p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: #d5eef1;
}

.doh-route {
  position: absolute;
  top: 80px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--doh-white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.doh-route span:nth-child(2) {
  width: 84px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}

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

.doh-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--doh-ink);
}

.doh-check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  content: "\2713";
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.doh-note {
  padding: 16px 18px;
  color: var(--doh-muted);
  background: var(--doh-bg);
  border-left: 3px solid var(--doh-magenta);
  border-radius: 0 12px 12px 0;
  font-size: 0.82rem;
}

/* Journey */
.doh-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: journey;
}

.doh-journey__item {
  position: relative;
  padding: 28px 24px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  counter-increment: journey;
}

.doh-journey__item::before {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  content: counter(journey, decimal-leading-zero);
  place-items: center;
  color: var(--doh-white);
  background: var(--doh-navy-900);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 850;
}

.doh-journey__item p {
  margin-bottom: 0;
  color: var(--doh-muted);
  font-size: 0.86rem;
}

/* Portal */
.doh-portal {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  padding: 54px;
  overflow: hidden;
  color: var(--doh-white);
  background: var(--doh-navy-950);
  border-radius: var(--doh-radius-lg);
}

.doh-portal::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: rgba(24, 170, 163, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.doh-portal h2,
.doh-portal h3 {
  color: var(--doh-white);
}

.doh-portal p {
  color: #c8dfe7;
}

.doh-portal__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #d8f1f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
}

.doh-portal__status::before {
  width: 8px;
  height: 8px;
  content: "";
  background: #79ddd6;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(121, 221, 214, 0.1);
}

.doh-portal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.doh-portal .doh-eyebrow {
  color: #79ddd6;
}

.doh-portal__panel {
  position: relative;
  z-index: 1;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--doh-radius);
}

.doh-portal__panel ul {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.doh-portal__panel li {
  position: relative;
  padding-left: 28px;
  color: #e7f4f6;
  font-size: 0.9rem;
}

.doh-portal__panel li::before {
  position: absolute;
  left: 0;
  color: #79ddd6;
  content: "\2713";
  font-weight: 900;
}

/* Directory, products, articles */
.doh-directory {
  padding: 34px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow-sm);
}

.doh-directory__bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.doh-directory__feature {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--doh-bg);
  border: 1px solid var(--doh-line);
  border-radius: 13px;
}

.doh-directory__feature strong {
  color: var(--doh-navy-900);
  font-size: 0.86rem;
}

.doh-directory__feature span {
  color: var(--doh-muted);
  font-size: 0.76rem;
}

.doh-field {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  color: var(--doh-ink);
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: 12px;
}

.doh-directory__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  margin-top: 18px;
  background: var(--doh-mint-50);
  border-radius: 14px;
}

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

.doh-product-card {
  padding: 26px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
}

.doh-product-card__art {
  display: grid;
  min-height: 145px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--doh-teal-700);
  background: linear-gradient(135deg, var(--doh-mint-100), var(--doh-sky-100));
  border-radius: 15px;
  font-size: 2rem;
  font-weight: 850;
}

.doh-product-card p,
.doh-post-card p {
  color: var(--doh-muted);
  font-size: 0.88rem;
}

.doh-post-card {
  display: flex;
  min-height: 250px;
  padding: 26px;
  flex-direction: column;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
}

.doh-post-card__meta {
  margin-bottom: 14px;
  color: var(--doh-teal-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doh-post-card .doh-text-link {
  margin-top: auto;
}

/* FAQ and CTA */
.doh-faq {
  max-width: 860px;
  margin-inline: auto;
}

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

.doh-faq summary {
  position: relative;
  padding: 22px 48px 22px 4px;
  color: var(--doh-navy-950);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
  list-style: none;
}

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

.doh-faq summary::after {
  position: absolute;
  top: 19px;
  right: 8px;
  display: grid;
  width: 28px;
  height: 28px;
  content: "+";
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 50%;
}

.doh-faq details[open] summary::after {
  content: "\2212";
}

.doh-faq details p {
  padding: 0 48px 22px 4px;
  margin: 0;
  color: var(--doh-muted);
}

.doh-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px 50px;
  color: var(--doh-white);
  background: linear-gradient(125deg, var(--doh-teal-700), var(--doh-navy-900));
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow);
}

.doh-cta h2 {
  margin-bottom: 10px;
  color: var(--doh-white);
}

.doh-cta p {
  margin: 0;
  color: #d9f1f2;
}

.doh-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.doh-cta .doh-button {
  color: var(--doh-navy-950);
  background: var(--doh-white);
  border-color: var(--doh-white);
}

.doh-cta .doh-button--secondary {
  color: var(--doh-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

/* Standard content */
.doh-page-hero {
  padding: 72px 0 55px;
  background: linear-gradient(145deg, var(--doh-mint-50), var(--doh-sky-100));
}

.doh-page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.doh-content {
  padding: 68px 0 90px;
}

.doh-prose {
  max-width: 820px;
}

.doh-prose > *:first-child {
  margin-top: 0;
}

.doh-prose h2,
.doh-prose h3 {
  margin-top: 1.7em;
}

.doh-prose blockquote {
  padding: 18px 22px;
  margin: 28px 0;
  background: var(--doh-mint-50);
  border-left: 4px solid var(--doh-teal-600);
}

.doh-post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.navigation.pagination {
  margin-top: 40px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: grid;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  place-items: center;
  color: var(--doh-navy-900);
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: 9px;
  text-decoration: none;
}

.page-numbers.current {
  color: var(--doh-white);
  background: var(--doh-teal-700);
}

.doh-admin-note {
  padding: 12px 16px;
  margin: 0;
  color: #714f00;
  background: #fff8da;
  border-bottom: 1px solid #f1df98;
  font-size: 0.82rem;
  text-align: center;
}

/* Footer */
.site-footer {
  margin-top: 92px;
  color: #c9dce4;
  background: var(--doh-navy-950);
}

.doh-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 42px;
  padding: 68px 0 52px;
}

.doh-footer__brand .doh-brand__name {
  color: var(--doh-white);
}

.doh-footer__brand .doh-brand__tagline {
  color: #a9c7d1;
}

.doh-footer__brand > p {
  max-width: 330px;
  margin-top: 22px;
  color: #a9c7d1;
  font-size: 0.86rem;
}

.doh-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.doh-social-link {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #d5e7ec;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.doh-social-link:hover {
  color: var(--doh-white);
  background: var(--doh-teal-700);
  border-color: var(--doh-teal-500);
  transform: translateY(-2px);
}

.doh-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doh-social-link--facebook svg path:first-child,
.doh-social-icon__fill {
  fill: currentColor;
  stroke: none;
}

.doh-social-link--youtube:hover {
  background: #d92d2d;
  border-color: #f06767;
}

.doh-social-link--whatsapp:hover {
  background: #128c5f;
  border-color: #4ed198;
}

.doh-footer__column h3 {
  margin-bottom: 18px;
  color: var(--doh-white);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.doh-footer__column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.doh-footer__column a {
  color: #b9d0d9;
  font-size: 0.84rem;
  text-decoration: none;
}

.doh-footer__column a:hover {
  color: var(--doh-white);
}

.doh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.doh-footer__bottom p {
  margin: 0;
}

.doh-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.doh-footer__legal a {
  color: #c9dce4;
  text-decoration: none;
}

/* Services overview page */
.doh-services-hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(232, 69, 163, 0.14), transparent 25%),
    radial-gradient(circle at 8% 90%, rgba(24, 170, 163, 0.18), transparent 28%),
    linear-gradient(145deg, #f7fdfc, #eef8fb);
}

.doh-services-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.doh-services-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
}

.doh-services-hero .doh-lead {
  max-width: 760px;
}

.doh-services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.doh-services-hero__panel {
  position: relative;
  padding: 34px;
  overflow: hidden;
  color: var(--doh-white);
  background: linear-gradient(145deg, var(--doh-navy-950), var(--doh-teal-700));
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow);
}

.doh-services-hero__panel::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.doh-services-hero__panel-number {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--doh-navy-950);
  background: var(--doh-white);
  border-radius: 18px;
  font-size: 1.65rem;
  font-weight: 900;
}

.doh-services-hero__panel h2 {
  color: var(--doh-white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.doh-services-hero__panel .doh-check-list {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.doh-services-hero__panel .doh-check-list li {
  color: #e3f3f5;
}

.doh-services-hero__panel .doh-check-list li::before {
  color: var(--doh-white);
  background: rgba(255, 255, 255, 0.13);
}

.doh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.doh-services-card {
  display: flex;
  min-height: 430px;
  padding: 30px;
  flex-direction: column;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.doh-services-card:hover {
  border-color: rgba(15, 145, 141, 0.46);
  box-shadow: var(--doh-shadow-sm);
  transform: translateY(-5px);
}

.doh-services-card__number,
.doh-services-process span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.doh-services-card:nth-child(2n) .doh-services-card__number {
  color: #b42c7d;
  background: #fff0f8;
}

.doh-services-card > p,
.doh-services-process p {
  color: var(--doh-muted);
  font-size: 0.9rem;
}

.doh-services-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 8px 0 26px;
  list-style: none;
}

.doh-services-card li {
  position: relative;
  padding-left: 24px;
  color: var(--doh-ink);
  font-size: 0.84rem;
}

.doh-services-card li::before {
  position: absolute;
  left: 0;
  color: var(--doh-teal-600);
  content: "\2713";
  font-weight: 900;
}

.doh-services-card .doh-text-link {
  margin-top: auto;
  font-size: 0.87rem;
}

.doh-services-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.doh-services-process article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 236, 0.92);
  border-radius: var(--doh-radius);
}

.doh-services-process p {
  margin-bottom: 0;
}

.doh-services-note {
  margin: 24px 0 0;
}

/* Appointment request page */
.doh-appointment-hero {
  position: relative;
  padding: 88px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(232, 69, 163, 0.13), transparent 25%),
    radial-gradient(circle at 8% 86%, rgba(24, 170, 163, 0.18), transparent 28%),
    linear-gradient(145deg, #f8fdfd, #edf7fb);
}

.doh-appointment-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 96px);
}

.doh-appointment-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.5vw, 4.8rem);
}

.doh-appointment-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.doh-appointment-hero__facts span {
  padding: 8px 13px;
  color: var(--doh-teal-700);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 145, 141, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.doh-appointment-hero__panel {
  position: relative;
  padding: 36px;
  overflow: hidden;
  color: var(--doh-white);
  background: linear-gradient(145deg, var(--doh-navy-950), var(--doh-teal-700));
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow);
}

.doh-appointment-hero__panel::after {
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.doh-appointment-hero__panel .doh-eyebrow {
  color: #8be2dc;
}

.doh-appointment-hero__panel h2 {
  position: relative;
  z-index: 1;
  color: var(--doh-white);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.doh-appointment-hero__panel .doh-check-list {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.doh-appointment-hero__panel .doh-check-list li {
  color: #e3f3f5;
}

.doh-appointment-hero__panel .doh-check-list li::before {
  color: var(--doh-white);
  background: rgba(255, 255, 255, 0.14);
}

.doh-appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: 28px;
}

.doh-appointment-form-wrap {
  padding: clamp(28px, 4vw, 48px);
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow-sm);
}

.doh-appointment-form-heading {
  padding-bottom: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--doh-line);
}

.doh-appointment-form-heading h2 {
  margin-bottom: 12px;
}

.doh-appointment-form-heading > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--doh-muted);
  font-size: 0.9rem;
}

.doh-appointment-form fieldset {
  padding: 0;
  margin: 0 0 34px;
  border: 0;
}

.doh-appointment-form legend {
  width: 100%;
  padding: 0 0 14px;
  margin-bottom: 20px;
  color: var(--doh-navy-900);
  border-bottom: 1px solid var(--doh-line);
  font-size: 1.08rem;
  font-weight: 850;
}

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

.doh-form-group--wide {
  grid-column: 1 / -1;
}

.doh-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--doh-ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.doh-form-group label > span:not(.doh-optional) {
  color: var(--doh-coral);
}

.doh-form-group small,
.doh-form-submit p,
.doh-optional {
  color: var(--doh-muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.doh-form-group small {
  display: block;
  margin-top: 6px;
}

.doh-appointment-form .doh-field {
  min-height: 54px;
  background: #fbfdfd;
  border-color: #cfdde2;
}

.doh-appointment-form .doh-field:focus {
  background: var(--doh-white);
  border-color: var(--doh-teal-600);
  box-shadow: 0 0 0 4px rgba(15, 145, 141, 0.1);
  outline: 0;
}

.doh-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  color: var(--doh-ink);
  background: var(--doh-mint-50);
  border: 1px solid rgba(15, 145, 141, 0.18);
  border-radius: 14px;
  font-size: 0.83rem;
}

.doh-form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--doh-teal-700);
}

.doh-form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.doh-form-submit p {
  max-width: 270px;
  margin: 0;
}

.doh-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.doh-appointment-response:empty {
  display: none;
}

.doh-form-alert {
  padding: 22px;
  margin-bottom: 30px;
  border: 1px solid;
  border-radius: 16px;
}

.doh-form-alert h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.doh-form-alert p {
  margin: 0;
  font-size: 0.88rem;
}

.doh-form-alert .doh-button {
  margin-top: 16px;
}

.doh-form-alert--success {
  background: #effbf7;
  border-color: #b9e5d6;
}

.doh-form-alert--error {
  background: #fff4f4;
  border-color: #f0c5c8;
}

.doh-form-alert__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doh-button--whatsapp {
  color: var(--doh-white);
  background: #158c5a;
  border-color: #158c5a;
}

.doh-button--whatsapp:hover {
  color: var(--doh-white);
  background: #0f7248;
  border-color: #0f7248;
}

.doh-appointment-sidebar {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 18px;
}

.doh-appointment-sidebar__card {
  padding: 28px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
}

.doh-appointment-sidebar__card h2 {
  font-size: 1.32rem;
}

.doh-appointment-sidebar__card > p:last-child {
  margin-bottom: 0;
  color: var(--doh-muted);
  font-size: 0.85rem;
}

.doh-appointment-steps {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.doh-appointment-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 12px;
}

.doh-appointment-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 900;
}

.doh-appointment-steps h3 {
  margin-bottom: 5px;
  font-size: 0.96rem;
}

.doh-appointment-steps p {
  margin: 0;
  color: var(--doh-muted);
  font-size: 0.78rem;
}

.doh-appointment-sidebar__card--urgent {
  background: #fff6f6;
  border-color: #f0d1d3;
}

.doh-appointment-sidebar__card--urgent h2 {
  color: #a72b34;
}

.doh-appointment-sidebar__card--whatsapp {
  background: #effbf7;
  border-color: #b9e5d6;
}

.doh-appointment-sidebar__card--whatsapp .doh-button {
  margin-top: 8px;
}

/* Full-page appointment confirmation */
.doh-confirmation-page {
  background: var(--doh-white);
}

.doh-confirmation-hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(24, 170, 163, 0.18), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(31, 102, 169, 0.12), transparent 28%),
    linear-gradient(145deg, #f7fdfc, #eef8fb);
}

.doh-confirmation-card {
  max-width: 940px;
  padding: clamp(34px, 6vw, 68px);
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 145, 141, 0.2);
  border-radius: var(--doh-radius-lg);
  box-shadow: 0 24px 70px rgba(7, 43, 56, 0.12);
}

.doh-confirmation-card h1 {
  max-width: 820px;
  margin: 12px auto 20px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.doh-confirmation-card .doh-lead {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.doh-confirmation-check {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--doh-white);
  background: linear-gradient(145deg, #14a685, #087d73);
  border: 9px solid #dbf5ed;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(8, 125, 115, 0.25);
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 1;
}

.doh-confirmation-reference {
  display: grid;
  max-width: 560px;
  gap: 6px;
  padding: 20px 24px;
  margin: 30px auto 18px;
  background: var(--doh-navy-950);
  border-radius: 16px;
}

.doh-confirmation-reference span,
.doh-confirmation-reference small {
  color: rgba(255, 255, 255, 0.72);
}

.doh-confirmation-reference span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doh-confirmation-reference strong {
  color: var(--doh-white);
  font-family: var(--doh-font-heading);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  letter-spacing: 0.04em;
}

.doh-confirmation-reference small {
  font-size: 0.78rem;
}

.doh-confirmation-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  color: #166a52;
  background: #effbf7;
  border: 1px solid #b9e5d6;
  border-radius: 999px;
  font-size: 0.8rem;
}

.doh-confirmation-status span {
  width: 9px;
  height: 9px;
  background: #13a36f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(19, 163, 111, 0.12);
}

.doh-confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  gap: clamp(28px, 5vw, 68px);
}

.doh-confirmation-summary,
.doh-confirmation-next {
  padding: clamp(26px, 4vw, 40px);
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  box-shadow: var(--doh-shadow-sm);
}

.doh-confirmation-details {
  display: grid;
  gap: 0;
  margin: 26px 0 20px;
}

.doh-confirmation-details > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--doh-line);
}

.doh-confirmation-details dt {
  color: var(--doh-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.doh-confirmation-details dd {
  margin: 0;
  color: var(--doh-ink);
  font-size: 0.86rem;
  font-weight: 760;
}

.doh-confirmation-privacy {
  padding: 14px 16px;
  margin: 0;
  color: var(--doh-muted);
  background: var(--doh-mint-50);
  border-radius: 12px;
  font-size: 0.78rem;
}

.doh-confirmation-steps {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.doh-confirmation-steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.doh-confirmation-steps li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 13px;
  font-size: 0.7rem;
  font-weight: 900;
}

.doh-confirmation-steps h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.doh-confirmation-steps p {
  margin: 0;
  color: var(--doh-muted);
  font-size: 0.8rem;
}

.doh-confirmation-actions-section {
  padding-top: 64px;
}

.doh-confirmation-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--doh-white);
  background: linear-gradient(145deg, var(--doh-navy-950), #0d5c68);
  border-radius: var(--doh-radius-lg);
}

.doh-confirmation-notice .doh-eyebrow {
  color: #73ddd0;
}

.doh-confirmation-notice h2 {
  color: var(--doh-white);
}

.doh-confirmation-notice p:not(.doh-eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.doh-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.doh-confirmation-notice .doh-button--secondary {
  color: var(--doh-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.doh-confirmation-emergency {
  max-width: 940px;
  padding: 15px 18px;
  margin: 20px auto 0;
  color: #8c2932;
  text-align: center;
  background: #fff4f4;
  border: 1px solid #f0c5c8;
  border-radius: 12px;
  font-size: 0.78rem;
}

.doh-confirmation-hero--invalid {
  min-height: 72vh;
  display: grid;
  align-items: center;
}

.doh-confirmation-check--invalid {
  background: linear-gradient(145deg, #c04a54, #8f2933);
  border-color: #f9dfe1;
}

.doh-confirmation-hero--invalid .doh-confirmation-actions {
  margin-top: 28px;
}

/* Online Consultation page */
.doh-consult-hero {
  position: relative;
  padding: 96px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(30, 126, 176, 0.16), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(24, 170, 163, 0.2), transparent 28%),
    linear-gradient(145deg, #f7fdfc, #eef8fb);
}

.doh-consult-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.doh-consult-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.3vw, 4.8rem);
}

.doh-consult-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.doh-consult-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.doh-consult-hero__facts span {
  padding: 8px 12px;
  color: var(--doh-teal-700);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 145, 141, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
}

.doh-consult-hero__panel {
  position: relative;
  padding: clamp(30px, 4vw, 44px);
  color: var(--doh-white);
  background: linear-gradient(145deg, var(--doh-navy-950), var(--doh-teal-700));
  border-radius: var(--doh-radius-lg);
  box-shadow: 0 24px 55px rgba(7, 43, 56, 0.2);
}

.doh-consult-hero__symbol {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--doh-navy-950);
  background: #7be2d5;
  border-radius: 18px;
  font-size: 2rem;
  font-weight: 900;
}

.doh-consult-hero__panel .doh-eyebrow {
  color: #79dfd2;
}

.doh-consult-hero__panel h2 {
  color: var(--doh-white);
}

.doh-consult-hero__panel .doh-check-list li {
  color: rgba(255, 255, 255, 0.78);
}

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

.doh-consult-use-grid article,
.doh-consult-process article {
  padding: 28px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  box-shadow: var(--doh-shadow-sm);
}

.doh-consult-use-grid article > span,
.doh-consult-process article > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 13px;
  font-size: 0.7rem;
  font-weight: 900;
}

.doh-consult-use-grid h3,
.doh-consult-process h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.doh-consult-use-grid p,
.doh-consult-process p {
  margin: 0;
  color: var(--doh-muted);
  font-size: 0.82rem;
}

.doh-consult-process article {
  border-top: 4px solid var(--doh-teal-600);
}

.doh-consult-guidance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: clamp(42px, 7vw, 90px);
}

.doh-consult-boundaries {
  padding: clamp(28px, 4vw, 40px);
  background: #fff8f3;
  border: 1px solid #efd8c6;
  border-radius: var(--doh-radius);
}

.doh-consult-boundaries ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 22px 0 0;
  color: var(--doh-muted);
  font-size: 0.82rem;
}

.doh-consult-emergency {
  margin-top: 20px;
  color: #8c2932;
  background: #fff4f4;
  border-color: #f0c5c8;
}

/* Medical Tourism page */
.doh-mt-hero {
  position: relative;
  padding: 96px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(232, 69, 163, 0.16), transparent 24%),
    radial-gradient(circle at 10% 86%, rgba(24, 170, 163, 0.2), transparent 28%),
    linear-gradient(145deg, #f7fdfc, #eef8fb);
}

.doh-mt-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.doh-mt-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.5vw, 4.9rem);
}

.doh-mt-hero__note {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--doh-muted);
  font-size: 0.84rem;
}

.doh-mt-hero__panel {
  padding: 36px;
  color: var(--doh-white);
  background: linear-gradient(145deg, var(--doh-navy-950), var(--doh-teal-700));
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow);
}

.doh-mt-hero__panel h2 {
  margin: 28px 0 20px;
  color: var(--doh-white);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.doh-mt-hero__panel .doh-check-list {
  margin-bottom: 0;
}

.doh-mt-hero__panel .doh-check-list li {
  color: #e5f4f6;
}

.doh-mt-hero__panel .doh-check-list li::before {
  color: var(--doh-white);
  background: rgba(255, 255, 255, 0.14);
}

.doh-mt-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.doh-mt-service-card {
  padding: 30px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  box-shadow: var(--doh-shadow-sm);
}

.doh-mt-service-card__number,
.doh-mt-process span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--doh-white);
  background: var(--doh-navy-900);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 850;
}

.doh-mt-service-card > p,
.doh-mt-addon-card p,
.doh-mt-wellness-card p,
.doh-mt-process p,
.doh-mt-fee-card p,
.doh-mt-network__notice p {
  color: var(--doh-muted);
  font-size: 0.89rem;
}

.doh-mt-service-card ul,
.doh-mt-fee-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.doh-mt-service-card li,
.doh-mt-fee-card li {
  position: relative;
  padding-left: 25px;
  color: var(--doh-ink);
  font-size: 0.87rem;
}

.doh-mt-service-card li::before,
.doh-mt-fee-card li::before {
  position: absolute;
  left: 0;
  color: var(--doh-teal-600);
  content: "\2713";
  font-weight: 900;
}

.doh-mt-wide-note {
  margin: 28px 0 0;
}

.doh-mt-addon-grid,
.doh-mt-wellness-grid,
.doh-mt-process {
  display: grid;
  gap: 20px;
}

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

.doh-mt-addon-card {
  padding: 28px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
}

.doh-mt-addon-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
  border-radius: 14px;
  font-weight: 900;
}

.doh-mt-wellness-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.doh-mt-wellness-card {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 232, 236, 0.95);
  border-radius: 18px;
}

.doh-mt-wellness-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

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

.doh-mt-process article {
  padding: 28px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
}

.doh-mt-fees,
.doh-mt-network {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.doh-mt-fee-card,
.doh-mt-network__notice {
  padding: 34px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow-sm);
}

.doh-mt-fee-card > p {
  padding-top: 20px;
  margin: 24px 0 0;
  border-top: 1px solid var(--doh-line);
}

.doh-mt-network__notice {
  background: linear-gradient(145deg, var(--doh-navy-950), var(--doh-navy-800));
  border: 0;
}

.doh-mt-network__notice h3 {
  color: var(--doh-white);
}

.doh-mt-network__notice p {
  color: #c8dfe7;
}

.doh-mt-disclaimer {
  padding: 18px 20px;
  margin-top: 24px;
  color: var(--doh-muted);
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: 14px;
  font-size: 0.82rem;
}

.doh-mt-disclaimer strong {
  color: var(--doh-navy-900);
}

/* Verified doctor directory */
[hidden] {
  display: none !important;
}

.doh-doctors-hero {
  position: relative;
  padding: 94px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(232, 69, 163, 0.12), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(24, 170, 163, 0.18), transparent 29%),
    linear-gradient(145deg, #f8fdfc, #edf7fb);
}

.doh-doctors-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.doh-doctors-hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.doh-doctors-hero .doh-lead {
  max-width: 760px;
}

.doh-doctors-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.doh-doctors-hero__facts span {
  padding: 8px 13px;
  color: var(--doh-navy-900);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 145, 141, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 720;
}

.doh-doctors-hero__panel {
  padding: 34px;
  color: var(--doh-white);
  background: linear-gradient(145deg, var(--doh-navy-950), var(--doh-teal-700));
  border-radius: var(--doh-radius-lg);
  box-shadow: var(--doh-shadow);
}

.doh-doctors-hero__panel .doh-eyebrow,
.doh-doctors-hero__panel .doh-eyebrow::before {
  color: #d9f3f2;
}

.doh-doctors-hero__panel ol {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.doh-doctors-hero__panel li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  color: #e3f3f5;
  font-size: 0.9rem;
}

.doh-doctors-hero__panel li span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--doh-navy-950);
  background: var(--doh-white);
  border-radius: 13px;
  font-size: 0.72rem;
  font-weight: 900;
}

.doh-doctor-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  margin-bottom: 25px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  box-shadow: var(--doh-shadow-sm);
}

.doh-doctor-filter {
  display: grid;
  align-content: end;
  gap: 7px;
}

.doh-doctor-filter--search {
  grid-column: span 2;
}

.doh-doctor-filter label {
  color: var(--doh-navy-900);
  font-size: 0.78rem;
  font-weight: 780;
}

.doh-doctor-filters__reset {
  align-self: end;
}

.doh-doctor-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  color: var(--doh-muted);
  font-size: 0.84rem;
}

.doh-doctor-results-bar p {
  margin: 0;
}

.doh-doctor-results-bar strong {
  color: var(--doh-navy-950);
  font-size: 1.05rem;
}

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

.doh-doctor-card {
  display: flex;
  min-width: 0;
  padding: 27px;
  flex-direction: column;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.doh-doctor-card:hover {
  border-color: rgba(15, 145, 141, 0.42);
  box-shadow: var(--doh-shadow-sm);
  transform: translateY(-3px);
}

.doh-doctor-card__top {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.doh-doctor-card__photo,
.doh-doctor-profile-photo,
.doh-selected-doctor__photo {
  display: grid;
  overflow: hidden;
  place-items: center;
  color: var(--doh-white);
  background: linear-gradient(145deg, var(--doh-teal-600), var(--doh-navy-900));
  text-decoration: none;
}

.doh-doctor-card__photo {
  width: 108px;
  height: 122px;
  border-radius: 17px;
}

.doh-doctor-card__photo img,
.doh-doctor-profile-photo img,
.doh-selected-doctor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doh-doctor-card__photo span,
.doh-doctor-profile-photo span,
.doh-selected-doctor__photo span {
  font-size: 2.35rem;
  font-weight: 850;
}

.doh-doctor-card__identity h3 {
  margin: 9px 0 5px;
  font-size: 1.36rem;
}

.doh-doctor-card__identity h3 a {
  color: var(--doh-navy-950);
  text-decoration: none;
}

.doh-doctor-card__identity p {
  margin-bottom: 4px;
  color: var(--doh-ink);
  font-size: 0.84rem;
  font-weight: 680;
}

.doh-doctor-card__identity small {
  color: var(--doh-muted);
  font-size: 0.74rem;
}

.doh-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #086360;
  background: var(--doh-mint-100);
  border: 1px solid rgba(15, 145, 141, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.doh-verified-badge::before {
  content: "\2713";
}

.doh-doctor-card__specialty {
  margin: 22px 0 9px;
  color: var(--doh-teal-700);
  font-size: 0.88rem;
  font-weight: 780;
}

.doh-doctor-card__summary {
  color: var(--doh-muted);
  font-size: 0.86rem;
}

.doh-doctor-card__details,
.doh-doctor-profile-sidebar dl {
  display: grid;
  gap: 0;
  margin: 13px 0 24px;
}

.doh-doctor-card__details > div,
.doh-doctor-profile-sidebar dl > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--doh-line);
  font-size: 0.8rem;
}

.doh-doctor-card__details dt,
.doh-doctor-profile-sidebar dt {
  color: var(--doh-muted);
  font-weight: 650;
}

.doh-doctor-card__details dd,
.doh-doctor-profile-sidebar dd {
  margin: 0;
  color: var(--doh-ink);
  font-weight: 680;
}

.doh-doctor-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: auto;
}

.doh-doctor-card__actions .doh-button {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 0.8rem;
}

.doh-request-paused {
  display: inline-flex;
  padding: 9px 12px;
  color: #7b5b05;
  background: #fff8da;
  border: 1px solid #f0df9c;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
}

.doh-doctor-empty {
  padding: 46px;
  margin-top: 24px;
  text-align: center;
  background: var(--doh-white);
  border: 1px dashed rgba(15, 145, 141, 0.46);
  border-radius: var(--doh-radius);
}

.doh-doctor-empty--initial {
  margin-top: 0;
}

.doh-doctor-empty p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  color: var(--doh-muted);
}

.doh-doctor-safety {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 88px);
}

.doh-doctor-safety p {
  color: var(--doh-muted);
}

/* Doctor profile */
.doh-doctor-profile-hero {
  padding: 78px 0;
  background: linear-gradient(145deg, var(--doh-mint-50), var(--doh-sky-100));
}

.doh-doctor-profile-hero__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 74px);
}

.doh-doctor-profile-photo {
  width: 280px;
  aspect-ratio: 4 / 5;
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--doh-shadow);
}

.doh-doctor-profile-badges,
.doh-doctor-profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.doh-doctor-profile-badges > span:not(.doh-verified-badge) {
  color: var(--doh-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.doh-doctor-profile-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.doh-doctor-profile-credentials {
  margin-bottom: 8px;
  color: var(--doh-ink);
  font-size: 1.08rem;
  font-weight: 720;
}

.doh-doctor-profile-specialties {
  color: var(--doh-teal-700);
  font-weight: 800;
}

.doh-doctor-profile-actions {
  margin-top: 28px;
}

.doh-doctor-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(44px, 7vw, 86px);
}

.doh-doctor-profile-sidebar {
  padding: 28px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  box-shadow: var(--doh-shadow-sm);
}

.doh-doctor-profile-sidebar h2 {
  font-size: 1.5rem;
}

.doh-doctor-profile-sidebar dl {
  margin-bottom: 18px;
}

.doh-doctor-profile-sidebar dl > div {
  grid-template-columns: 125px minmax(0, 1fr);
}

.doh-doctor-verification-note {
  padding: 14px;
  margin: 0;
  color: var(--doh-muted);
  background: var(--doh-mint-50);
  border-radius: 12px;
  font-size: 0.78rem;
}

/* Selected doctor on the appointment form */
.doh-selected-doctor {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  margin-bottom: 26px;
  background: var(--doh-mint-50);
  border: 1px solid rgba(15, 145, 141, 0.24);
  border-radius: 17px;
}

.doh-selected-doctor__photo {
  width: 82px;
  height: 92px;
  border-radius: 14px;
}

.doh-selected-doctor .doh-eyebrow {
  margin-bottom: 5px;
  font-size: 0.64rem;
}

.doh-selected-doctor h2 {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.doh-selected-doctor p {
  margin-bottom: 4px;
  font-size: 0.8rem;
}

.doh-selected-doctor__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--doh-muted);
}

.doh-selected-doctor__meta span + span::before {
  margin-right: 14px;
  content: "\2022";
}

/* Hospital directory additions */
.doh-hospitals-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(73, 153, 207, 0.2), transparent 30%),
    linear-gradient(145deg, #f8fdfc, #edf7fb);
}

.doh-hospital-card__photo,
.doh-hospital-profile-photo,
.doh-selected-hospital__photo {
  background: linear-gradient(145deg, #edf7fb, #dff5f2);
  border: 1px solid rgba(15, 145, 141, 0.14);
}

.doh-hospital-card__photo img,
.doh-hospital-profile-photo img,
.doh-selected-hospital__photo img {
  object-fit: cover;
}

.doh-hospital-card__photo span,
.doh-hospital-profile-photo span,
.doh-selected-hospital__photo span {
  color: var(--doh-navy-900);
}

.doh-hospital-profile-photo {
  aspect-ratio: 4 / 3;
}

.doh-hospital-profile-hero {
  background: linear-gradient(145deg, #f4fbfa, #e9f4fb);
}

.doh-hospital-services {
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid var(--doh-line);
}

.doh-hospital-services h2 {
  font-size: 1.55rem;
}

.doh-selected-hospital__photo {
  height: 82px;
}

@media (max-width: 1080px) {
	.doh-consult-use-grid,
	.doh-consult-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.doh-doctor-filter--search {
		grid-column: span 2;
	}

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

	.doh-mt-service-grid,
	.doh-mt-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

  .doh-header__actions .doh-button--ghost,
  .js .doh-nav {
    display: none;
  }

  .js .doh-menu-toggle {
    display: block;
  }

  .js .doh-nav.is-open {
    position: absolute;
    z-index: 1002;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 24px 20px;
    background: var(--doh-white);
    border-top: 1px solid var(--doh-line);
    box-shadow: 0 24px 50px rgba(8, 40, 61, 0.16);
    max-height: var(--doh-menu-available-height, calc(100dvh - 82px));
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }

  .no-js .doh-header__inner {
    flex-wrap: wrap;
  }

  .no-js .doh-nav {
    order: 4;
    width: 100%;
    margin: 0;
    padding: 12px 0 20px;
  }

  .doh-nav ul {
    align-items: stretch;
    flex-direction: column;
  }

  .doh-nav a {
    padding: 14px 12px;
    font-size: 1rem;
  }

  .doh-nav .menu > .menu-item-has-children > a {
    padding-right: 38px;
  }

  .doh-nav .menu > .menu-item-has-children > a::after {
    right: 17px;
  }

  .doh-nav .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 3px 0 8px 15px;
    margin: 0 0 7px 12px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: 0;
    border-left: 2px solid var(--doh-mint-100);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .doh-nav .sub-menu::before {
    display: none;
  }

  .doh-nav .sub-menu a {
    padding: 11px 12px;
    font-size: 0.92rem;
    white-space: normal;
  }

  .doh-hero__grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 44px;
  }

  .doh-grid--3,
  .doh-post-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .doh-journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .doh-footer__main {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .doh-footer__column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
	.doh-confirmation-layout,
	.doh-confirmation-notice,
	.doh-consult-hero__grid,
	.doh-consult-guidance {
		grid-template-columns: 1fr;
	}

	.doh-confirmation-notice {
		text-align: center;
	}

	.doh-confirmation-notice p:not(.doh-eyebrow) {
		margin-right: auto;
		margin-left: auto;
	}

	.doh-consult-hero {
		padding: 72px 0 62px;
	}

	.doh-doctors-hero__grid,
	.doh-doctor-profile-hero__grid,
	.doh-doctor-profile-layout,
	.doh-doctor-safety {
		grid-template-columns: 1fr;
	}

	.doh-doctor-profile-photo {
		width: min(280px, 72vw);
	}

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

	.doh-doctor-grid {
		grid-template-columns: 1fr;
	}

	.doh-appointment-hero {
		padding: 72px 0 62px;
	}

	.doh-appointment-hero__grid,
	.doh-appointment-layout {
		grid-template-columns: 1fr;
	}

	.doh-appointment-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.doh-appointment-sidebar__card:first-child {
		grid-column: 1 / -1;
	}

	.doh-services-hero {
		padding: 72px 0 62px;
	}

	.doh-services-hero__grid {
		grid-template-columns: 1fr;
	}

	.doh-mt-hero {
		padding: 72px 0 62px;
	}

	.doh-mt-hero__grid,
	.doh-mt-fees,
	.doh-mt-network {
		grid-template-columns: 1fr;
	}

	.doh-mt-addon-grid {
		grid-template-columns: 1fr;
	}

  .admin-bar .site-header {
    top: 46px;
  }

  .doh-section {
    padding: 72px 0;
  }

  .doh-topbar__links,
  .doh-header__actions .doh-button {
    display: none;
  }

  .doh-topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .doh-hero {
    padding-top: 62px;
  }

  .doh-hero__grid,
  .doh-split,
  .doh-portal,
  .doh-cta {
    grid-template-columns: 1fr;
  }

  .doh-hero__grid {
    gap: 50px;
  }

  .doh-care-card {
    max-width: 620px;
  }

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

  .doh-trust-item + .doh-trust-item {
    border-top: 1px solid var(--doh-line);
    border-left: 0;
  }

  .doh-travel-visual {
    min-height: 440px;
  }

  .doh-portal {
    padding: 40px;
  }

  .doh-directory__bar {
    grid-template-columns: 1fr;
  }

  .doh-cta__actions {
    justify-content: flex-start;
  }

  .doh-footer__main {
    grid-template-columns: repeat(2, 1fr);
  }

  .doh-footer__brand {
    grid-column: 1 / -1;
  }

  .doh-footer__column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
	.doh-confirmation-hero {
		padding: 58px 0 52px;
	}

	.doh-confirmation-card,
	.doh-confirmation-summary,
	.doh-confirmation-next,
	.doh-confirmation-notice,
	.doh-consult-hero__panel,
	.doh-consult-use-grid article,
	.doh-consult-process article,
	.doh-consult-boundaries {
		padding: 24px;
	}

	.doh-confirmation-check {
		width: 76px;
		height: 76px;
		border-width: 7px;
		font-size: 2.1rem;
	}

	.doh-confirmation-details > div {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.doh-confirmation-actions,
	.doh-consult-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.doh-confirmation-actions .doh-button,
	.doh-consult-hero__actions .doh-button {
		width: 100%;
	}

	.doh-consult-use-grid,
	.doh-consult-process {
		grid-template-columns: 1fr;
	}

	.doh-doctors-hero,
	.doh-doctor-profile-hero {
		padding: 62px 0;
	}

	.doh-doctors-hero__panel,
	.doh-doctor-filters,
	.doh-doctor-card,
	.doh-doctor-profile-sidebar,
	.doh-doctor-empty {
		padding: 22px;
	}

	.doh-doctor-filters {
		grid-template-columns: 1fr;
	}

	.doh-doctor-filter--search {
		grid-column: auto;
	}

	.doh-doctor-results-bar {
		align-items: flex-start;
		flex-direction: column;
	}

	.doh-doctor-card__top {
		grid-template-columns: 86px minmax(0, 1fr);
	}

	.doh-doctor-card__photo {
		width: 86px;
		height: 102px;
	}

	.doh-doctor-card__actions .doh-button {
		width: 100%;
	}

	.doh-selected-doctor {
		grid-template-columns: 68px minmax(0, 1fr);
	}

	.doh-selected-doctor__photo {
		width: 68px;
		height: 78px;
	}

	.doh-selected-doctor > .doh-text-link {
		grid-column: 2;
	}

	.doh-appointment-hero__panel,
	.doh-appointment-form-wrap,
	.doh-appointment-sidebar__card {
		padding: 24px;
	}

	.doh-form-grid,
	.doh-appointment-sidebar {
		grid-template-columns: 1fr;
	}

	.doh-form-group--wide,
	.doh-appointment-sidebar__card:first-child {
		grid-column: auto;
	}

	.doh-form-submit {
		align-items: stretch;
		flex-direction: column;
	}

	.doh-form-submit .doh-button {
		width: 100%;
	}

	.doh-form-submit p {
		max-width: none;
	}

	.doh-services-hero__panel,
	.doh-services-card,
	.doh-services-process article {
		padding: 24px;
	}

	.doh-services-grid,
	.doh-services-process {
		grid-template-columns: 1fr;
	}

	.doh-services-card {
		min-height: 0;
	}

	.doh-mt-hero__panel,
	.doh-mt-service-card,
	.doh-mt-addon-card,
	.doh-mt-fee-card,
	.doh-mt-network__notice {
		padding: 24px;
	}

	.doh-mt-service-grid,
	.doh-mt-wellness-grid,
	.doh-mt-process {
		grid-template-columns: 1fr;
	}

	.doh-mt-wellness-card {
		min-height: 0;
	}

  .doh-container {
    width: min(calc(100% - 28px), var(--doh-container));
  }

  .doh-header__inner {
    min-height: 72px;
  }

  .doh-brand__mark,
  .custom-logo {
    width: 46px;
    height: 46px;
  }

  .doh-brand__tagline {
    display: none;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .doh-hero__actions .doh-button {
    width: 100%;
  }

  .doh-care-card {
    padding: 21px;
    border-radius: 24px;
  }

  .doh-grid--3,
  .doh-post-list,
  .doh-journey,
  .doh-footer__main {
    grid-template-columns: 1fr;
  }

  .doh-service-card {
    min-height: 0;
  }

  .doh-travel-visual {
    min-height: 390px;
    padding: 27px;
  }

  .doh-travel-visual h3 {
    margin-top: 105px;
  }

  .doh-route {
    top: 50px;
    right: 24px;
  }

  .doh-portal,
  .doh-cta {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .doh-directory {
    padding: 22px;
  }

  .doh-directory__status {
    align-items: flex-start;
    flex-direction: column;
  }

  .doh-footer__main {
    gap: 32px;
  }

  .doh-footer__brand,
  .doh-footer__column:last-child {
    grid-column: auto;
  }

  .doh-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Health Products and WooCommerce */
.doh-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doh-section-action {
  margin: 34px 0 0;
  text-align: center;
}

.doh-cart-link,
.doh-account-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--doh-navy-900);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid var(--doh-line);
  border-radius: 999px;
  background: var(--doh-white);
}

.doh-cart-slot {
  display: inline-flex;
  flex: 0 0 auto;
}

.doh-cart-link:hover,
.doh-cart-link:focus-visible,
.doh-account-link:hover,
.doh-account-link:focus-visible {
  color: var(--doh-teal-700);
  border-color: rgba(8, 122, 120, 0.38);
  box-shadow: 0 6px 20px rgba(11, 54, 80, 0.09);
}

.doh-cart-link svg,
.doh-account-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doh-account-link__avatar,
.doh-account-link img.avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: cover;
  border: 2px solid var(--doh-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(8, 122, 120, 0.25);
}

.doh-account-link {
  padding-right: 13px;
}

.doh-cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  color: var(--doh-white);
  font-size: 0.72rem;
  line-height: 1;
  border-radius: 999px;
  background: var(--doh-teal-700);
}

.doh-products-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(24, 170, 163, 0.2), transparent 32%),
    linear-gradient(135deg, #f8fcfc 0%, #edf8f7 52%, #eaf4fb 100%);
}

.doh-products-hero::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  content: "";
  border: 58px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.doh-products-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.doh-products-hero h1 {
  max-width: 830px;
  margin: 0 0 22px;
  color: var(--doh-navy-950);
  font-size: clamp(2.7rem, 5.4vw, 5.25rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.doh-products-hero .doh-lead {
  max-width: 720px;
}

.doh-products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.doh-store-assurance {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--doh-radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--doh-shadow);
  backdrop-filter: blur(12px);
}

.doh-store-assurance__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--doh-white);
  font-size: 1.55rem;
  font-weight: 850;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--doh-teal-700), var(--doh-teal-500));
  box-shadow: 0 12px 28px rgba(8, 122, 120, 0.22);
}

.doh-store-assurance h2 {
  margin: 0 0 18px;
  color: var(--doh-navy-950);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

.doh-store-assurance ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doh-store-assurance li {
  position: relative;
  padding-left: 25px;
  color: var(--doh-ink);
  font-weight: 650;
}

.doh-store-assurance li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--doh-teal-700);
  content: "✓";
  font-weight: 850;
}

.doh-store-assurance p {
  margin: 22px 0 0;
  padding-top: 18px;
  color: var(--doh-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--doh-line);
}

.doh-store-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.doh-store-category {
  display: flex;
  min-height: 330px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  background: var(--doh-white);
  box-shadow: var(--doh-shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.doh-store-category:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 122, 120, 0.35);
  box-shadow: var(--doh-shadow);
}

.doh-store-category__code {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  color: var(--doh-teal-700);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  border-radius: 20px;
  background: var(--doh-mint-100);
}

.doh-store-category h3 {
  margin: 0 0 10px;
  color: var(--doh-navy-950);
  font-size: 1.25rem;
  line-height: 1.25;
}

.doh-store-category p {
  margin: 0 0 24px;
  color: var(--doh-muted);
}

.doh-store-category .doh-text-link {
  margin-top: auto;
}

.doh-store-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius-lg);
  background: var(--doh-white);
  box-shadow: var(--doh-shadow-sm);
}

.doh-store-empty__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--doh-teal-700);
  font-size: 2.2rem;
  border-radius: 24px;
  background: var(--doh-mint-100);
}

.doh-store-empty h2 {
  margin: 0 0 8px;
  color: var(--doh-navy-950);
}

.doh-store-empty p:last-child {
  margin-bottom: 0;
  color: var(--doh-muted);
}

.doh-store-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: store-step;
}

.doh-store-process article {
  padding: 28px;
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  background: var(--doh-white);
}

.doh-store-process article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  color: var(--doh-white);
  font-weight: 800;
  border-radius: 50%;
  background: var(--doh-navy-900);
}

.doh-store-process h3 {
  margin: 0 0 9px;
  color: var(--doh-navy-950);
  font-size: 1.16rem;
}

.doh-store-process p {
  margin: 0;
  color: var(--doh-muted);
  font-size: 0.94rem;
}

.doh-product-safety {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.doh-product-safety h2 {
  margin-top: 0;
  color: var(--doh-navy-950);
}

.doh-product-safety > div > p:last-child {
  color: var(--doh-muted);
}

.doh-woocommerce-page {
  min-height: 60vh;
  padding: clamp(54px, 7vw, 92px) 0;
  background: var(--doh-bg);
}

.doh-woocommerce-shell {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius-lg);
  background: var(--doh-white);
  box-shadow: var(--doh-shadow-sm);
}

.doh-commerce-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.doh-commerce-heading h1 {
  margin: 0 0 12px;
  color: var(--doh-navy-950);
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.doh-commerce-heading > p:last-child {
  margin-bottom: 0;
  color: var(--doh-muted);
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 24px;
  color: var(--doh-muted);
  font-size: 0.88rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--doh-teal-700);
}

.woocommerce h1.page-title,
.woocommerce div.product .product_title,
.woocommerce-checkout h1,
.woocommerce-cart h1 {
  color: var(--doh-navy-950);
  letter-spacing: -0.035em;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 28px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--doh-ink);
  border: 1px solid #cbdde3;
  border-radius: 10px;
  background: var(--doh-white);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 2px 0;
  line-height: 24px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  float: none;
  width: auto;
  margin: 0;
  padding: 16px 16px 20px;
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  background: var(--doh-white);
  box-shadow: 0 8px 26px rgba(11, 54, 80, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 122, 120, 0.3);
  box-shadow: var(--doh-shadow-sm);
}

.woocommerce ul.products li.product a img {
  margin: 0 0 16px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 13px;
  background: var(--doh-bg);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  color: var(--doh-navy-950);
  font-size: 1.02rem;
  line-height: 1.35;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--doh-teal-700);
  font-size: 1rem;
  font-weight: 800;
}

.woocommerce span.onsale {
  top: 10px;
  left: 10px;
  min-width: auto;
  min-height: auto;
  padding: 6px 10px;
  color: var(--doh-white);
  font-size: 0.72rem;
  line-height: 1.2;
  border-radius: 999px;
  background: var(--doh-coral);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  min-height: 44px;
  padding: 12px 18px;
  color: var(--doh-white);
  font-weight: 780;
  line-height: 1.2;
  border-radius: 999px;
  background: var(--doh-teal-700);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  color: var(--doh-white);
  background: var(--doh-navy-900);
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images img {
  border-radius: var(--doh-radius);
  background: var(--doh-bg);
}

.woocommerce div.product form.cart .button {
  min-height: 48px;
}

.woocommerce .quantity .qty {
  min-height: 46px;
  border: 1px solid #cbdde3;
  border-radius: 10px;
}

.woocommerce-tabs,
.related.products,
.upsells.products {
  clear: both;
  padding-top: 36px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: var(--doh-line);
  background: var(--doh-bg);
}

.woocommerce table.shop_table {
  overflow: hidden;
  border-color: var(--doh-line);
  border-radius: 14px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  padding: 22px;
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  background: var(--doh-bg);
}

.woocommerce-checkout #payment {
  border: 1px solid var(--doh-line);
  border-radius: var(--doh-radius);
  background: var(--doh-bg);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--doh-teal-700);
  border-radius: 12px;
  background: var(--doh-mint-50);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--doh-teal-700);
}

/* Unified patient account */
.doh-account-shell {
  max-width: 1120px;
}

.doh-account-heading {
  max-width: 850px;
}

.doh-account-boundary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  margin: -8px 0 32px;
  color: var(--doh-ink);
  border: 1px solid #cfe7e4;
  border-radius: 16px;
  background: var(--doh-mint-50);
}

.doh-account-boundary > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--doh-white);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 800;
  border-radius: 50%;
  background: var(--doh-teal-700);
}

.doh-account-boundary strong {
  display: block;
  margin-bottom: 3px;
  color: var(--doh-navy-950);
}

.doh-account-boundary p {
  margin: 0;
  color: var(--doh-muted);
  font-size: 0.91rem;
}

.woocommerce-account.logged-in .doh-account-workspace > .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  grid-template-areas: "account-navigation account-content";
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  width: 100% !important;
  min-width: 0;
}

.woocommerce-account .doh-account-workspace .woocommerce-MyAccount-navigation {
  grid-area: account-navigation;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.woocommerce-account .doh-account-workspace .woocommerce-MyAccount-content {
  grid-area: account-content;
  float: none !important;
  width: 100% !important;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  margin: 0 !important;
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  background: var(--doh-white);
  box-shadow: 0 10px 34px rgba(11, 54, 80, 0.06);
}

.doh-account-workspace .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

.doh-account-workspace .woocommerce-MyAccount-content > :last-child {
  margin-bottom: 0;
}

.doh-account-workspace .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 6px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--doh-line);
  border-radius: 16px;
  background: var(--doh-bg);
}

.doh-account-workspace .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.doh-account-workspace .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 11px 13px;
  color: var(--doh-ink);
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
  border-radius: 10px;
}

.doh-account-workspace .woocommerce-MyAccount-navigation a:hover,
.doh-account-workspace .woocommerce-MyAccount-navigation .is-active a {
  color: var(--doh-white);
  background: var(--doh-teal-700);
}

.doh-account-workspace .u-columns {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: 100% !important;
  min-width: 0;
}

/*
 * WooCommerce's clearfix pseudo-elements become anonymous grid items when a
 * legacy two-column layout is changed to CSS Grid. Remove them explicitly so
 * Login/Register and Billing/Shipping cannot be pushed onto diagonal rows.
 */
.woocommerce-account.logged-in .doh-account-workspace > .woocommerce::before,
.woocommerce-account.logged-in .doh-account-workspace > .woocommerce::after,
.doh-account-workspace .u-columns::before,
.doh-account-workspace .u-columns::after,
.doh-account-workspace .woocommerce-Addresses::before,
.doh-account-workspace .woocommerce-Addresses::after,
.doh-account-workspace .woocommerce-Address-title::before,
.doh-account-workspace .woocommerce-Address-title::after {
  display: none !important;
  content: none !important;
}

.doh-account-workspace .u-column1,
.doh-account-workspace .u-column2 {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  background: var(--doh-bg);
}

.doh-account-workspace .u-column1 {
  grid-column: 1;
}

.doh-account-workspace .u-column2 {
  grid-column: 2;
}

.doh-account-workspace .woocommerce-Addresses {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: 100% !important;
  min-width: 0;
  margin-top: 18px;
}

.woocommerce-account .doh-account-workspace .woocommerce-Address {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  padding: clamp(20px, 3vw, 28px);
  margin: 0 !important;
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  background: var(--doh-bg);
}

.doh-account-workspace .woocommerce-Address:nth-of-type(1) {
  grid-column: 1;
}

.doh-account-workspace .woocommerce-Address:nth-of-type(2) {
  grid-column: 2;
}

.doh-account-workspace .woocommerce-Address-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.doh-account-workspace .woocommerce-Address-title h2,
.doh-account-workspace .woocommerce-Address-title h3,
.doh-account-workspace .woocommerce-Address-title .edit {
  float: none !important;
  margin: 0 !important;
}

.doh-account-workspace .woocommerce-Address-title h2,
.doh-account-workspace .woocommerce-Address-title h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.doh-account-workspace .woocommerce-Address address {
  margin: 18px 0 0;
}

.doh-account-workspace .u-column1 h2,
.doh-account-workspace .u-column2 h2,
.doh-account-workspace .woocommerce-MyAccount-content h2,
.doh-account-workspace .woocommerce-MyAccount-content h3 {
  color: var(--doh-navy-950);
}

.doh-account-workspace form.login,
.doh-account-workspace form.register {
  padding: 0;
  margin: 0;
  border: 0;
}

.doh-account-workspace form.login .form-row,
.doh-account-workspace form.register .form-row,
.doh-account-workspace form.edit-account .form-row,
.doh-account-workspace form.edit-address .form-row {
  float: none !important;
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.doh-account-workspace .password-input,
.doh-account-workspace .woocommerce-Input,
.doh-account-workspace input[type="text"],
.doh-account-workspace input[type="email"],
.doh-account-workspace input[type="tel"],
.doh-account-workspace input[type="password"],
.doh-account-workspace select {
  width: 100% !important;
  max-width: 100%;
}

.doh-account-workspace form.login .woocommerce-form-login__submit,
.doh-account-workspace form.register .woocommerce-form-register__submit {
  min-width: 132px;
  min-height: 46px;
  margin: 6px 0 0;
}

.doh-account-workspace .woocommerce-LostPassword {
  margin: 14px 0 0;
}

/* About, contact, articles, and order-review pages */
.doh-info-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(24, 170, 163, 0.2), transparent 30%),
    linear-gradient(135deg, #f8fcfc 0%, #edf8f7 55%, #eaf4fb 100%);
}

.doh-info-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.doh-info-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.98;
}

.doh-info-hero__panel {
  padding: clamp(24px, 4vw, 38px);
  color: var(--doh-white);
  border-radius: 26px;
  background: var(--doh-navy-950);
  box-shadow: var(--doh-shadow);
}

.doh-info-hero__panel h2 {
  color: var(--doh-white);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.doh-info-hero__panel p,
.doh-info-hero__panel li {
  color: rgba(255, 255, 255, 0.82);
}

.doh-value-grid,
.doh-contact-grid,
.doh-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.doh-value-card,
.doh-contact-card,
.doh-article-card,
.doh-article-empty {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--doh-line);
  border-radius: 20px;
  background: var(--doh-white);
  box-shadow: 0 10px 34px rgba(11, 54, 80, 0.06);
}

.doh-value-card__number,
.doh-contact-card__icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  margin-bottom: 24px;
  color: var(--doh-white);
  font-weight: 800;
  border-radius: 12px;
  background: var(--doh-teal-700);
}

.doh-value-card h3,
.doh-contact-card h3,
.doh-article-card h2 {
  color: var(--doh-navy-950);
}

.doh-contact-card a {
  overflow-wrap: anywhere;
  font-weight: 750;
}

.doh-contact-card--primary {
  color: var(--doh-white);
  background: var(--doh-navy-950);
}

.doh-contact-card--primary h3,
.doh-contact-card--primary a {
  color: var(--doh-white);
}

.doh-contact-card--primary p {
  color: rgba(255, 255, 255, 0.8);
}

.doh-article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.doh-article-search {
  display: flex;
  gap: 10px;
  width: min(100%, 520px);
}

.doh-article-search input {
  flex: 1;
  min-width: 0;
}

.doh-article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doh-article-categories a {
  padding: 7px 12px;
  color: var(--doh-navy-900);
  font-size: 0.84rem;
  font-weight: 720;
  text-decoration: none;
  border: 1px solid var(--doh-line);
  border-radius: 999px;
  background: var(--doh-white);
}

.doh-article-card {
  display: flex;
  flex-direction: column;
}

.doh-article-card__image {
  display: block;
  overflow: hidden;
  margin: calc(clamp(22px, 3vw, 32px) * -1) calc(clamp(22px, 3vw, 32px) * -1) 24px;
  aspect-ratio: 16 / 9;
  border-radius: 20px 20px 0 0;
  background: var(--doh-mint-100);
}

.doh-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doh-article-card__meta {
  margin-bottom: 10px;
  color: var(--doh-teal-700);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.doh-article-card .doh-text-link {
  margin-top: auto;
}

.doh-post-card--empty {
  grid-column: 1 / -1;
  max-width: 760px;
}

.doh-article-hero .doh-container {
  max-width: 960px;
}

.doh-article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 20px;
  color: var(--doh-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.doh-article-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.doh-article-featured {
  overflow: hidden;
  margin: 0 0 32px;
  border-radius: 22px;
  background: var(--doh-mint-100);
}

.doh-article-featured img {
  display: block;
  width: 100%;
}

.doh-article-disclaimer {
  padding: 20px;
  margin-top: 42px;
  border: 1px solid #cfe7e4;
  border-radius: 15px;
  background: var(--doh-mint-50);
}

.doh-article-disclaimer strong {
  color: var(--doh-navy-950);
}

.doh-article-disclaimer p {
  margin: 5px 0 0;
  color: var(--doh-muted);
  font-size: 0.9rem;
}

.doh-article-next {
  position: sticky;
  top: 116px;
  padding: 26px;
  border: 1px solid var(--doh-line);
  border-radius: 20px;
  background: var(--doh-bg);
  box-shadow: var(--doh-shadow-sm);
}

.doh-article-next h2 {
  font-size: 1.65rem;
}

.doh-order-success {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  margin: 0 0 34px;
  border: 1px solid #cce7e2;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--doh-white), var(--doh-mint-50));
  box-shadow: var(--doh-shadow-sm);
}

.doh-order-success__tick {
  width: 92px;
  height: 92px;
  color: var(--doh-teal-700);
}

.doh-order-success__tick svg {
  width: 100%;
  height: 100%;
  fill: var(--doh-white);
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doh-order-success h1 {
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.doh-order-success__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.doh-order-success__facts div {
  padding: 16px;
  border: 1px solid var(--doh-line);
  border-radius: 13px;
  background: var(--doh-white);
}

.doh-order-success__facts strong,
.doh-order-success__facts span {
  display: block;
}

.doh-order-success__facts span {
  margin-top: 4px;
  color: var(--doh-muted);
  font-size: 0.9rem;
}

.doh-order-success__note {
  padding: 14px 16px;
  color: var(--doh-muted);
  font-size: 0.88rem;
  border-radius: 12px;
  background: var(--doh-sky-100);
}

.doh-registration-success {
  display: grid;
  justify-items: center;
  padding: clamp(32px, 6vw, 62px);
  margin: 0 0 42px;
  text-align: center;
  border: 1px solid #cce7e2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0, rgba(24, 170, 163, 0.16), transparent 34%),
    linear-gradient(145deg, var(--doh-white), var(--doh-mint-50));
  box-shadow: var(--doh-shadow-sm);
}

.doh-registration-success__tick {
  width: 94px;
  height: 94px;
  margin-bottom: 22px;
  color: var(--doh-teal-700);
}

.doh-registration-success__tick svg {
  width: 100%;
  height: 100%;
  fill: var(--doh-white);
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doh-registration-success h1 {
  margin-bottom: 12px;
  font-size: clamp(2.45rem, 6vw, 4.4rem);
}

.doh-registration-success__lead {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--doh-muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.doh-registration-success__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 850px;
  margin-bottom: 28px;
  text-align: left;
}

.doh-registration-success__details > div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--doh-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.doh-registration-success__details strong {
  color: var(--doh-navy-950);
}

.doh-registration-success__details span {
  color: var(--doh-muted);
  font-size: 0.87rem;
}

.doh-profile-photo-field {
  padding: 20px;
  margin: 0 0 28px;
  border: 1px solid var(--doh-line);
  border-radius: 16px;
  background: var(--doh-bg);
}

.doh-profile-photo-field legend {
  padding: 0 8px;
  color: var(--doh-navy-950);
  font-size: 1.08rem;
  font-weight: 780;
}

.doh-profile-photo-field__layout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.doh-profile-photo-field__preview img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border: 3px solid var(--doh-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--doh-line), 0 8px 24px rgba(11, 54, 80, 0.12);
}

.doh-profile-photo-field__controls {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.doh-profile-photo-field__controls input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed #a9c5cc;
  border-radius: 10px;
  background: var(--doh-white);
}

.doh-profile-photo-field__controls p {
  margin: 0;
  color: var(--doh-muted);
  font-size: 0.84rem;
}

.doh-profile-photo-field__remove {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.88rem;
}

.doh-account-overview {
  display: grid;
  gap: 24px;
}

.doh-account-overview__identity {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.doh-account-overview__avatar img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border: 3px solid var(--doh-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--doh-line), 0 8px 24px rgba(11, 54, 80, 0.12);
}

.doh-account-overview__heading h2 {
  margin: 0 0 8px;
  color: var(--doh-navy-950);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.doh-account-overview__heading p:last-child {
  margin: 0;
  color: var(--doh-muted);
}

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

.doh-account-overview__cards a {
  display: grid;
  gap: 5px;
  min-height: 112px;
  padding: 18px;
  color: var(--doh-ink);
  text-decoration: none;
  border: 1px solid var(--doh-line);
  border-radius: 14px;
  background: var(--doh-white);
  box-shadow: 0 7px 22px rgba(11, 54, 80, 0.05);
}

.doh-account-overview__cards a:hover {
  color: var(--doh-teal-700);
  border-color: rgba(8, 122, 120, 0.38);
  transform: translateY(-2px);
}

.doh-account-overview__cards strong {
  color: var(--doh-navy-950);
}

.doh-account-overview__cards span {
  color: var(--doh-muted);
  font-size: 0.86rem;
}

.doh-account-privacy-note,
.doh-account-unavailable {
  padding: 20px;
  border: 1px solid var(--doh-line);
  border-radius: 14px;
  background: var(--doh-bg);
}

.doh-account-privacy-note strong,
.doh-account-unavailable h2 {
  color: var(--doh-navy-950);
}

.doh-account-privacy-note p,
.doh-account-unavailable p {
  margin: 6px 0 0;
  color: var(--doh-muted);
  font-size: 0.9rem;
}

.doh-account-unavailable .doh-button {
  margin-top: 18px;
}

.wc-block-cart,
.wc-block-checkout {
  color: var(--doh-ink);
}

.wc-block-components-button:not(.is-link) {
  min-height: 48px;
  color: var(--doh-white);
  font-weight: 780;
  border-radius: 999px;
  background: var(--doh-teal-700);
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  border-color: #cbdde3;
  border-radius: 10px;
}

@media (max-width: 1080px) {
  .doh-store-categories,
  .doh-store-process,
  .doh-grid--4,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doh-header__actions {
    gap: 8px;
  }

  .doh-cart-link span:not(.doh-cart-link__count) {
    display: none;
  }

  .doh-account-link span {
    display: none;
  }

  .doh-account-link {
    padding: 8px 10px;
  }

  .doh-value-grid,
  .doh-contact-grid,
  .doh-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .doh-products-hero__grid,
  .doh-product-safety {
    grid-template-columns: 1fr;
  }

  .doh-products-hero h1 {
    font-size: clamp(2.65rem, 10vw, 4.6rem);
  }

  .doh-store-assurance {
    max-width: 620px;
  }

  .woocommerce-account.logged-in .doh-account-workspace > .woocommerce,
  .doh-account-workspace .u-columns {
    grid-template-columns: 1fr;
  }

  .doh-account-workspace .u-column1,
  .doh-account-workspace .u-column2,
  .doh-account-workspace .woocommerce-Address:nth-of-type(1),
  .doh-account-workspace .woocommerce-Address:nth-of-type(2) {
    grid-column: 1;
  }

  .doh-account-workspace .woocommerce-Addresses,
  .doh-info-hero__grid,
  .doh-order-success__facts,
  .doh-article-content {
    grid-template-columns: 1fr;
  }

  .doh-article-next {
    position: static;
  }

  .doh-order-success {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .doh-order-success__tick {
    width: 72px;
    height: 72px;
  }

  .woocommerce-account.logged-in .doh-account-workspace > .woocommerce {
    grid-template-areas:
      "account-navigation"
      "account-content";
  }

  .doh-registration-success__details {
    grid-template-columns: 1fr;
  }

  .doh-account-workspace .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 560px) {
  .doh-store-categories,
  .doh-store-process,
  .doh-grid--4,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .doh-products-hero {
    padding: 58px 0;
  }

  .doh-products-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .doh-products-hero__actions .doh-button {
    width: 100%;
  }

  .doh-store-category {
    min-height: 0;
  }

  .doh-store-category__code {
    margin-bottom: 28px;
  }

  .doh-store-empty {
    grid-template-columns: 1fr;
  }

  .doh-woocommerce-shell {
    padding: 20px;
    border-radius: var(--doh-radius);
  }

  .doh-account-boundary {
    grid-template-columns: 1fr;
  }

  .doh-registration-success {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .doh-registration-success__tick {
    width: 78px;
    height: 78px;
  }

  .doh-profile-photo-field__layout {
    grid-template-columns: 1fr;
  }

  .doh-account-overview__cards {
    grid-template-columns: 1fr;
  }

  .doh-account-overview__identity {
    grid-template-columns: 1fr;
  }

  .doh-account-workspace .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .doh-account-workspace .woocommerce-MyAccount-content {
    padding: 20px;
  }

  .doh-value-grid,
  .doh-contact-grid,
  .doh-article-grid,
  .doh-order-success {
    grid-template-columns: 1fr;
  }

  .doh-info-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .doh-article-search {
    flex-direction: column;
  }

  .doh-article-search .doh-button {
    width: 100%;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    float: none;
  }

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

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    padding: 12px;
  }
}

@media (max-width: 600px) {
  .doh-header__inner {
    gap: 8px;
  }

  .doh-brand {
    min-width: 0;
  }

  .doh-menu-toggle {
    flex: 0 0 44px;
  }
}

@media (max-width: 420px) {
  .doh-brand__text {
    display: none;
  }

  .doh-header__actions {
    gap: 5px;
  }

  .doh-cart-link,
  .doh-account-link {
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
    padding: 7px;
  }
}

/* v1.5.1 visual polish and launch-candidate refinements */
.doh-brand__logo-link {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
}

.doh-brand__mark,
.doh-care-card__logo {
  object-fit: contain;
  animation: doh-logo-arrive 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes doh-logo-arrive {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  66% {
    opacity: 1;
    transform: scale(1.035);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Accessible long-summary expansion. Full articles, policies, forms, notices,
   account and commerce copy are deliberately excluded by main.js. */
.doh-expandable-copy {
  position: relative;
  max-height: var(--doh-collapsed-height, 6.6em);
  overflow: hidden;
  transition: max-height 360ms ease;
}

.doh-expandable-copy.is-expanded {
  max-height: var(--doh-expanded-height, 40em);
}

.doh-expandable-copy:not(.is-expanded)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2.3em;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), currentColor 180%);
  opacity: 0.1;
}

.doh-read-more-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  padding: 4px 0;
  margin: -2px 0 14px;
  color: var(--doh-teal-700);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(8, 122, 120, 0.3);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.doh-read-more-button::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.doh-read-more-button[aria-expanded="true"]::after {
  content: "\2212";
  transform: rotate(180deg);
}

.doh-read-more-button:hover {
  color: var(--doh-navy-900);
  border-bottom-color: var(--doh-magenta);
}

/* One-time, low-amplitude motion. Content remains visible when JavaScript is
   unavailable and the reduced-motion preference is respected below. */
.doh-motion-ready .doh-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms ease var(--doh-reveal-delay, 0ms),
    transform 480ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--doh-reveal-delay, 0ms);
}

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

.doh-motion-ready .doh-travel-visual.is-visible .doh-route span:nth-child(2) {
  transform-origin: left center;
  animation: doh-route-draw 720ms ease 180ms both;
}

@keyframes doh-route-draw {
  from {
    opacity: 0.3;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.doh-motion-ready .is-visible .doh-verified-badge {
  animation: doh-badge-arrive 420ms ease 220ms both;
}

@keyframes doh-badge-arrive {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .doh-service-card,
  .doh-product-card,
  .doh-post-card,
  .doh-journey__item,
  .doh-mt-service-card,
  .doh-mt-addon-card,
  .doh-mt-wellness-card,
  .doh-doctor-card,
  .doh-hospital-card,
  .doh-policy-card,
  .doh-search-result-card,
  .doh-support-route-grid article {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .doh-service-card:hover,
  .doh-product-card:hover,
  .doh-post-card:hover,
  .doh-journey__item:hover,
  .doh-mt-service-card:hover,
  .doh-mt-addon-card:hover,
  .doh-mt-wellness-card:hover,
  .doh-doctor-card:hover,
  .doh-hospital-card:hover,
  .doh-policy-card:hover,
  .doh-search-result-card:hover,
  .doh-support-route-grid article:hover {
    border-color: rgba(15, 145, 141, 0.32);
    box-shadow: 0 18px 42px rgba(11, 54, 80, 0.12);
    transform: translateY(-4px);
  }
}

/* Light, logo-supportive accordion footer. */
.site-footer {
  position: relative;
  margin-top: 92px;
  overflow: hidden;
  color: var(--doh-ink);
  background:
    radial-gradient(circle at 7% 30%, rgba(232, 69, 163, 0.1), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(24, 170, 163, 0.12), transparent 24%),
    linear-gradient(135deg, #fffafd 0%, #f4fbfa 56%, #edf7fb 100%);
  border-top: 1px solid rgba(232, 69, 163, 0.18);
}

.doh-footer__main {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.65fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
  padding: 68px 0 54px;
}

.doh-footer__brand {
  grid-column: auto;
}

.doh-footer__brand .doh-brand__mark {
  width: 78px;
  height: 68px;
}

.doh-footer__brand .doh-brand__name {
  color: var(--doh-navy-950);
  font-size: 1.12rem;
}

.doh-footer__brand .doh-brand__tagline {
  color: var(--doh-teal-700);
}

.doh-footer__brand > p {
  max-width: 390px;
  margin-top: 24px;
  color: var(--doh-muted);
  font-size: 0.9rem;
}

.site-footer .doh-social-link {
  color: var(--doh-navy-900);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(13, 54, 82, 0.14);
  box-shadow: 0 7px 18px rgba(13, 54, 82, 0.06);
}

.site-footer .doh-social-link:hover {
  color: var(--doh-white);
  background: var(--doh-teal-700);
  border-color: var(--doh-teal-700);
}

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

.doh-footer__section {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 54, 82, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(13, 54, 82, 0.05);
}

.doh-footer__section summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--doh-navy-950);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 850;
  list-style: none;
  transition: color 180ms ease, background 180ms ease;
}

.doh-footer__section summary::-webkit-details-marker {
  display: none;
}

.doh-footer__section summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--doh-teal-700);
  content: "+";
  place-items: center;
  background: var(--doh-mint-100);
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, transform 240ms ease;
}

.doh-footer__section summary:hover,
.doh-footer__section[open] summary {
  color: var(--doh-teal-700);
  background: rgba(232, 248, 245, 0.5);
}

.doh-footer__section[open] summary::after {
  color: var(--doh-white);
  content: "\2212";
  background: var(--doh-magenta);
  transform: translateY(-50%) rotate(180deg);
}

.doh-footer__panel {
  padding: 0 22px 20px;
}

.doh-footer__section[open] .doh-footer__panel {
  animation: doh-footer-drop 320ms ease both;
}

@keyframes doh-footer-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.doh-footer__panel ul {
  display: grid;
  gap: 10px;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid rgba(13, 54, 82, 0.1);
  list-style: none;
}

.doh-footer__panel li,
.doh-footer__panel a {
  color: var(--doh-muted);
  font-size: 0.86rem;
}

.doh-footer__panel a {
  text-decoration: none;
}

.doh-footer__panel a:hover {
  color: #b42c7d;
}

.doh-footer__bottom-wrap {
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(13, 54, 82, 0.1);
}

.doh-footer__bottom {
  color: var(--doh-muted);
  border-top: 0;
  font-size: 0.76rem;
}

.doh-footer__bottom p:last-child {
  max-width: 440px;
  text-align: right;
}

@media (max-width: 920px) {
  .doh-footer__main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .doh-footer__brand {
    grid-column: auto;
  }

  .doh-footer__brand > p {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 72px;
  }

  .doh-footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 52px 0 40px;
  }

  .doh-footer__brand,
  .doh-footer__column:last-child {
    grid-column: auto;
  }

  .doh-footer__accordions {
    grid-template-columns: 1fr;
  }

  .doh-footer__brand .doh-brand__mark {
    width: 68px;
    height: 60px;
  }

  .doh-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .doh-footer__bottom p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .doh-brand__mark,
  .doh-care-card__logo,
  .doh-motion-ready .doh-travel-visual.is-visible .doh-route span:nth-child(2),
  .doh-motion-ready .is-visible .doh-verified-badge,
  .doh-footer__section[open] .doh-footer__panel {
    animation: none !important;
  }

  .doh-motion-ready .doh-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Editorial trust and policy centre */
.doh-article-review-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  max-width: 780px;
  padding: 11px 16px;
  margin-top: 22px;
  color: var(--doh-navy-950);
  border: 1px solid #bfe1dc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.doh-article-review-badge > span {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--doh-white);
  font-weight: 900;
  place-items: center;
  border-radius: 50%;
  background: var(--doh-teal-700);
}

.doh-article-review-badge p {
  margin: 0;
  font-size: 0.9rem;
}

.doh-article-references {
  padding: 25px;
  margin-top: 42px;
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  background: var(--doh-bg);
}

.doh-article-references h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.doh-article-references ol {
  margin: 0;
  padding-left: 24px;
}

.doh-article-references li + li {
  margin-top: 9px;
}

.doh-article-author {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  margin-top: 28px;
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  background: var(--doh-white);
  box-shadow: var(--doh-shadow-sm);
}

.doh-article-author img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.doh-article-author .doh-eyebrow,
.doh-article-author h2,
.doh-article-author p {
  margin-top: 0;
}

.doh-article-author h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.doh-policy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 69, 163, 0.14), transparent 28%),
    linear-gradient(135deg, #f7fcfc 0%, #e7f7f4 54%, #e9f3fa 100%);
}

.doh-policy-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
}

.doh-policy-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.doh-policy-updated {
  margin: 24px 0 0;
  color: var(--doh-muted);
  font-size: 0.88rem;
  font-weight: 680;
}

.doh-policy-hero__panel {
  padding: clamp(25px, 4vw, 38px);
  color: var(--doh-white);
  border-radius: 28px;
  background: var(--doh-navy-950);
  box-shadow: var(--doh-shadow);
}

.doh-policy-hero__panel h2 {
  color: var(--doh-white);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.doh-policy-hero__panel .doh-check-list li {
  color: rgba(255, 255, 255, 0.83);
}

.doh-admin-policy-note {
  padding: 16px 18px;
  margin: 20px 0 0;
  color: #694d08;
  border: 1px solid #ead69e;
  border-radius: 13px;
  background: #fff9e8;
}

.doh-policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.doh-policy-nav {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 5px;
  padding: 22px;
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  background: var(--doh-bg);
  box-shadow: var(--doh-shadow-sm);
}

.doh-policy-nav .doh-eyebrow {
  margin-bottom: 12px;
}

.doh-policy-nav a {
  padding: 9px 11px;
  color: var(--doh-navy-900);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
  border-radius: 9px;
}

.doh-policy-nav a:hover {
  color: var(--doh-teal-700);
  background: var(--doh-mint-100);
}

.doh-policy-sections {
  max-width: 820px;
}

.doh-policy-sections > section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--doh-line);
}

.doh-policy-sections > section + section {
  padding-top: 34px;
}

.doh-policy-sections h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.doh-policy-sections p {
  color: #405967;
}

.doh-policy-custom {
  padding: 28px !important;
  margin-top: 34px;
  border: 1px solid #cce5e1 !important;
  border-radius: 18px;
  background: var(--doh-mint-50);
}

.doh-policy-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.doh-policy-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--doh-line);
  border-radius: 20px;
  background: var(--doh-white);
  box-shadow: var(--doh-shadow-sm);
}

.doh-policy-card > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  color: var(--doh-white);
  font-weight: 850;
  place-items: center;
  border-radius: 13px;
  background: var(--doh-teal-700);
}

.doh-policy-card h3 {
  font-size: 1.5rem;
}

.doh-policy-card p {
  color: var(--doh-muted);
}

.doh-policy-card .doh-text-link {
  margin-top: auto;
}

.doh-policy-hub-content {
  padding-top: 42px;
  margin-top: 48px;
  border-top: 1px solid var(--doh-line);
}

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

  .doh-policy-hero__grid {
    grid-template-columns: 1fr;
  }

  .doh-policy-hero__panel {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .doh-policy-layout {
    grid-template-columns: 1fr;
  }

  .doh-policy-nav {
    position: static;
  }
}

@media (max-width: 560px) {
  .doh-policy-card-grid,
  .doh-article-author {
    grid-template-columns: 1fr;
  }

  .doh-policy-card {
    min-height: 0;
  }

  .doh-policy-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .doh-article-review-badge {
    align-items: flex-start;
    border-radius: 16px;
  }
}

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

/* Support Centre, site search, and v1.4 accessibility refinements */
body.search-open {
  overflow: hidden;
}

body.search-open::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  content: "";
  background: rgba(8, 40, 61, 0.38);
  backdrop-filter: blur(2px);
}

.doh-search-toggle,
.doh-site-search-close {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 9px;
  place-items: center;
  color: var(--doh-navy-900);
  background: var(--doh-mint-50);
  border: 1px solid var(--doh-line);
  border-radius: 11px;
  cursor: pointer;
}

.doh-search-toggle:hover,
.doh-search-toggle[aria-expanded="true"],
.doh-site-search-close:hover {
  color: var(--doh-white);
  background: var(--doh-teal-700);
  border-color: var(--doh-teal-700);
}

.doh-search-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.doh-site-search-panel {
  position: fixed;
  z-index: 1004;
  top: var(--doh-search-panel-top, 82px);
  right: 0;
  left: 0;
  padding: 22px 0;
  background: var(--doh-white);
  border-top: 1px solid var(--doh-line);
  box-shadow: 0 24px 50px rgba(8, 40, 61, 0.2);
}

.doh-site-search-panel[hidden] {
  display: none !important;
}

.doh-site-search-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: end;
  gap: 16px;
}

.doh-site-search-form {
  display: grid;
  gap: 8px;
}

.doh-site-search-form > label {
  color: var(--doh-navy-900);
  font-size: 0.78rem;
  font-weight: 850;
}

.doh-site-search-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.doh-site-search-form input,
.doh-search-results-form input {
  width: 100%;
  min-height: 50px;
  padding: 11px 15px;
  color: var(--doh-ink);
  background: #fbfdfd;
  border: 1px solid #cbdde3;
  border-radius: 12px;
}

.doh-site-search-close > span[aria-hidden="true"] {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.doh-support-hero {
  background:
    radial-gradient(circle at 80% 24%, rgba(24, 170, 163, 0.16), transparent 27%),
    linear-gradient(150deg, #f8fdfd, #eef7fb);
}

.doh-support-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.doh-support-route-grid article {
  display: flex;
  min-height: 300px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--doh-line);
  border-radius: 20px;
  background: var(--doh-white);
  box-shadow: var(--doh-shadow-sm);
}

.doh-support-route-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--doh-white);
  background: var(--doh-teal-700);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 850;
}

.doh-support-route-grid h3 {
  font-size: 1.45rem;
}

.doh-support-route-grid p {
  color: var(--doh-muted);
}

.doh-support-route-grid .doh-text-link {
  margin-top: auto;
}

.doh-support-faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.doh-support-faq-heading {
  position: sticky;
  top: 116px;
}

.doh-support-faq-heading h2 {
  margin-bottom: 24px;
}

.doh-support-faq-heading > label {
  display: block;
  margin-bottom: 7px;
  color: var(--doh-ink);
  font-size: 0.82rem;
  font-weight: 820;
}

.doh-support-faq-count {
  margin: 10px 0 0;
  color: var(--doh-muted);
  font-size: 0.78rem;
}

.doh-support-faq-list details[hidden],
.doh-support-faq-list .doh-empty-state[hidden] {
  display: none !important;
}

.doh-support-faq-list .doh-empty-state {
  padding: 24px;
  color: var(--doh-muted);
  background: var(--doh-white);
  border: 1px dashed #b9cdd4;
  border-radius: 16px;
}

.doh-support-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.doh-support-form-card {
  padding: clamp(26px, 4vw, 42px);
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: 24px;
  box-shadow: var(--doh-shadow-sm);
}

.doh-support-form-card .doh-section-heading {
  max-width: 780px;
}

.doh-form-field {
  display: grid;
  align-content: start;
  gap: 7px;
}

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

.doh-form-field > span,
.doh-updates-form label > span {
  color: var(--doh-ink);
  font-size: 0.84rem;
  font-weight: 820;
}

.doh-form-field small {
  color: var(--doh-muted);
  font-size: 0.72rem;
}

.doh-support-form textarea.doh-field {
  min-height: 170px;
  resize: vertical;
}

.doh-support-form .doh-field,
.doh-updates-form .doh-field {
  background: #fbfdfd;
  border-color: #cbdde3;
}

.doh-support-form .doh-field:focus,
.doh-updates-form .doh-field:focus,
.doh-support-faq-heading .doh-field:focus,
.doh-site-search-form input:focus,
.doh-search-results-form input:focus {
  background: var(--doh-white);
  border-color: var(--doh-teal-600);
  box-shadow: 0 0 0 4px rgba(15, 145, 141, 0.1);
  outline: 0;
}

.doh-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 18px;
  margin: 24px 0;
  color: var(--doh-ink);
  background: var(--doh-mint-50);
  border: 1px solid rgba(15, 145, 141, 0.2);
  border-radius: 14px;
  font-size: 0.8rem;
}

.doh-consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--doh-teal-700);
}

.doh-support-sidebar {
  display: grid;
  gap: 20px;
}

.doh-support-sidebar > div {
  padding: 26px;
  background: var(--doh-mint-50);
  border: 1px solid #cce5e1;
  border-radius: 18px;
}

.doh-support-sidebar h3 {
  font-size: 1.3rem;
}

.doh-support-sidebar ul {
  padding-left: 20px;
  margin-bottom: 0;
  color: var(--doh-muted);
}

.doh-support-sidebar__warning {
  background: #fff7f7 !important;
  border-color: #efcbd0 !important;
}

.doh-updates-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cce5e1;
  border-radius: 28px;
  box-shadow: var(--doh-shadow-sm);
}

.doh-updates-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.doh-updates-form__fields label {
  display: grid;
  gap: 7px;
}

.doh-search-results-hero {
  padding: 70px 0;
}

.doh-search-results-hero .doh-container {
  max-width: 900px;
}

.doh-search-results-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 28px;
}

.doh-search-scope-note {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--doh-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.doh-search-result-count {
  margin: 0 0 24px;
  color: var(--doh-muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.doh-search-result-group + .doh-search-result-group {
  padding-top: clamp(36px, 6vw, 64px);
  margin-top: clamp(36px, 6vw, 64px);
  border-top: 1px solid var(--doh-line);
}

.doh-search-result-group__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.doh-search-result-group__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.doh-search-result-group__heading .doh-eyebrow {
  margin-bottom: 7px;
}

.doh-search-results-grid {
  display: grid;
  gap: 20px;
}

.doh-search-result-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  background: var(--doh-white);
  border: 1px solid var(--doh-line);
  border-radius: 18px;
  box-shadow: var(--doh-shadow-sm);
}

.doh-search-result-card--no-image {
  grid-template-columns: minmax(0, 1fr);
}

.doh-search-result-card--help {
  background: linear-gradient(140deg, var(--doh-white), var(--doh-mint-50));
  border-color: #cce5e1;
}

.doh-search-result-card__image {
  display: block;
  height: 170px;
  overflow: hidden;
  border-radius: 13px;
}

.doh-search-result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doh-search-result-card h2,
.doh-search-result-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.doh-search-result-card h2 a,
.doh-search-result-card h3 a {
  color: var(--doh-navy-900);
  text-decoration: none;
}

.doh-search-result-card h2 a:hover,
.doh-search-result-card h3 a:hover {
  color: var(--doh-teal-700);
}

.doh-search-result-card p:not(.doh-eyebrow) {
  color: var(--doh-muted);
}

.doh-search-empty {
  max-width: 780px;
  padding: clamp(30px, 5vw, 54px);
  margin: 0 auto;
  text-align: center;
  background: var(--doh-bg);
  border: 1px solid var(--doh-line);
  border-radius: 24px;
}

.doh-search-empty .doh-services-hero__actions {
  justify-content: center;
}

@media (max-width: 1080px) {
  .doh-search-toggle {
    order: -1;
  }
}

@media (max-width: 900px) {
  .doh-support-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doh-support-faq-layout,
  .doh-support-form-layout,
  .doh-updates-card {
    grid-template-columns: 1fr;
  }

  .doh-support-faq-heading {
    position: static;
  }

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

@media (max-width: 600px) {
  .doh-search-toggle {
    width: 42px;
    height: 42px;
  }

  .doh-site-search-panel {
    padding: 16px 0;
  }

  .doh-site-search-panel__inner {
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: start;
  }

  .doh-site-search-form > div,
  .doh-search-results-form,
  .doh-support-route-grid,
  .doh-support-sidebar,
  .doh-updates-form__fields,
  .doh-search-result-card {
    grid-template-columns: 1fr;
  }

  .doh-site-search-form .doh-button,
  .doh-search-results-form .doh-button,
  .doh-support-form > .doh-button,
  .doh-updates-form > .doh-button {
    width: 100%;
  }

  .doh-site-search-close {
    grid-column: 2;
    grid-row: 1;
  }

  .doh-site-search-form {
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
    padding-right: 52px;
  }

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

  .doh-form-field--wide {
    grid-column: 1;
  }

  .doh-support-route-grid article {
    min-height: 0;
  }

  .doh-search-result-card__image {
    height: 210px;
  }

  .doh-search-result-group__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .doh-search-toggle {
    min-width: 42px;
  }

  .doh-support-form-card,
  .doh-updates-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
}
