:root {
  --eds-cyan: #008f9a;
  --eds-cyan-dark: #006a95;
  --eds-yellow: #fee85b;
  --eds-white: #ffffff;
  --eds-ink: #071c26;
  --eds-muted: #60727b;
  --eds-soft: #f3fafb;
  --eds-border: #d9e8eb;
  --eds-danger: #b42318;
  --eds-success: #067647;
  --eds-shadow: 0 18px 50px rgba(16, 39, 51, .12);
  --eds-radius-sm: 10px;
  --eds-radius: 18px;
  --eds-radius-lg: 28px;
  --eds-container: 1320px;
}

/* --------------------------------------------------------------------------
   Theme isolation and full-width reset
   -------------------------------------------------------------------------- */
html,
body.eds-theme {
  width: 100% !important;
  max-width: none !important;
  min-width: 320px;
  margin: 0 !important;
  padding: 0 !important;
}
body.eds-theme {
  overflow-x: hidden;
  background: var(--eds-white) !important;
}
body.eds-theme > .eds-topbar,
body.eds-theme > .eds-site-header,
body.eds-theme > main,
body.eds-theme > .eds-site-footer {
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
}
body.eds-theme .eds-container {
  width: calc(100% - 48px) !important;
  max-width: var(--eds-container) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
body.eds-theme .eds-narrow {
  width: calc(100% - 48px) !important;
  max-width: 900px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
body.eds-theme h1,
body.eds-theme h2,
body.eds-theme h3,
body.eds-theme h4 {
  border: 0 !important;
  background: transparent !important;
  color: inherit;
  text-transform: none;
  box-shadow: none !important;
}
body.eds-theme h1::before,
body.eds-theme h1::after,
body.eds-theme h2::before,
body.eds-theme h2::after,
body.eds-theme h3::before,
body.eds-theme h3::after,
body.eds-theme h4::before,
body.eds-theme h4::after {
  content: none !important;
  display: none !important;
}
body.eds-theme .eds-hero h1 {
  margin: 0 0 .32em !important;
  padding: 0 !important;
  color: var(--eds-white) !important;
  font-size: clamp(3rem, 5.5vw, 5.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
}
body.eds-theme .eds-hero h1 span { color: var(--eds-yellow) !important; }
body.eds-theme .eds-hero__eyebrow {
  color: var(--eds-white) !important;
  font-size: .95rem !important;
  line-height: 1.35 !important;
}
body.eds-theme .eds-hero__text { color: rgba(255,255,255,.88) !important; }


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--eds-ink);
  background: var(--eds-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;
}
img { max-width: 100%; height: auto; }
a { color: var(--eds-cyan-dark); text-decoration: none; }
a:hover { color: var(--eds-ink); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.eds-container { width: min(100% - 40px, var(--eds-container)); margin-inline: auto; }
.eds-narrow { width: min(100% - 40px, 820px); margin-inline: auto; }
.eds-section { padding: 88px 0; }
.eds-section--soft { background: var(--eds-soft); }
.eds-section--dark { background: var(--eds-ink); color: var(--eds-white); }
.eds-section--cyan { background: linear-gradient(135deg, var(--eds-cyan-dark), var(--eds-cyan)); color: var(--eds-white); }
.eds-section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.eds-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--eds-cyan-dark); font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.eds-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--eds-yellow); }
.eds-section--dark .eds-kicker, .eds-section--cyan .eds-kicker { color: var(--eds-white); }
h1, h2, h3, h4 { margin: 0 0 .65em; font-family: "Arial Rounded MT Bold", Inter, sans-serif; line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2.5rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.2em; }
.eds-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--eds-muted); }
.eds-section--dark .eds-lead, .eds-section--cyan .eds-lead { color: rgba(255,255,255,.82); }

.eds-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--eds-cyan);
  color: var(--eds-white);
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.eds-button:hover { transform: translateY(-2px); background: var(--eds-cyan-dark); color: var(--eds-white); box-shadow: 0 12px 26px rgba(8,127,145,.24); }
.eds-button--yellow { background: var(--eds-yellow); color: var(--eds-ink); }
.eds-button--yellow:hover { background: #ffe36f; color: var(--eds-ink); }
.eds-button--outline { border-color: currentColor; background: transparent; color: var(--eds-cyan-dark); }
.eds-button--outline:hover { background: var(--eds-cyan-dark); color: var(--eds-white); }
.eds-button--white { background: var(--eds-white); color: var(--eds-ink); }
.eds-button--white:hover { background: var(--eds-yellow); color: var(--eds-ink); }
.eds-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.eds-topbar { background: var(--eds-ink); color: var(--eds-white); font-size: .9rem; }
.eds-topbar__inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.eds-topbar a { color: var(--eds-white); }
.eds-topbar__details { display: flex; flex-wrap: wrap; gap: 18px; }
.eds-site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,39,51,.08); backdrop-filter: blur(14px); }
.admin-bar .eds-site-header { top: 32px; }
.eds-header__inner { min-height: 88px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 24px; }
.eds-header__cta { flex: 0 0 auto; white-space: nowrap; }
.eds-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; color: var(--eds-ink); font-weight: 900; white-space: nowrap; }
.eds-brand img { width: auto; max-height: 60px; }
.eds-brand__fallback { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(135deg, var(--eds-cyan), var(--eds-cyan-dark)); color: var(--eds-yellow); font-size: 1.35rem; }
.eds-brand__text { max-width: 190px; line-height: 1.1; }
.eds-nav { display: flex; justify-self: end; align-items: center; min-width: 0; gap: 4px; }
.eds-nav ul { list-style: none; margin: 0; padding: 0; }
.eds-nav > ul { display: flex; align-items: center; gap: 2px; }
.eds-nav li { position: relative; }
.eds-nav a { display: block; padding: 12px 9px; color: var(--eds-ink); font-size: .91rem; font-weight: 750; white-space: nowrap; }
.eds-nav a:hover, .eds-nav .current-menu-item > a, .eds-nav .current-menu-ancestor > a { color: var(--eds-cyan-dark); }
.eds-nav .sub-menu { position: absolute; left: 0; top: calc(100% + 10px); min-width: 255px; padding: 10px; border: 1px solid var(--eds-border); border-radius: 16px; background: var(--eds-white); box-shadow: var(--eds-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.eds-nav li:hover > .sub-menu, .eds-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.eds-nav .sub-menu a { border-radius: 10px; }
.eds-nav .sub-menu a:hover { background: var(--eds-soft); }
.eds-menu-toggle { display: none; justify-self: end; width: 48px; height: 48px; border: 0; border-radius: 12px; background: var(--eds-soft); color: var(--eds-ink); }
.eds-menu-toggle span, .eds-menu-toggle::before, .eds-menu-toggle::after { content: ""; display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease; }
.eds-menu-toggle.is-open span { opacity: 0; }
.eds-menu-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.eds-menu-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.eds-hero { position: relative; min-height: 660px; overflow: hidden; background: var(--eds-ink); color: var(--eds-white); }
.eds-hero__slides, .eds-hero__slide { position: absolute; inset: 0; }
.eds-hero__slide { opacity: 0; background-position: center; background-size: cover; transform: scale(1.04); transition: opacity .8s ease, transform 6s ease; }
.eds-hero__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,26,36,.92) 0%, rgba(6,26,36,.64) 52%, rgba(6,26,36,.22) 100%); }
.eds-hero__slide.is-active { opacity: 1; transform: scale(1); }
.eds-hero__slide--placeholder { background-image: radial-gradient(circle at 80% 30%, rgba(254,232,91,.35), transparent 25%), linear-gradient(135deg, #006a95, #071c26); }
.eds-hero__content { position: relative; z-index: 2; min-height: 660px; display: grid; align-content: center; max-width: 760px; padding: 100px 0; }
.eds-hero__eyebrow { display: inline-flex; width: fit-content; padding: 8px 14px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.08); font-weight: 800; }
.eds-hero h1 span { color: var(--eds-yellow); }
.eds-hero__text { max-width: 680px; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.eds-hero__dots { position: absolute; z-index: 4; left: 50%; bottom: 26px; display: flex; gap: 8px; transform: translateX(-50%); }
.eds-hero__dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.5); }
.eds-hero__dot.is-active { width: 30px; background: var(--eds-yellow); }

.eds-trustbar { position: relative; z-index: 5; margin-top: -42px; }
.eds-trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--eds-radius); background: var(--eds-white); box-shadow: var(--eds-shadow); overflow: hidden; }
.eds-trust-item { padding: 24px; text-align: center; border-right: 1px solid var(--eds-border); }
.eds-trust-item:last-child { border-right: 0; }
.eds-trust-item strong { display: block; font-size: 1.1rem; }
.eds-trust-item span { color: var(--eds-muted); font-size: .92rem; }

.eds-grid { display: grid; gap: 24px; }
.eds-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eds-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eds-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.eds-card { padding: 30px; border: 1px solid var(--eds-border); border-radius: var(--eds-radius); background: var(--eds-white); box-shadow: 0 12px 32px rgba(16,39,51,.06); }
.eds-card--accent { position: relative; border-top: 6px solid var(--eds-yellow); }
.eds-card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px; border-radius: 16px; background: var(--eds-soft); color: var(--eds-cyan-dark); font-size: 1.5rem; font-weight: 900; }
.eds-card p:last-child { margin-bottom: 0; }
.eds-link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.eds-link-arrow::after { content: "→"; transition: transform .2s ease; }
.eds-link-arrow:hover::after { transform: translateX(4px); }

.eds-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.eds-media { position: relative; min-height: 480px; border-radius: var(--eds-radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--eds-cyan), var(--eds-ink)); box-shadow: var(--eds-shadow); }
.eds-media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.eds-media__badge { position: absolute; right: 24px; bottom: 24px; max-width: 230px; padding: 20px; border-radius: 18px; background: var(--eds-yellow); color: var(--eds-ink); font-weight: 900; box-shadow: var(--eds-shadow); }

.eds-checklist { list-style: none; margin: 22px 0; padding: 0; }
.eds-checklist li { position: relative; padding-left: 31px; margin: 11px 0; }
.eds-checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--eds-yellow); color: var(--eds-ink); font-size: .75rem; font-weight: 900; }

.eds-package { display: flex; flex-direction: column; position: relative; padding: 32px; border: 1px solid var(--eds-border); border-radius: var(--eds-radius); background: var(--eds-white); box-shadow: 0 14px 36px rgba(16,39,51,.08); }
.eds-package--featured { border: 2px solid var(--eds-cyan); transform: translateY(-8px); }
.eds-package__badge { position: absolute; top: 16px; right: 16px; padding: 7px 11px; border-radius: 999px; background: var(--eds-yellow); color: var(--eds-ink); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.eds-package__price { margin: 14px 0 20px; font-size: 2rem; font-weight: 950; color: var(--eds-cyan-dark); }
.eds-package .eds-button { margin-top: auto; }
.eds-package ul { flex-grow: 1; }

.eds-stars { color: #f7b500; letter-spacing: 2px; }
.eds-review { display: flex; flex-direction: column; }
.eds-review blockquote { margin: 14px 0 20px; font-size: 1.04rem; }
.eds-review__person { margin-top: auto; font-weight: 900; }
.eds-review__meta { color: var(--eds-muted); font-size: .9rem; }

.eds-page-hero { padding: 110px 0 78px; background: linear-gradient(135deg, var(--eds-ink), var(--eds-cyan-dark)); color: var(--eds-white); }
.eds-page-hero__inner { max-width: 820px; }
.eds-page-hero .eds-lead { color: rgba(255,255,255,.82); }
.eds-breadcrumbs { margin-bottom: 20px; color: rgba(255,255,255,.7); font-size: .9rem; }
.eds-breadcrumbs a { color: var(--eds-white); }

.eds-faq { border-top: 1px solid var(--eds-border); }
.eds-faq__item { border-bottom: 1px solid var(--eds-border); }
.eds-faq__question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 22px 0; border: 0; background: transparent; color: var(--eds-ink); text-align: left; font-weight: 900; }
.eds-faq__question::after { content: "+"; flex: 0 0 auto; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--eds-soft); color: var(--eds-cyan-dark); font-size: 1.4rem; }
.eds-faq__question[aria-expanded="true"]::after { content: "−"; }
.eds-faq__answer { display: none; padding: 0 45px 22px 0; color: var(--eds-muted); }
.eds-faq__answer.is-open { display: block; }

.eds-contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; }
.eds-contact-card { padding: 28px; border-radius: var(--eds-radius); background: var(--eds-ink); color: var(--eds-white); }
.eds-contact-card a { color: var(--eds-yellow); }
/* Keep yellow action buttons readable inside the dark contact card. */
body.eds-theme .eds-contact-card .eds-button--yellow,
body.eds-theme .eds-contact-card .eds-button--yellow:visited,
body.eds-theme .eds-contact-card .eds-button--yellow:focus {
  background: var(--eds-yellow);
  color: var(--eds-ink) !important;
  text-decoration: none;
}
body.eds-theme .eds-contact-card .eds-button--yellow:hover,
body.eds-theme .eds-contact-card .eds-button--yellow:focus-visible {
  background: #ffe36f;
  color: var(--eds-ink) !important;
}
.eds-contact-list { list-style: none; margin: 24px 0 0; padding: 0; }
.eds-contact-list li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.eds-form { display: grid; gap: 18px; }
.eds-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.eds-form label { display: block; margin-bottom: 7px; font-weight: 800; }
.eds-form input, .eds-form select, .eds-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--eds-border); border-radius: 12px; background: var(--eds-white); color: var(--eds-ink); }
.eds-form input:focus, .eds-form select:focus, .eds-form textarea:focus { outline: 3px solid rgba(16,184,201,.18); border-color: var(--eds-cyan); }
.eds-form textarea { min-height: 160px; resize: vertical; }
.eds-honeypot { position: absolute !important; left: -9999px !important; }
.eds-alert { padding: 14px 18px; margin-bottom: 20px; border-radius: 12px; font-weight: 700; }
.eds-alert--success { background: #ecfdf3; color: var(--eds-success); }
.eds-alert--error { background: #fef3f2; color: var(--eds-danger); }

.eds-cta { padding: 48px; border-radius: var(--eds-radius-lg); background: linear-gradient(135deg, var(--eds-cyan-dark), var(--eds-cyan)); color: var(--eds-white); box-shadow: var(--eds-shadow); }
.eds-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.eds-cta h2 { max-width: 680px; margin-bottom: .35em; }

.eds-site-footer { background: #081b25; color: rgba(255,255,255,.78); }
.eds-footer__main { padding: 68px 0 42px; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 34px; }
.eds-site-footer h3 { color: var(--eds-white); font-size: 1rem; letter-spacing: .03em; text-transform: uppercase; }
.eds-footer__brand { max-width: 330px; }
.eds-footer__links { list-style: none; margin: 0; padding: 0; }
.eds-footer__links li { margin: 9px 0; }
.eds-site-footer a { color: rgba(255,255,255,.82); }
.eds-site-footer a:hover { color: var(--eds-yellow); }
.eds-footer__bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); }
.eds-footer__bottom-inner { display: flex; justify-content: space-between; gap: 20px; }

.eds-policy h2 { margin-top: 1.6em; font-size: 1.8rem; }
.eds-policy h3 { margin-top: 1.4em; font-size: 1.25rem; }
.eds-policy ul { padding-left: 1.25rem; }
.eds-note { padding: 18px 20px; border-left: 5px solid var(--eds-yellow); border-radius: 10px; background: #fff9df; }
.eds-table-wrap { overflow-x: auto; }
.eds-table { width: 100%; border-collapse: collapse; }
.eds-table th, .eds-table td { padding: 15px; border-bottom: 1px solid var(--eds-border); text-align: left; vertical-align: top; }
.eds-table th { background: var(--eds-soft); }


/* --------------------------------------------------------------------------
   Supplied Educator logo and media
   -------------------------------------------------------------------------- */
.eds-brand__logo--mark {
  width: 62px !important;
  height: 62px !important;
  max-height: none !important;
  object-fit: contain;
  flex: 0 0 62px;
}
.eds-brand__text {
  display: grid;
  gap: 1px;
  max-width: 170px;
  white-space: normal;
}
.eds-brand__text strong {
  color: var(--eds-ink);
  font-size: 1.04rem;
  line-height: 1.05;
}
.eds-brand__text small {
  color: var(--eds-cyan-dark);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.05;
}
.eds-footer__logo-link {
  display: inline-block;
  max-width: 280px;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.eds-footer__logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}

.eds-section-heading--spaced { margin-top: 72px; }
.eds-feature-course {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius-lg);
  background: linear-gradient(135deg, var(--eds-soft), #fff);
  box-shadow: var(--eds-shadow);
}
.eds-feature-course__content {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 72px);
}
.eds-feature-course__media {
  min-height: 430px;
  background: var(--eds-ink);
}
.eds-feature-course__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.eds-image-card-grid { align-items: stretch; }
.eds-image-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius);
  background: var(--eds-white);
  box-shadow: 0 14px 36px rgba(16,39,51,.08);
}
.eds-image-card__media {
  display: grid;
  place-items: center;
  min-height: 238px;
  padding: 20px 16px 0;
  overflow: hidden;
  background: linear-gradient(145deg, #eefbfd, #fffbe3);
}
.eds-image-card__media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.eds-image-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}
.eds-image-card__content p { flex: 1; }
.eds-image-card__tag {
  display: inline-flex;
  width: fit-content;
  min-width: 42px;
  justify-content: center;
  padding: 6px 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--eds-yellow);
  color: var(--eds-ink);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}
