:root {
  --ink: #20202a;
  --muted: #666679;
  --violet: #6f4bd8;
  --soft: #f6f3fb;
  --line: #e7e2ef;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", Lato, Arial, sans-serif;
  overflow-x: hidden;
}

img, iframe, video { max-width: 100%; }

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

.static-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(85, 82, 231, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(48, 41, 73, 0.06);
  backdrop-filter: blur(14px);
}

.static-header::after {
  content: "";
  display: none;
}

.static-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
}

.static-brand img,
.static-footer-logo {
  width: 176px;
  height: auto;
  display: block;
}

.static-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding: 7px;
  border: 1px solid rgba(85, 82, 231, 0.10);
  border-radius: 999px;
  background: rgba(246, 243, 251, 0.74);
}

.static-nav a,
.static-footer a {
  color: inherit;
  text-decoration: none;
}

.static-nav-links a {
  border-radius: 999px;
  padding: 11px 13px;
  color: #22212b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.static-nav-links a:hover {
  color: var(--violet);
  background: #fff;
  box-shadow: 0 8px 18px rgba(85, 82, 231, 0.10);
}

.static-mobile-only {
  display: none;
}

.static-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.static-call {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(85, 82, 231, 0.16);
  border-radius: 999px;
  color: #1f1e29;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.static-call::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 11px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(111, 75, 216, 0.12);
}

.static-book {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--violet);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(111, 75, 216, 0.22);
}

.static-nav-toggle {
  display: none;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(85, 82, 231, 0.16);
  border-radius: 999px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(48, 41, 73, 0.10);
}

.static-nav-toggle span {
  display: block;
  width: 23px;
  height: 2.5px;
  border-radius: 99px;
  background: #2b2937;
  transition: transform .2s ease, opacity .2s ease;
}

.static-nav-toggle span + span {
  margin-top: 5px;
}

.static-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.static-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.static-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.site-main {
  min-height: 60vh;
}

.static-footer {
  margin-top: 72px;
  padding: 48px 16px 24px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.static-footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr;
  gap: 36px;
}

.static-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.static-footer p {
  color: var(--muted);
}

.static-footer section:last-child {
  display: grid;
  gap: 8px;
  align-content: start;
}

.static-credit {
  width: min(1180px, 100%);
  margin: 32px auto 0;
  font-size: 14px;
  text-align: center;
}

[data-w-id][style*="opacity:0"],
[data-w-id][style*="opacity: 0"] {
  opacity: 1 !important;
  transform: none !important;
}

.w-layout-hflex.padding-top-hero {
  display: block;
  padding-top: clamp(32px, 5vw, 72px);
}

.section.shop-product-section {
  padding-top: 0;
  padding-bottom: 56px;
}

