/*
 Theme Name:   Dr. Hazim Sadideen
 Theme URI:    https://elementor.com/hello-theme/
 Description:  Child theme for Hello Elementor with local Slick Slider integration.
 Author:       Madushan Abeysinghe
 Author URI:   https://mcabeysinghe.com
 Template:     hello-elementor
 Version:      1.0.0
 Requires at least: 6.0
 Tested up to: 6.8
 Requires PHP: 7.4
 License:      GNU General Public License v3 or later
 License URI:  https://www.gnu.org/licenses/gpl-3.0.html
 Text Domain:  hello-elementor-child
*/

/* ----- CSS Custom Properties ----- */

/* ============================================
   ANIMATED UNDERLINE + MEGA MENU - ELEMENTOR FIX
   ============================================ */

/* 1. Wrap the nav in a relative container */
.elementor-nav-menu--main {
  position: relative;
}
.map-overflow { overflow: hidden; border-radius: 15px; border: 1px solid #d79d74;max-height:350px;}
.map-overflow .map-view { margin-top: -62px;}
.mcn-btn a:hover { letter-spacing: 1px; }
.ff-default .ff_btn_style:focus,
.ff-default .ff_btn_style:hover { opacity: 1 !important; }
span.sub-arrow {
  position: absolute;
  right: -20px;
  top: 17px;
  padding: 0 !important;
}
span.sub-arrow:after {
  content: '';
  background-image: url('https://drhazlondon.com/wp-content/uploads/2026/06/down-arrow.svg');
  position: absolute;
  background-size: contain;
  top: 0;
  width: 19px;
  height: 19px;
  z-index: 8222;
  background-position: center center;
  background-color: #ffffff;
}
/* 4. The mega panel — base (hidden) state */
.drhaz-mega-panel {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(-18px) !important;
  width: 1311px;
  max-width: 100%;
  top: 125px !important;
  z-index: 99999;
  background: #FAFAFA;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  padding: 36px 30px 30px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Panel is in the layout / interactive */
.drhaz-mega-panel.mm-visible {
  display: grid;
  pointer-events: all;
}

/* Open state — fade in + slide down into place */
.drhaz-mega-panel.mm-animate {
  opacity: 1;
  transform: translateX(-50%) translateY(0) !important;
}

/* Closing state — fade out + slide up */
.drhaz-mega-panel.mm-closing {
  opacity: 0;
  transform: translateX(-50%) translateY(-18px) !important;
  transition: opacity 0.26s cubic-bezier(0.4, 0, 1, 1),
              transform 0.26s cubic-bezier(0.4, 0, 1, 1);
}

/* 5. Four-column grid */
.drhaz-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}

/* 6. Divider lines between columns */
.drhaz-mega-col + .drhaz-mega-col {
  padding-left: 40px;
}

/* 7. Column heading */
.drhaz-mega-col-title {
  color: #D79D74;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #D79D74;
  font-family: "Outfit", Sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  width: fit-content;
}
.drhaz-top-margin { margin-top: 45px; }

/* 8. Section sub-heading */
.drhaz-mega-section-title {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #D79D74;
  margin: 18px 0 8px;
}

/* 9. Links */
.drhaz-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drhaz-mega-col ul li {
    margin-bottom: 5px;
    position: relative;
}
.drhaz-mega-col ul li a {
  color: #5A5959;
  text-decoration: none;
  line-height: 27px;
  display: block;
  font-family: "Outfit", Sans-serif;
  font-weight: 300;
  font-size: 15px;
  text-transform: capitalize;
  transition: transform 0.33s ease, color 0.15s ease;
  transform: translateX(0px);
}
.drhaz-mega-col ul li a:hover {
    color: #D79D74;
    transform: translateX(22px);
    transition: transform 0.33s ease;
}
/* 10. Backdrop */
.drhaz-mega-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: transparent;
  top: 90px;
}
.drhaz-mega-backdrop.mm-visible { display: block; }
.drhaz-mega-col ul li:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 0.5px;
    background-color: #D79D74;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: width 0.52s ease;
}
.drhaz-mega-col ul li:hover:before {width: 15px; transition: width 0.52s ease;}

/* Menu Css End */

/* Step 1: Kill ALL of Elementor's built-in pointer styles */
.e--pointer-underline .elementor-item:before,
.e--pointer-underline .elementor-item:after,
.e--pointer-underline .elementor-item--active:before,
.e--pointer-underline .elementor-item--active:after,
.elementor-nav-menu--main .elementor-item:before,
.elementor-nav-menu--main .elementor-item:after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    opacity: 0 !important;
}

/* Step 2: Set up positioning on the link */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item {
    position: relative !important;
    display: inline-block !important;
    overflow: visible !important;
}