.eds-center-link { margin-top: 30px; text-align: center; }
.eds-actions--center { justify-content: center; margin-top: 34px; }

.eds-section--success {
  background:
    radial-gradient(circle at 10% 10%, rgba(254,232,91,.22), transparent 28%),
    linear-gradient(180deg, #f4fcfd 0%, #ffffff 100%);
}
.eds-success-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
}
.eds-success-gallery__item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--eds-ink);
  box-shadow: 0 16px 40px rgba(16,39,51,.15);
}
.eds-success-gallery__item--wide {
  grid-column: span 8;
}
.eds-success-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.eds-success-gallery__item:hover img { transform: scale(1.025); }
.eds-success-gallery__item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(8,27,37,.78);
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

@media (max-width: 1240px) {
  .eds-header__cta { display: none; }
  .eds-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eds-footer__main { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (max-width: 1080px) {
  .admin-bar .eds-site-header { top: 32px; }
  .eds-menu-toggle { display: block; }
  .eds-header__inner { grid-template-columns: minmax(0, 1fr) auto; }
  .eds-nav {
    position: fixed;
    top: 142px;
    right: 24px;
    left: 24px;
    z-index: 1200;
    display: none;
    max-height: calc(100vh - 166px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid var(--eds-border);
    border-radius: 18px;
    background: var(--eds-white);
    box-shadow: var(--eds-shadow);
  }
  .admin-bar .eds-nav { top: 174px; }
  .eds-nav.is-open { display: block; }
  .eds-nav > ul { display: block; }
  .eds-nav a { padding: 12px; white-space: normal; }
  .eds-nav .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 0 12px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .eds-split, .eds-contact-layout { grid-template-columns: 1fr; }
  .eds-trustbar__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eds-trust-item:nth-child(2) { border-right: 0; }
  .eds-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--eds-border); }
  .eds-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eds-footer__main { grid-template-columns: 1fr 1fr; }
  .eds-cta__inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 782px) {
  .admin-bar .eds-site-header { top: 46px; }
  .admin-bar .eds-nav { top: 188px; }
  .eds-topbar__inner { min-height: 0; padding: 10px 0; align-items: flex-start; }
  .eds-topbar__hours { display: none; }
  .eds-topbar__details { gap: 5px 16px; }
  .eds-topbar__address { flex-basis: 100%; }
  .eds-header__inner { min-height: 78px; }
  .eds-brand img { max-height: 52px; }
  .eds-hero, .eds-hero__content { min-height: 590px; }
  .eds-hero__content { padding: 76px 0 110px; }
  body.eds-theme .eds-hero h1 { font-size: clamp(2.65rem, 10vw, 4.6rem) !important; }
}
@media (max-width: 640px) {
  body.eds-theme .eds-container,
  body.eds-theme .eds-narrow { width: calc(100% - 28px) !important; }
  .eds-section { padding: 64px 0; }
  .eds-topbar__details { display: grid; grid-template-columns: 1fr; gap: 3px; }
  .eds-topbar__address { display: block; }
  .eds-brand { gap: 10px; }
  .eds-brand__fallback { width: 48px; height: 48px; border-radius: 14px; font-size: 1.15rem; }
  .eds-brand__text { display: block; max-width: 185px; font-size: .95rem; }
  .eds-menu-toggle { width: 46px; height: 46px; }
  .eds-nav { top: 164px; right: 14px; left: 14px; max-height: calc(100vh - 182px); }
  .admin-bar .eds-nav { top: 210px; }
  .eds-hero, .eds-hero__content { min-height: 560px; }
  .eds-hero__content { padding: 64px 0 100px; }
  .eds-hero__slide::after { background: linear-gradient(180deg, rgba(6,26,36,.8), rgba(6,26,36,.9)); }
  .eds-hero__eyebrow { max-width: 100%; }
  .eds-trustbar { margin-top: 0; }
  .eds-trustbar__inner, .eds-grid--2, .eds-grid--3, .eds-grid--4, .eds-footer__main, .eds-form__row { grid-template-columns: 1fr; }
  .eds-trust-item { border-right: 0; border-bottom: 1px solid var(--eds-border); }
  .eds-trust-item:last-child { border-bottom: 0; }
  .eds-package--featured { transform: none; }
  .eds-media, .eds-media img { min-height: 330px; }
  .eds-cta { padding: 30px; }
  .eds-footer__bottom-inner { flex-direction: column; }
}
@media (max-width: 420px) {
  .eds-brand__text { max-width: 145px; font-size: .86rem; }
  .eds-topbar { font-size: .78rem; }
  .eds-actions { gap: 10px; }
  .eds-button { width: 100%; }
  .eds-hero__eyebrow { font-size: .82rem !important; }
}


@media (max-width: 1080px) {
  .eds-feature-course { grid-template-columns: 1fr; }
  .eds-feature-course__media,
  .eds-feature-course__media img { min-height: 360px; }
  .eds-success-gallery__item,
  .eds-success-gallery__item--wide { grid-column: span 6; }
}
@media (max-width: 640px) {
  .eds-brand__text { display: grid; }
  .eds-brand__logo--mark {
    width: 54px !important;
    height: 54px !important;
    flex-basis: 54px;
  }
  .eds-brand__text strong { font-size: .93rem; }
  .eds-brand__text small { font-size: .76rem; }
  .eds-section-heading--spaced { margin-top: 52px; }
  .eds-feature-course__content { padding: 32px 24px; }
  .eds-feature-course__media,
  .eds-feature-course__media img { min-height: 280px; }
  .eds-image-card__media { min-height: 210px; }
  .eds-image-card__media img { height: 190px; }
  .eds-success-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .eds-success-gallery__item,
  .eds-success-gallery__item--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }
  .eds-footer__logo-link,
  .eds-footer__logo { max-width: 230px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.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;
}
.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--eds-yellow);
  color: var(--eds-ink);
  font-weight: 800;
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Version 1.2 media integration
   -------------------------------------------------------------------------- */
.eds-brand__logo--mark {
  width: 60px !important;
  height: 60px !important;
  max-height: 60px !important;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(16, 39, 51, .12));
}
.eds-brand__text {
  display: grid;
  gap: 1px;
  max-width: 210px;
  line-height: 1;
  letter-spacing: -.02em;
}
.eds-brand__text strong {
  color: var(--eds-ink);
  font-size: 1.08rem;
  font-weight: 950;
}
.eds-brand__text small {
  color: var(--eds-cyan-dark);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.eds-hero__content {
  text-shadow: 0 2px 16px rgba(0, 0, 0, .24);
}
.eds-hero__content .eds-button { text-shadow: none; }
.eds-hero__slide::after {
  background:
    linear-gradient(90deg, rgba(5, 23, 32, .94) 0%, rgba(5, 23, 32, .72) 45%, rgba(5, 23, 32, .22) 74%, rgba(5, 23, 32, .10) 100%),
    linear-gradient(0deg, rgba(5, 23, 32, .18), rgba(5, 23, 32, .02));
}
.eds-feature-course {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius-lg);
  background: linear-gradient(135deg, #fff, var(--eds-soft));
  box-shadow: var(--eds-shadow);
}
.eds-feature-course__content {
  display: grid;
  align-content: center;
  padding: clamp(36px, 5vw, 70px);
}
.eds-feature-course__media { min-height: 500px; }
.eds-feature-course__media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.eds-section-heading--spaced { margin-top: 74px; }
.eds-image-card-grid { align-items: stretch; }
.eds-image-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius);
  background: var(--eds-white);
  box-shadow: 0 14px 38px rgba(16, 39, 51, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.eds-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(16, 39, 51, .14);
}
.eds-image-card__media {
  display: grid;
  place-items: center;
  min-height: 255px;
  padding: 20px 18px 0;
  background: linear-gradient(180deg, #f7fcfd, #fff);
}
.eds-image-card__media img {
  width: 100%;
  height: 245px;
  object-fit: contain;
}
.eds-image-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 30px;
}
.eds-image-card__content .eds-link-arrow { margin-top: auto; }
.eds-image-card__tag {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--eds-yellow);
  color: var(--eds-ink);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.eds-section--success {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 212, 59, .20), transparent 24%),
    linear-gradient(180deg, #f4fbfc, #fff);
}
.eds-success-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.eds-success-gallery__item {
  grid-column: span 4;
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--eds-ink);
  box-shadow: 0 14px 34px rgba(16, 39, 51, .13);
}
.eds-success-gallery__item--wide { grid-column: span 8; }
.eds-success-gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform .45s ease;
}
.eds-success-gallery__item:hover img { transform: scale(1.035); }
.eds-success-gallery__item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(0deg, rgba(5, 23, 32, .88), transparent);
  color: var(--eds-white);
  font-size: .88rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.eds-success-gallery__item:hover figcaption,
.eds-success-gallery__item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}
.eds-actions--center { justify-content: center; margin-top: 34px; }
.eds-center-link { margin-top: 30px; text-align: center; }
.eds-footer__logo-link { display: inline-block; margin-bottom: 18px; }
.eds-footer__logo {
  display: block;
  width: min(100%, 190px);
  height: auto;
  max-height: none;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}
.eds-page-hero {
  position: relative;
  overflow: hidden;
}
.eds-page-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(4vw, 32px);
  width: 250px;
  aspect-ratio: 1;
  background: url('../images/educator-logo-mark.png') center / contain no-repeat;
  opacity: .10;
  transform: translateY(-50%);
  pointer-events: none;
}
.eds-page-hero__inner { position: relative; z-index: 1; }
.eds-media img[src$=".png"] {
  object-fit: contain;
  padding: 34px;
  background: linear-gradient(135deg, #f6fcfd, #fff);
}

@media (max-width: 1080px) {
  .eds-feature-course { grid-template-columns: 1fr; }
  .eds-feature-course__media,
  .eds-feature-course__media img { min-height: 420px; }
  .eds-success-gallery__item,
  .eds-success-gallery__item--wide { grid-column: span 6; }
  .eds-page-hero::after { width: 190px; opacity: .08; }
}
@media (max-width: 782px) {
  .eds-brand__logo--mark {
    width: 52px !important;
    height: 52px !important;
    max-height: 52px !important;
  }
  .eds-brand__text strong { font-size: .98rem; }
  .eds-brand__text small { font-size: .72rem; }
  .eds-feature-course__media,
  .eds-feature-course__media img { min-height: 340px; }
  .eds-success-gallery__item,
  .eds-success-gallery__item--wide { grid-column: span 12; min-height: 300px; }
  .eds-success-gallery__item img { min-height: 300px; }
  .eds-success-gallery__item figcaption { opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .eds-feature-course { min-height: 0; }
  .eds-feature-course__content { padding: 32px 24px; }
  .eds-feature-course__media,
  .eds-feature-course__media img { min-height: 280px; }
  .eds-section-heading--spaced { margin-top: 54px; }
  .eds-image-card__media { min-height: 215px; }
  .eds-image-card__media img { height: 205px; }
  .eds-page-hero::after { right: -48px; width: 170px; }
  .eds-footer__logo { width: 180px; }
}

/* --------------------------------------------------------------------------
   Version 1.3: student slideshow, verified review snapshot, native FAQs,
   service map and complete resource articles
   -------------------------------------------------------------------------- */
.eds-hero__slide::after {
  background:
    linear-gradient(90deg, rgba(5, 23, 32, .93) 0%, rgba(5, 23, 32, .78) 40%, rgba(5, 23, 32, .38) 68%, rgba(5, 23, 32, .16) 100%),
    linear-gradient(0deg, rgba(5, 23, 32, .20), rgba(5, 23, 32, .02));
}

/* Google review presentation */
.eds-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.eds-review-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius);
  background: var(--eds-white);
  color: var(--eds-ink);
  box-shadow: 0 14px 36px rgba(16, 39, 51, .10);
}
.eds-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.eds-google-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4 0 50%, #34a853 50% 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.85);
}
.eds-review-card .eds-stars {
  margin-bottom: 12px;
  color: #f9ab00;
  font-size: 1.08rem;
  letter-spacing: .08em;
}
.eds-review-card blockquote {
  margin: 0;
  color: #344851;
  font-size: 1rem;
  line-height: 1.7;
}
.eds-section--dark .eds-review-card {
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.eds-review-summary {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(220px, .8fr) minmax(320px, 1.55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius-lg);
  background: linear-gradient(135deg, #fff, var(--eds-soft));
  box-shadow: var(--eds-shadow);
}
.eds-review-summary__score strong {
  display: block;
  color: var(--eds-ink);
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.07em;
}
.eds-review-summary__score .eds-stars {
  color: #f9ab00;
  font-size: 1.15rem;
  letter-spacing: .08em;
}
.eds-review-summary__score p { margin: 5px 0 0; color: var(--eds-cyan-dark); font-weight: 850; }
.eds-review-summary__bars { display: grid; gap: 10px; }
.eds-rating-row { display: grid; grid-template-columns: 18px 1fr; align-items: center; gap: 10px; color: var(--eds-muted); font-weight: 800; }
.eds-rating-track { display: block; height: 10px; overflow: hidden; border-radius: 999px; background: #e8edef; }
.eds-rating-track > span { display: block; height: 100%; border-radius: inherit; background: #f9ab00; }
.eds-review-summary__copy h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }

/* Native details/summary FAQ: works even when JavaScript is blocked. */
.eds-faq-section-title { margin: 1.7em 0 .55em; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.eds-faq details.eds-faq__item { border-bottom: 1px solid var(--eds-border); }
.eds-faq details.eds-faq__item:first-child { border-top: 1px solid var(--eds-border); }
.eds-faq summary.eds-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  list-style: none;
  color: var(--eds-ink);
  font-weight: 900;
  cursor: pointer;
}
.eds-faq summary.eds-faq__question::-webkit-details-marker { display: none; }
.eds-faq summary.eds-faq__question::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-left: 18px;
  border-radius: 50%;
  background: var(--eds-soft);
  color: var(--eds-cyan-dark);
  font-size: 1.45rem;
  line-height: 1;
}
.eds-faq details[open] summary.eds-faq__question::after { content: "−"; }
.eds-faq details .eds-faq__answer {
  display: block;
  padding: 0 52px 24px 0;
  color: var(--eds-muted);
}
.eds-faq details .eds-faq__answer p:last-child { margin-bottom: 0; }

/* Interactive service area map */
.eds-map-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
.eds-map-card {
  overflow: hidden;
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius-lg);
  background: #fff;
  box-shadow: var(--eds-shadow);
}
.eds-service-map {
  width: 100%;
  min-height: 520px;
  background: #e7f2f4;
}
.eds-map-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: var(--eds-muted);
  font-size: .92rem;
  font-weight: 750;
}
.eds-map-legend span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 3px solid var(--eds-cyan);
  border-radius: 50%;
  background: rgba(254, 232, 91, .45);
}
.eds-service-map .leaflet-popup-content-wrapper { border-radius: 12px; }

