/* ===================================
    Crafto - Beauty salon
====================================== */
/* Before / After comparison: internally LTR on Arabic RTL pages. */
.before-after-wrapper {
  --position: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 7;
  user-select: none;
  direction: ltr !important;
}

.before-after-wrapper .before-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-wrapper .after-image {
  z-index: 1;
}

.before-after-wrapper .before-image {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.before-after-wrapper .before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  transform: translateX(-50%);
  background: #fff;
  pointer-events: none;
  z-index: 4;
}

.before-after-wrapper .before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: #fff;
  color: #242e35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.before-after-wrapper .before-after-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  direction: ltr !important;
}

.before-after-wrapper .before-after-label {
  position: absolute;
  top: 25px;
  z-index: 4;
  direction: rtl;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  color: #242e35;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.before-after-wrapper .before-label {
  left: 25px;
  right: auto;
}

.before-after-wrapper .after-label {
  right: 25px;
  left: auto;
}

@media (max-width: 767px) {
  .before-after-wrapper {
    aspect-ratio: 4 / 3;
  }

  .before-after-wrapper .before-after-handle {
    width: 44px;
    height: 44px;
  }

  .before-after-wrapper .before-after-label {
    top: 15px;
  }

  .before-after-wrapper .before-label {
    left: 15px;
  }

  .before-after-wrapper .after-label {
    right: 15px;
  }
}

/* Shared Amman / Dubai clinic location selector. */
.location-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--bronze);
  border-radius: 6px;
  background: var(--black);
}