/* Step 3: Our custom underline using a box-shadow trick (bypasses ::after conflicts) */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item {
    background-image: linear-gradient(#E1BB5F, #E1BB5F);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.35s ease;
    padding-bottom: 2px;
}
/* Step 4: Animate on hover */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item:hover,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item:focus {
    background-size: 100% 1px;
}
/* Step 5: Keep underline on active/current page */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.current-menu-item > a.elementor-item,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.current-menu-ancestor > a.elementor-item {
    background-size: 100% 1px;
}
/* Active / Current page underline */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.current-menu-item > a.elementor-item,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.current-menu-ancestor > a.elementor-item,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item.elementor-item-active,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item.highlighted {
    background-size: 100% 1px !important;
}
/* Force .menu-item-1981 to ONLY show underline on hover/focus,
   never as a sticky "active/current page" indicator */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981.current-menu-item > a.elementor-item,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981.current-menu-ancestor > a.elementor-item,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item.elementor-item-active,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item.highlighted {
  background-size: 0% 1px !important;
}

/* Re-enable it purely on hover/focus for this item */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item:hover,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item:focus {
  background-size: 100% 1px !important;
}
/* Force .menu-item-1981 to ONLY show underline on hover/focus,
   never as a sticky "active/current page" indicator */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981.current-menu-item > a.elementor-item,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981.current-menu-ancestor > a.elementor-item,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item.elementor-item-active,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item.highlighted {
  background-size: 0% 1px !important;
}

/* Re-enable it purely on hover/focus for this item */
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item:hover,
nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item-1981 > a.elementor-item:focus {
  background-size: 100% 1px !important;
}

/* Gloable CSS */
.hd-btn{border-radius:unset !important; }
.title-color { font-family: "G Sans Flex Regular", sans-serif; color: #D79D74; }

/* Dr.Haz’s Signature Treatments */
.st-wrapper{border: 0.2px solid #DFDFDF;box-shadow: 0px 4px 4px 0px #00000014;}
.image-wrapper { overflow: hidden; /* clips the image during transform */}
.ab-para p:last-child, .benifit-list p:last-child,.recover-list p:last-child { margin-bottom: 0 !important;}
.st-image{ transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform;}
.st-wrapper:hover > .image-wrapper > .st-image {transform: scale(1.08) rotate(2deg);}

/* Page Header Style */
.pgbg-style-2 { background: linear-gradient(90deg, rgba(215, 157, 116, 0.6) -18.91%, rgba(255, 255, 255, 0.6) 100%);}

/* Before and After */
.bf-box {
    width: 88px;
    height: 32px;
    background-color: #D79D74;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Review section */
.sec-1-extra h2, .sec-1-extra h3 {
    font-family: "G Sans Flex Light", Sans-serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 40px;
    color: var(--e-global-color-secondary);
}
.sec-1-extra p:last-child {
    margin-bottom: 0 !important;
}
/* ── Initials avatar ─────────────────────────────────────── */
/* Review section */
/* ── Initials avatar ─────────────────────────────────────── */
.he-shot.initials-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2F2A2A;
    color: #EBEFF8;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    font-family: "Inter", sans-serif;
}
.tc-code .slick-list {
    overflow: visible;
    clip-path: inset(0px -18px 0px -18px);
}
/* ── Equal height track & slides ─────────────────────────── */
.testimonial-slick .slick-track {
    display: flex !important;
}
.testimonial-slick .slick-slide {
    height: inherit !important;
    display: flex !important;
}
.testimonial-slick .slick-slide > div {
    display: flex;
    width: 100%;
}
/* ── Testimonial Style ───────────────────────────────────── */
.testimonial-slide {
    display: flex;
    flex-direction: column;
    width: 417px;
    border-radius: 20px;
    padding: 32px;
    margin: 20px 15px;
    box-shadow: 0px 2px 12px 0px #1F2D3D1A;
}
h3.client-name {
    font-family: Outfit;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #2F2A2A;
}
.client-headshot-row {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    margin-top: auto;
}
.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial {
    padding-bottom: 32px;
    font-family: Outfit;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    color: #2F2A2A;
}
.testimonial-slider-wrapper.tc-code .testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.testimonial-slider-wrapper.tc-code .testimonial-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.testimonial-slider-wrapper.tc-code .read-more-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.testimonial-slider-wrapper.tc-code .read-more-btn.visible {
    display: inline-block;
}

/* ── Star Rating ─────────────────────────────────────────── */
.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.star-rating .star {
    font-size: 24px;
    line-height: 1;
}
.star-rating .star.filled {
    color: #E1BB5F;
}
.star-rating .star.empty {
    color: #D9D9D9;
}
.st-wrapper-n {
    border: none;
    box-shadow: none;
}
/* Vidoe-popup */
.dr-pop-img {
    position: relative;
    height: 550px;
    overflow: hidden;
    background-image: url('https://drhazlondon.com/wp-content/uploads/2026/06/video-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}
.dr-pop-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 20%);
    pointer-events: none;
}
span.btn-con {
    position: absolute;
    left: 50%;
    z-index: 99;
    bottom: 170px;
    transform: translateX(-50%);
}
.btn-play {
    transition: transform 0.7s ease;
}
.dr-video-wrap:hover .btn-play {
    transform: scale(1.2);
    transition: transform 0.7s ease;
}
.pg-line-1::after, .pg-line-2::after {
    content: '';
    width: 1px;
    height: 219px;
    position: absolute;
    background-color: #D79D74;
    z-index: 2;
    top: 0;
    left: 50%;
}
.pg-number span {
    width: 75px;
    height: 75px;
    background-color: #fff;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid #D79D74;
    border-radius: 50%;
    position: relative;
    z-index: 8;
}

/* Model Video JS Popup Style */
.modal-video-movie-wrap iframe
 {
    padding: 4px;
    border-radius: 8px;
    background-color: #fff;
}
.modal-video-close-btn {
    top: -13px!important;
    right: -13px!important;
    padding: 0!important;
    margin: 0!important;
    line-height: 0!important;
    width: 30px!important;
    height: 30px!important;
    background-color: #D79D74 !important;
    border-radius: 50% !important;
}
.modal-video-close-btn:before,.modal-video-close-btn:after {
    content: "";
    position: absolute;
    height: 3px!important;
    width: 65%!important;
    top: 46%!important;
    left: 19%!important;
    background: #fff!important;
    border-radius: 5px!important;
    margin-top: 0!important
}
/* Model Video JS Popup Style */
.ceter-line::before {
	content: '';
	width: 1px;
	height: 98px;
	background-color: #D5D5D5;
	left: -55px;
	top: 50%;
	transform: translateY(-50%);
}
.ceter-line::after {
	content: '';
	width: 1px;
	height: 98px;
	background-color: #D5D5D5;
	right: -55px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}

/* About Us Page */
.ab-para p strong, .ab-list-ul ul li span strong {
    color: #000000;
    font-weight: 400;
}

/* Contact Us page */
.dr-video-wrap-n .dr-pop-img {
    height: 418px;
    background-image: url('https://drhazlondon.com/wp-content/uploads/2026/07/Contact-us-video.jpg');
    border-radius: 30px;
}
.dr-video-wrap-n .btn-con {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 154px;
    height: 154px;
}
.dr-video-wrap-n:hover .btn-play {
    transform: scale(0.9);
    transition: transform 0.7s ease;
}
.conf-msg-field {padding-top: 27px !important;}

/* Blog Page Single */
* Blog Page */
.mc-post-content p img { border-radius: 12px; }
.mc-post-content img { border-radius: 12px; }

/* Blog Single Page */
/* Table of Content */
.elementor-toc__list-wrapper { margin: 0; }
.elementor-toc__list-item { margin-bottom: 22px; }
.elementor-toc__list-item-text-wrapper { align-items: start; }
.elementor-toc__body { padding-top: 10px; }

/* Blog Single Page */
.mc-post-content h2 {
    font-family: "G Sans Flex Light", Sans-serif;
    color: #181E36;
    margin-bottom: 30px !important;
    margin-top: 30px !important;
    font-weight: 500 !important;
}
.mc-post-content h2 {
    font-size: 28px;
    line-height: 45px;	
}
.mc-post-content h3,.mc-post-content h4,.mc-post-content h5,.mc-post-content h6 {
    font-size: 18px;
    line-height: 32px;
    padding-left: 28px;
	position:relative;
	font-family: "G Sans Flex Light", Sans-serif;
}
.mc-post-content h3::before, .mc-post-content h4::before, .mc-post-content h5::before, .mc-post-content h6::before {
	content: '';
	background-image: url('https://drhazlondon.com/wp-content/uploads/2026/06/tri-icon.svg');
	width: 17px;
	height: 17px;
	display: block;
	background-size: contain;
	background-position: center center;
	position: absolute;
	left: 0;
	top: 15px;
	transform: translateY(-50%);
}
.mc-post-content ul,.mc-post-content ol {
	margin-left: 15px;
	margin-bottom: 36px;
}
.mc-post-content ul li, .mc-post-content ol li {
    margin-bottom: 10px;
    font-size: 16px;
}
.mc-post-content a {
	font-weight: 500;
	color: #181E36;
}
.mc-post-content a:hover {
  color: #181E36;
}
.mc-post-content p {
    margin-bottom: 32px !important;
    font-size: 16px;
    line-height: 32px;
}
.mc-post-content p:ast-child { margin-bottom: 0px !important;}

/*  * DR.HAZ — Floating Popup Contact Form */
#drhaz-popup-form-wrap .ff-el-form-control::placeholder,
#drhaz-popup-form-wrap input::placeholder,
#drhaz-popup-form-wrap textarea::placeholder {
  color: #000 !important;
  font-family: "Outfit", Sans-serif !important;
}	
.e-loop__load-more .elementor-button{ position:relative; }
.e-loop__load-more .elementor-button:after {
    content: '';
    background-image: url('https://drhazlondon.com/wp-content/uploads/2026/05/Arrow-46.svg');
    position: absolute;
    width: 16px;
    height: 12px;
    background-size: contain;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.pop-btn-style:hover {
    background-color: #D79D74 !important;
    color: #fff !important;
}
.pop-btn-style {
    background: #fff;
    color: #000;
    border: 1px solid #D79D74;
    border-radius: 50px;
    padding: 15px 18px;
    font-family: "Outfit", Sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: 0.5px;
    gap: 13px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 175px;
    height: 48px;
    justify-content: center;
}
.pop-btn-style img {
    width: 22px;
    height: 22px;
}	
#drhaz-popup-trigger {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99990;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, opacity 0.3s ease;
    transform-origin: bottom right;
    line-height: 0;
    outline: none;
}
.icon-white { display: none; }

#drhaz-popup-trigger:hover .pop-btn-style .icon-black { display: none; }
#drhaz-popup-trigger:hover .pop-btn-style .icon-white { display: block; }

#drhaz-popup-trigger:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 14px 40px rgba(215,157,116,0.55);
}
#drhaz-popup-trigger:active { transform: scale(0.97); }
#drhaz-popup-trigger.drhaz-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85) translateY(8px);
}
#drhaz-popup-trigger svg { display: block; border-radius: 12px; }
#drhaz-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99991;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
#drhaz-popup-overlay.drhaz-active { opacity: 1; pointer-events: all; }
#drhaz-popup-modal {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99992;
  width: min(468px, calc(100vw - 24px));
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #FAF4EF;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  transform-origin: bottom right;
  transform: scale(0.6) translateY(60px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.34,1.45,0.64,1), opacity 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: #D79D74 transparent;
}
#drhaz-popup-modal::-webkit-scrollbar { width: 4px; }
#drhaz-popup-modal::-webkit-scrollbar-thumb { background: #D79D74; border-radius: 4px; }
#drhaz-popup-modal.drhaz-active { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
#drhaz-popup-modal.drhaz-closing {transform: scale(0.7) translateY(50px); opacity: 0; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease; }
#drhaz-popup-inner {padding:35px;}
#drhaz-popup-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; border:2px solid #D79D74; background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; padding: 0; outline: none; z-index: 10;}
#drhaz-popup-close:hover { background: rgba(215,157,116,0.12); transform: rotate(90deg); }
#drhaz-popup-close img { width: 20px; height: 20px; display: block; }
#drhaz-popup-header { margin-bottom: 24px; padding-right: 40px; }
#drhaz-popup-title {
    font-family: "G Sans Flex Light", Sans-serif;
    font-size: 25px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    display: block;
    text-transform: uppercase;
}
.drhaz-title-gold {color: #D79D74;}
#drhaz-popup-form-wrap .ff-el-group { margin-bottom: 14px !important; }
#drhaz-popup-form-wrap textarea { min-height: 100px !important; resize: vertical !important; }
#drhaz-popup-form-wrap .ff_submit_btn_container .ff-btn, #drhaz-popup-form-wrap .ff_submit_btn_container .ff-btn, #drhaz-popup-form-wrap .ff_submit_btn_container .ff-btn, #drhaz-popup-form-wrap button[type="submit"], #drhaz-popup-form-wrap input[type="submit"] {
    width: 100% !important;
    background: #ffffff !important;
    color: #d79d74 !important;
    border: 1px solid #d79d74 !important;
    border-radius: 50px !important;
    padding: 8px 12px !important;
    font-family: "Outfit", Sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.15s ease !important;
    box-shadow: none !important;
    color: #000 !important;
}
#drhaz-popup-form-wrap .ff_submit_btn_container .ff-btn:hover,
#drhaz-popup-form-wrap button[type="submit"]:hover,
#drhaz-popup-form-wrap .ff_submit_btn_container .ff-btn:hover, #drhaz-popup-form-wrap button[type="submit"]:hover, #drhaz-popup-form-wrap input[type="submit"]:hover {
    background: #d79d74 !important;
    color: #fff !important;
}
#drhaz-popup-form-wrap .ff-el-input--content { position: relative !important; }
#drhaz-popup-form-wrap .ff-el-group label.ff-el-input--label { display: none !important; }
.drhaz-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font-family: "Outfit", Sans-serif !important;
    font-size: 14px;
    font-weight: 300;
    margin: 20px 0 17px 0;
}
.drhaz-divider::before, .drhaz-divider::after {content: ''; flex: 1; height: 1px; background: #E8D5C4;}
.drhaz-social-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.drhaz-social-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #fff;
  border: 1.5px solid #FBE7DA; border-radius: 12px;
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.drhaz-social-btn:hover {
  border-color: #D79D74;
  box-shadow: 0 4px 16px rgba(215,157,116,0.18);
  transform: translateY(-1px);
}
.drhaz-social-btn img { width: 35px; height: 35px; object-fit: contain; flex-shrink: 0; border-radius: 10px; }
.drhaz-social-text { display: flex; flex-direction: column; gap: 2px; }
.drhaz-social-name { font-family:"Outfit", Sans-serif !important; font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.2; }
.drhaz-social-sub  { font-family:"Outfit", Sans-serif !important,; font-size: 12px; color: #aaa; line-height: 1.2; }
#drhaz-popup-inner { padding: 40px 40px 40px 40px;}
.drhaz-title-black, .drhaz-title-gold { font-size: 26px; }

/*========================================================================== 
  Single Procedures Page 
  ========================================================================== */
.benifit-list-q ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 15px 0 20px 0px !important;
}
.benifit-list > ul > li::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url(https://drhazlondon.com/wp-content/uploads/2026/07/check.svg);
    display: block;
    background-size: contain;
    background-position: center center;
    margin-top: 3px;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.benifit-list-q ul li{ padding-bottom: 5px; }
.benifit-list-q ul { padding: 30px 0 10px 30px; }
.benifit-list > ul > li, .recover-list > ul > li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
}
/* .benifit-list-n > ul > li::before {
	content: '';
	width: 17px;
	height: 17px;
	background-image: url('https://drhazlondon.com/wp-content/uploads/2026/06/tri-icon.svg');
	margin-top: 9px;
	background-repeat:no-repeat;
} */
.benifit-list-x > ul { 
    gap: 5px;
    display: flex;
    flex-direction: column;
	padding-bottom:30px;
}
.benifit-list-n > ul {
    gap: 10px;
    display: flex;
    flex-direction: column;
    padding: 19px 0 30px 0;
}
.recover-list > ul {
    display: grid;
    grid-column-gap: 0px;
    grid-row-gap: 5px;
    padding: 10px 0px 25px 0px;
}
.recover-list > ul > li::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url(https://drhazlondon.com/wp-content/uploads/2026/07/check.svg);
    display: block;
    background-size: contain;
    background-position: center center;
    margin-top: 3px;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.benifit-list-xm ul {
    padding:19px 0 30px 0;
}
.benifit-list-xm ul li {
    position: relative;
    padding-left: 35px;
    padding-bottom: 20px;
}
.benifit-list-xm ul li:last-child {
    padding-bottom: 0px;
}
.benifit-list-xm > ul > li::before {
    position: absolute;
    left: 0;
}

/* ==========================================================================
   Why Choose Cards — CSS Grid
   ========================================================================== */
.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
    width: 100%;
}
.wcc-card {
    background-color: #ffffff;
    border: 1px solid #E1BB5F;
    border-radius: 8px;
    padding: 40px 24px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wcc-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}
.wcc-card-title {
	font-family: "G Sans Flex Light", Sans-serif;
	font-weight: 300;
	font-size: 20px;
	line-height: 21px;
	text-transform:capitalize;
    margin: 0 0 16px;
}
.wcc-card-content {
    font-family: "Outfit", Sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 25px;
    color: #000;
}
.wcc-card-content p {
    margin: 0;
}
.recover-list-j ul {
    padding: 0;
    margin-bottom: 28px;
    grid-row-gap: 3px;
}
/* .recover-list-j > ul > li::before {
    width: 8px;
    height: 8px;
    margin-top: 2px;
    background-image: unset;
    background-color: #ca8f66;
    border-radius: 100%;
} */

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Center an odd (leftover) last card
   .wcc-odd-last is added by the shortcode when card count is odd
   ========================================================================== */

/* Desktop (4 columns): odd leftover card spans full row and centers itself */
@media (min-width: 1025px) {
    .why-choose-cards.wcc-odd-last .wcc-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(25% - 18px); /* matches single-column width within 4-col grid */
    }
}