/* Resource library and article pages */
.eds-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.eds-resource-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--eds-border);
  border-radius: var(--eds-radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16,39,51,.09);
  transition: transform .2s ease, box-shadow .2s ease;
}
.eds-resource-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(16,39,51,.14); }
.eds-resource-card__media {
  display: block;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf9fb, #fff9d9);
}
.eds-resource-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.eds-resource-card__media img[src$=".png"] { object-fit: contain; padding: 20px; }
.eds-resource-card:hover .eds-resource-card__media img { transform: scale(1.035); }
.eds-resource-card__content { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.eds-resource-card__content h2 { font-size: 1.55rem; }
.eds-resource-card__content .eds-link-arrow { margin-top: auto; }
.eds-article__image {
  overflow: hidden;
  margin-bottom: 38px;
  border-radius: var(--eds-radius);
  background: var(--eds-soft);
  box-shadow: var(--eds-shadow);
}
.eds-article__image img { display: block; width: 100%; max-height: 580px; object-fit: cover; }
.eds-article__image img[src$=".png"] { object-fit: contain; padding: 36px; }
.eds-article h2 { margin-top: 1.5em; font-size: clamp(1.65rem, 3vw, 2.2rem); }
.eds-article h3 { margin-top: 1.3em; }
.eds-article ul, .eds-article ol { padding-left: 1.35rem; }
.eds-article li { margin-bottom: .6em; }
.eds-article__back { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--eds-border); }

/* Make the supplied full logo clearly visible in the footer. */
.eds-footer__main { grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(150px, 1fr)); }
.eds-footer__brand { max-width: 420px; }
.eds-footer__logo-link { width: min(100%, 350px); max-width: 350px; }
.eds-footer__logo { width: 100% !important; max-width: 350px !important; border-radius: 18px; }

@media (max-width: 1080px) {
  .eds-review-grid, .eds-resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eds-review-summary { grid-template-columns: .65fr 1fr; }
  .eds-review-summary__copy { grid-column: 1 / -1; }
  .eds-map-layout { grid-template-columns: 1fr; }
  .eds-service-map { min-height: 460px; }
  .eds-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .eds-review-grid, .eds-resource-grid { grid-template-columns: 1fr; }
  .eds-review-summary { grid-template-columns: 1fr; }
  .eds-review-summary__copy { grid-column: auto; }
  .eds-service-map { min-height: 380px; }
  .eds-faq details .eds-faq__answer { padding-right: 0; }
  .eds-resource-card__media { height: 210px; }
  .eds-footer__main { grid-template-columns: 1fr; }
  .eds-footer__logo-link { width: min(100%, 290px); }
  .eds-footer__logo { max-width: 290px !important; }
}
.eds-map-fallback { display: grid; place-items: center; min-height: 520px; padding: 30px; color: var(--eds-muted); text-align: center; font-weight: 750; }
.eds-review-summary__bars small { color: var(--eds-muted); font-size: .78rem; line-height: 1.35; }
@media (max-width: 1080px) { .eds-map-fallback { min-height: 460px; } }
@media (max-width: 640px) { .eds-map-fallback { min-height: 380px; } }


/* --------------------------------------------------------------------------
   Version 1.5: larger header identity, full-photo student carousel and
   progressive complete review library
   -------------------------------------------------------------------------- */

/* Larger, clearer header logo. */
.eds-header__inner {
  min-height: 112px;
  grid-template-columns: minmax(280px, auto) minmax(0, 1fr) auto;
}
.eds-brand { gap: 15px; }
.eds-brand img,
.eds-brand__logo--mark {
  width: 88px !important;
  height: 88px !important;
  max-width: 88px !important;
  max-height: 88px !important;
  flex: 0 0 88px;
  object-fit: contain;
}
.eds-brand__text {
  display: grid;
  max-width: 205px;
  white-space: normal;
}
.eds-brand__text strong {
  font-size: 1.22rem;
  line-height: 1.02;
}
.eds-brand__text small {
  margin-top: 4px;
  color: var(--eds-cyan-dark);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
}

/* The carousel keeps each complete student photo visible. A blurred copy fills
   the surrounding widescreen area without cropping the original image. */
.eds-hero,
.eds-hero__content {
  min-height: 780px;
}
.eds-hero__slides,
.eds-hero__slide {
  position: absolute;
  inset: 0;
}
.eds-hero__slide {
  overflow: hidden;
  opacity: 0;
  background: #071c26;
  transform: none;
  transition: opacity .75s ease;
}
.eds-hero__slide.is-active { opacity: 1; }
.eds-hero__slide-bg {
  position: absolute;
  inset: -32px;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(20px) saturate(.92);
  opacity: .63;
  transform: scale(1.08);
}
.eds-hero__slide > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 22px 0;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.02) contrast(1.01);
}
.eds-hero__slide::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,23,32,.93) 0%, rgba(5,23,32,.79) 30%, rgba(5,23,32,.42) 58%, rgba(5,23,32,.14) 100%),
    linear-gradient(0deg, rgba(5,23,32,.22), rgba(5,23,32,.04));
}
.eds-hero__content {
  z-index: 4;
  max-width: var(--eds-container) !important;
  align-content: center;
  padding: 118px 0 142px;
}
.eds-hero__panel {
  width: min(720px, 100%);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(5,23,32,.58);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(8px);
}
.eds-hero__panel .eds-actions { margin-top: 24px; }
.eds-hero__arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(5,23,32,.52);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.eds-hero__arrow:hover,
.eds-hero__arrow:focus-visible {
  background: var(--eds-cyan);
  transform: translateY(-50%) scale(1.05);
}
.eds-hero__arrow--prev { left: 24px; }
.eds-hero__arrow--next { right: 24px; }
.eds-hero__dots { z-index: 7; bottom: 34px; }

/* Complete Google review library. */
.eds-review-card[hidden] { display: none !important; }
.eds-review-card { min-height: 100%; }
.eds-review-card__identity { min-width: 0; flex: 1; }
.eds-review-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eds-cyan-dark), var(--eds-cyan));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}
.eds-review-card__top .eds-google-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  font-size: .9rem;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.88);
}
.eds-review__meta {
  color: var(--eds-muted);
  font-size: .82rem;
  line-height: 1.35;
}
.eds-review-card blockquote { flex: 1; }
.eds-review-card__source {
  align-self: flex-start;
  margin-top: 18px;
  color: var(--eds-cyan-dark);
  font-size: .86rem;
  font-weight: 850;
}
.eds-review-card__source:hover { text-decoration: underline; }

@media (max-width: 1180px) {
  .eds-header__inner {
    min-height: 96px;
    grid-template-columns: minmax(240px, auto) minmax(0, 1fr) auto;
    gap: 16px;
  }
  .eds-brand img,
  .eds-brand__logo--mark {
    width: 74px !important;
    height: 74px !important;
    max-width: 74px !important;
    max-height: 74px !important;
    flex-basis: 74px;
  }
  .eds-brand__text strong { font-size: 1.08rem; }
  .eds-brand__text small { font-size: .79rem; }
  .eds-nav a { padding-inline: 7px; font-size: .86rem; }
}
@media (max-width: 980px) {
  .eds-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .eds-header__cta { display: none; }
  .eds-hero,
  .eds-hero__content { min-height: 700px; }
  .eds-hero__content { padding: 92px 0 126px; }
  .eds-hero__arrow--prev { left: 12px; }
  .eds-hero__arrow--next { right: 12px; }
}
@media (max-width: 782px) {
  .eds-header__inner { min-height: 88px; }
  .eds-brand img,
  .eds-brand__logo--mark {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    flex-basis: 64px;
  }
  .eds-brand__text strong { font-size: 1rem; }
  .eds-brand__text small { font-size: .72rem; }
  .eds-hero,
  .eds-hero__content { min-height: 650px; }
  .eds-hero__slide > img { padding: 0; }
  .eds-hero__panel { width: min(620px, calc(100% - 24px)); }
  .eds-hero__arrow { width: 46px; height: 46px; font-size: 1.7rem; }
}
@media (max-width: 640px) {
  .eds-brand { gap: 10px; }
  .eds-brand img,
  .eds-brand__logo--mark {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    flex-basis: 58px;
  }
  .eds-brand__text { max-width: 150px; }
  .eds-brand__text strong { font-size: .92rem; }
  .eds-brand__text small { font-size: .66rem; }
  .eds-hero,
  .eds-hero__content { min-height: 690px; }
  .eds-hero__content { padding: 72px 0 120px; }
  .eds-hero__panel {
    width: 100%;
    padding: 26px 22px;
    border-radius: 22px;
    background: rgba(5,23,32,.72);
  }
  body.eds-theme .eds-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.5rem) !important;
  }
  .eds-hero__arrow {
    top: auto;
    bottom: 24px;
    width: 42px;
    height: 42px;
    transform: none;
  }
  .eds-hero__arrow:hover,
  .eds-hero__arrow:focus-visible { transform: scale(1.05); }
  .eds-hero__arrow--prev { left: 18px; }
  .eds-hero__arrow--next { right: 18px; }
  .eds-hero__dots { bottom: 36px; }
}


/* Preserve the aspect ratio of an uploaded full-width custom logo. */
.eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
  width: auto !important;
  height: auto !important;
  max-width: 330px !important;
  max-height: 88px !important;
  flex: 0 1 auto;
  object-fit: contain;
}
@media (max-width: 1180px) {
  .eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
    max-width: 270px !important;
    max-height: 74px !important;
  }
}
@media (max-width: 782px) {
  .eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
    max-width: 235px !important;
    max-height: 64px !important;
  }
}
@media (max-width: 640px) {
  .eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
    max-width: 190px !important;
    max-height: 58px !important;
  }
}

/* ================================================================
   WooCommerce store and unclipped checkout — v2.0
   ================================================================ */