.shop-details-wrapper {
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.shop-details-slider {
  opacity: 1 !important;
  background: #faf8fd;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(64, 48, 92, 0.12);
  overflow: hidden;
}

.shop-details-image-lightbox,
.shop-details-image {
  border-radius: 24px;
}

.shop-details-image {
  object-fit: contain;
  padding: 28px;
}

.shop-details-content-block {
  opacity: 1 !important;
  align-self: center;
}

.shop-details-top {
  display: grid;
  gap: 12px;
}

.details-page-title.no-margin {
  color: var(--ink);
  line-height: 1.05;
}

.price {
  color: var(--violet);
  font-size: 24px;
  font-weight: 700;
}

.no-margin-bottom {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.quantity-row {
  align-items: center;
}

.button-new.background-color-black.product-page,
.primary-button.add-to-cart-shop-item,
.w-commerce-commerceaddtocartbutton {
  cursor: pointer;
}

.shop-details-block {
  opacity: 1 !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 14px 42px rgba(64, 48, 92, 0.08);
}

.rich-text-style-shop-details {
  color: var(--muted);
  line-height: 1.7;
}

.rich-text-style-shop-details h3,
.rich-text-style-shop-details h5 {
  color: var(--ink);
}

.section.without-top-spacing.bottom-space {
  padding-bottom: 96px;
}

.section-two-side-title-wrapper,
.shop-collection-list-wrapper {
  opacity: 1 !important;
}

.shop-collection-list {
  align-items: stretch;
}

.main-shop-list-item {
  height: 100%;
}

.shop-list-image {
  object-fit: contain;
  background: #faf8fd;
}

.locations-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 0 24px;
}

.locations-hero {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
  min-width: 0;
}

.locations-eyebrow,
.locations-tag {
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.locations-hero h1 {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.locations-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.locations-hero-actions,
.locations-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.locations-primary-action,
.locations-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.locations-primary-action {
  color: #fff;
  background: var(--violet);
  box-shadow: 0 14px 28px rgba(111, 75, 216, 0.22);
}

.locations-secondary-action {
  color: var(--ink);
  border: 1px solid rgba(85, 82, 231, 0.16);
  background: #fff;
}

.locations-list {
  display: grid;
  gap: 30px;
}

.locations-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(64, 48, 92, 0.09);
}

.locations-map {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(85, 82, 231, 0.12);
  border-radius: 20px;
  background: #f8f5fb;
}

.locations-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.locations-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(6px, 1vw, 12px);
}

.locations-details h2 {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.locations-details address {
  margin: 0 0 12px;
  color: #343342;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.locations-phone {
  width: max-content;
  color: var(--violet);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.locations-hours {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.locations-hours div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.locations-hours dt,
.locations-hours dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

.locations-hours dt {
  color: var(--ink);
  font-weight: 800;
}

.locations-hours dd {
  color: var(--muted);
}

.locations-local-context {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(64, 48, 92, 0.07);
}

.locations-local-context h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
}

.locations-local-context p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.locations-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.locations-service-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(85, 82, 231, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1140px) {
  .static-nav {
    gap: 12px;
  }

  .static-brand img {
    width: 168px;
  }

  .static-nav-links a {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 12px;
  }

  .static-book {
    display: none;
  }
}

@media (max-width: 960px) {
  body.static-menu-open {
    overflow: hidden;
  }

  .static-nav {
    position: relative;
    min-height: 92px;
  }

  body.static-menu-open::before {
    content: "";
    position: fixed;
    inset: 92px 0 0;
    z-index: 30;
    background: #fff;
  }

  .static-nav-toggle {
    display: grid;
    position: relative;
    z-index: 70;
  }

  .static-nav-links {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    height: calc(100dvh - 92px);
    z-index: 60;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: min-content;
    align-content: start;
    gap: 12px;
    max-height: none;
    overflow-y: auto;
    padding: 22px max(18px, calc((100vw - 720px) / 2));
    border: 0;
    border-top: 1px solid rgba(85, 82, 231, 0.12);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }

  .static-nav-links.is-open {
    display: grid;
  }

  .static-nav-links a {
    min-height: 56px;
    padding: 18px 20px;
    border: 1px solid rgba(85, 82, 231, 0.10);
    border-radius: 18px;
    background: var(--soft);
    color: #20202a;
    font-size: 16px;
    font-weight: 800;
    align-items: center;
    justify-content: flex-start;
    display: inline-flex;
    box-shadow: none;
  }

  .static-mobile-only {
    display: inline-flex;
    color: #fff !important;
    background: var(--violet) !important;
  }

  .static-actions {
    margin-left: auto;
  }

  .static-call {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 15px;
    position: relative;
    z-index: 70;
  }

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

  .shop-details-wrapper {
    grid-template-columns: 1fr;
  }

  .shop-details-slider {
    height: min(88vw, 460px);
  }

  .locations-card {
    grid-template-columns: 1fr;
  }

  .locations-map {
    min-height: min(72vw, 430px);
  }
}

@media (max-width: 560px) {
  .static-nav {
    width: min(100% - 24px, 1240px);
    gap: 10px;
    min-height: 84px;
  }

  .static-brand img {
    width: 154px;
  }

  .static-call {
    width: 50px;
    min-height: 50px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .static-call::before {
    margin: 0;
  }

  .static-nav-links {
    grid-template-columns: 1fr;
    top: 84px;
    height: calc(100dvh - 84px);
    padding: 18px 12px 28px;
  }

  body.static-menu-open::before {
    inset: 84px 0 0;
  }

  .static-nav-links a {
    min-height: 52px;
    padding: 16px 18px;
    font-size: 15px;
  }

  .locations-page {
    width: min(100% - 24px, 1180px);
    padding-top: 38px;
  }

  .locations-hero h1 {
    font-size: 37px;
    line-height: 1.05;
  }

  .locations-hero p {
    font-size: 17px;
  }

  .locations-card {
    padding: 14px;
    border-radius: 20px;
  }

  .locations-map {
    min-height: 320px;
    border-radius: 16px;
  }

  .locations-hours div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .locations-primary-action,
  .locations-secondary-action {
    width: 100%;
  }

  .locations-hero-actions,
  .locations-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 17px;
    line-height: 1.55;
  }

  .site-main {
    width: 100%;
    overflow-x: clip;
  }

  .container,
  .base-container,
  .w-container,
  .container-width-full {
    width: min(100% - 28px, 1180px) !important;
    max-width: min(100% - 28px, 1180px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  section,
  .section,
  .padding-top-hero,
  .home-two-medical-expertise,
  .home-two-services,
  .services-introduction-section,
  .services-how-we-help-section,
  .services-faq-section,
  .service-details-other-services,
  .about-medical-expertise-container,
  .home-two-products,
  .locations-images-section {
    max-width: 100%;
    overflow-x: clip;
  }

  .padding-top-hero {
    padding-top: 38px !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .heading-three,
  .heading-four,
  .heading-five,
  .details-page-title,
  .home-one-clients-rating-heading,
  .home-two-medical-services-heading,
  .home-two-services-heading-width,
  .home-two-service-qualities-heading-width,
  .home-products-title,
  .home-three-marque-heading,
  .team-details-hero-right h1 {
    max-width: 100%;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  h1,
  .home-one-clients-rating-heading,
  .details-page-title.no-margin,
  .team-details-hero-right h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.08 !important;
  }

  h2,
  .home-two-medical-services-heading,
  .home-two-services-heading-width,
  .home-two-service-qualities-heading-width,
  .home-products-title,
  .home-three-marque-heading {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.12 !important;
  }

  h3,
  .heading-three {
    font-size: clamp(24px, 6.5vw, 30px) !important;
    line-height: 1.18 !important;
  }

  h4,
  .heading-four {
    font-size: clamp(21px, 5.6vw, 26px) !important;
    line-height: 1.22 !important;
  }

  h5,
  h6,
  .heading-five {
    font-size: clamp(18px, 4.8vw, 22px) !important;
    line-height: 1.28 !important;
  }

  p,
  li,
  dd,
  dt,
  label,
  .body-font,
  .color-grey,
  .no-margin-bottom,
  .rich-text-block,
  .w-richtext p,
  .w-richtext li,
  .home-two-medical-services-paragraph,
  .home-two-service-qualities-paragraph-width,
  .home-medical-expertise-paragraph-width,
  .home-service-first-paragraph-width,
  .home-two-services-paragraph-width,
  .patient-comment-paragraph-width {
    max-width: 100%;
    font-size: 17px !important;
    line-height: 1.62 !important;
    overflow-wrap: break-word;
  }

  .text-tagline,
  .very-small-text,
  .small-text {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .w-richtext ul,
  .w-richtext ol {
    padding-left: 1.25em;
  }

  .w-richtext li + li {
    margin-top: 6px;
  }

  .home-one-clients-rating-wrapper,
  .home-qualities-wrapper,
  .home-medical-expertise-wrapper,
  .home-medical-expertise-services,
  .home-medical-expertise-services._2-columns,
  .home-services-buttom,
  .home-services-buttom._4-columns,
  .shop-collection-list,
  .team-details-hero-wrapper,
  .locations-images-buttom,
  .pricing-two-accordian-wrapper,
  .faq-accordian-right,
  .all-accordians,
  .all-accordians.services,
  .total-star-ratings {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .home-one-clients-rating-left,
  .home-one-clients-rating-right,
  .home-two-service-qualities-left,
  .home-qualities-right,
  .team-details-hero-left,
  .team-details-hero-right,
  .shop-details-content-block,
  .shop-details-block,
  .main-shop-list-item,
  .home-two-services-service-box,
  .home-two-medical-expertise-sevice,
  .faq-accordian-left,
  .faq-accordian-right,
  .accordian {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .position-sticky {
    position: static !important;
  }

  .home-service-qualities-main-image,
  .home-two-service-qualities-background-image,
  .locations-image,
  .service-image-wrapper,
  .service-image-wrapper img,
  .team-details-image,
  .team-details-image img,
  .shop-list-image,
  .home-services-card-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .home-two-service-qualities-background-image {
    display: none;
  }

  .button-group,
  .quantity-row,
  .default-state,
  .default-state-shop-item,
  .add-to-cart,
  .service-details-other-services-top,
  .accordian-heading,
  .home-two-medical-expertise-sevice-heading {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .button-new,
  .primary-button,
  .w-button,
  .w-commerce-commerceaddtocartbutton,
  .w-commerce-commercebuynowbutton,
  .view-all-services,
  .read-more {
    width: 100% !important;
    min-height: 52px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  input,
  textarea,
  select,
  .quantity {
    width: 100% !important;
    min-height: 48px;
    font-size: 16px !important;
  }

  .home-three-marque,
  .home-three-marque-wrapper,
  .home-three-marque-container,
  .home-three-marque-container-one,
  .marque-container-two,
  .services-marque {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    contain: layout paint;
  }

  .whole-marque-content,
  .marque-train,
  .marque-two {
    max-width: none;
  }

  .marque-content {
    width: min(82vw, 320px) !important;
    max-width: min(82vw, 320px) !important;
    padding: 24px !important;
  }

  .shop-details-slider,
  .w-slider,
  .w-slider-mask,
  .w-slide {
    max-width: 100% !important;
  }

  .shop-details-slider {
    min-height: 340px;
  }

  .shop-details-image {
    padding: 18px !important;
  }

  .static-footer {
    margin-top: 48px;
    padding-top: 36px;
  }
}

@media (max-width: 420px) {
  .container,
  .base-container,
  .w-container,
  .container-width-full {
    width: min(100% - 24px, 1180px) !important;
    max-width: min(100% - 24px, 1180px) !important;
  }

  h1,
  .home-one-clients-rating-heading,
  .details-page-title.no-margin,
  .team-details-hero-right h1 {
    font-size: 34px !important;
  }

  .home-two-medical-expertise-sevice,
  .home-two-services-service-box,
  .shop-details-block,
  .accordian {
    border-radius: 18px !important;
  }
}