/* Tablet (2 columns): odd leftover card spans full row and centers itself */
@media (min-width: 601px) and (max-width: 1024px) {
    .why-choose-cards.wcc-odd-last .wcc-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 12px);
    }
}
/* Mobile (1 column): nothing special needed, already full width */

/* ==========================================================================
   Numeric Cards — CSS Grid
   ========================================================================== */

.numeric-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px;
    width: 100%;
    padding-top: 40px; /* room for the circle to overlap the card */
}
/* .benifit-list-x > ul > li::before,.benifit-list-n > ul > li::before {
	width: 8px;
	height: 8px;
	margin-top: 2px;
	background-image: unset;
	background-color: #ca8f66;
	border-radius: 100%;
} */
.benifit-list-x > ul {
    padding-left: 0px;
}
.nc-card {
    position: relative;
    background-color: #fdf3ed;
    border-radius: 8px;
    padding: 30px 37px 67px;
    text-align: center;
}

.nc-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid #E1BB5F;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nc-circle span {
    font-family: "Helvetica", Sans-serif;
    color: #2a2a2a;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
}
.nc-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 30px 0px 30px;
    font-family: "G Sans Flex Light", sans-serif;
    line-height: 27px;
}
.nc-content {
    font-size: 16px;
    line-height: 25px;
    color: #626262;
    font-family: "Outfit", sans-serif;
    font-weight: 200;
}
.nc-content p {
    margin: 0;
}