.eds-header__actions { display:flex; align-items:center; justify-content:flex-end; gap:10px; min-width:max-content; }
.eds-cart-link { position:relative; display:inline-flex; align-items:center; gap:7px; min-height:44px; padding:8px 11px; border:1px solid rgba(0,106,149,.18); border-radius:999px; background:#fff; color:var(--eds-ink); font-weight:900; line-height:1; white-space:nowrap; }
.eds-cart-link:visited { color:var(--eds-ink); }
.eds-cart-link:hover,.eds-cart-link:focus-visible { border-color:var(--eds-cyan); color:var(--eds-ink); box-shadow:0 10px 26px rgba(0,106,149,.13); }
.eds-cart-count { display:inline-grid; place-items:center; min-width:23px; height:23px; padding:0 6px; border-radius:999px; background:var(--eds-yellow); color:var(--eds-ink); font-size:.73rem; font-weight:950; }

.eds-store-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; align-items:start; }
.eds-store-card { position:relative; display:flex; flex-direction:column; min-width:0; padding:clamp(24px,3vw,36px); border:1px solid var(--eds-border); border-radius:26px; background:#fff; box-shadow:0 18px 48px rgba(16,39,51,.08); }
.eds-store-card--featured { border:2px solid var(--eds-cyan); }
.eds-store-card--custom { border-top:7px solid var(--eds-yellow); }
.eds-store-card__head { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; }
.eds-store-card__head h2 { margin-bottom:.25em; font-size:clamp(1.65rem,3vw,2.35rem); }
.eds-store-card__eyebrow { display:block; margin-bottom:5px; color:var(--eds-cyan-dark); font-size:.78rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.eds-store-card__price { flex:0 0 auto; color:var(--eds-cyan-dark); font-size:clamp(1.25rem,2.2vw,1.85rem); font-weight:950; text-align:right; white-space:nowrap; }
.eds-store-card__price small { display:block; color:var(--eds-muted); font-size:.68rem; font-weight:800; }
.eds-store-card__notice { margin-top:auto; padding:15px 17px; border:1px solid #f1d48b; border-radius:14px; background:#fff8df; color:#664d03; font-weight:800; }
.eds-purchase-form { display:grid; gap:15px; margin-top:auto; padding-top:22px; border-top:1px solid var(--eds-border); }
.eds-purchase-form label { display:grid; gap:7px; color:var(--eds-ink); font-size:.91rem; font-weight:850; }
.eds-purchase-form input,.eds-purchase-form select,.eds-purchase-form textarea { width:100%; min-width:0; min-height:50px; padding:11px 13px; border:1px solid rgba(8,47,64,.18); border-radius:12px; background:#fff; color:var(--eds-ink); }
.eds-purchase-form textarea { min-height:96px; resize:vertical; }
.eds-form-row { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.eds-road-test-fields { display:grid; gap:14px; padding:16px; border:1px dashed rgba(0,106,149,.28); border-radius:16px; background:var(--eds-soft); }
.eds-road-test-fields[hidden] { display:none !important; }
.eds-plan-summary { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; padding:15px; border-radius:16px; background:var(--eds-ink); color:#fff; }
.eds-plan-summary div { min-width:0; }
.eds-plan-summary span { display:block; margin-bottom:5px; color:rgba(255,255,255,.7); font-size:.74rem; font-weight:800; }
.eds-plan-summary strong { display:block; color:var(--eds-yellow); line-height:1.25; }

.eds-commerce-main,.eds-checkout-page,.eds-cart-page,.eds-checkout-section,.eds-commerce-shell--checkout,body.woocommerce-checkout,body.woocommerce-cart { height:auto !important; min-height:0 !important; overflow:visible !important; }
.eds-commerce-main { background:var(--eds-soft); }
.eds-commerce-page-head { padding:clamp(40px,6vw,72px) 0 clamp(26px,4vw,44px); background:linear-gradient(135deg,var(--eds-ink),#0b4152); color:#fff; }
.eds-commerce-page-head h1 { color:#fff !important; margin:8px 0 10px; }
.eds-commerce-page-head p { max-width:800px; margin:0; color:rgba(255,255,255,.84); }
.eds-checkout-section { padding:clamp(26px,4vw,58px) 0 clamp(70px,8vw,120px); }
.eds-commerce-shell { width:min(calc(100% - 32px),1400px) !important; max-width:1400px !important; margin:0 auto !important; padding:clamp(20px,3.5vw,48px); border:1px solid rgba(8,47,64,.09); border-radius:28px; background:#fff; box-shadow:0 22px 70px rgba(8,47,64,.08); overflow:visible !important; }
.eds-commerce-shell .woocommerce,.eds-commerce-shell .entry-content,.eds-commerce-shell .wp-block-woocommerce-checkout,.eds-commerce-shell .wp-block-woocommerce-cart,.eds-commerce-shell form.checkout { width:100% !important; max-width:none !important; min-width:0 !important; height:auto !important; overflow:visible !important; }
body.woocommerce-page .woocommerce-breadcrumb { margin:0 0 20px; color:var(--eds-muted); }
body.woocommerce-page .price { color:var(--eds-cyan-dark) !important; font-weight:950 !important; }
body.woocommerce-page a.button,body.woocommerce-page button.button,body.woocommerce-page input.button,body.woocommerce-page #place_order,body.eds-commerce-page .wc-block-components-button { min-height:48px; border:0 !important; border-radius:999px !important; background:var(--eds-cyan-dark) !important; color:#fff !important; font-weight:950 !important; }
body.woocommerce-page .checkout-button,body.woocommerce-page #place_order,body.eds-commerce-page .wc-block-components-checkout-place-order-button { background:var(--eds-yellow) !important; color:var(--eds-ink) !important; }
body.woocommerce-page form .form-row input.input-text,body.woocommerce-page form .form-row textarea,body.woocommerce-page form .form-row select,body.woocommerce-page .select2-container .select2-selection--single { min-height:50px; border:1px solid rgba(8,47,64,.18) !important; border-radius:12px !important; background:#fff !important; color:var(--eds-ink) !important; }
body.woocommerce-checkout form.checkout.woocommerce-checkout { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr); gap:30px; align-items:start; }
body.woocommerce-checkout #customer_details { grid-column:1; width:100%; float:none; }
body.woocommerce-checkout #order_review_heading,body.woocommerce-checkout #order_review { grid-column:2; width:100%; float:none; }
body.woocommerce-checkout #order_review { position:relative !important; top:auto !important; }
body.eds-commerce-page .wc-block-checkout__main,body.eds-commerce-page .wc-block-checkout__sidebar { min-width:0 !important; max-width:none !important; }
body.eds-commerce-page .wc-block-checkout__sidebar { position:relative !important; top:auto !important; align-self:start; }
body.eds-commerce-page .wc-block-components-sidebar,body.eds-commerce-page .wc-block-components-order-summary,body.eds-commerce-page .wc-block-components-totals-wrapper { overflow:visible !important; }
body.woocommerce-page table.shop_table { overflow:hidden; border-color:rgba(8,47,64,.12); border-radius:18px; }
body.woocommerce-page .cart_totals,body.woocommerce-page .woocommerce-checkout-review-order,body.woocommerce-page .woocommerce-form,body.woocommerce-page .woocommerce-MyAccount-navigation,body.woocommerce-page .woocommerce-MyAccount-content { padding:22px; border:1px solid rgba(8,47,64,.10); border-radius:20px; background:#fff; }

@media (max-width:1100px) {
  .eds-store-card__head { display:block; }
  .eds-store-card__price { margin:8px 0 0; text-align:left; }
  .eds-plan-summary { grid-template-columns:1fr; }
  .eds-cart-link__label { display:none; }
}
@media (max-width:900px) {
  .eds-store-grid { grid-template-columns:1fr; }
  body.woocommerce-checkout form.checkout.woocommerce-checkout { grid-template-columns:1fr; }
  body.woocommerce-checkout #customer_details,body.woocommerce-checkout #order_review_heading,body.woocommerce-checkout #order_review { grid-column:1; }
  .eds-header__actions { width:100%; min-width:0; justify-content:stretch; }
  .eds-header__actions .eds-header__cta { flex:1; }
  .eds-cart-link__label { display:inline; }
}
@media (max-width:640px) {
  .eds-form-row { grid-template-columns:1fr; }
  .eds-commerce-shell { width:min(calc(100% - 20px),1400px) !important; padding:16px; border-radius:18px; }
  .eds-store-card { padding:22px; }
}


/* ================================================================
   Product catalogue and checkout stability — v2.1
   ================================================================ */
.eds-store-grid--single { grid-template-columns:minmax(0,1fr); }
.eds-store-grid--three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.eds-store-grid--single .eds-store-card { max-width:none; }
.eds-store-card .eds-button { width:fit-content; }
.eds-store-card .eds-link-arrow { align-self:start; }

body.woocommerce-checkout,
body.woocommerce-cart,
body.woocommerce-account,
body.woocommerce-checkout #page,
body.woocommerce-cart #page,
body.woocommerce-account #page,
body.woocommerce-checkout .site,
body.woocommerce-cart .site,
body.woocommerce-account .site,
body.woocommerce-checkout .site-content,
body.woocommerce-cart .site-content,
body.woocommerce-account .site-content,
body.woocommerce-checkout main,
body.woocommerce-cart main,
body.woocommerce-account main {
  height:auto !important;
  min-height:100vh !important;
  max-height:none !important;
  overflow:visible !important;
}
body.woocommerce-checkout .eds-checkout-section,
body.woocommerce-cart .eds-checkout-section,
body.woocommerce-account .eds-checkout-section {
  min-height:clamp(520px,70vh,900px) !important;
  overflow:visible !important;
}
body.woocommerce-checkout .eds-commerce-shell,
body.woocommerce-cart .eds-commerce-shell,
body.woocommerce-account .eds-commerce-shell,
body.woocommerce-checkout .woocommerce,
body.woocommerce-cart .woocommerce,
body.woocommerce-account .woocommerce,
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wc-block-cart {
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  overflow:visible !important;
}
body.woocommerce-checkout footer,
body.woocommerce-cart footer,
body.woocommerce-account footer { position:relative !important; clear:both !important; }

@media (max-width:1180px) {
  .eds-store-grid--three { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:760px) {
  .eds-store-grid--three { grid-template-columns:1fr; }
  .eds-store-card .eds-button { width:100%; }
}

/* Product pricing and account/newsletter signup — v2.3 */
.eds-account-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border:1px solid rgba(8,47,64,.16);
  border-radius:999px;
  color:var(--eds-cyan-dark);
  background:#fff;
  font-size:.86rem;
  font-weight:900;
  white-space:nowrap;
}
.eds-account-link:hover,.eds-account-link:focus-visible { border-color:var(--eds-cyan); color:var(--eds-cyan-dark); background:rgba(0,143,154,.07); }
.eds-location-pricing-table { margin-top:30px; padding:clamp(22px,3vw,32px); border:1px solid var(--eds-border); border-radius:24px; background:#fff; box-shadow:0 16px 42px rgba(16,39,51,.07); }
.eds-location-pricing-table h3 { margin:0 0 18px; }
.eds-location-pricing-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px 24px; }
.eds-location-pricing-grid > div { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:12px 0; border-bottom:1px solid rgba(8,47,64,.1); }
.eds-location-pricing-grid strong { color:var(--eds-cyan-dark); white-space:nowrap; }
.eds-plan-summary--compact { margin:2px 0 4px; }
.eds-driver-ed-form .eds-plan-summary { margin-top:4px; }

.eds-signup-page__grid { display:grid; grid-template-columns:minmax(0,.85fr) minmax(420px,1.15fr); gap:clamp(32px,6vw,76px); align-items:start; }
.eds-signup-benefits { padding-top:14px; }
.eds-signup-panel { padding:clamp(24px,4vw,42px); border:1px solid var(--eds-border); border-radius:26px; background:#fff; box-shadow:0 22px 60px rgba(8,47,64,.1); }
.eds-signup-panel h2 { margin-top:0; }
.eds-signup-form { display:grid; gap:16px; }
.eds-signup-form label:not(.eds-choice):not(.eds-honeypot) { display:grid; gap:7px; color:var(--eds-ink); font-weight:850; }
.eds-signup-form input[type="text"],.eds-signup-form input[type="email"],.eds-signup-form input[type="tel"],.eds-signup-form input[type="password"],.eds-signup-form select { width:100%; min-height:50px; padding:11px 14px; border:1px solid rgba(8,47,64,.18); border-radius:12px; background:#fff; color:var(--eds-ink); font:inherit; }
.eds-signup-form small { color:var(--eds-muted); font-size:.79rem; font-weight:600; }
.eds-choice { display:flex; align-items:flex-start; gap:11px; padding:13px 14px; border:1px solid rgba(8,47,64,.12); border-radius:14px; background:rgba(0,143,154,.035); cursor:pointer; }
.eds-choice input { flex:0 0 auto; margin-top:4px; }
.eds-choice span { display:grid; gap:2px; }
.eds-choice--terms { padding:0; border:0; background:transparent; font-size:.83rem; cursor:default; }
.eds-signup-login { margin:0; color:var(--eds-muted); font-size:.9rem; }
.eds-signup-notice { margin-bottom:18px; padding:14px 16px; border-radius:14px; font-weight:800; }
.eds-signup-notice--success { border:1px solid #8ad3a4; background:#eaf9ef; color:#155b2f; }
.eds-signup-notice--error { border:1px solid #e5a4a4; background:#fff0f0; color:#8a2020; }
.eds-honeypot { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }

body.eds-modal-open { overflow:hidden; }
.eds-signup-modal { position:fixed; inset:0; z-index:999999; display:grid; place-items:center; padding:20px; opacity:0; transition:opacity .18s ease; }
.eds-signup-modal.is-open { opacity:1; }
.eds-signup-modal[hidden] { display:none !important; }
.eds-signup-modal__backdrop { position:absolute; inset:0; background:rgba(3,24,34,.68); backdrop-filter:blur(5px); }
.eds-signup-modal__dialog { position:relative; z-index:1; width:min(760px,100%); max-height:min(90vh,820px); overflow:auto; padding:clamp(24px,4vw,42px); border:1px solid rgba(255,255,255,.35); border-radius:28px; background:#fff; box-shadow:0 28px 90px rgba(0,0,0,.28); transform:translateY(14px) scale(.985); transition:transform .18s ease; }
.eds-signup-modal.is-open .eds-signup-modal__dialog { transform:translateY(0) scale(1); }
.eds-signup-modal__dialog h2 { margin:.18em 42px .35em 0; font-size:clamp(1.65rem,4vw,2.65rem); }
.eds-signup-modal__dialog > p { margin-bottom:20px; color:var(--eds-muted); }
.eds-signup-modal__close { position:absolute; top:14px; right:16px; display:grid; place-items:center; width:42px; height:42px; border:0; border-radius:50%; background:rgba(8,47,64,.07); color:var(--eds-ink); font-size:2rem; line-height:1; cursor:pointer; }
.eds-signup-modal__close:hover,.eds-signup-modal__close:focus-visible { background:var(--eds-yellow); }
.eds-signup-modal__later { display:block; margin:15px auto 0; padding:6px 10px; border:0; background:transparent; color:var(--eds-muted); font:inherit; font-weight:800; text-decoration:underline; cursor:pointer; }

@media (max-width:1100px) {
  .eds-account-link { display:none; }
}
@media (max-width:820px) {
  .eds-signup-page__grid { grid-template-columns:1fr; }
  .eds-location-pricing-grid { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .eds-signup-modal { padding:10px; align-items:end; }
  .eds-signup-modal__dialog { max-height:92vh; padding:24px 18px; border-radius:24px 24px 12px 12px; }
  .eds-signup-form .eds-form-row { grid-template-columns:1fr; }
  .eds-location-pricing-grid > div { align-items:flex-start; }
}
@media (prefers-reduced-motion:reduce) {
  .eds-signup-modal,.eds-signup-modal__dialog { transition:none; }
}


/* ========================================================================== 
   Mobile-first header and homepage hero refinement — v2.4
   ========================================================================== */
.eds-topbar__item {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-width:0;
}
.eds-topbar__item-icon {
  display:inline-grid;
  place-items:center;
  width:21px;
  height:21px;
  flex:0 0 21px;
  border-radius:50%;
  background:rgba(255,255,255,.11);
  color:var(--eds-yellow);
  font-size:.72rem;
  line-height:1;
}
.eds-mobile-packages-link {
  display:none;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:9px 15px;
  border:1px solid #e6c92e;
  border-radius:999px;
  background:var(--eds-yellow);
  color:var(--eds-ink);
  font-weight:950;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 8px 20px rgba(255,216,31,.18);
}
.eds-mobile-packages-link:visited { color:var(--eds-ink); }
.eds-mobile-packages-link:hover,
.eds-mobile-packages-link:focus-visible {
  color:var(--eds-ink);
  background:#ffe567;
  transform:translateY(-1px);
}
.eds-mobile-packages-link__icon { font-size:1.1rem; }

@media (max-width: 900px) {
  .eds-site-header { backdrop-filter:blur(18px); }
  .eds-header__inner {
    grid-template-columns:minmax(0,1fr) auto;
    gap:9px 12px;
    min-height:0;
    padding-top:10px;
    padding-bottom:10px;
  }
  .eds-brand { grid-column:1; grid-row:1; }
  .eds-menu-toggle { grid-column:2; grid-row:1; }
  .eds-header__actions {
    grid-column:1 / -1;
    grid-row:2;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:8px;
    width:100%;
    padding-top:9px;
    border-top:1px solid rgba(8,47,64,.08);
  }
  .eds-mobile-packages-link { display:flex; width:100%; }
  .eds-cart-link {
    width:100%;
    min-height:46px;
    justify-content:center;
    padding:9px 14px;
    border-color:rgba(0,106,149,.24);
    box-shadow:0 8px 20px rgba(8,47,64,.06);
  }
  .eds-cart-link__label { display:inline !important; }
  .eds-account-link,
  .eds-header__cta { display:none !important; }
  .eds-nav,
  .admin-bar .eds-nav {
    position:absolute;
    top:calc(100% + 8px);
    right:14px;
    left:14px;
    max-height:calc(100vh - 190px);
  }
}

@media (max-width: 640px) {
  .eds-topbar {
    padding:7px 0;
    font-size:.76rem;
  }
  .eds-topbar__inner {
    padding:0;
    width:calc(100% - 24px) !important;
  }
  .eds-topbar__details {
    display:grid;
    grid-template-columns:max-content minmax(0,1fr);
    gap:6px 8px;
    width:100%;
  }
  .eds-topbar__item {
    min-height:30px;
    padding:4px 7px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:9px;
    background:rgba(255,255,255,.055);
  }
  .eds-topbar__item--email {
    overflow:hidden;
  }
  .eds-topbar__item--email span:last-child {
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .eds-topbar__item--address {
    grid-column:1 / -1;
    color:rgba(255,255,255,.88);
  }
  .eds-topbar__item-icon {
    width:19px;
    height:19px;
    flex-basis:19px;
    font-size:.64rem;
  }
  .eds-header__inner { padding-top:9px; padding-bottom:9px; }
  .eds-brand img,
  .eds-brand__logo--mark {
    width:50px !important;
    height:50px !important;
    max-width:50px !important;
    max-height:50px !important;
    flex-basis:50px;
  }
  .eds-brand__text { max-width:148px; }
  .eds-brand__text strong { font-size:.9rem; }
  .eds-brand__text small { margin-top:2px; font-size:.63rem; }
  .eds-menu-toggle { width:44px; height:44px; }
  .eds-header__actions { gap:7px; padding-top:8px; }
  .eds-mobile-packages-link,
  .eds-cart-link {
    min-height:47px;
    border-radius:14px;
    font-size:.91rem;
  }

  /* Put the slideshow in its own clearly visible media area, followed by the
     hero copy. This avoids covering the student photos with a large dark box. */
  .eds-hero {
    --eds-mobile-hero-media:clamp(285px,92vw,385px);
    min-height:0 !important;
    overflow:hidden;
    background:var(--eds-ink);
  }
  .eds-hero__slides {
    position:relative;
    inset:auto;
    width:100%;
    height:var(--eds-mobile-hero-media);
  }
  .eds-hero__slide { inset:0; }
  .eds-hero__slide-bg {
    inset:-18px;
    filter:blur(14px) saturate(.95);
    opacity:.45;
  }
  .eds-hero__slide > img {
    inset:0;
    width:100%;
    height:100%;
    padding:0;
    object-fit:cover;
  }
  .eds-hero__slide::after {
    background:linear-gradient(180deg,rgba(5,23,32,.08) 45%,rgba(5,23,32,.72) 100%);
  }
  .eds-hero__content {
    min-height:0 !important;
    display:block;
    padding:28px 0 76px;
  }
  .eds-hero__panel {
    width:100%;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    backdrop-filter:none;
  }
  .eds-hero__eyebrow {
    margin-bottom:14px;
    padding:7px 11px;
    border-color:rgba(255,255,255,.2);
    background:rgba(255,255,255,.07);
    font-size:.75rem !important;
    line-height:1.35;
  }
  body.eds-theme .eds-hero h1 {
    margin-bottom:14px !important;
    font-size:clamp(2.2rem,11vw,3.15rem) !important;
    line-height:.98 !important;
  }
  .eds-hero__text {
    margin-bottom:0;
    font-size:.98rem;
    line-height:1.55;
  }
  .eds-hero__panel .eds-actions {
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
    gap:9px;
    margin-top:21px;
  }
  .eds-hero__panel .eds-button {
    width:100%;
    min-height:51px;
    padding:13px 14px;
    justify-content:center;
    font-size:.91rem;
    box-shadow:0 10px 24px rgba(0,0,0,.18);
  }
  .eds-hero__panel .eds-button--yellow {
    border:2px solid rgba(255,255,255,.16);
    font-size:.96rem;
  }
  .eds-hero__arrow {
    top:clamp(142px,46vw,192px);
    bottom:auto;
    width:40px;
    height:40px;
    transform:translateY(-50%);
    background:rgba(5,23,32,.58);
  }
  .eds-hero__arrow:hover,
  .eds-hero__arrow:focus-visible { transform:translateY(-50%) scale(1.05); }
  .eds-hero__arrow--prev { left:10px; }
  .eds-hero__arrow--next { right:10px; }
  .eds-hero__dots {
    top:calc(var(--eds-mobile-hero-media) - 28px);
    bottom:auto;
  }
  .eds-trustbar { margin-top:0; }
  .eds-trustbar__inner {
    grid-template-columns:repeat(2,minmax(0,1fr));
    border-radius:0 0 18px 18px;
  }
  .eds-trust-item { padding:17px 10px; }
  .eds-trust-item strong { font-size:.92rem; }
  .eds-trust-item span { font-size:.78rem; }
}

@media (max-width: 360px) {
  .eds-topbar__details { grid-template-columns:1fr; }
  .eds-topbar__item--address { grid-column:1; }
  .eds-brand__text { max-width:132px; }
  .eds-header__actions { grid-template-columns:1fr 1fr; }
  .eds-mobile-packages-link,
  .eds-cart-link { padding-inline:9px; font-size:.84rem; }
  .eds-hero__panel .eds-actions { grid-template-columns:1fr; }
  .eds-trustbar__inner { grid-template-columns:1fr; }
}

/* ========================================================================== 
   Organized account, store and content experience — v2.5
   ========================================================================== */
.eds-account-link__icon { font-size:1rem; line-height:1; }
.eds-account-link__mobile-label { display:none; }

.eds-account-page-head { padding-block:clamp(38px,5vw,62px); }
.eds-account-page-head__inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
}
.eds-account-page-head__inner > div:first-child { max-width:820px; }
.eds-account-page-head h1 { margin-bottom:10px !important; font-size:clamp(2.35rem,5vw,4.4rem); }
.eds-account-identity {
  display:flex;
  align-items:center;
  gap:13px;
  min-width:260px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  background:rgba(255,255,255,.08);
  box-shadow:0 16px 40px rgba(0,0,0,.12);
}
.eds-account-identity__avatar {
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  flex:0 0 50px;
  border-radius:16px;
  background:var(--eds-yellow);
  color:var(--eds-ink);
  font-size:1rem;
  font-weight:950;
  letter-spacing:.04em;
}
.eds-account-identity span:last-child { min-width:0; display:grid; }
.eds-account-identity strong { color:#fff; line-height:1.25; }
.eds-account-identity small { overflow:hidden; color:rgba(255,255,255,.72); text-overflow:ellipsis; white-space:nowrap; }

.eds-account-quickbar {
  position:relative;
  z-index:4;
  margin-top:-1px;
  border-bottom:1px solid rgba(8,47,64,.09);
  background:#fff;
  box-shadow:0 12px 30px rgba(8,47,64,.055);
}
.eds-account-quickbar__inner { display:flex; align-items:center; gap:7px; padding-block:11px; }
.eds-account-quickbar a {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:42px;
  padding:8px 13px;
  border-radius:12px;
  color:var(--eds-ink);
  font-size:.88rem;
  font-weight:900;
}
.eds-account-quickbar a:hover,.eds-account-quickbar a:focus-visible { background:var(--eds-soft); color:var(--eds-cyan-dark); }
.eds-account-quickbar a:last-child { margin-left:auto; background:var(--eds-yellow); }

.eds-account-section { padding-top:clamp(32px,4vw,56px); }
.eds-account-shell { width:min(calc(100% - 32px),1320px) !important; padding:clamp(22px,3vw,38px); }
.eds-account-shell--logged-in > .woocommerce {
  display:grid;
  grid-template-columns:minmax(220px,270px) minmax(0,1fr);
  gap:clamp(22px,3vw,36px);
  align-items:start;
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  position:sticky;
  top:132px;
  padding:12px !important;
  border:1px solid rgba(8,47,64,.1) !important;
  border-radius:22px !important;
  background:#fff !important;
  box-shadow:0 15px 42px rgba(8,47,64,.07);
}
.admin-bar.woocommerce-account .woocommerce-MyAccount-navigation { top:164px; }
body.woocommerce-account .woocommerce-MyAccount-navigation ul { display:grid; gap:5px; margin:0; padding:0; list-style:none; }
body.woocommerce-account .woocommerce-MyAccount-navigation li { margin:0; }
body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display:flex;
  align-items:center;
  gap:11px;
  min-height:46px;
  padding:10px 12px;
  border-radius:13px;
  color:var(--eds-ink);
  font-size:.91rem;
  font-weight:850;
  line-height:1.3;
  transition:background .18s ease,color .18s ease,transform .18s ease;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:9px;
  background:rgba(0,143,154,.09);
  color:var(--eds-cyan-dark);
  font-size:.82rem;
  font-weight:950;
}
body.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a::before { content:"⌂"; }
body.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::before { content:"▣"; }
body.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a::before { content:"⇩"; }
body.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::before { content:"⌖"; }
body.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods a::before { content:"$"; }
body.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::before { content:"◎"; }
body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::before { content:"↗"; }
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible,
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background:var(--eds-ink);
  color:#fff;
  transform:translateX(2px);
}
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::before,
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover::before { background:var(--eds-yellow); color:var(--eds-ink); }
body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout { margin-top:6px; padding-top:8px; border-top:1px solid rgba(8,47,64,.1); }

body.woocommerce-account .woocommerce-MyAccount-content {
  min-width:0;
  padding:clamp(22px,3vw,36px) !important;
  border:1px solid rgba(8,47,64,.1) !important;
  border-radius:24px !important;
  background:#fff !important;
  box-shadow:0 18px 52px rgba(8,47,64,.075);
}
body.woocommerce-account .woocommerce-MyAccount-content > :first-child { margin-top:0; }
body.woocommerce-account .woocommerce-MyAccount-content > :last-child { margin-bottom:0; }
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 { margin-top:0; color:var(--eds-ink); }

.eds-account-dashboard__welcome { max-width:760px; margin-bottom:26px; }
.eds-account-dashboard__welcome h2 { margin-bottom:9px; font-size:clamp(1.65rem,3vw,2.45rem); }
.eds-account-dashboard__welcome p { color:var(--eds-muted); }
.eds-account-action-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:13px; }
.eds-account-action-card {
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:13px;
  min-width:0;
  padding:17px;
  border:1px solid rgba(8,47,64,.11);
  border-radius:17px;
  background:linear-gradient(180deg,#fff,var(--eds-soft));
  color:var(--eds-ink);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.eds-account-action-card:hover,.eds-account-action-card:focus-visible { transform:translateY(-2px); border-color:var(--eds-cyan); color:var(--eds-ink); box-shadow:0 13px 30px rgba(8,47,64,.09); }
.eds-account-action-card--featured { border-color:#e9cf3d; background:linear-gradient(135deg,#fffce9,#fff7b6); }
.eds-account-action-card__icon { display:grid; place-items:center; width:42px; height:42px; border-radius:13px; background:var(--eds-ink); color:var(--eds-yellow); font-weight:950; }
.eds-account-action-card span:nth-child(2) { display:grid; min-width:0; }
.eds-account-action-card strong { color:var(--eds-ink); line-height:1.25; }
.eds-account-action-card small { margin-top:3px; color:var(--eds-muted); line-height:1.4; }
.eds-account-action-card__arrow { color:var(--eds-cyan-dark); font-size:1.25rem; font-weight:950; }
.eds-account-help-strip {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:24px;
  padding:18px 20px;
  border-radius:18px;
  background:var(--eds-soft);
}
.eds-account-help-strip > div { display:grid; }
.eds-account-help-strip span { color:var(--eds-muted); font-size:.9rem; }

.eds-account-login-intro {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.75fr);
  gap:30px;
  align-items:center;
  margin-bottom:28px;
  padding:clamp(20px,3vw,30px);
  border:1px solid rgba(0,143,154,.16);
  border-radius:22px;
  background:linear-gradient(135deg,rgba(0,143,154,.07),rgba(254,232,91,.14));
}
.eds-account-login-intro h2 { margin-bottom:0; font-size:clamp(1.55rem,3vw,2.3rem); }
.eds-account-benefits { display:grid; gap:9px; margin:0; padding:0; list-style:none; }
.eds-account-benefits li { position:relative; padding-left:28px; color:var(--eds-ink); font-weight:750; }
.eds-account-benefits li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--eds-cyan-dark); font-weight:950; }
.eds-account-shell--logged-out > .woocommerce { display:block; }
.eds-account-shell--logged-out .woocommerce .u-columns { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.eds-account-shell--logged-out .woocommerce .u-column1,
.eds-account-shell--logged-out .woocommerce .u-column2 { width:auto !important; float:none !important; }
body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register,
body.woocommerce-account .woocommerce-ResetPassword,
body.woocommerce-account form.edit-account,
body.woocommerce-account form.woocommerce-address-fields {
  margin:0 !important;
  padding:clamp(20px,3vw,30px) !important;
  border:1px solid rgba(8,47,64,.1) !important;
  border-radius:20px !important;
  background:#fff;
  box-shadow:0 12px 34px rgba(8,47,64,.055);
}
body.woocommerce-account .woocommerce-form-row,
body.woocommerce-account .form-row { margin-bottom:15px; }
body.woocommerce-account label { color:var(--eds-ink); font-weight:850; }
body.woocommerce-account .password-input { width:100%; }
body.woocommerce-account .show-password-input { top:50% !important; transform:translateY(-50%); }
body.woocommerce-account .woocommerce-LostPassword { margin-bottom:0; }
body.woocommerce-account .woocommerce-form__label-for-checkbox { display:inline-flex; align-items:center; gap:8px; }

body.woocommerce-account .woocommerce-Addresses,
body.woocommerce-account .u-columns.woocommerce-Addresses { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
body.woocommerce-account .woocommerce-Address { width:auto !important; float:none !important; padding:20px; border:1px solid rgba(8,47,64,.1); border-radius:18px; background:var(--eds-soft); }
body.woocommerce-account .woocommerce-Address-title { display:flex; align-items:center; justify-content:space-between; gap:14px; }
body.woocommerce-account .woocommerce-Address-title h3 { margin:0; }
body.woocommerce-account address { margin-top:14px; color:var(--eds-muted); font-style:normal; }

body.woocommerce-account table.woocommerce-orders-table,
body.woocommerce-account table.woocommerce-table--order-details { width:100%; border-collapse:separate; border-spacing:0; }
body.woocommerce-account table.shop_table th { padding:14px 15px; background:var(--eds-soft); color:var(--eds-ink); font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; }
body.woocommerce-account table.shop_table td { padding:15px; vertical-align:middle; }
body.woocommerce-account .woocommerce-orders-table__cell-order-number a { font-weight:950; }
body.woocommerce-account .woocommerce-orders-table__cell-order-actions .button { min-height:38px; padding:8px 13px; font-size:.82rem; }
body.woocommerce-account mark.order-status,
body.woocommerce-account .woocommerce-order-overview__status { padding:4px 9px; border-radius:999px; background:#eaf9ef; color:var(--eds-success); font-weight:900; }
body.woocommerce-account .woocommerce-order-overview { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; margin:0 0 24px !important; padding:0 !important; list-style:none; }
body.woocommerce-account .woocommerce-order-overview li { margin:0 !important; padding:13px !important; border:1px solid rgba(8,47,64,.1) !important; border-radius:14px; background:var(--eds-soft); }
body.woocommerce-account .woocommerce-customer-details { margin-top:26px; }

/* Cleaner shop, cart, checkout, notices, and all standard content pages. */
body.woocommerce-page .woocommerce-notices-wrapper:empty { display:none; }
body.woocommerce-page .woocommerce-message,
body.woocommerce-page .woocommerce-info,
body.woocommerce-page .woocommerce-error {
  margin:0 0 20px !important;
  padding:15px 18px 15px 52px !important;
  border:1px solid rgba(0,143,154,.2) !important;
  border-top:0 !important;
  border-radius:15px !important;
  background:#f2fbfc;
  color:var(--eds-ink);
  box-shadow:none;
}
body.woocommerce-page .woocommerce-error { border-color:rgba(180,35,24,.2) !important; background:#fff4f2; }
body.woocommerce-page .woocommerce-result-count { color:var(--eds-muted); }
body.woocommerce-page .woocommerce-ordering select { min-height:44px; padding:8px 38px 8px 12px; border:1px solid var(--eds-border); border-radius:12px; background:#fff; }
body.woocommerce-page ul.products { display:grid !important; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; margin:28px 0 !important; }
body.woocommerce-page ul.products::before,body.woocommerce-page ul.products::after { display:none !important; }
body.woocommerce-page ul.products li.product { display:flex; flex-direction:column; width:auto !important; min-width:0; margin:0 !important; padding:20px; border:1px solid var(--eds-border); border-radius:20px; background:#fff; box-shadow:0 14px 38px rgba(8,47,64,.065); }
body.woocommerce-page ul.products li.product img { border-radius:15px; aspect-ratio:4/3; object-fit:cover; background:var(--eds-soft); }
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title { flex:1; padding:.8em 0 .3em !important; color:var(--eds-ink); font-size:1.15rem !important; }
body.woocommerce-page ul.products li.product .button { width:100%; margin-top:14px; }
body.single-product .product { display:grid; grid-template-columns:minmax(0,1fr) minmax(340px,.9fr); gap:clamp(28px,5vw,70px); }
body.single-product div.product div.images,body.single-product div.product div.summary { width:auto !important; float:none !important; }
body.single-product div.product div.summary { padding:clamp(20px,3vw,34px); border:1px solid var(--eds-border); border-radius:22px; background:#fff; box-shadow:0 18px 46px rgba(8,47,64,.07); }
body.single-product .woocommerce-tabs { grid-column:1/-1; }
body.woocommerce-cart .cart-collaterals { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.55fr); gap:26px; }
body.woocommerce-cart .cart-collaterals::before,body.woocommerce-cart .cart-collaterals::after { display:none !important; }
body.woocommerce-cart .cart_totals { width:auto !important; float:none !important; }
body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout .woocommerce-additional-fields > h3,
body.woocommerce-checkout #order_review_heading { padding-bottom:12px; border-bottom:1px solid var(--eds-border); }
body.woocommerce-checkout #order_review { padding:clamp(19px,3vw,28px); border:1px solid rgba(8,47,64,.1); border-radius:21px; background:#fff; box-shadow:0 16px 44px rgba(8,47,64,.07); }
body.woocommerce-checkout #payment { border-radius:17px !important; background:var(--eds-soft) !important; }
body.woocommerce-checkout #payment ul.payment_methods { border-bottom-color:var(--eds-border) !important; }
body.woocommerce-checkout .place-order { margin-bottom:0 !important; }
body.woocommerce-checkout #place_order { width:100%; min-height:54px; }

body.eds-theme .entry-content,
body.eds-theme .eds-policy,
body.eds-theme .eds-article { font-size:1rem; }
body.eds-theme .entry-content > h2,
body.eds-theme .eds-policy > h2,
body.eds-theme .eds-article > h2 { margin-top:1.65em; }
body.eds-theme .entry-content > h3,
body.eds-theme .eds-policy > h3,
body.eds-theme .eds-article > h3 { margin-top:1.45em; }
body.eds-theme .entry-content ul:not([class]),
body.eds-theme .entry-content ol:not([class]),
body.eds-theme .eds-policy ul,
body.eds-theme .eds-policy ol { padding-left:1.3em; }
body.eds-theme .entry-content li + li,
body.eds-theme .eds-policy li + li { margin-top:.48em; }
body.eds-theme .entry-content table { width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border:1px solid var(--eds-border); border-radius:16px; }
body.eds-theme .entry-content th,body.eds-theme .entry-content td { padding:12px 14px; border-bottom:1px solid var(--eds-border); text-align:left; }
body.eds-theme .entry-content th { background:var(--eds-soft); }
body.eds-theme .eds-card { height:100%; border-color:rgba(8,47,64,.1); box-shadow:0 12px 35px rgba(8,47,64,.055); }

@media (max-width:1050px) {
  .eds-account-page-head__inner { align-items:flex-start; }
  .eds-account-shell--logged-in > .woocommerce { grid-template-columns:220px minmax(0,1fr); gap:20px; }
  .eds-account-action-grid { grid-template-columns:1fr; }
  body.woocommerce-page ul.products { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width:900px) {
  .eds-header__actions { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .eds-account-link {
    display:flex !important;
    width:100%;
    min-height:46px;
    justify-content:center;
    gap:7px;
    padding:9px 10px;
    border-radius:14px;
    font-size:.86rem;
  }
  .eds-account-link__desktop-label { display:none; }
  .eds-account-link__mobile-label { display:inline; }
  .eds-account-page-head__inner { display:grid; }
  .eds-account-identity { width:100%; min-width:0; }
  .eds-account-shell--logged-in > .woocommerce { display:block; }
  body.woocommerce-account .woocommerce-MyAccount-navigation { position:static; margin-bottom:18px; }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul { grid-template-columns:repeat(3,minmax(0,1fr)); gap:7px; }
  body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout { margin-top:0; padding-top:0; border-top:0; }
  body.woocommerce-account .woocommerce-MyAccount-navigation a { justify-content:center; min-height:72px; padding:9px 7px; text-align:center; flex-direction:column; gap:6px; font-size:.76rem; }
  body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
  body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { transform:none; }
  .eds-account-login-intro { grid-template-columns:1fr; }
  body.single-product .product { grid-template-columns:1fr; }
  body.woocommerce-cart .cart-collaterals { grid-template-columns:1fr; }
}

@media (max-width:720px) {
  .eds-account-quickbar { overflow-x:auto; scrollbar-width:none; }
  .eds-account-quickbar::-webkit-scrollbar { display:none; }
  .eds-account-quickbar__inner { width:max-content !important; min-width:100%; padding-inline:12px !important; }
  .eds-account-quickbar a { white-space:nowrap; }
  .eds-account-quickbar a:last-child { margin-left:0; }
  .eds-account-section { padding-top:24px; }
  .eds-account-shell { width:min(calc(100% - 18px),1320px) !important; padding:12px !important; border-radius:18px; }
  body.woocommerce-account .woocommerce-MyAccount-content { padding:18px !important; border-radius:17px !important; }
  body.woocommerce-account .woocommerce-Addresses,
  body.woocommerce-account .u-columns.woocommerce-Addresses,
  .eds-account-shell--logged-out .woocommerce .u-columns { grid-template-columns:1fr; }
  .eds-account-help-strip { align-items:flex-start; flex-direction:column; }
  .eds-account-help-strip .eds-button { width:100%; }
  body.woocommerce-account .woocommerce-order-overview { grid-template-columns:repeat(2,minmax(0,1fr)); }
  body.woocommerce-account table.woocommerce-orders-table thead { display:none; }
  body.woocommerce-account table.woocommerce-orders-table,
  body.woocommerce-account table.woocommerce-orders-table tbody,
  body.woocommerce-account table.woocommerce-orders-table tr,
  body.woocommerce-account table.woocommerce-orders-table td { display:block; width:100%; }
  body.woocommerce-account table.woocommerce-orders-table tr { margin-bottom:14px; padding:9px; border:1px solid var(--eds-border); border-radius:15px; background:#fff; }
  body.woocommerce-account table.woocommerce-orders-table td { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:9px 7px !important; border:0 !important; text-align:right !important; }
  body.woocommerce-account table.woocommerce-orders-table td::before { content:attr(data-title); color:var(--eds-muted); font-size:.75rem; font-weight:900; text-align:left; text-transform:uppercase; }
  body.woocommerce-account .woocommerce-orders-table__cell-order-actions { display:block !important; text-align:left !important; }
  body.woocommerce-account .woocommerce-orders-table__cell-order-actions::before { display:none; }
  body.woocommerce-account .woocommerce-orders-table__cell-order-actions .button { width:100%; margin:4px 0 0 !important; }
  body.woocommerce-page ul.products { grid-template-columns:1fr; gap:15px; }
  body.woocommerce-page .woocommerce-result-count,body.woocommerce-page .woocommerce-ordering { width:100%; float:none; }
  body.woocommerce-page .woocommerce-ordering select { width:100%; }
  body.woocommerce-cart table.shop_table_responsive tr { margin-bottom:14px; border:1px solid var(--eds-border); border-radius:14px; overflow:hidden; }
  body.woocommerce-cart .coupon { display:grid !important; gap:8px; }
  body.woocommerce-cart .coupon input,body.woocommerce-cart .coupon button { width:100% !important; }
}

@media (max-width:480px) {
  .eds-header__actions { grid-template-columns:repeat(3,minmax(0,1fr)); gap:6px; }
  .eds-mobile-packages-link,.eds-account-link,.eds-cart-link { min-height:45px; padding-inline:7px; font-size:.76rem; }
  .eds-mobile-packages-link__icon,.eds-account-link__icon,.eds-cart-link__icon { font-size:.9rem; }
  .eds-cart-count { min-width:20px; height:20px; padding-inline:5px; font-size:.67rem; }
  .eds-account-page-head h1 { font-size:2.15rem; }
  .eds-account-identity { padding:12px; }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .eds-account-action-card { grid-template-columns:auto minmax(0,1fr); }
  .eds-account-action-card__arrow { display:none; }
  body.woocommerce-account .woocommerce-order-overview { grid-template-columns:1fr; }
  body.woocommerce-account .woocommerce-form-login,
  body.woocommerce-account .woocommerce-form-register,
  body.woocommerce-account .woocommerce-ResetPassword,
  body.woocommerce-account form.edit-account,
  body.woocommerce-account form.woocommerce-address-fields { padding:17px !important; }
}

/* ================================================================
   My Account structural repair — v2.5.2
   Keeps account navigation on the left and endpoint content on the right.
   ================================================================ */
body.woocommerce-account .eds-account-section {
  overflow:visible !important;
}
body.woocommerce-account .eds-account-shell {
  width:min(calc(100% - 32px),1380px) !important;
  max-width:1380px !important;
  overflow:visible !important;
}
body.woocommerce-account .eds-account-shell--logged-in > .woocommerce,
body.woocommerce-account .eds-account-shell--logged-in .woocommerce {
  display:grid !important;
  grid-template-columns:260px minmax(0,1fr) !important;
  grid-auto-flow:row !important;
  align-items:start !important;
  column-gap:clamp(24px,3vw,40px) !important;
  row-gap:18px !important;
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  overflow:visible !important;
}
body.woocommerce-account .eds-account-shell--logged-in .woocommerce > .woocommerce-notices-wrapper,
body.woocommerce-account .eds-account-shell--logged-in .woocommerce > .woocommerce-error,
body.woocommerce-account .eds-account-shell--logged-in .woocommerce > .woocommerce-info,
body.woocommerce-account .eds-account-shell--logged-in .woocommerce > .woocommerce-message {
  grid-column:1 / -1 !important;
  width:100% !important;
  margin:0 !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column:1 !important;
  grid-row:auto !important;
  float:none !important;
  clear:none !important;
  width:100% !important;
  max-width:260px !important;
  min-width:0 !important;
  margin:0 !important;
  align-self:start !important;
  box-sizing:border-box !important;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  grid-column:2 !important;
  grid-row:auto !important;
  float:none !important;
  clear:none !important;
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  margin:0 !important;
  box-sizing:border-box !important;
  overflow:visible !important;
}
body.woocommerce-account .woocommerce-MyAccount-content form,
body.woocommerce-account .woocommerce-MyAccount-content fieldset,
body.woocommerce-account .woocommerce-MyAccount-content table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns {
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  box-sizing:border-box !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  width:100% !important;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a {
  width:100% !important;
  box-sizing:border-box !important;
}
/* Remove the extra horizontal shortcut strip; the left menu is the single source of navigation. */
body.woocommerce-account .eds-account-quickbar { display:none !important; }

@media (max-width:980px) {
  body.woocommerce-account .eds-account-shell--logged-in > .woocommerce,
  body.woocommerce-account .eds-account-shell--logged-in .woocommerce {
    grid-template-columns:220px minmax(0,1fr) !important;
    column-gap:20px !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    max-width:220px !important;
  }
}

@media (max-width:820px) {
  body.woocommerce-account .eds-account-shell--logged-in > .woocommerce,
  body.woocommerce-account .eds-account-shell--logged-in .woocommerce {
    display:block !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-account .woocommerce-MyAccount-content {
    display:block !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    position:static !important;
    margin-bottom:18px !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:8px !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation a {
    justify-content:center !important;
    min-height:72px !important;
    padding:10px 8px !important;
    text-align:center !important;
    flex-direction:column !important;
    gap:6px !important;
    font-size:.78rem !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top:0 !important;
    padding-top:0 !important;
    border-top:0 !important;
  }
}

@media (max-width:520px) {
  body.woocommerce-account .eds-account-shell {
    width:min(calc(100% - 16px),1380px) !important;
    padding:10px !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-content {
    padding:16px !important;
  }
}

/* ================================================================
   Address cards and top-bar output repair — v2.5.3
   ================================================================ */
body.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content > .u-columns.woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses.col2-set {
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  grid-auto-flow:row !important;
  align-items:stretch !important;
  gap:20px !important;
  width:100% !important;
  margin:22px 0 0 !important;
  padding:0 !important;
  clear:both !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::after,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set::before,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set::after {
  display:none !important;
  content:none !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .u-column1,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .u-column2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .col-1,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .col-2 {
  position:relative !important;
  inset:auto !important;
  display:flex !important;
  flex-direction:column !important;
  grid-column:auto !important;
  grid-row:auto !important;
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  min-height:230px !important;
  margin:0 !important;
  padding:24px !important;
  float:none !important;
  clear:none !important;
  transform:none !important;
  box-sizing:border-box !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .u-column1,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .col-1 {
  order:1 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .u-column2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .col-2 {
  order:2 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  align-items:start !important;
  gap:16px !important;
  width:100% !important;
  margin:0 0 18px !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
  margin:0 !important;
  font-size:clamp(1.65rem,3vw,2.65rem) !important;
  line-height:1.02 !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
  align-self:start !important;
  display:inline-flex !important;
  justify-content:center !important;
  min-height:40px !important;
  padding:9px 12px !important;
  border:1px solid rgba(0,143,154,.24) !important;
  border-radius:11px !important;
  background:#fff !important;
  color:var(--eds-cyan-dark) !important;
  font-size:.82rem !important;
  font-weight:900 !important;
  line-height:1.25 !important;
  text-align:center !important;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
  margin:auto 0 0 !important;
  padding-top:10px !important;
  color:var(--eds-muted) !important;
  line-height:1.7 !important;
}

@media (max-width:760px) {
  body.woocommerce-account .woocommerce-MyAccount-content > .woocommerce-Addresses,
  body.woocommerce-account .woocommerce-MyAccount-content > .u-columns.woocommerce-Addresses,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses.col2-set {
    grid-template-columns:1fr !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .woocommerce-Address,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .u-column1,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .u-column2,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .col-1,
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .col-2 {
    min-height:0 !important;
  }
}

@media (max-width:480px) {
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    grid-template-columns:1fr !important;
  }
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
    width:100% !important;
  }
}

/* ========================================================================== 
   Larger identity and Book Antiqua typography — v2.5.4
   ========================================================================== */
:root {
  --eds-font-serif: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
}

html,
body,
button,
input,
select,
textarea,
optgroup,
.woocommerce,
.woocommerce-page,
.eds-theme,
.eds-theme * {
  font-family: var(--eds-font-serif);
}

h1, h2, h3, h4, h5, h6,
.eds-button,
button,
input[type="button"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--eds-font-serif) !important;
}

.eds-header__inner {
  min-height: 138px;
  grid-template-columns: minmax(355px, auto) minmax(0, 1fr) auto;
  gap: 26px;
}

.eds-brand {
  gap: 19px;
  min-width: 0;
}

.eds-brand img,
.eds-brand__logo--mark {
  width: 112px !important;
  height: 112px !important;
  max-width: 112px !important;
  max-height: 112px !important;
  flex: 0 0 112px !important;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(8, 47, 64, .15));
}

.eds-brand__text {
  display: grid;
  gap: 2px;
  max-width: 250px;
  line-height: .98;
  letter-spacing: -.025em;
  white-space: normal;
  font-family: var(--eds-font-serif) !important;
}

.eds-brand__text strong,
.eds-brand__text small {
  font-family: var(--eds-font-serif) !important;
}

.eds-brand__text strong {
  color: var(--eds-ink);
  font-size: 1.72rem;
  font-weight: 700;
  line-height: .98;
}

.eds-brand__text small {
  margin-top: 7px;
  color: var(--eds-cyan-dark);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
  width: auto !important;
  height: auto !important;
  max-width: 420px !important;
  max-height: 112px !important;
  flex: 0 1 auto !important;
}

.eds-nav a,
.eds-header__actions a,
.eds-topbar,
.eds-topbar a {
  font-family: var(--eds-font-serif) !important;
}

@media (max-width: 1240px) {
  .eds-header__inner {
    min-height: 120px;
    grid-template-columns: minmax(300px, auto) minmax(0, 1fr) auto;
    gap: 16px;
  }
  .eds-brand img,
  .eds-brand__logo--mark {
    width: 94px !important;
    height: 94px !important;
    max-width: 94px !important;
    max-height: 94px !important;
    flex-basis: 94px !important;
  }
  .eds-brand__text { max-width: 220px; }
  .eds-brand__text strong { font-size: 1.46rem; }
  .eds-brand__text small { margin-top: 5px; font-size: .94rem; }
  .eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
    max-width: 340px !important;
    max-height: 94px !important;
  }
}

@media (max-width: 900px) {
  .eds-header__inner {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .eds-brand { gap: 13px; }
  .eds-brand img,
  .eds-brand__logo--mark {
    width: 76px !important;
    height: 76px !important;
    max-width: 76px !important;
    max-height: 76px !important;
    flex-basis: 76px !important;
  }
  .eds-brand__text { max-width: 200px; }
  .eds-brand__text strong { font-size: 1.28rem; }
  .eds-brand__text small { margin-top: 4px; font-size: .82rem; }
  .eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
    max-width: 280px !important;
    max-height: 76px !important;
  }
}

@media (max-width: 640px) {
  .eds-header__inner { padding-top: 10px; padding-bottom: 10px; }
  .eds-brand { gap: 10px; }
  .eds-brand img,
  .eds-brand__logo--mark {
    width: 66px !important;
    height: 66px !important;
    max-width: 66px !important;
    max-height: 66px !important;
    flex-basis: 66px !important;
  }
  .eds-brand__text {
    max-width: 178px;
    letter-spacing: -.02em;
  }
  .eds-brand__text strong { font-size: 1.13rem; }
  .eds-brand__text small { margin-top: 4px; font-size: .74rem; }
  .eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
    max-width: 230px !important;
    max-height: 66px !important;
  }
}

@media (max-width: 380px) {
  .eds-brand { gap: 8px; }
  .eds-brand img,
  .eds-brand__logo--mark {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    flex-basis: 58px !important;
  }
  .eds-brand__text { max-width: 150px; }
  .eds-brand__text strong { font-size: 1rem; }
  .eds-brand__text small { font-size: .67rem; }
  .eds-brand img.eds-brand__logo:not(.eds-brand__logo--mark) {
    max-width: 190px !important;
    max-height: 58px !important;
  }
}

/* ========================================================================== 
   Header shield logo visibility fix — v2.5.5
   The bundled PNG is tightly cropped so the shield fills its CSS box.
   ========================================================================== */
.eds-brand__logo--mark {
  display: block !important;
  width: 126px !important;
  height: 126px !important;
  max-width: 126px !important;
  max-height: 126px !important;
  flex: 0 0 126px !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 1240px) {
  .eds-brand__logo--mark {
    width: 106px !important;
    height: 106px !important;
    max-width: 106px !important;
    max-height: 106px !important;
    flex-basis: 106px !important;
  }
}

@media (max-width: 900px) {
  .eds-brand__logo--mark {
    width: 86px !important;
    height: 86px !important;
    max-width: 86px !important;
    max-height: 86px !important;
    flex-basis: 86px !important;
  }
}

@media (max-width: 640px) {
  .eds-brand__logo--mark {
    width: 74px !important;
    height: 74px !important;
    max-width: 74px !important;
    max-height: 74px !important;
    flex-basis: 74px !important;
  }
}

@media (max-width: 380px) {
  .eds-brand__logo--mark {
    width: 66px !important;
    height: 66px !important;
    max-width: 66px !important;
    max-height: 66px !important;
    flex-basis: 66px !important;
  }
}

/* ========================================================================== 
   Exact Media Library header logo — v2.5.6
   Uses the tightly cropped WordPress media image requested by the school.
   ========================================================================== */
.eds-header__inner {
  min-height: 166px;
  grid-template-columns: minmax(430px, auto) minmax(0, 1fr) auto;
}

.eds-brand {
  gap: 22px;
}

.eds-brand__logo--remote {
  display: block !important;
  width: 150px !important;
  height: 150px !important;
  max-width: 150px !important;
  max-height: 150px !important;
  flex: 0 0 150px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 10px 22px rgba(8, 47, 64, .18));
}

.eds-brand__text {
  max-width: 260px;
}

.eds-brand__text strong {
  font-size: 1.82rem;
}

.eds-brand__text small {
  font-size: 1.12rem;
}

@media (max-width: 1240px) {
  .eds-header__inner {
    min-height: 138px;
    grid-template-columns: minmax(350px, auto) minmax(0, 1fr) auto;
  }
  .eds-brand__logo--remote {
    width: 118px !important;
    height: 118px !important;
    max-width: 118px !important;
    max-height: 118px !important;
    flex-basis: 118px !important;
  }
  .eds-brand__text strong { font-size: 1.55rem; }
  .eds-brand__text small { font-size: .98rem; }
}

@media (max-width: 900px) {
  .eds-header__inner {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .eds-brand {
    gap: 14px;
  }
  .eds-brand__logo--remote {
    width: 96px !important;
    height: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
    flex-basis: 96px !important;
  }
  .eds-brand__text { max-width: 205px; }
  .eds-brand__text strong { font-size: 1.36rem; }
  .eds-brand__text small { font-size: .84rem; }
}

@media (max-width: 640px) {
  .eds-brand {
    gap: 11px;
  }
  .eds-brand__logo--remote {
    width: 84px !important;
    height: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
    flex-basis: 84px !important;
  }
  .eds-brand__text { max-width: 175px; }
  .eds-brand__text strong { font-size: 1.18rem; }
  .eds-brand__text small { font-size: .75rem; }
}

@media (max-width: 380px) {
  .eds-brand__logo--remote {
    width: 74px !important;
    height: 74px !important;
    max-width: 74px !important;
    max-height: 74px !important;
    flex-basis: 74px !important;
  }
  .eds-brand__text { max-width: 145px; }
  .eds-brand__text strong { font-size: 1.02rem; }
  .eds-brand__text small { font-size: .67rem; }
}


/* ========================================================================== 
   Educator wordmark emphasis — v2.5.7
   Enlarges only “Educator”; “Driving School” keeps the v2.5.6 size.
   ========================================================================== */
.eds-brand__text strong {
  display: block;
  font-size: 2.3rem;
  line-height: .92;
  letter-spacing: -.025em;
}

@media (max-width: 1240px) {
  .eds-brand__text strong {
    font-size: 1.92rem;
  }
}

@media (max-width: 900px) {
  .eds-brand__text strong {
    font-size: 1.64rem;
  }
}

@media (max-width: 640px) {
  .eds-brand__text strong {
    font-size: 1.43rem;
  }
}

@media (max-width: 380px) {
  .eds-brand__text strong {
    font-size: 1.22rem;
  }
}

/* ========================================================================== 
   Educator wordmark emphasis — v2.5.8
   Makes only “Educator” substantially larger while preserving the existing
   “Driving School” subtitle size.
   ========================================================================== */
.eds-brand__text {
  max-width: 340px;
  overflow: visible;
}

.eds-brand__text strong {
  display: block;
  font-size: 3rem;
  line-height: .82;
  letter-spacing: -.04em;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .eds-brand__text { max-width: 275px; }
  .eds-brand__text strong { font-size: 2.45rem; }
}

@media (max-width: 900px) {
  .eds-brand__text { max-width: 225px; }
  .eds-brand__text strong { font-size: 2rem; }
}

@media (max-width: 640px) {
  .eds-brand__text { max-width: 195px; }
  .eds-brand__text strong { font-size: 1.72rem; }
}

@media (max-width: 380px) {
  .eds-brand__text { max-width: 165px; }
  .eds-brand__text strong { font-size: 1.47rem; }
}

/* ========================================================================== 
   Header brand alignment — v2.5.9
   Keeps both wordmark lines perfectly left-aligned and vertically centres the
   complete text block on the right side of the logo at every breakpoint.
   ========================================================================== */
.eds-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.eds-brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  min-height: 150px;
  margin: 0;
  padding: 0;
  text-align: left;
  line-height: 1;
}

.eds-brand__text strong,
.eds-brand__text small {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  padding-left: 0;
  text-indent: 0;
  text-align: left;
}

.eds-brand__text strong {
  line-height: .84;
}

.eds-brand__text small {
  margin-top: 11px;
  line-height: 1;
}

@media (max-width: 1240px) {
  .eds-brand__text {
    min-height: 118px;
  }
  .eds-brand__text small {
    margin-top: 9px;
  }
}

@media (max-width: 900px) {
  .eds-brand__text {
    min-height: 96px;
  }
  .eds-brand__text small {
    margin-top: 7px;
  }
}

@media (max-width: 640px) {
  .eds-brand__text {
    min-height: 84px;
  }
  .eds-brand__text small {
    margin-top: 6px;
  }
}

@media (max-width: 380px) {
  .eds-brand__text {
    min-height: 74px;
  }
  .eds-brand__text small {
    margin-top: 5px;
  }
}


/* ========================================================================== 
   Checkout notice handling — v2.6.0
   The exact non-actionable generic assistance message is removed by JavaScript.
   Specific WooCommerce validation and payment errors remain visible.
   ========================================================================== */


/* ================================================================
   Classic Cart and Checkout reliability — retained in v2.6.3
   ================================================================ */
body.woocommerce-cart .wc-block-cart,
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-checkout .wp-block-woocommerce-checkout {
  display: none !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .woocommerce,
body.woocommerce-cart .eds-classic-cart-page .woocommerce {
  display: block;
  width: 100%;
  max-width: none;
}

body.woocommerce-checkout .eds-classic-checkout-page form.checkout.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

body.woocommerce-checkout .eds-classic-checkout-page #customer_details,
body.woocommerce-checkout .eds-classic-checkout-page #order_review,
body.woocommerce-checkout .eds-classic-checkout-page #order_review_heading {
  float: none !important;
  width: 100% !important;
  min-width: 0;
}

body.woocommerce-checkout .eds-classic-checkout-page #customer_details {
  grid-column: 1;
}

body.woocommerce-checkout .eds-classic-checkout-page #order_review_heading,
body.woocommerce-checkout .eds-classic-checkout-page #order_review {
  grid-column: 2;
}

body.woocommerce-checkout .eds-classic-checkout-page #order_review_heading {
  margin: 0 0 -16px;
}

body.woocommerce-checkout .eds-classic-checkout-page #order_review {
  position: static !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-NoticeGroup,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}

body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-error,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-message,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-info {
  width: 100%;
  margin: 0 0 20px !important;
}

body.woocommerce-checkout .eds-classic-checkout-page #payment .payment_box {
  border-radius: 14px;
}

body.woocommerce-checkout .eds-classic-checkout-page #place_order {
  display: block;
  width: 100%;
}

@media (max-width: 920px) {
  body.woocommerce-checkout .eds-classic-checkout-page form.checkout.woocommerce-checkout {
    grid-template-columns: minmax(0, 1fr);
  }

  body.woocommerce-checkout .eds-classic-checkout-page #customer_details,
  body.woocommerce-checkout .eds-classic-checkout-page #order_review_heading,
  body.woocommerce-checkout .eds-classic-checkout-page #order_review {
    grid-column: 1;
  }

  body.woocommerce-checkout .eds-classic-checkout-page #order_review_heading {
    margin: 8px 0 -14px;
  }
}

/* ========================================================================== 
   Classic cart and checkout presentation — v2.6.3
   ========================================================================== */
.eds-checkout-steps {
  border-bottom: 1px solid rgba(8, 47, 64, .10);
  background: #fff;
}

.eds-checkout-steps__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 32px), 980px) !important;
  padding: 18px 0 !important;
}

.eds-checkout-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  color: var(--eds-muted);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.eds-checkout-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18%;
  width: 36%;
  height: 2px;
  background: rgba(8, 47, 64, .12);
}

.eds-checkout-step strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border: 1px solid rgba(8, 47, 64, .15);
  border-radius: 999px;
  background: var(--eds-soft);
  color: var(--eds-ink);
  font-family: Arial, sans-serif;
  font-size: .82rem;
}

.eds-checkout-step.is-active { color: var(--eds-ink); }
.eds-checkout-step.is-active strong { border-color: var(--eds-yellow); background: var(--eds-yellow); }
.eds-checkout-step.is-complete { color: var(--eds-cyan-dark); }
.eds-checkout-step.is-complete strong { border-color: var(--eds-cyan-dark); background: var(--eds-cyan-dark); color: #fff; }

body.woocommerce-cart .eds-commerce-shell,
body.woocommerce-checkout .eds-commerce-shell {
  width: min(calc(100% - 32px), 1260px) !important;
  padding: clamp(20px, 3vw, 38px) !important;
}

/* Cart form card and table. */
body.woocommerce-cart .eds-classic-cart-page .woocommerce-cart-form {
  margin: 0;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(8, 47, 64, .10);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(8, 47, 64, .065);
}

body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart {
  width: 100%;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0;
  overflow: visible;
  border-radius: 0;
}

body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart thead th {
  padding: 0 14px 13px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(8, 47, 64, .12) !important;
  background: transparent;
  color: var(--eds-muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tbody td {
  padding: 18px 14px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(8, 47, 64, .09) !important;
  vertical-align: middle;
}

body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tbody tr:last-child td,
body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tbody tr.actions td {
  border-bottom: 0 !important;
}

body.woocommerce-cart .eds-classic-cart-page .product-remove { width: 38px; padding-left: 0 !important; padding-right: 4px !important; }
body.woocommerce-cart .eds-classic-cart-page .product-thumbnail { width: 100px; }
body.woocommerce-cart .eds-classic-cart-page .product-price,
body.woocommerce-cart .eds-classic-cart-page .product-quantity,
body.woocommerce-cart .eds-classic-cart-page .product-subtotal { white-space: nowrap; }

body.woocommerce-cart .eds-classic-cart-page a.remove {
  display: grid !important;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(180, 35, 24, .16);
  border-radius: 999px;
  background: #fff5f3;
  color: #a3241a !important;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

body.woocommerce-cart .eds-classic-cart-page a.remove:hover,
body.woocommerce-cart .eds-classic-cart-page a.remove:focus-visible {
  background: #a3241a;
  color: #fff !important;
}

body.woocommerce-cart .eds-classic-cart-page .product-thumbnail img {
  width: 82px !important;
  height: 82px !important;
  margin: 0;
  border: 1px solid rgba(8, 47, 64, .08);
  border-radius: 14px;
  background: var(--eds-soft);
  object-fit: cover;
}

body.woocommerce-cart .eds-classic-cart-page .product-name a {
  color: var(--eds-ink);
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
}

body.woocommerce-cart .eds-classic-cart-page .product-name a:hover { color: var(--eds-cyan-dark); }
body.woocommerce-cart .eds-classic-cart-page .product-name dl.variation { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 4px 8px; margin: 9px 0 0; color: var(--eds-muted); font-size: .88rem; }
body.woocommerce-cart .eds-classic-cart-page .product-name dl.variation dt,
body.woocommerce-cart .eds-classic-cart-page .product-name dl.variation dd { float: none; clear: none; margin: 0; padding: 0; }
body.woocommerce-cart .eds-classic-cart-page .product-name dl.variation p { margin: 0; }
body.woocommerce-cart .eds-classic-cart-page .product-subtotal { color: var(--eds-cyan-dark); font-weight: 950; }

body.woocommerce-cart .eds-classic-cart-page .quantity {
  display: inline-flex;
  align-items: center;
  min-width: 86px;
}

body.woocommerce-cart .eds-classic-cart-page .quantity .qty {
  width: 76px;
  min-height: 44px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(8, 47, 64, .17);
  border-radius: 11px;
  background: #fff;
  color: var(--eds-ink);
  font-weight: 850;
  text-align: center;
}

/* Coupon and update row. */
body.woocommerce-cart .eds-classic-cart-page td.actions {
  padding: 20px 0 0 !important;
}

body.woocommerce-cart .eds-classic-cart-page td.actions .coupon {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
}

body.woocommerce-cart .eds-classic-cart-page td.actions .coupon label { display: none; }
body.woocommerce-cart .eds-classic-cart-page td.actions .coupon .input-text {
  float: none !important;
  width: min(240px, 100%) !important;
  min-height: 48px;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(8, 47, 64, .17) !important;
  border-radius: 12px !important;
  background: #fff;
}

body.woocommerce-cart .eds-classic-cart-page td.actions > .button {
  float: right;
  min-width: 150px;
}

body.woocommerce-cart .eds-classic-cart-page td.actions .button:disabled,
body.woocommerce-cart .eds-classic-cart-page td.actions .button:disabled[disabled] {
  opacity: .48;
  cursor: not-allowed;
}

/* Totals section. */
body.woocommerce-cart .eds-classic-cart-page .cart-collaterals {
  display: flex !important;
  justify-content: flex-end;
  width: 100%;
  margin-top: 26px;
}

body.woocommerce-cart .eds-classic-cart-page .cart-collaterals .cross-sells {
  width: 100%;
  margin-right: 26px;
}

body.woocommerce-cart .eds-classic-cart-page .cart_totals {
  width: min(100%, 500px) !important;
  margin: 0 0 0 auto;
  padding: clamp(20px, 2.5vw, 29px) !important;
  border: 1px solid rgba(8, 47, 64, .11) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%) !important;
  box-shadow: 0 16px 44px rgba(8, 47, 64, .07);
}

body.woocommerce-cart .eds-classic-cart-page .cart_totals h2 {
  margin: 0 0 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(8, 47, 64, .11);
  color: var(--eds-ink);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

body.woocommerce-cart .eds-classic-cart-page .cart_totals table.shop_table {
  margin: 0 0 18px !important;
  border: 0 !important;
  border-radius: 0;
}

body.woocommerce-cart .eds-classic-cart-page .cart_totals table th,
body.woocommerce-cart .eds-classic-cart-page .cart_totals table td {
  padding: 12px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(8, 47, 64, .08) !important;
  background: transparent;
  vertical-align: top;
}

body.woocommerce-cart .eds-classic-cart-page .cart_totals table th { width: 46%; color: var(--eds-muted); font-weight: 850; }
body.woocommerce-cart .eds-classic-cart-page .cart_totals table td { color: var(--eds-ink); font-weight: 900; text-align: right; }
body.woocommerce-cart .eds-classic-cart-page .cart_totals .order-total th,
body.woocommerce-cart .eds-classic-cart-page .cart_totals .order-total td { padding-top: 16px !important; border-bottom: 0 !important; color: var(--eds-ink); font-size: 1.12rem; }
body.woocommerce-cart .eds-classic-cart-page .wc-proceed-to-checkout { padding: 0; }
body.woocommerce-cart .eds-classic-cart-page .checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin: 0 !important;
  padding: 12px 20px !important;
  font-size: 1.02rem !important;
}

/* Empty cart state. */
body.woocommerce-cart .eds-classic-cart-page .cart-empty {
  margin: 0 !important;
  padding: clamp(24px, 4vw, 44px) !important;
  border: 1px solid rgba(0, 143, 154, .18) !important;
  border-radius: 20px !important;
  background: var(--eds-soft);
  text-align: center;
}

body.woocommerce-cart .eds-classic-cart-page .return-to-shop { margin: 18px 0 0; text-align: center; }
body.woocommerce-cart .eds-classic-cart-page .return-to-shop .button { min-width: 220px; }

/* Checkout cards and order summary. */
body.woocommerce-checkout .eds-classic-checkout-page #customer_details .col-1,
body.woocommerce-checkout .eds-classic-checkout-page #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(8, 47, 64, .10);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(8, 47, 64, .055);
}

body.woocommerce-checkout .eds-classic-checkout-page #customer_details .col-2 { margin-top: 18px; }
body.woocommerce-checkout .eds-classic-checkout-page #customer_details h3,
body.woocommerce-checkout .eds-classic-checkout-page #order_review_heading {
  margin-top: 0;
  color: var(--eds-ink);
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}

body.woocommerce-checkout .eds-classic-checkout-page .form-row { margin: 0 0 14px; padding: 0; }
body.woocommerce-checkout .eds-classic-checkout-page .form-row label { margin-bottom: 6px; color: var(--eds-ink); font-weight: 850; }
body.woocommerce-checkout .eds-classic-checkout-page #order_review_heading { padding: 0 0 13px; }
body.woocommerce-checkout .eds-classic-checkout-page #order_review { padding: clamp(20px, 2.6vw, 29px); }
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-checkout-review-order-table { margin: 0 0 20px !important; border: 0 !important; }
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-checkout-review-order-table td { padding: 12px 0 !important; border: 0 !important; border-bottom: 1px solid rgba(8, 47, 64, .09) !important; background: transparent; }
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-checkout-review-order-table th:last-child,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-checkout-review-order-table td:last-child { text-align: right; }
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-checkout-review-order-table .order-total td { border-bottom: 0 !important; font-size: 1.08rem; }
body.woocommerce-checkout .eds-classic-checkout-page #payment { padding: 4px 0 0; overflow: hidden; border: 1px solid rgba(8, 47, 64, .10); }
body.woocommerce-checkout .eds-classic-checkout-page #payment ul.payment_methods { padding: 18px !important; }
body.woocommerce-checkout .eds-classic-checkout-page #payment .form-row.place-order { padding: 18px !important; }
body.woocommerce-checkout .eds-classic-checkout-page #payment .payment_box { margin: 12px 0 0 !important; background: #fff !important; }
body.woocommerce-checkout .eds-classic-checkout-page #payment .payment_box::before { border-bottom-color: #fff !important; }
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-privacy-policy-text { color: var(--eds-muted); font-size: .9rem; }

@media (max-width: 920px) {
  .eds-checkout-steps__inner { width: min(calc(100% - 24px), 760px) !important; }
  body.woocommerce-cart .eds-classic-cart-page .cart-collaterals { display: block !important; }
  body.woocommerce-cart .eds-classic-cart-page .cart-collaterals .cross-sells { width: 100%; margin: 0 0 22px; }
  body.woocommerce-cart .eds-classic-cart-page .cart_totals { width: 100% !important; margin: 0; }
}

@media (max-width: 760px) {
  .eds-checkout-steps__inner { padding: 13px 0 !important; }
  .eds-checkout-step { gap: 6px; font-size: .79rem; }
  .eds-checkout-step strong { width: 27px; height: 27px; flex-basis: 27px; font-size: .73rem; }
  .eds-checkout-step:not(:last-child)::after { right: -13%; width: 26%; }

  body.woocommerce-cart .eds-classic-cart-page .woocommerce-cart-form { padding: 12px; border-radius: 18px; }
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart,
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tbody,
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tr,
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart td { display: block; width: 100%; }
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart thead { display: none; }
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tr.cart_item {
    position: relative;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 0 15px;
    margin: 0 0 14px;
    padding: 15px;
    border: 1px solid rgba(8, 47, 64, .10);
    border-radius: 17px;
    background: #fff;
  }
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tr.cart_item td { padding: 9px 0 !important; border: 0 !important; }
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tr.cart_item td::before { font-size: .73rem; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; }
  body.woocommerce-cart .eds-classic-cart-page .product-remove { position: absolute; z-index: 2; top: 10px; right: 10px; width: auto !important; padding: 0 !important; }
  body.woocommerce-cart .eds-classic-cart-page .product-remove::before,
  body.woocommerce-cart .eds-classic-cart-page .product-thumbnail::before,
  body.woocommerce-cart .eds-classic-cart-page .product-name::before { display: none !important; }
  body.woocommerce-cart .eds-classic-cart-page .product-thumbnail { grid-column: 1; grid-row: 1 / span 2; width: 86px !important; padding-top: 0 !important; }
  body.woocommerce-cart .eds-classic-cart-page .product-thumbnail img { width: 82px !important; height: 82px !important; }
  body.woocommerce-cart .eds-classic-cart-page .product-name { grid-column: 2; padding-top: 4px !important; padding-right: 38px !important; }
  body.woocommerce-cart .eds-classic-cart-page .product-price,
  body.woocommerce-cart .eds-classic-cart-page .product-quantity,
  body.woocommerce-cart .eds-classic-cart-page .product-subtotal {
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(8, 47, 64, .075) !important;
  }
  body.woocommerce-cart .eds-classic-cart-page .product-subtotal { padding-bottom: 0 !important; }
  body.woocommerce-cart .eds-classic-cart-page td.actions { display: grid !important; gap: 10px; padding: 5px 0 0 !important; }
  body.woocommerce-cart .eds-classic-cart-page td.actions .coupon { display: grid !important; grid-template-columns: 1fr; gap: 8px; }
  body.woocommerce-cart .eds-classic-cart-page td.actions .coupon .input-text,
  body.woocommerce-cart .eds-classic-cart-page td.actions .coupon .button,
  body.woocommerce-cart .eds-classic-cart-page td.actions > .button { float: none !important; width: 100% !important; min-width: 0; }
  body.woocommerce-cart .eds-classic-cart-page .cart_totals { padding: 19px !important; border-radius: 18px !important; }
  body.woocommerce-checkout .eds-classic-checkout-page #customer_details .col-1,
  body.woocommerce-checkout .eds-classic-checkout-page #customer_details .col-2,
  body.woocommerce-checkout .eds-classic-checkout-page #order_review { padding: 18px; border-radius: 17px; }
}

@media (max-width: 470px) {
  .eds-checkout-step span { display: none; }
  .eds-checkout-step:not(:last-child)::after { right: -28%; width: 56%; }
  body.woocommerce-cart .eds-classic-cart-page table.shop_table.cart tr.cart_item { grid-template-columns: 72px minmax(0, 1fr); gap: 0 12px; padding: 13px; }
  body.woocommerce-cart .eds-classic-cart-page .product-thumbnail { width: 72px !important; }
  body.woocommerce-cart .eds-classic-cart-page .product-thumbnail img { width: 68px !important; height: 68px !important; }
  body.woocommerce-cart .eds-classic-cart-page .product-name a { font-size: 1rem; }
}

/* ========================================================================== 
   Branded signup and stable checkout columns — v2.6.4
   ========================================================================== */
.eds-signup-brand {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 22px);
  margin: 0 0 26px;
  padding: clamp(15px, 2vw, 20px);
  border: 1px solid rgba(8, 47, 64, .11);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f1fbfc 60%, #fffce7 100%);
  box-shadow: 0 12px 32px rgba(8, 47, 64, .07);
}

.eds-signup-brand img {
  display: block;
  flex: 0 0 auto;
  width: clamp(78px, 8vw, 112px);
  height: clamp(78px, 8vw, 112px);
  margin: 0;
  object-fit: contain;
}

.eds-signup-brand__name {
  display: grid;
  align-content: center;
  min-width: 0;
  color: var(--eds-ink);
  line-height: 1;
}

.eds-signup-brand__name strong {
  display: block;
  margin: 0;
  color: var(--eds-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .95;
}

.eds-signup-brand__name > span {
  display: block;
  margin-top: 7px;
  color: var(--eds-cyan-dark);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  letter-spacing: .045em;
  line-height: 1;
  text-transform: uppercase;
}

.eds-signup-brand__name small {
  display: block;
  margin-top: 10px;
  color: var(--eds-muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eds-signup-brand--account {
  width: min(100%, 760px);
  margin: 0 auto 26px;
}

.eds-signup-brand--modal {
  margin-right: 44px;
  padding: 12px 14px;
  border-radius: 17px;
  box-shadow: none;
}

.eds-signup-brand--modal img {
  width: 72px;
  height: 72px;
}

.eds-signup-brand--modal .eds-signup-brand__name strong {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

/* The JS wrapper below is intentionally stronger than older WooCommerce float
   rules. It keeps information and payment side by side on normal desktop and
   laptop widths, while remaining a readable single column on smaller screens. */
body.woocommerce-checkout .eds-classic-checkout-page form.checkout.woocommerce-checkout {
  display: block !important;
  width: 100% !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr) !important;
  gap: clamp(22px, 3vw, 36px) !important;
  align-items: start !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-information-column,
body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column {
  display: block !important;
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-information-column #customer_details,
body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #order_review,
body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #order_review_heading {
  display: block !important;
  float: none !important;
  grid-column: auto !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column {
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(8, 47, 64, .11);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(8, 47, 64, .07);
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #order_review_heading {
  margin: 0 0 14px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid rgba(8, 47, 64, .10);
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #order_review {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #payment {
  margin-top: 20px !important;
  border-radius: 18px !important;
  background: var(--eds-soft) !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #payment ul.payment_methods,
body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #payment .form-row.place-order {
  padding: 19px !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column #place_order {
  min-height: 56px;
  border-radius: 999px !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-form-login-toggle,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-form-coupon-toggle,
body.woocommerce-checkout .eds-classic-checkout-page form.woocommerce-form-login,
body.woocommerce-checkout .eds-classic-checkout-page form.checkout_coupon,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-notices-wrapper,
body.woocommerce-checkout .eds-classic-checkout-page .woocommerce-NoticeGroup {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 980px) {
  body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column {
    margin-top: 2px !important;
  }
}

@media (max-width: 640px) {
  .eds-signup-brand {
    gap: 13px;
    margin-bottom: 20px;
    padding: 13px;
    border-radius: 17px;
  }

  .eds-signup-brand img {
    width: 74px;
    height: 74px;
  }

  .eds-signup-brand__name strong {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .eds-signup-brand__name > span {
    margin-top: 5px;
    font-size: .88rem;
  }

  .eds-signup-brand__name small {
    margin-top: 7px;
    font-size: .68rem;
  }

  .eds-signup-brand--modal {
    margin-right: 36px;
  }

  body.woocommerce-checkout .eds-classic-checkout-page .eds-checkout-payment-column {
    padding: 17px;
    border-radius: 18px;
  }
}