.location-switcher button {
  min-width: 92px;
  border: 0;
  border-radius: 4px;
  padding: 9px 18px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.location-switcher button:is(:hover, :focus-visible) {
  color: var(--base-color);
}

.location-switcher button.active {
  background: var(--bronze);
  color: var(--base-color);
}

[data-location-panel][hidden] {
  display: none !important;
}

/* Selectable result cards retain the existing Crafto card layout. */
[data-before-after-results] .before-after-case {
  cursor: pointer;
  border-radius: 6px;
  outline: 1px solid transparent;
  outline-offset: 5px;
  transition: outline-color 200ms ease;
}

[data-before-after-results] .before-after-case.active {
  outline-color: var(--base-color);
}

[data-before-after-results] .before-after-case:focus-visible {
  outline: 2px solid var(--dark-gray);
}

/* Keep every result thumbnail at the first image's portrait ratio. */
[data-results-inline] .before-after-case>.position-relative {
  width: 100%;
  aspect-ratio: 667 / 890;
  overflow: hidden;
}

[data-results-inline] .before-after-case>.position-relative>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* In-place Review result expansion using the existing comparison layout. */
[data-results-inline] .inline-results-comparison,
[data-results-inline] .inline-results-comparison>.col-lg-8,
[data-results-inline] .inline-results-comparison>.col-lg-4,
[data-results-inline] .before-after-case,
[data-results-inline] .before-after-case .btn,
[data-results-inline] .inline-result-expanded {
  animation: none !important;
  transition: none !important;
  opacity: 1;
}

[data-results-inline] .before-after-case,
[data-results-inline] .text-end {
  text-align: right !important;
}

html[lang="en"] [data-before-after-results] .before-after-case,
html[lang="en"] [data-before-after-results] .text-end {
  text-align: left !important;
}

[data-results-inline] .inline-result-expanded {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

[data-results-inline] .inline-results-comparison {
  position: relative;
  padding: 80px 24px 24px;
  margin: 0 !important;
}

[data-results-inline] .inline-results-comparison[hidden],
[data-results-inline] .before-after-case[hidden] {
  display: none !important;
}

[data-results-inline] .inline-results-close {
  position: absolute;
  top: 20px;
  left: 36px;
  width: auto;
  max-width: calc(100% - 72px);
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--base-color);
  border-radius: 6px;
  padding: 5px 12px;
  font: inherit;
  cursor: pointer;
}

[data-results-inline] .inline-results-close:is(:hover, :focus-visible) {
  color: var(--base-color);
}

@media (max-width: 767px) {
  [data-results-inline] .inline-results-comparison {
    padding: 72px 8px 16px;
  }

  [data-results-inline] .inline-results-close {
    top: 16px;
    left: 20px;
    max-width: calc(100% - 40px);
  }
}

/* Brand palette: charcoal surfaces, white information, restrained gold accents. */
body.beauty-salon-theme {
  --base-color: #dbc337;
  --black: #1b1b1b;
  --dark-gray: #1b1b1b;
  --white: #ffffff;
  --medium-gray: #9a9a9a;
  --light-medium-gray: #9a9a9a;
  --light-gray: #2e2a21;
  --extra-medium-gray: #2e2a21;
  --bronze: #2e2a21;
  --theme-ink: #ffffff;
  background-color: var(--black);
  color: var(--white);
}

.beauty-salon-theme .bg-white {
  --theme-ink: #050505;
  color: var(--black);
}

/* Crafto's modern mobile menu wraps the content in a white .page-layout. */
body.beauty-salon-theme .page-layout {
  background-color: var(--black);
  color: var(--white);
}

.beauty-salon-theme .bg-dark-gray {
  --theme-ink: #ffffff;
  color: var(--white);
}

.beauty-salon-theme :is(h1, h2, h3, h4, h5, h6, a) {
  color: var(--theme-ink);
}

.beauty-salon-theme .text-dark-gray {
  color: var(--theme-ink) !important;
}

.beauty-salon-theme :is(.text-dark-gray-hover:hover, a:hover) {
  color: var(--base-color);
}

.beauty-salon-theme .text-gradient-san-blue-new-york-red {
  background-image: none;
  color: var(--base-color);
  -webkit-text-fill-color: var(--base-color);
}

.beauty-salon-theme .bg-gradient-blue-ironstone-brown {
  background-image: linear-gradient(to right, var(--black), #2e2a21);
}

.beauty-salon-theme .bg-gradient-blue-ironstone-brown-transparent {
  background-image: linear-gradient(to right, var(--black), rgba(46, 42, 33, 0.7));
}

.beauty-salon-theme .bg-gradient-solitude-blue-fair-pink {
  background-image: linear-gradient(to bottom, var(--black), #2e2a21);
}

.beauty-salon-theme .bg-gradient-dark-transparent {
  background: linear-gradient(to top, var(--black) 7%, transparent 100%);
}

.beauty-salon-theme :is(.bg-yellow, .bg-base-color) {
  --theme-ink: #ffffff;
  background-color: var(--bronze) !important;
  color: var(--white) !important;
}

.beauty-salon-theme .border-color-dark-gray {
  border-color: var(--bronze) !important;
}

.beauty-salon-theme .btn:is(.btn-base-color, .btn-dark-gray, .btn-transparent-dark-gray, .btn-transparent-white-light) {
  background: var(--black);
  border-color: var(--base-color);
  color: var(--white) !important;
}

.beauty-salon-theme .btn:is(.btn-base-color, .btn-dark-gray, .btn-transparent-dark-gray, .btn-transparent-white-light):is(:hover, :focus-visible) {
  background: var(--bronze);
  border-color: var(--base-color);
  color: var(--base-color) !important;
}

.beauty-salon-theme .btn.btn-white,
.beauty-salon-theme .btn.btn-white:is(:hover, :focus-visible) {
  background: var(--white);
  border-color: var(--white);
  color: var(--black) !important;
}

.beauty-salon-theme .btn.btn-white:is(:hover, :focus-visible) {
  border-color: var(--base-color);
}

.beauty-salon-theme .navbar .navbar-nav .nav-link {
  color: var(--white);
}

.beauty-salon-theme .navbar .navbar-nav .nav-link:hover {
  color: var(--base-color);
}

.beauty-salon-theme .language-switch-item {
  display: flex;
  align-items: center;
}

.beauty-salon-theme .language-switch-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-inline-start: 12px;
  padding: 7px 12px !important;
  border: 1px solid currentColor;
  border-radius: 20px;
  background: transparent;
  color: var(--white) !important;
  font: inherit;
  font-size: 13px;
  line-height: 1.3;
  opacity: 1;
  cursor: default;
}

.beauty-salon-theme .language-switch-current {
  color: var(--base-color);
  font-weight: 700;
}

.beauty-salon-theme .language-switch-button a {
  color: var(--white);
  text-decoration: none;
}

.beauty-salon-theme .language-switch-button a:is(:hover, :focus-visible) {
  color: var(--base-color);
}

.beauty-salon-theme .language-switch-divider {
  opacity: 0.55;
}

.beauty-salon-theme .header-language-switch {
  flex: none;
  margin-inline: 10px;
}

.beauty-salon-theme .header-language-switch .language-switch-button {
  margin-inline-start: 0;
  padding: 7px 10px !important;
  border-color: var(--base-color);
}

.beauty-salon-theme header .navbar .navbar-collapse .language-switch-item {
  display: none !important;
}

.beauty-salon-theme .circle-cursor-inner,
.beauty-salon-theme .circle-cursor-inner.cursor-link-hover {
  background-color: var(--base-color);
}

.beauty-salon-theme .before-after-case:focus-visible {
  outline-color: var(--white);
}

@media (max-width: 991px) {
  .beauty-salon-theme .navbar .header-language-switch {
    display: none;
  }

  /* Crafto clones the mobile menu outside .navbar and sets its backdrop inline. */
  body.beauty-salon-theme :is(.navbar-show-modern-bg, .navbar-full-screen-menu-inner) {
    background: var(--black) !important;
  }

  body.beauty-salon-theme :is(.navbar-modern-inner, .navbar-full-screen-menu-inner) .navbar-nav .nav-item .nav-link {
    color: var(--white);
  }

  body.beauty-salon-theme :is(.navbar-modern-inner, .navbar-full-screen-menu-inner) .navbar-nav .nav-item:is(:hover, .active) .nav-link {
    color: var(--base-color);
  }

  .beauty-salon-theme :is(.navbar-modern-inner, .navbar-full-screen-menu-inner) .language-switch-button {
    margin: 16px 0 0;
    font-size: 18px;
  }

  .beauty-salon-theme .navbar {
    background-color: var(--black) !important;
  }

  .beauty-salon-theme .navbar-toggler-line {
    background-color: var(--white);
  }

  .beauty-salon-theme .navbar-brand :is(.default-logo, .alt-logo) {
    display: none !important;
  }

  .beauty-salon-theme .navbar-brand .mobile-logo {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
  }
}

/* font */
@font-face {
  font-family: "NotoKufiArabic";
  src: url("../fonts/NotoKufiArabic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

/* variable */
:root {
  --base-color: #ffa085;
  --dark-gray: #2e3844;
  --medium-gray: #7e8287;
  --light-gray: #ffece7;
  --light-medium-gray: #7e8691;
  --alt-font: "NotoKufiArabic", sans-serif;
  --primary-font: "NotoKufiArabic", sans-serif;
}

/* reset */
body {
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.3px;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* custom cursor */
.custom-cursor .circle-cursor-inner {
  background-color: var(--dark-gray);
  width: 16px;
  height: 16px;
}

.custom-cursor .circle-cursor-inner.cursor-link-hover {
  background-color: var(--dark-gray);
}

.custom-cursor .circle-cursor-outer {
  border: 1px solid transparent;
}

/* header */
.navbar .navbar-nav .nav-link {
  font-size: 18px;
  padding: 10px 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

header .navbar-brand img {
  max-height: 58px;
}

header .navbar-brand {
  padding: 25px 0;
}

/* text gradient color */
.text-gradient-san-blue-new-york-red {
  background-image: linear-gradient(to right,
      #2e3844,
      #455161,
      #db7f68,
      #e17a60,
      #e47256);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* bg color */
.bg-gradient-blue-ironstone-brown {
  background-image: linear-gradient(to right,
      #2c3846,
      #333945,
      #3e393f,
      #584344,
      #8b4d41);
}

.bg-gradient-blue-ironstone-brown-transparent {
  background-image: linear-gradient(to right,
      rgb(46, 56, 68),
      rgba(47, 56, 68, 0.7),
      rgba(70, 64, 68, 0.7),
      rgba(104, 74, 68, 0.7),
      rgba(134, 84, 68, 0.7));
}

.bg-gradient-solitude-blue-fair-pink {
  background-image: linear-gradient(to bottom,
      #f8ebe9,
      #f6ebed,
      #f2ebf0,
      #eeebf1,
      #eaecf1);
}

.bg-gradient-dark-transparent {
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      color-stop(7%, #2e3844),
      to(transparent));
  background: linear-gradient(to top, #2e3844 7%, transparent 100%);
}

/* btn */
.btn {
  text-transform: inherit;
  font-family: var(--primary-font);
  font-weight: 600;
}

.btn.btn-extra-large {
  font-size: 17px;
  padding: 16px 30px;
}

.btn.btn-large {
  font-size: 15px;
  padding: 14px 25px;
}

.btn.btn-medium {
  font-size: 14px;
  padding: 12px 22px;
}

.btn.btn-small {
  font-size: 13px;
  padding: 11px 22px;
}

.btn.btn-very-small {
  font-size: 13px;
  padding: 9px 20px;
}

.btn.btn-base-color {
  color: #232120;
}

.btn.btn-box-shadow.btn-base-color:hover {
  color: #232120;
}

.btn.btn-base-color:hover {
  color: var(--base-color);
}

.btn.btn-transparent-white-light {
  border-color: rgba(255, 255, 255, 0.2);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
}

/* border radius */
.border-radius-rb-50px {
  border-radius: 0 0 50px 0;
}

/* page title */
.page-title-extra-small h1 {
  font-size: 4.3rem;
  line-height: 4.3rem;
}

/* services box style 01 */
.services-box-style-01:hover .box-overlay {
  opacity: 0.4;
}

/* interactive banner style 01 */
.interactive-banner-style-01 figure:hover .box-overlay {
  opacity: 0.7;
}

/* services box style 01 */
.services-box-style-01 .box-overlay {
  opacity: 0;
  visibility: visible;
}

.services-box-style-01:hover .box-overlay {
  opacity: 0.7;
}

/* contact form style 03 */
.contact-form-style-03 {
  margin-bottom: -85px;
}

/* top right bottom left */
.right-45px {
  right: 45px;
}

.right-minus-45px {
  right: -45px;
}

/* footer */
footer .footer-logo img {
  max-height: 58px;
}

.beauty-salon-theme .navbar-brand .alt-logo {
  filter: invert(1);
}

footer .elements-social .medium-icon li a {
  font-size: 18px;
}

footer .elements-social .medium-icon li {
  margin-right: 0px;
}

footer .nav-link {
  color: var(--white);
}

@media (max-width: 991px) {

  header .navbar-brand img,
  footer .footer-logo img {
    max-height: 50px;
  }
}

@media (max-width: 1600px) {
  section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media only screen and (max-width: 1399px) and (min-width: 992px) {
  .navbar .navbar-nav .nav-link {
    font-size: 17px;
    padding: 10px 20px;
  }
}

@media (max-width: 991px) {
  [data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav>.nav-item {
    border-bottom: 0;
    padding: 7px 0px;
  }

  [data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .nav-item .nav-link {
    font-size: 30px;
  }

  section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  footer ul li {
    line-height: normal;
  }

  header .btn.btn-transparent-white-light,
  header .btn.btn-transparent-white-light:hover {
    border-color: rgba(46, 56, 68, 1);
    color: var(--dark-gray);
  }
}

@media (max-width: 767px) {
  .home-hero-slider {
    background-image: url("/images/dr-aborumman/slider-mobile.png") !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 20px;
  }
}

/* Botox details */
.botox-detail {
  --botox-gold-soft: #f5d3d3;
  --botox-charcoal: #1b1b1b;
}

.botox-detail .service-detail-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background-position: center;
}

.botox-detail .service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(12, 12, 12, 0.88) 18%,
      rgba(12, 12, 12, 0.52) 48%,
      rgba(12, 12, 12, 0.08) 78%);
}

.botox-detail .service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--base-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.botox-detail .service-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.botox-detail .hero-title {
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.92;
}

.botox-detail .hero-description {
  max-width: 590px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
}

.botox-detail .hero-breadcrumb a,
.botox-detail .hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

.botox-detail .fact-card {
  --theme-ink: var(--botox-charcoal);
  height: 100%;
  padding: 30px 24px;
  border: 1px solid #e7e3d5;
  border-radius: 6px;
  background: #fff;
  color: #696969;
}

.botox-detail .fact-card i {
  color: var(--base-color);
  font-size: 27px;
}

.botox-detail .treatment-image {
  min-height: 620px;
  background-size: cover;
  background-position: 31% center;
}

.botox-detail .gold-note {
  --theme-ink: var(--botox-charcoal);
  border-left: 3px solid var(--base-color);
  background: var(--botox-gold-soft);
  color: #696969;
}

.botox-detail .area-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}

.botox-detail .area-item i {
  color: var(--base-color);
  margin-top: 4px;
}

.botox-detail .benefit-card {
  height: 100%;
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
}

.botox-detail .benefit-number {
  color: var(--base-color);
  font-size: 14px;
  letter-spacing: 1px;
}

.botox-detail .process-step {
  --theme-ink: var(--botox-charcoal);
  position: relative;
  height: 100%;
  padding: 36px 30px;
  border-top: 2px solid var(--base-color);
  background: #fff;
  color: #696969;
  box-shadow: 0 12px 36px rgba(27, 27, 27, 0.07);
}

.botox-detail .light-treatment-section {
  --theme-ink: var(--botox-charcoal);
  color: #696969;
}

.botox-detail .light-treatment-section .service-kicker {
  color: var(--base-color);
}

.botox-detail .process-step .step-number {
  color: #dfd8ae;
  font-size: 48px;
  line-height: 1;
}

.botox-detail .faq-item {
  border-bottom: 1px solid #dedede;
}

.botox-detail .faq-item summary {
  position: relative;
  padding: 25px 45px 25px 0;
  color: var(--botox-charcoal);
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.botox-detail .faq-item summary::-webkit-details-marker {
  display: none;
}

.botox-detail .faq-item summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--base-color);
  font-size: 28px;
  font-weight: 300;
}

.botox-detail .faq-item[open] summary::after {
  content: "−";
}

.botox-detail .faq-answer {
  max-width: 850px;
  padding: 0 45px 24px 0;
}

.botox-detail .consultation-card {
  position: sticky;
  top: 30px;
  padding: 40px;
  border-radius: 6px;
  background: var(--botox-charcoal);
}

body.botox-detail .service-editorial {
  --theme-ink: #fff;
  background: var(--botox-charcoal) !important;
  color: #b8b8b8 !important;
}

body.botox-detail .service-editorial :is(.soft-info-card:not(.featured), .approach-card, .evaluation-panel) {
  --theme-ink: #fff;
  color: #b8b8b8;
}

.botox-detail .editorial-shell {
  width: 100%;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

.botox-detail .doctor-feature {
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #1b1b1b url("images/dr-aborumman/clinic_gradient_exact_original_size.png") center / cover no-repeat;
}

.botox-detail .doctor-feature img {
  width: auto;
  height: 535px;
  max-width: 90%;
  object-fit: contain;
  object-position: bottom;
}

.botox-detail .editorial-rule {
  border-top: 1px solid #3b372b;
}

.botox-detail .soft-info-card {
  height: 100%;
  min-height: 126px;
  padding: 25px 27px;
  border: 1px solid #3b372b;
  border-radius: 6px;
  background: linear-gradient(125deg, #24231f, #2e2a21);
}

.botox-detail .soft-info-card.featured {
  border-color: var(--base-color);
  background: linear-gradient(125deg, #2e2a21, #1b1b1b);
  color: #fff;
}

.botox-detail .soft-info-card i {
  color: var(--base-color);
  font-size: 18px;
}

.botox-detail .soft-info-card.featured i,
.botox-detail .soft-info-card.featured h3 {
  color: var(--base-color);
}

.botox-detail .approach-card {
  height: 100%;
  padding: 34px 28px;
  text-align: center;
  border: 1px solid #3b372b;
  border-radius: 6px;
  background: linear-gradient(135deg, #24231f, #2e2a21);
}

.botox-detail .approach-number {
  color: var(--base-color);
  font-size: 18px;
  font-weight: 800;
}

.botox-detail .glance-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #3b372b;
}

.botox-detail .glance-item {
  padding: 24px;
  text-align: center;
}

.botox-detail .glance-item+.glance-item {
  border-inline-start: 1px solid #3b372b;
}

.botox-detail .evaluation-panel {
  padding: 50px 40px;
  text-align: center;
  border: 1px solid var(--base-color);
  border-radius: 7px;
  background: linear-gradient(115deg, #2e2a21, #1b1b1b);
}

.botox-detail .simple-faq {
  border-top: 1px solid #3b372b;
}

.botox-detail .simple-faq .faq-item summary {
  color: #fff;
}

@media (max-width: 991px) {
  .botox-detail .service-detail-hero {
    min-height: 620px;
    background-position: 38% center;
  }

  .botox-detail .service-detail-hero::before {
    background: rgba(12, 12, 12, 0.62);
  }

  .botox-detail .treatment-image {
    min-height: 500px;
  }

  .botox-detail .consultation-card {
    position: static;
  }
}

@media (max-width: 575px) {
  .botox-detail .service-detail-hero {
    min-height: 580px;
  }

  .botox-detail .hero-title {
    font-size: 58px;
  }

  .botox-detail .treatment-image {
    min-height: 400px;
  }

  .botox-detail .consultation-card {
    padding: 30px 24px;
  }

  .botox-detail .doctor-feature {
    min-height: 410px;
  }

  .botox-detail .doctor-feature img {
    height: 390px;
  }

  .botox-detail .glance-row {
    grid-template-columns: 1fr;
  }

  .botox-detail .glance-item+.glance-item {
    border-top: 1px solid #3b372b;
    border-inline-start: 0;
  }

  .botox-detail .evaluation-panel {
    padding: 38px 22px;
  }

  .botox-detail .hero-actions {
    width: 100%;
    max-width: 290px;
  }

  .botox-detail .hero-actions .btn {
    width: 100%;
  }

  .botox-detail .service-editorial h2,
  .botox-detail .service-editorial h3 {
    overflow-wrap: anywhere;
  }
}