/* Before AfterGallery */
.ps-slider .elementor-swiper-button-prev { margin-left: -109px;}
.ps-slider .elementor-swiper-button-next { margin-right: -109px;transition:}
.ps-slider .elementor-swiper-button-prev svg:hover, .ps-slider .elementor-swiper-button-next svg{transform 0.5s ease;}
.ps-slider .elementor-swiper-button-prev svg:hover, .ps-slider .elementor-swiper-button-next svg:hover {
	transform: scale(0.9);
	transition: transform 0.5s ease;
}
.ps-slider .swiper-pointer-events { width: calc(100% - 0px) !important;}

/* Single Procedures Page Ends*/
/* =============================================================================
   Accordion  —  accordion.css
   Shared by: [faq_accordion] and [benefits_accordion] shortcodes
   Works for any element with data-accordion="wrapper" structure
   ============================================================================= */
/* ── Wrapper ─────────────────────────────────────────────────────────────── */
[data-accordion="wrapper"] {
    width: 100%;
    font-family: inherit;
}
/* ── Item ────────────────────────────────────────────────────────────────── */
[data-accordion="item"] {
    border-top: 1px solid #E1BB5F;
}
[data-accordion="item"]:last-child {
    border-bottom: 1px solid #E1BB5F;
}
/* ── Trigger (button) ────────────────────────────────────────────────────── */
[data-accordion="trigger"] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 27px 40px 27px 0;   /* room on the right for the icon */
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    color: #000000;
    font-family: inherit;
    position: relative !important;
	white-space: normal !important;
}
[data-accordion="trigger"]:focus,
[data-accordion="trigger"]:hover {
    background-color: transparent !important;
    color: unset;
    text-decoration: unset;
}
[data-accordion="trigger"]:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: 2px;
}
/* ── Question text ───────────────────────────────────────────────────────── */
[data-accordion="question"] {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #000;
    flex: 1;
    min-width: 0;
    font-family: "G Sans Flex Light", sans-serif;
	white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}
/* ── Icon container ──────────────────────────────────────────────────────── */
[data-accordion="icon"] {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
[data-accordion-icon="plus"],
[data-accordion-icon="minus"] {
    display: block;
    width: 20px;
    height: 20px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: absolute;
    top: 0;
    left: 0;
}
[data-accordion-icon="plus"]  { opacity: 1; }
[data-accordion-icon="minus"] { opacity: 0; }
[data-accordion="item"][data-open="true"] [data-accordion-icon="plus"]  { opacity: 0; }
[data-accordion="item"][data-open="true"] [data-accordion-icon="minus"] { opacity: 1; }
/* ── Panel (smooth height animation) ────────────────────────────────────── */
[data-accordion="panel"] {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease;
}
/* Keep in DOM but invisible when hidden */
[data-accordion="panel"][hidden] {
    display: block !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden;
}
[data-accordion="item"][data-open="true"] [data-accordion="panel"] {
    opacity: 1;
    visibility: visible;
}
/* ── Answer body ─────────────────────────────────────────────────────────── */
[data-accordion="answer"] {
    padding: 0 0 30px 0;
    color: #000;
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 28px;
}
[data-accordion="answer"] p:first-child { margin-top: 0; }
[data-accordion="answer"] p:last-child  { margin-bottom: 0; }

/* Press Page */
.atn-wrapper{ transition: box-shadow 0.3s ease, transform 0.3s ease;}
.atn-wrapper:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); transform: translateY(-5px); }
.atn-imgbox { width: 120px; height: 120px; }
.page-numbers { display: inline; background-color: #d79d7400; padding: 10px 16px; color: #000000; border-radius: 5px; border: 1px solid #d79d74;}
.page-numbers.current { background-color: #d79d74; color: #fff; border: 1px solid #d79d74; }
.page-numbers:hover { background-color: #d79d74; color: #ffffff !important; border: 1px solid #d79d74; }

/* Research Page */
.research-filter { width: 420px; position: relative; }
.research-badge svg { width: 13px; height: 23px; }
.research-filter select {
		width: 100% !important; border: 0.5px solid #D79D74 !important;
		border-radius: 4px !important; background: #FBF3EE !important;
		padding: 10px 20px !important; font-family: "Outfit", Sans-serif !important;
		font-size: 15px !important; font-weight: 300 !important;
		color: #000 !important; outline: none !important;
		box-shadow: none !important; transition: border-color 0.2s ease !important;
		appearance: none !important; -webkit-appearance: none !important; height: 48px;
}
label.lbl-research-filter { font-family: "G Sans Flex Light", Sans-serif; font-weight: 500; line-height: 30px; font-size: 18px; padding-bottom: 20px; }
.research-filter::after {  content: ''; position: absolute; top: 50%; right: 20px; width: 18px; height: 18px; transform: translateY(-50%);
    background: url(https://drhazlondon.com/wp-content/uploads/2026/06/down-arrow.svg) center / contain no-repeat;
    pointer-events: none;
}
.research-pagination .page-number {
    background-color: #d79d7400;
    padding: 10px 13px;
    color: #000000;
    border-radius: 5px;
    border: 1px solid #d79d74;
    width: 43px;
    height: 42px;
    font-family: "Outfit", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
}
/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

@media (max-width: 520px) {
  #drhaz-popup-trigger { bottom: 20px; right: 16px; }
  #drhaz-popup-modal { bottom: 50%; right: 0; width: 100vw; max-height: 100svh; border-radius: 15px; transform-origin: bottom center; transform: translateY(50%) !important; }
}

@media (max-width: 1024px) {
    .numeric-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .numeric-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Center an odd (leftover) last card
   .nc-odd-last is added by the shortcode when card count is odd
   ========================================================================== */
/* Desktop (3 columns): center leftover cards on the last row */

@media (min-width: 1025px) {

    /* 1 leftover card (4, 7, 10... cards): center it at 1-column width */
    .numeric-cards.nc-remainder-1 .nc-card:last-child {
        grid-column: 2 / 3;
    }

    /* 2 leftover cards (5, 8, 11... cards): center both together */
    .numeric-cards.nc-remainder-2 .nc-card:nth-last-child(2) {
        grid-column: 1 / 2;
        justify-self: end;
    }

    .numeric-cards.nc-remainder-2 .nc-card:last-child {
        grid-column: 2 / 4;
        justify-self: start;
        max-width: calc(33.333% - 15px);
    }
}

/* Tablet (2 columns): center single leftover card */
@media (min-width: 601px) and (max-width: 1024px) {
    .numeric-cards.nc-remainder-1 .nc-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 15px);
    }
}

/* Mobile (1 column): nothing special needed, already full width */

/* Testimonial Grid */
.testimonial-filter:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url(https://drhazlondon.com/wp-content/uploads/2026/06/down-arrow.svg) center / contain no-repeat;
    pointer-events: none;
}
.testimonial-filter {
    width: 421px;
    position: relative;
}
.testimonial-card__text { margin-bottom: 15px;}
.lbl-reviewz {
    font-family: "G Sans Flex Light", Sans-serif;
    font-weight: 500;
    line-height: 30px;
    font-size: 18px;
    padding-bottom: 20px;
}
.testimonial-card__text p { font-family: "G Sans Flex Light", Sans-serif; font-size: 14px; font-weight: 300; line-height: 23px; color: #444444;}
.review-logo img { height: 30px !important; width: auto; display: block; }
.testimonial-filter select {
    width: 100% !important;
    border: 0.5px solid #D79D74 !important;
    border-radius: 4px !important;
    background: #FBF3EE !important;
    padding: 10px 20px !important;
    font-family: "Outfit", Sans-serif !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    color: #000 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    height: 48px;
}
.page-number.is-active {
    background: #d79d74;
    color: #fff;
    border-color: #d79d74;
}
.testimonial-pagination button {
    background-color: #d79d7400;
    padding: 10px 13px;
    color: #000000;
    border-radius: 5px;
    border: 1px solid #d79d74;
    width: 43px;
    height: 42px;
    font-family: "Outfit", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
}
.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}
.testimonial-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
button.read-more-btn:hover { background-color: unset !important; color: #000 !important;}
button.read-more-btn {
    background-color: unset !important;
	color:#000 !important;
    border: none;
    padding: 0;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    font-family: "G Sans Flex Light", Sans-serif;
}
/* Terms and Privacy */

/* Main Mobile Responsive Starts */

@media (max-width: 767px) {

/* Mobile menu */
.mobi-menu nav ul .current-menu-item a::after { content: ''; width: 100%; height: 1px; background-color: #E1BB5F; position: absolute; bottom: 0; }	
.mobi-menu nav ul .current-menu-item a { position: relative; }	
.elementor-nav-menu li { margin: 8px 0; }	
.has-submenu[aria-expanded="true"] { border-radius: 5px;}
.mobi-menu .sub-menu li a {padding-left: 0 !important;}	
.mobi-menu .sub-menu li a { padding-left: 0 !important; border-radius: 5px; font-size: 15px !important; }	
.elementor-nav-menu--dropdown ul li a { border-radius: 5px;}	
.mobi-menu .sub-arrow svg { display: none;}	
.sub-arrow::after { top:-8px !important; background-color: transparent !important; }
.mobi-menu .sub-menu li a .sub-arrow::after { background-color: transparent !important;}	
/* Home */
.pc-hover-overlay { padding: 30px 25px !important; gap: 40px !important; }
.pc-title { font-size: 20px!important; }	
.pc-card { height: 500px!important;}	
.pc-default-overlay { padding: 25px 30px 30px !important; }
.elementor-counter-title { text-align: center !important; }
.vsl-play-btn { width: 69px; height: 70px; }
.elementor-element .swiper .elementor-swiper-button{ top: unset;bottom: -88px; }
.ps-slider .elementor-swiper-button-prev { margin-left: 30% !important;}	
.ps-slider .elementor-swiper-button-next { margin-right: 30% !important;}	
/* Treatment Page */	
.benifit-list-x > ul { padding-bottom: 20px; gap: 10px;}	
.benifit-list > ul > li::before { content: ''; width: 25px; height: 25px; margin-top: 0px;}	
.benifit-list > ul > li, .recover-list > ul > li { line-height: 23px;}
[data-accordion="trigger"] {padding: 20px 23px 20px 0;}
[data-accordion="question"] { font-size: 15px; line-height: 26px; }	
.wcc-card { padding: 25px 25px;}
.wcc-card-title { font-size:16px; margin: 0 0 10px;}
.nc-card { padding: 30px 25px 30px;}
.nc-circle { width: 50px; height: 50px;}	
.nc-circle span { font-size: 16px;}	
.nc-title { font-size: 16px; margin: 15px 0px 10px; }	
.numeric-cards { gap: 49px 30px; padding-top: 26px; }
/* Contact Us	 */	
.dr-video-wrap-n .dr-pop-img { height: 250px; border-radius: 15px; }	
.dr-video-wrap-n .btn-con { width: 80px; height: 80px; }	
/* Research	 */
.research-filter { width: 100%; margin-bottom: 20px; }	
.research-card__title { ;font-size: 15px; line-height: 22px;}
label.lbl-research-filter { font-size: 16px; text-align: center; }	
/* Testimonial	 */	
.testimonial-filter {width: 100%;}
.lbl-reviewz { font-size: 16px; text-align: center; width:100%; }		
.testimonial-filter { margin-bottom: 20px; }	
.testimonial-card__title { font-size: 16px; line-height: 22px;}
/* Gallery */
.gc-procedures-grid { grid-template-columns: repeat(1,1fr); }	
.gc-tile-image { height: 320px; }
.gc-tabs { gap: 22px 20px; margin-bottom: 30px; }	
.gc-splide .splide__track { height: auto; }	
.gc-grid { gap: 30px 25px; }	
/* Footer Menu */
.fot-mobi-menu ul li { text-align: center !important;}
/* Popup-form */
button.pop-btn-style span { display: none;}	
.pop-btn-style {
  width: 65px;
  height: 65px;
  border-radius: 50%; /* ripples look best on circular buttons */
  box-shadow: 0 0 29px #e1b697;
  animation: ripple-pulse 2s ease-out infinite;
}

@keyframes ripple-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 182, 151, 0.7),
                0 0 29px #e1b697;
  }
  70% {
    box-shadow: 0 0 0 20px rgba(225, 182, 151, 0),
                0 0 29px #e1b697;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 182, 151, 0),
                0 0 29px #e1b697;
  }
}
#drhaz-popup-inner { padding:20px;}
/* Gallrey	 */
.gc-tab-btn {font-size: 14px !important;}
.gc-splide .splide__track { border-radius: 0;}	
.gc-splide .splide__slide img { width: 350px; height: 350px; object-fit: cover; background-position: center center; margin: 0 auto; border-radius: 5px; }	
/* contanct us	 */
.fluent_form_1 .conf-msg-field { padding-top: 0px !important;}	
.fluent_form_1 textarea {min-height: 60px;}	
		
}/* Main Mobile Responsive Ends */


