/* Custom CSS Overrides - Load Last to Ensure Proper Specificity */

/* Override Bootstrap container max-width for better navbar layout */
@media (min-width: 1400px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    max-width: 1000px !important;
  }
}

@media (min-width: 1200px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl {
    max-width: 1200px !important;
  }
}

/* Fix Customer button to match Vendor button styling */
.header-area .more-option .btn-outline {
  color: var(--btn-color) !important;
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 10px 30px -7px rgba(var(--color-primary-rgb), 0.5);
}

.header-area .more-option .btn-outline::before {
  background: var(--bg-dark);
}

.header-area .more-option .btn-outline:hover {
  color: var(--btn-hover-color) !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

/* Fix navbar positioning - ensure it appears consistently across all pages */
.header-area.header-static {
  position: relative !important;
  background: #ffffff;
}

/* Adjust Navbar height and width */
.header-area {
  max-width: 1200px !important;
  margin-left: auto;
  margin-right: auto;
  min-height: 45px !important; /* Half of original height */
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Adjust navbar inner container height */
.header-area .main-navbar {
  min-height: 45px !important;
}

.header-area .navbar {
  min-height: 45px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Increase logo size */
.header-area .navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  height: 45px !important;
  line-height: 0 !important;
}

.header-area .navbar-brand img {
  height: 100% !important;
  width: auto !important;
  max-height: 100% !important;
  display: block !important;
  object-fit: contain;
}

/* Style header navigation container */
.header-area .header-nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* Style navigation links */
.header-area .navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.header-area .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.header-area .navbar-nav .nav-link {
  color: #545454 !important;
  font-weight: 400;
  font-size: 14px;
  padding: 8px 12px;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-area .navbar-nav .nav-link:hover {
  color: #000000 !important;
}

/* Style header right elements */
.header-area .header-right-elements {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Style location dropdown */
.header-area .location-selector {
  margin-right: 0;
}

.header-area .location-dropdown {
  min-width: 160px;
  height: 36px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* Style search container */
.header-area .search-container {
  position: relative;
  margin-right: 0;
  display: flex;
  align-items: center;
}

.header-area .search-input {
  width: 180px;
  height: 36px;
  border: 1px solid #e5e7eb;
  padding-right: 40px;
  font-size: 12px;
}

.header-area .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  padding: 6px;
  cursor: pointer;
}

/* Style language dropdown */
.header-area .language-selector {
  margin-right: 0;
}

.header-area .language-dropdown {
  min-width: 0;
  height: auto;
  font-size: 12px;
  border: 0;
  background: transparent;
  padding: 0 18px 0 0;
  line-height: 1;
  font-weight: 600;
  color: #545454 ;
  cursor: pointer;
}

.header-area .language-selector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  background: #ffffff;
}

.header-area .language-selector form {
  margin: 0;
}

.header-area .language-selector .hz-lang__icon {
  color: #545454 ;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-area .language-selector .hz-lang__caret {
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.header-area .language-dropdown:focus {
  box-shadow: none;
}

/* Style sign in button */
.header-area .sign-in-btn {
  height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  color: #374151;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  margin-right: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.header-area .sign-in-btn:hover {
  background: #f9fafb;
  color: #111827;
}

.header-area .hz-auth-dropdown {
  min-width: 210px;
  padding: 0;
  margin-top: 8px;
  border-radius: 10px !important;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.header-area .dropdown > .hz-auth-dropdown {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  margin-top: 0 !important;
  transform: none !important;
}

.header-area .dropdown > .hz-auth-dropdown.hz-auth-dropdown--right {
  left: auto !important;
  right: 0 !important;
}

.header-area .hz-auth-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

.header-area .hz-auth-dropdown.hz-auth-dropdown--right::before {
  left: auto;
  right: 24px;
}

.header-area .hz-auth-dropdown .hz-auth-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #111827;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  background: transparent;
}

.header-area .hz-auth-dropdown .hz-auth-dropdown__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  flex: 0 0 auto;
}

.header-area .hz-auth-dropdown .hz-auth-dropdown__text {
  flex: 1 1 auto;
}

.header-area .hz-auth-dropdown .hz-auth-dropdown__item:hover,
.header-area .hz-auth-dropdown .hz-auth-dropdown__item:focus {
  background: #f9fafb;
  color: #111827;
}

.header-area .hz-auth-dropdown li + li .hz-auth-dropdown__item {
  border-top: 1px solid #e5e7eb;
}

.header-area .dropdown-menu {
  z-index: 2000;
}

.header-area .dropdown-menu.show {
  display: block;
}

/* Style sign up dropdown */
.header-area .sign-up-dropdown {
  height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}


.header-area.header-2 .main-navbar .hz-mobile-menu__nav {
  display: none;
}

/* Media query for responsiveness */
@media (max-width: 1200px) {
  .header-area {
    max-width: 100% !important;
  }
  
  .header-area .search-input {
    width: 200px;
  }
  
  .header-area .location-dropdown {
    min-width: 150px;
  }
}

@media (max-width: 1199px) {
  .header-area.header-2 .mobile-menu .container {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .header-area.header-2 .mobile-menu .mobile-menu-wrapper {
    margin-top: 14px;
  }

  .header-area.header-2 .mobile-menu .header-nav-container {
    display: block !important;
  }

  .header-area.header-2 .mobile-menu .header-right-elements {
    display: none !important;
  }

  .header-area.header-2 .mobile-menu .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .header-area.header-2 .mobile-menu .hz-mobile-menu__nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
  }

  .header-area.header-2 .mobile-menu .navbar-nav .nav-item {
    width: 100%;
  }

  .header-area.header-2 .mobile-menu .navbar-nav .nav-link {
    width: 100%;
  }

  .header-area.header-2 .mobile-menu .hz-mobile-menu__search {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #ffffff;
    padding: 6px 0 10px;
  }

  .header-area.header-2 .mobile-menu .hz-mobile-menu__search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 14px;
    background: #ffffff;
  }

  .header-area.header-2 .mobile-menu .hz-mobile-menu__search-icon {
    color: #9ca3af;
    flex: 0 0 auto;
  }

  .header-area.header-2 .mobile-menu .hz-mobile-menu__search-input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: #111827;
  }
}

@media (max-width: 768px) {
  .header-area .location-selector,
  .header-area .search-container,
  .header-area .language-selector {
    display: none;
  }

  .header-area.header-2 {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
    background: transparent !important;
  }

  .header-area.header-2 .main-responsive-nav {
    height: auto !important;
    line-height: normal !important;
    padding: 18px 0 22px 0;
    background: #f00f39;
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
  }

  .header-area.header-2 .main-responsive-nav .container {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-area.header-2 .main-responsive-nav .logo {
    display: none !important;
  }

  .header-area.header-2 .main-responsive-nav > .container {
    display: block !important;
  }

  .header-area.header-2 .hz-mobile-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .header-area.header-2 .hz-mobile-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .header-area.header-2 .hz-mobile-header__brand {
    min-width: 0;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
  }

  .header-area.header-2 .hz-mobile-header__brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .header-area.header-2 .hz-mobile-header__brand-logo {
    height: 108px !important;
    width: auto;
    display: block;
    margin-top: -35px !important;
  }

  .header-area.header-2 .hz-mobile-header__location-row {
    width: 100% !important;
    display: flex;
    margin-top: -35px !important;
    margin-bottom: 5px !important;
  }

  .header-area.header-2 .hz-mobile-header__location-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .header-area.header-2 .hz-mobile-header__location-dropdown {
    flex: 0 0 auto;
  }

  .header-area.header-2 .hz-mobile-header__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    min-width: 0;
    flex: 0 1 auto;
    margin-top: 0;
    text-align: left;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
  }

  .header-area.header-2 .hz-mobile-header__location-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: calc(100vw - 120px);
  }

  .header-area.header-2 .hz-mobile-header__location-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .header-area.header-2 .hz-mobile-header__location-sub {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-top: 2px;
  }

  .header-area.header-2 .hz-mobile-header__location-sub + .hz-mobile-header__location-sub {
    margin-top: 2px;
  }

  .header-area.header-2 .hz-mobile-header__location-caret {
    color: #ffffff;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 0;
    margin-left: 6px;
    font-size: 12px;
  }

  .header-area.header-2 .hz-mobile-header__location-caret-btn {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .header-area.header-2 .hz-mobile-header__location-menu {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    min-width: 210px;
  }

  .header-area.header-2 .hz-mobile-header__location-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 13px;
  }

  .header-area.header-2 .hz-mobile-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    color: #ffffff;
    margin-top: -45px !important;
    gap: 10px !important;
  }

  .header-area.header-2 .hz-mobile-header__icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .header-area.header-2 .hz-mobile-header__icon-btn i {
    color: #f00f39;
    font-size: 16px;
  }

  .header-area.header-2 .hz-mobile-header__lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .header-area.header-2 .hz-mobile-header__lang-caret {
    color: #ffffff;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-left: 2px;
  }

  .header-area.header-2 .hz-mobile-header__actions i {
    font-size: 16px;
  }

  .header-area.header-2 .hz-mobile-header .menu-toggler {
    display: none !important;
  }

  .header-area.header-2 .menu-toggler {
    display: none !important;
  }

  .header-area.header-2 .mobile-menu {
    display: none !important;
  }

  .header-area.header-2 .hz-mobile-header__lang-menu {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    min-width: 170px;
  }

  .header-area.header-2 .hz-mobile-header__lang-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 13px;
  }

  .header-area.header-2 .hz-mobile-header__lang-menu .dropdown-item:active {
    background: #f3f4f6;
    color: #111827;
  }

  .header-area.header-2 .hz-mobile-header__search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0 14px;
    height: 52px;
    overflow: hidden;
  }

  .header-area.header-2 .hz-mobile-header__search-icon {
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .header-area.header-2 .hz-mobile-header__search-input {
    border: 0;
    outline: 0;
    background: transparent;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    color: #111827;
  }

  .header-area.header-2 .hz-mobile-header__mic {
    border: 0;
    outline: 0;
    background: transparent;
    color: #f00f39;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-left: 1px solid #e5e7eb;
    padding: 0 0 0 14px;
  }
}

/* Figma Navbar Test Page */
[data-hz-navbar-test] {
  min-height: 90px;
  height: auto;
  background: #ffffff;
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 0;
}

[data-hz-navbar-test] .hz-navbar-test__inner {
  width: 100%;
  max-width: 100%;
  height: 57px;
  margin-left: 0;
  margin-right: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
}

[data-hz-navbar-test] .hz-navbar-test__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

[data-hz-navbar-test] .hz-navbar-test__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-hz-navbar-test] .hz-navbar-test__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

[data-hz-navbar-test] .hz-navbar-test__brand-badge {
  width: 59px;
  height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f43f3f;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

[data-hz-navbar-test] .hz-navbar-test__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

[data-hz-navbar-test] .hz-navbar-test__nav-link {
  color: #6b7280;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

[data-hz-navbar-test] .hz-navbar-test__nav-link:hover {
  color: #111827;
}

[data-hz-navbar-test] .hz-navbar-test__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

[data-hz-navbar-test] .hz-navbar-test__pill {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
}

[data-hz-navbar-test] .hz-navbar-test__pill--location {
  height: 48px;
  width: 245px;
  min-width: 245px;
  justify-content: space-between;
}

[data-hz-navbar-test] .hz-navbar-test__pill--search {
  width: 226px;
  min-width: 226px;
  padding-right: 12px;
}

[data-hz-navbar-test] .hz-navbar-test__icon {
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-hz-navbar-test] .hz-navbar-test__pill-text {
  color: #374151;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-hz-navbar-test] .hz-navbar-test__search-input {
  border: 0;
  outline: 0;
  padding: 0;
  width: 100%;
  font-size: 13px;
  color: #111827;
  background: transparent;
}

[data-hz-navbar-test] .hz-navbar-test__search-input::placeholder {
  color: #9ca3af;
}

[data-hz-navbar-test] .hz-navbar-test__caret {
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-hz-navbar-test] .hz-navbar-test__lang {
  height: 24px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #111827;
  font-weight: 600;
  padding: 0;
}

[data-hz-navbar-test] .hz-navbar-test__lang-text {
  font-size: 12px;
  letter-spacing: 0.02em;
}

[data-hz-navbar-test] .hz-navbar-test__auth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

[data-hz-navbar-test] .hz-navbar-test__auth-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  padding: 0 14px;
}

[data-hz-navbar-test] .hz-navbar-test__auth-btn--ghost {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
}

[data-hz-navbar-test] .hz-navbar-test__auth-btn--primary {
  border: 1px solid #f00f39;
  background: #f00f39;
  color: #ffffff;
}

@media (max-width: 1300px) {
  [data-hz-navbar-test] .hz-navbar-test__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}

/* Figma Hero Test Section */
[data-hz-hero-test] {
  background: #fef2f2;
  padding: 60px 0;
  min-height: 600px;
}

[data-hz-test-navbar-page] > section + section {
  margin-top: 34px;
}

@media (max-width: 768px) {
  [data-hz-test-navbar-page] > section + section {
    margin-top: 28px;
  }
}

[data-hz-hero-test] .hz-hero-test__container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0 20px;
}

[data-hz-hero-test] .hz-hero-test__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

[data-hz-hero-test] .hz-hero-test__image-grid {
  display: flex;
  gap: 16px;
}

[data-hz-hero-test] .hz-hero-test__image-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-hz-hero-test] .hz-hero-test__image {
  border-radius: 20px;
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

[data-hz-hero-test] .hz-hero-test__image--large {
  width: 173px;
  height: 384px;
}

[data-hz-hero-test] .hz-hero-test__image--top {
  width: 280px;
  height: 160px;
}

[data-hz-hero-test] .hz-hero-test__image-row {
  display: flex;
  gap: 16px;
}

[data-hz-hero-test] .hz-hero-test__image--bottom-left,
[data-hz-hero-test] .hz-hero-test__image--bottom-right {
  width: 132px;
  height: 208px;
}

[data-hz-hero-test] .hz-hero-test__stats {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-left: 0;
}

[data-hz-hero-test] .hz-hero-test__stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-hz-hero-test] .hz-hero-test__stat-icon {
  color: #f00f39;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

[data-hz-hero-test] .hz-hero-test__stat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-hz-hero-test] .hz-hero-test__stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  margin: 0;
}

[data-hz-hero-test] .hz-hero-test__stat-label {
  font-size: 11px;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.3;
}

[data-hz-hero-test] .hz-hero-test__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

[data-hz-hero-test] .hz-hero-test__title {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-hz-hero-test] .hz-hero-test__title-highlight {
  font-size: 42px;
  font-weight: 700;
  color: #f00f39;
  line-height: 1.05;
  display: block;
}

[data-hz-hero-test] .hz-hero-test__title-main {
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  line-height: 1.05;
  display: block;
}

[data-hz-hero-test] .hz-hero-test__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  width: 480px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

[data-hz-hero-test] .hz-hero-test__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px 0;
}

[data-hz-hero-test] .hz-hero-test__card-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 14px 0;
}

[data-hz-hero-test] .hz-hero-test__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

[data-hz-hero-test] .hz-hero-test__service-btn {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

[data-hz-hero-test] .hz-hero-test__service-btn:hover {
  background: #fef2f2;
  border-color: #f00f39;
  transform: translateY(-2px);
}

[data-hz-hero-test] .hz-hero-test__service-icon {
  font-size: 28px;
  display: block;
}

[data-hz-hero-test] .hz-hero-test__service-label {
  font-size: 11px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  line-height: 1.3;
}

[data-hz-hero-test] .hz-hero-test__see-all {
  width: auto;
  height: 38px;
  background: #f00f39;
  border: 1px solid #f00f39;
  border-radius: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}

[data-hz-hero-test] .hz-hero-test__see-all:hover {
  background: #dc2626;
  border-color: #dc2626;
}

@media (max-width: 1024px) {
  [data-hz-hero-test] .hz-hero-test__container {
    flex-direction: column;
    gap: 0;
  }

  [data-hz-hero-test] .hz-hero-test__left {
    display: none;
  }

  [data-hz-hero-test] .hz-hero-test__right {
    width: 100%;
  }

  [data-hz-hero-test] .hz-hero-test__card {
    width: 100%;
  }

  [data-hz-hero-test] .hz-hero-test__services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  [data-hz-hero-test] {
    padding: 32px 0;
    min-height: auto;
  }

  [data-hz-hero-test] .hz-hero-test__container {
    gap: 0;
    padding: 0 16px;
  }

  [data-hz-hero-test] .hz-hero-test__title {
    text-align: center;
    align-items: center;
  }

  [data-hz-hero-test] .hz-hero-test__title-highlight{
    font-size: 30px;
    line-height: 1.15;
  }

  [data-hz-hero-test] .hz-hero-test__title-main {
    font-size: 25px;
    line-height: 1.15;
  }

  [data-hz-hero-test] .hz-hero-test__left {
    display: none;
  }

  [data-hz-hero-test] .hz-hero-test__right {
    width: 100%;
  }

  [data-hz-hero-test] .hz-hero-test__card {
    width: 100%;
  }

  [data-hz-hero-test] .hz-hero-test__services {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  [data-hz-hero-test] .hz-hero-test__service-btn {
    padding: 10px 8px;
    border-radius: 10px;
    gap: 6px;
  }

  [data-hz-hero-test] .hz-hero-test__service-icon {
    font-size: 22px;
  }

}

/* Figma Below Hero Sections */
[data-hz-below-hero] {
  background: #ffffff;
  padding: 24px 0 40px 0;
}

[data-hz-below-hero] .hz-below-hero__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

[data-hz-test-navbar-page] [data-hz-below-hero] .hz-below-hero__section + .hz-below-hero__section {
  margin-top: 34px;
}

@media (max-width: 768px) {
  [data-hz-test-navbar-page] [data-hz-below-hero] .hz-below-hero__section + .hz-below-hero__section {
    margin-top: 22px;
  }
}

[data-hz-below-hero] .hz-below-hero__section {
  padding: 0;
}

[data-hz-below-hero] .hz-below-hero__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

@media (max-width: 1024px) {
  [data-hz-below-hero] .hz-below-hero__section-head {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  [data-hz-below-hero] .hz-below-hero__see-all {
    flex: 0 0 auto;
    white-space: nowrap;
    background: transparent;
    border-color: transparent;
    color: #f00f39;
    padding: 0;
  }

  [data-hz-below-hero] .hz-below-hero__card {
    min-width: 160px;
  }

  [data-hz-below-hero] .hz-below-hero__card-img {
    width: 160px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  [data-hz-below-hero] .hz-below-hero__cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  [data-hz-below-hero] .hz-below-hero__cards::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 768px) {
  [data-hz-below-hero] .hz-below-hero__title, .hz-below-hero .hz-below-hero__title {
    margin: 0;
    font-size: 18px !important;
    font-weight: 700;
    color: #111827;
  }

  [data-hz-below-hero] .hz-below-hero__card-img, .hz-below-hero .hz-below-hero__card-img {
    width: 160px !important;
    height: 160px !important;
    border-radius: 14px !important;
    object-fit: cover;
    display: block;
  }

  [data-hz-below-hero] .hz-below-hero__card-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111827 !important;
  }
}

@media (max-width: 768px) {
  [data-hz-below-hero] .hz-below-hero__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
  }

  [data-hz-below-hero] .hz-below-hero__card-img {
    width: 160px;
    height: 160px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
  }
}

[data-hz-below-hero] .hz-below-hero__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

[data-hz-below-hero] .hz-below-hero__see-all {
  height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #f00f39;
  font-size: 11px;
  font-weight: 600;
}

[data-hz-below-hero] .hz-below-hero__cards {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

[data-hz-below-hero] .hz-below-hero__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  min-width: 150px;
  position: relative;
}

[data-hz-below-hero] .hz-below-hero__card.is-hidden {
  display: none !important;
}

[data-hz-below-hero] .hz-below-hero__arrow {
  position: absolute;
  right: 12px;
  top: 115px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

[data-hz-below-hero] .hz-below-hero__arrow--prev {
  left: 12px;
  right: auto;
}

[data-hz-below-hero] .hz-below-hero__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  height: 18px;
  padding: 0 6px;
  border-radius: 6px;
  background: #f00f39;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  z-index: 2;
}

[data-hz-below-hero] .hz-below-hero__card-img {
  width: 233px;
  height: 233px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

[data-hz-below-hero] .hz-below-hero__card-label {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* Figma Trending Section */
[data-hz-trending] {
  background: #ffffff;
  padding: 0 0 48px 0;
}

[data-hz-trending] .hz-trending__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

[data-hz-trending] .hz-trending__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px 0;
}

[data-hz-trending] .hz-trending__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

[data-hz-trending] .hz-trending__see-all {
  height: 26px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #f00f39;
  font-size: 11px;
  font-weight: 600;
}

[data-hz-trending] .hz-trending__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

[data-hz-trending] .hz-trending__card {
  position: relative;
  display: block;
  height: 222px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

[data-hz-trending] .hz-trending__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 18px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.55) 0%, rgba(17, 24, 39, 0.1) 70%, rgba(17, 24, 39, 0) 100%);
}

[data-hz-trending] .hz-trending__overlay--right {
  align-items: flex-end;
  text-align: right;
  background: linear-gradient(270deg, rgba(17, 24, 39, 0.55) 0%, rgba(17, 24, 39, 0.1) 70%, rgba(17, 24, 39, 0) 100%);
}

[data-hz-trending] .hz-trending__card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

[data-hz-trending] .hz-trending__cta {
  height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f00f39;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

[data-hz-trending] .hz-trending__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1024px) {
  [data-hz-trending] .hz-trending__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  [data-hz-trending] .hz-trending__container {
    padding: 0 16px;
  }

  [data-hz-trending] .hz-trending__title {
    margin: 0;
    font-size: 18px !important;
    font-weight: 700;
    color: #111827;
  }

  [data-hz-trending] .hz-trending__see-all {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #f00f39;
    padding: 0 !important;
    height: auto !important;
    white-space: nowrap !important;
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }

  [data-hz-trending] button.hz-trending__see-all {
    height: 26px !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    font-size: 11px !important;
    font-weight: 600 !important;
  }

  [data-hz-trending] button.hz-trending__see-all::-moz-focus-inner {
    border: 0;
  }

  [data-hz-trending] .hz-trending__see-all:focus,
  [data-hz-trending] .hz-trending__see-all:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }

  [data-hz-trending] .hz-trending__see-all:hover,
  [data-hz-trending] .hz-trending__see-all:active {
    outline: none !important;
    box-shadow: none !important;
  }

  [data-hz-trending] .hz-trending__row {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  [data-hz-trending] .hz-trending__row::-webkit-scrollbar {
    display: none;
  }

  [data-hz-trending] .hz-trending__card {
    flex: 0 0 210px;
    width: 210px;
    height: 160px;
    scroll-snap-align: start;
  }

  [data-hz-trending] .hz-trending__overlay {
    padding: 12px;
    gap: 8px;
  }

  [data-hz-trending] .hz-trending__card-title {
    font-size: 14px;
  }

  [data-hz-trending] .hz-trending__cta {
    height: 24px;
    padding: 0 10px;
    font-size: 10px;
  }

  [data-hz-trending] .hz-trending__arrow {
    display: none;
  }
}

/* How Appointment Booking System Works Section */
[data-hz-how-it-works] {
  background: #ffffff;
  padding: 40px 0;
  position: relative;
}

[data-hz-how-it-works] .hz-how-it-works__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 280px;
  background: #e5e7eb;
}

[data-hz-how-it-works] .hz-how-it-works__left {
  flex: 0 0 auto;
  width: 360px;
  height: 360px;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

[data-hz-how-it-works] .hz-how-it-works__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

[data-hz-how-it-works] .hz-how-it-works__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 26px 40px;
  background: #e5e7eb;
  min-height: 280px;
}

[data-hz-how-it-works] .hz-how-it-works__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  text-align: center;
}

[data-hz-how-it-works] .hz-how-it-works__steps {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  justify-content: center;
}

[data-hz-how-it-works] .hz-how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

[data-hz-how-it-works] .hz-how-it-works__step-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f00f39;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
}

[data-hz-how-it-works] .hz-how-it-works__step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

[data-hz-how-it-works] .hz-how-it-works__step-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.3;
}

[data-hz-how-it-works] .hz-how-it-works__arrow {
  color: #9ca3af;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: -24px;
}

[data-hz-how-it-works] .hz-how-it-works__cta {
  width: fit-content;
  height: 42px;
  padding: 0 24px;
  border-radius: 21px;
  background: #f00f39;
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
  align-self: center;
}

[data-hz-how-it-works] .hz-how-it-works__cta:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
}

@media (max-width: 1024px) {
  [data-hz-how-it-works] .hz-how-it-works__container {
    flex-direction: column;
    gap: 0;
  }

  [data-hz-how-it-works] .hz-how-it-works__left {
    width: 100%;
    min-height: 300px;
  }

  [data-hz-how-it-works] .hz-how-it-works__right {
    padding: 40px 30px;
  }

  [data-hz-how-it-works] .hz-how-it-works__steps {
    justify-content: center;
  }

  [data-hz-how-it-works] .hz-how-it-works__title {
    font-size: 28px;
    text-align: center;
  }

  [data-hz-how-it-works] .hz-how-it-works__cta {
    align-self: center;
  }
}

@media (max-width: 768px) {
  [data-hz-how-it-works] .hz-how-it-works__left {
    display: none;
  }

  [data-hz-how-it-works] .hz-how-it-works__steps {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 16px;
    align-items: center;
    justify-items: center;
  }

  [data-hz-how-it-works] .hz-how-it-works__arrow {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    font-size: 22px;
  }

  [data-hz-how-it-works] .hz-how-it-works__steps > .hz-how-it-works__step:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  [data-hz-how-it-works] .hz-how-it-works__steps > .hz-how-it-works__arrow:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    transform: scaleX(1.3);
  }

  [data-hz-how-it-works] .hz-how-it-works__steps > .hz-how-it-works__step:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  [data-hz-how-it-works] .hz-how-it-works__steps > .hz-how-it-works__step:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  [data-hz-how-it-works] .hz-how-it-works__steps > .hz-how-it-works__arrow:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    transform: scaleX(1.3);
  }

  [data-hz-how-it-works] .hz-how-it-works__steps > .hz-how-it-works__step:nth-child(7) {
    grid-column: 3;
    grid-row: 3;
  }

  [data-hz-how-it-works] .hz-how-it-works__step {
    width: 100%;
  }

  [data-hz-how-it-works] .hz-how-it-works__step-badge {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}

/* Our Top Featured Services Section */
[data-hz-featured-services] {
  background: #ffffff;
  padding: 40px 0 60px 0;
}

[data-hz-featured-services] .hz-featured-services__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

[data-hz-featured-services] .hz-featured-services__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

[data-hz-featured-services] .hz-featured-services__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

[data-hz-featured-services] .hz-featured-services__see-all {
	height: 26px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #f00f39;
	font-size: 11px;
	font-weight: 600;
}

[data-hz-featured-services] .hz-featured-services__see-all:hover {
  background: #ffffff;
  border-color: #f00f39;
}

[data-hz-featured-services] .hz-featured-services__scroll {
  position: relative;
  overflow: hidden;
}

[data-hz-featured-services] .hz-featured-services__cards {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb #f9fafb;
}

[data-hz-featured-services] .hz-featured-services__cards::-webkit-scrollbar {
  height: 6px;
}

[data-hz-featured-services] .hz-featured-services__cards::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 3px;
}

[data-hz-featured-services] .hz-featured-services__cards::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 3px;
}

[data-hz-featured-services] .hz-featured-services__cards::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}

[data-hz-featured-services] .hz-featured-services__card {
  flex: 0 0 auto;
  width: 220px;
  background: #ffffff;
  border-radius: 0;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: none;
}

[data-hz-featured-services] .hz-featured-services__card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

[data-hz-featured-services] .hz-featured-services__card-image-wrapper {
  position: relative;
  width: 100%;
  height: 233px;
  overflow: hidden;
  border-radius: 10px;
}

[data-hz-featured-services] .hz-featured-services__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

[data-hz-featured-services] .hz-featured-services__card:hover .hz-featured-services__card-image {
  transform: none;
}

[data-hz-featured-services] .hz-featured-services__favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  box-shadow: none;
}

[data-hz-featured-services] .hz-featured-services__favorite:hover {
  background: #ffffff;
  color: #f00f39;
  transform: none;
}

[data-hz-featured-services] .hz-featured-services__favorite.active {
  color: #f00f39;
}

[data-hz-featured-services] .hz-featured-services__card-content {
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

[data-hz-featured-services] .hz-featured-services__card-title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

[data-hz-featured-services] .hz-featured-services__card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-hz-featured-services] .hz-featured-services__card-rating > i {
  color: #fbbf24;
  font-size: 11px;
}

[data-hz-featured-services] .hz-featured-services__rating-text {
  font-size: 11px;
  color: #111827;
  font-weight: 500;
}

[data-hz-featured-services] .hz-featured-services__card-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-hz-featured-services] .hz-featured-services__price-current {
  font-size: 11px;
  font-weight: 600;
  color: #111827;
}

[data-hz-featured-services] .hz-featured-services__price-original {
  font-size: 11px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
}

[data-hz-featured-services] .hz-featured-services__book-btn {
  width: fit-content;
  height: 26px;
  border-radius: 14px;
  background: #f00f39;
  border: none;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

[data-hz-featured-services] .hz-featured-services__book-btn:hover {
  background: #dc2626;
  transform: none;
  box-shadow: none;
}

#product-slider-2 .product-default {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 220px;
}

#product-slider-2 .lazy-container,
#product-slider-2 .product-img,
#product-slider-2 .lazy-container {
  border-radius: 10px !important;
}

#product-slider-2 .product-img,
#product-slider-2 .lazy-container {
  height: 233px;
  overflow: hidden;
}

#product-slider-2 .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#product-slider-2 .btn.btn-sm.btn-outline-2 {
  border-radius: 14px !important;
}

[data-hz-featured-services] .hz-featured-services__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

[data-hz-featured-services] .hz-featured-services__nav-btn:hover {
  background: #f00f39;
  border-color: #f00f39;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

[data-hz-featured-services] .hz-featured-services__nav-btn--right {
  right: 0px;
}

[data-hz-featured-services] .hz-featured-services__nav-btn--left {
  left: -20px;
}

@media (max-width: 1024px) {
  [data-hz-featured-services] .hz-featured-services__container {
    padding: 0 16px;
  }

  [data-hz-featured-services] .hz-featured-services__scroll {
    overflow: visible !important;
  }

  [data-hz-featured-services] .hz-featured-services__cards {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  [data-hz-featured-services] .hz-featured-services__cards::-webkit-scrollbar {
    display: none;
  }

  [data-hz-featured-services] .hz-featured-services__card {
    scroll-snap-align: start;
  }

  [data-hz-featured-services] .hz-featured-services__card {
    width: 220px;
  }

  [data-hz-featured-services] .hz-featured-services__nav-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  [data-hz-featured-services] {
    padding: 30px 0 40px 0;
  }

  [data-hz-featured-services] .hz-featured-services__title {
    font-size: 18px !important;
  }

  [data-hz-featured-services] .hz-featured-services__see-all {
    height: 26px !important;
    padding: 0 10px !important;
    border-radius: 0 !important;
    border: 1px solid #f00f39 !important;
    background: #ffffff !important;
    color: #f00f39 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }

  [data-hz-featured-services] .hz-featured-services__head {
    margin-bottom: 20px;
  }

  [data-hz-featured-services] .hz-featured-services__card {
    width: 220px;
  }

  [data-hz-featured-services] .hz-featured-services__card-image-wrapper {
    height: 233px;
  }

  [data-hz-featured-services] .hz-featured-services__card-content {
    padding: 10px 0 0 0;
    gap: 6px;
  }

  [data-hz-featured-services] .hz-featured-services__card-title {
    font-size: 12px;
  }

  [data-hz-featured-services] .hz-featured-services__book-btn {
    height: 26px;
    font-size: 11px;
    border-radius: 14px;
  }
}

/* Quick & Easy Appointment Booking Section */
[data-hz-appointment-booking] {
  background: #ffffff;
  padding: 0 0 60px 0;
}

[data-hz-appointment-booking] .hz-appointment-booking__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 400px;
  height: 410px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-hz-appointment-booking] .hz-appointment-booking__left {
  flex: 0 0 auto;
  width: 40%;
  background: linear-gradient(
  90deg,
  #EA5049 0%,
  #D94B45 40%,
  #8A3B37 100%
);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 50px;
  color: #ffffff;
}

[data-hz-appointment-booking] .hz-appointment-booking__discount {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 8px;
  display: inline-block;
}

[data-hz-appointment-booking] .hz-appointment-booking__title {
  margin: 0 0 16px 0;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

[data-hz-appointment-booking] .hz-appointment-booking__title-line {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

[data-hz-appointment-booking] .hz-appointment-booking__title-line--1 {
  font-size: 28px;
  font-weight: 600;
}

[data-hz-appointment-booking] .hz-appointment-booking__title-line--2 {
  font-size: 38px;
  font-weight: 800;
}

[data-hz-appointment-booking] .hz-appointment-booking__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

[data-hz-appointment-booking] .hz-appointment-booking__btn {
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  border: none;
  color: #EA5049;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-hz-appointment-booking] .hz-appointment-booking__btn:hover {
  background: #fef2f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-hz-appointment-booking] .hz-appointment-booking__right {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  overflow: hidden;
}

[data-hz-appointment-booking] .hz-appointment-booking__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

@media (max-width: 1024px) {
  [data-hz-appointment-booking] .hz-appointment-booking__container {
    width: 100%;
    padding: 0 16px;
    min-height: 350px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__left {
    padding: 40px 30px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__title {
    font-size: 32px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__title-line--1 {
    font-size: 24px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__title-line--2 {
    font-size: 32px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__right {
    min-height: 350px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  [data-hz-appointment-booking] {
    padding: 0 0 40px 0;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__container {
    flex-direction: column;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 16px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__left {
    width: 100%;
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__title {
    font-size: 28px;
    text-align: center;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__title-line--1 {
    font-size: 22px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__title-line--2 {
    font-size: 28px;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__subtitle {
    font-size: 14px;
    text-align: center;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__right {
    display: none;
  }

  [data-hz-appointment-booking] .hz-appointment-booking__image {
    min-height: 300px;
  }
}

/* Brighten Your Home, Hassle-Free Booking Section */
[data-hz-lighting-booking] {
  background: #ffffff;
  padding: 0 0 60px 0;
}

[data-hz-lighting-booking] .hz-lighting-booking__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 410px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-hz-lighting-booking] .hz-lighting-booking__left {
  flex: 0 0 auto;
  width: 50%;
  background: #353B4C;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 50px;
  color: #ffffff;
}

[data-hz-lighting-booking] .hz-lighting-booking__tagline {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 8px;
  display: inline-block;
}

[data-hz-lighting-booking] .hz-lighting-booking__title {
  margin: 0 0 16px 0;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

[data-hz-lighting-booking] .hz-lighting-booking__title-line {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

[data-hz-lighting-booking] .hz-lighting-booking__title-line--1 {
  font-size: 30px;
  font-weight: 600;
}

[data-hz-lighting-booking] .hz-lighting-booking__title-line--2 {
  font-size: 42px;
  font-weight: 800;
}

[data-hz-lighting-booking] .hz-lighting-booking__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 360px;
}

[data-hz-lighting-booking] .hz-lighting-booking__btn {
  height: 38px;
  border-radius: 14px;
  background: #EA5049;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-hz-lighting-booking] .hz-lighting-booking__btn:hover {
  background: #fef2f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-hz-lighting-booking] .hz-lighting-booking__right {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  overflow: hidden;
}

[data-hz-lighting-booking] .hz-lighting-booking__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 410px;
}

@media (max-width: 1024px) {
  [data-hz-lighting-booking] .hz-lighting-booking__container {
    width: 100%;
    padding: 0 16px;
    min-height: 350px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__left {
    padding: 40px 30px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__title {
    font-size: 32px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__title-line--1 {
    font-size: 24px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__title-line--2 {
    font-size: 32px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__right {
    min-height: 350px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  [data-hz-lighting-booking] {
    padding: 0 0 40px 0;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__container {
    flex-direction: column;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 16px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__left {
    width: 100%;
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__title {
    font-size: 28px;
    text-align: center;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__title-line--1 {
    font-size: 22px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__title-line--2 {
    font-size: 28px;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__subtitle {
    font-size: 14px;
    text-align: center;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__right {
    display: none;
  }

  [data-hz-lighting-booking] .hz-lighting-booking__image {
    min-height: 300px;
  }
}

/* Our Top Service Provider Section */
[data-hz-top-service-provider] {
  background: #ffffff;
  padding: 40px 0 60px 0;
}

[data-hz-top-service-provider] .hz-top-service-provider__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

[data-hz-top-service-provider] .hz-top-service-provider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

[data-hz-top-service-provider] .hz-top-service-provider__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

[data-hz-top-service-provider] .hz-top-service-provider__see-all {
	height: 26px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #f00f39;
	font-size: 11px;
	font-weight: 600;
}

[data-hz-top-service-provider] .hz-top-service-provider__see-all:hover {
  background: #ffffff;
  border-color: #f00f39;
}

[data-hz-top-service-provider] .hz-top-service-provider__scroll {
  position: relative;
  overflow: hidden;
}

[data-hz-top-service-provider] .hz-top-service-provider__cards {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}

[data-hz-top-service-provider] .hz-top-service-provider__cards::-webkit-scrollbar {
  display: none;
}

[data-hz-top-service-provider] .hz-top-service-provider__card {
  flex: 0 0 auto;
  width: 220px;
  background: #ffffff;
  border-radius: 0;
  border: none;
  overflow: visible;
  transition: none;
  box-shadow: none;
}

[data-hz-top-service-provider] .hz-top-service-provider__card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-image-wrapper {
  position: relative;
  width: 100%;
  height: 233px;
  overflow: hidden;
  border-radius: 10px;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: #f00f39;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 24px;
  z-index: 2;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-content {
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-name {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-category {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-rating i {
  color: #fbbf24;
  font-size: 11px;
}

[data-hz-top-service-provider] .hz-top-service-provider__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

[data-hz-top-service-provider] .hz-top-service-provider__stars i {
  color: #fbbf24;
  font-size: 14px;
}

[data-hz-top-service-provider] .hz-top-service-provider__rating-text {
  font-size: 11px;
  color: #111827;
  font-weight: 500;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #6b7280;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-meta i {
  font-size: 11px;
  color: #6b7280;
}

[data-hz-top-service-provider] .hz-top-service-provider__card-stats {
  display: flex;
  gap: 16px;
}

[data-hz-top-service-provider] .hz-top-service-provider__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

[data-hz-top-service-provider] .hz-top-service-provider__stat-value {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}

[data-hz-top-service-provider] .hz-top-service-provider__stat-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

[data-hz-top-service-provider] .hz-top-service-provider__book-btn {
  width: fit-content;
  height: 26px;
  border-radius: 14px;
  background: #f00f39;
  border: none;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

[data-hz-top-service-provider] .hz-top-service-provider__book-btn:hover {
  background: #dc2626;
  transform: none;
  box-shadow: none;
}

[data-hz-top-service-provider] .hz-top-service-provider__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 1024px) {
  [data-hz-top-service-provider] .hz-top-service-provider__container {
    padding: 0 16px;
  }
  [data-hz-top-service-provider] .hz-top-service-provider__nav-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  [data-hz-top-service-provider] {
    padding: 30px 0 40px 0;
  }

  [data-hz-top-service-provider] .hz-top-service-provider__title {
    font-size: 18px !important;
  }

  [data-hz-top-service-provider] .hz-top-service-provider__see-all {
    height: 26px !important;
    padding: 0 10px !important;
    border-radius: 0 !important;
    border: 1px solid #f00f39 !important;
    background: #ffffff !important;
    color: #f00f39 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
  }

  [data-hz-top-service-provider] .hz-top-service-provider__head {
    margin-bottom: 20px;
  }

  [data-hz-top-service-provider] .hz-top-service-provider__card {
    width: 220px;
  }

  [data-hz-top-service-provider] .hz-top-service-provider__card-image-wrapper {
    height: 233px;
  }

  [data-hz-top-service-provider] .hz-top-service-provider__book-btn {
    height: 26px;
    font-size: 11px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  [data-hz-top-service-provider] .hz-top-service-provider__cards {
    grid-template-columns: 1fr;
  }
}

/* Sparkling Clean Spaces, Easy Booking Section */
[data-hz-cleaning-booking] {
  background: #ffffff;
  padding: 0 0 60px 0;
}

[data-hz-cleaning-booking] .hz-cleaning-booking__container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 410px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-hz-cleaning-booking] .hz-cleaning-booking__left {
  flex: 0 0 auto;
  width: 40%;
  background: #9f1e17;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 50px;
  color: #ffffff;
}

[data-hz-cleaning-booking] .hz-cleaning-booking__tagline {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 8px;
  display: inline-block;
}

[data-hz-cleaning-booking] .hz-cleaning-booking__title {
  margin: 0 0 16px 0;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

[data-hz-cleaning-booking] .hz-cleaning-booking__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

[data-hz-cleaning-booking] .hz-cleaning-booking__btn {
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  border: none;
  color: #EA5049;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-hz-cleaning-booking] .hz-cleaning-booking__btn:hover {
  background: #fef2f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-hz-cleaning-booking] .hz-cleaning-booking__right {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  overflow: hidden;
}

[data-hz-cleaning-booking] .hz-cleaning-booking__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 410px;
}

 [data-hz-footer] {
   background: #f3f4f6;
   padding: 36px 0 18px 0;
 }

 [data-hz-footer] .hz-footer__title {
   font-size: 14px;
   font-weight: 700;
   color: #111827;
   margin: 0 0 12px 0;
 }

 [data-hz-footer] .hz-footer__links {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 [data-hz-footer] .hz-footer__links a {
   text-decoration: none;
   color: #6b7280;
   font-size: 12px;
   font-weight: 500;
 }

 [data-hz-footer] .hz-footer__links a:hover {
   color: #111827;
 }

 [data-hz-footer] .hz-footer__contact {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 [data-hz-footer] .hz-footer__contact-item,
 [data-hz-footer] .hz-footer__contact-item a {
   color: #6b7280;
   font-size: 12px;
   font-weight: 500;
   text-decoration: none;
 }

 [data-hz-footer] .hz-footer__contact-item a:hover {
   color: #111827;
 }

 [data-hz-footer] .hz-footer__subscribe {
   margin-top: 6px;
   display: flex;
   align-items: center;
   background: #ffffff;
   border: 1px solid #e5e7eb;
   border-radius: 999px;
   padding: 5px;
   height: 40px;
   max-width: 240px;
   overflow: hidden;
 }

 [data-hz-footer] .hz-footer__subscribe-input {
   border: 0;
   outline: 0;
   background: transparent;
   padding: 0 12px;
   flex: 1;
   min-width: 0;
   font-size: 12px;
   color: #111827;
 }

 [data-hz-footer] .hz-footer__subscribe-input::placeholder {
   color: #9ca3af;
 }

 [data-hz-footer] .hz-footer__subscribe-btn {
   height: 30px;
   padding: 0 14px;
   border: 1px solid #f00f39;
   background: #f00f39;
   color: #ffffff;
   border-radius: 999px;
   font-size: 11px;
   font-weight: 700;
   cursor: pointer;
   flex: 0 0 auto;
   flex-shrink: 0;
   white-space: nowrap;
 }

 [data-hz-footer] .hz-footer__subscribe-btn:hover {
   background: #dc2626;
   border-color: #dc2626;
 }

 [data-hz-footer] .hz-footer__social {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 12px;
 }

 [data-hz-footer] .hz-footer__social-btn {
   width: 28px;
   height: 28px;
   border-radius: 999px;
   background: #f00f39;
   color: #ffffff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   font-size: 12px;
 }

 [data-hz-footer] .hz-footer__social-btn:hover {
   background: #dc2626;
   color: #ffffff;
 }

 [data-hz-footer] .hz-footer__stores {
   display: flex;
   flex-direction: column;
   gap: 8px;
   max-width: 140px;
 }

 [data-hz-footer] .hz-footer__store {
   display: flex;
   align-items: center;
   gap: 10px;
   text-decoration: none;
   background: #111827;
   color: #ffffff;
   border-radius: 6px;
   padding: 7px 10px;
   line-height: 1.1;
   height: 40px;
 }

 [data-hz-footer] .hz-footer__store-icon {
   width: 18px;
   height: 18px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   color: #ffffff;
 }

 [data-hz-footer] .hz-footer__store-text {
   display: flex;
   flex-direction: column;
 }

 [data-hz-footer] .hz-footer__store-sub {
   font-size: 9px;
   opacity: 0.85;
 }

 [data-hz-footer] .hz-footer__store-main {
   font-size: 12px;
   font-weight: 700;
 }

 [data-hz-footer] .hz-footer__bottom {
   margin-top: 22px;
   padding-top: 18px;
   border-top: 1px solid #e5e7eb;
 }

 [data-hz-footer] .hz-footer__brand {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 [data-hz-footer] .hz-footer__brand-logo {
   width: 36px;
   height: 36px;
   object-fit: contain;
   border-radius: 10px;
 }

 [data-hz-footer] .hz-footer__brand-badge {
   width: 36px;
   height: 36px;
   border-radius: 12px;
   background: #f00f39;
   color: #ffffff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 800;
   font-size: 11px;
 }

 [data-hz-footer] .hz-footer__copyright {
   color: #6b7280;
   font-size: 10px;
   font-weight: 400;
   line-height: 1.2;
 }

 [data-hz-footer] .hz-footer__copyright,
 [data-hz-footer] .hz-footer__copyright * {
   font-size: 12px !important;
   font-weight: inherit !important;
   line-height: inherit !important;
   color: inherit !important;
   background: transparent !important;
   margin-top: 5px;
 }

 [data-hz-footer] .hz-footer__copyright p {
   margin: 0 !important;
 }

 [data-hz-footer] .hz-footer__copyright a {
   text-decoration: none;
 }

 @media (max-width: 992px) {
   [data-hz-footer] .hz-footer__subscribe {
     max-width: 100%;
   }

   [data-hz-footer] .hz-footer__stores {
     max-width: 180px;
   }
 }

 @media (max-width: 768px) {
   [data-hz-footer] .hz-footer__top .row {
     display: flex;
     flex-wrap: wrap;
   }

   [data-hz-footer] .hz-footer__top .row > :nth-child(1),
   [data-hz-footer] .hz-footer__top .row > :nth-child(2) {
     flex: 0 0 100%;
     max-width: 100%;
   }

   [data-hz-footer] .hz-footer__top .row > :nth-child(1) {
     order: 1;
   }

   [data-hz-footer] .hz-footer__top .row > :nth-child(2) {
     order: 2;
   }

   [data-hz-footer] .hz-footer__top .row > :nth-child(3) {
     order: 3;
   }

   [data-hz-footer] .hz-footer__top .row > :nth-child(4) {
     order: 4;
   }

   [data-hz-footer] .hz-footer__stores {
     flex-direction: row;
     align-items: stretch;
     max-width: 100%;
     gap: 10px;
   }

   [data-hz-footer] .hz-footer__store {
     flex: 1;
     min-width: 0;
   }

   [data-hz-footer] .hz-footer__bottom {
     display: none;
   }
 }

@media (max-width: 1024px) {
  [data-hz-cleaning-booking] .hz-cleaning-booking__container {
    width: 100%;
    padding: 0 16px;
    min-height: 350px;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__left {
    padding: 40px 30px;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__title {
    font-size: 32px;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__right {
    min-height: 350px;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  [data-hz-cleaning-booking] {
    padding: 0 0 40px 0;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__container {
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__left {
    width: 100%;
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__title {
    font-size: 28px;
    text-align: center;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__subtitle {
    font-size: 14px;
    text-align: center;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__right {
    min-height: 300px;
  }

  [data-hz-cleaning-booking] .hz-cleaning-booking__image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  [data-hz-footer],
  .footer-area {
    display: none !important;
  }
}

.hz-mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .hz-mobile-bottom-nav {
    display: block;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 500;
    padding: 0 0 calc(env(safe-area-inset-bottom));
    background: transparent;
  }

  .hz-mobile-bottom-nav .hz-mobile-bottom-nav__inner {
    position: relative;
    height: 86px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: center;
    padding: 10px 0 18px;
  }

  .hz-mobile-bottom-nav .hz-mobile-bottom-nav__item {
    text-decoration: none;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .hz-mobile-bottom-nav__icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
  }

  .hz-mobile-bottom-nav__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
  }

  .hz-mobile-bottom-nav__item.is-active {
    color: #f00f39;
  }

  .hz-mobile-bottom-nav__indicator {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    width: 140px;
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
    opacity: 0.9;
  }

  .floating-btns {
    bottom: 170px;
  }

  .hz-mobile-settings {
    --bs-offcanvas-width: 100vw;
    background: #ffffff;
  }

  .hz-mobile-settings__header {
    background: #f00f39;
    color: #ffffff;
    padding: 14px 14px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    border-bottom: 0;
  }

  .hz-mobile-settings__title {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
  }

  .hz-mobile-settings__back,
  .hz-mobile-settings__close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .hz-mobile-settings__body {
    padding: 16px 14px 28px;
    background: #f3f4f6;
  }

  .hz-mobile-settings__section {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 0;
    margin-bottom: 12px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }

  .hz-mobile-settings__section-title {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #f00f39;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hz-mobile-settings__section-title::before {
    content: "";
    width: 4px;
    height: 14px;
    border-radius: 999px;
    background: #f00f39;
  }

  .hz-mobile-settings__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    text-decoration: none;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
  }

  .hz-mobile-settings__item + .hz-mobile-settings__item {
    border-top: 1px solid #f3f4f6;
  }

  .hz-mobile-settings__item--danger {
    color: #f00f39;
  }

  .hz-mobile-settings__chev {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1;
  }

  .hz-mobile-settings__details {
    border-top: 1px solid #f3f4f6;
  }

  .hz-mobile-settings__details > summary {
    list-style: none;
  }

  .hz-mobile-settings__details > summary::-webkit-details-marker {
    display: none;
  }

  .hz-mobile-settings__details-body {
    padding: 0 14px 12px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
  }

  .hz-mobile-settings__details-link {
    color: inherit;
    text-decoration: none;
  }

  .hz-mobile-settings__details-link:hover {
    text-decoration: underline;
  }

  .hz-mobile-settings__subscribe {
    padding: 10px 14px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hz-mobile-settings__subscribe-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 13px;
    background: #ffffff;
  }

  .hz-mobile-settings__subscribe-btn {
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #f00f39;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 0 12px;
    flex: 0 0 auto;
  }

  .hz-mobile-settings__bottom {
    padding-top: 8px;
    text-align: center;
  }

  .hz-mobile-settings__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0 14px;
  }

  .hz-mobile-settings__social-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #f00f39;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .hz-mobile-settings__stores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 10px;
  }

  .hz-mobile-settings__store {
    width: 150px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .hz-mobile-settings__store-icon {
    font-size: 18px;
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .hz-mobile-settings__store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
  }

  .hz-mobile-settings__store-sub {
    font-size: 10px;
    opacity: 0.85;
  }

  .hz-mobile-settings__store-main {
    font-size: 13px;
    font-weight: 800;
  }

  .hz-mobile-settings__copyright {
    font-size: 10px;
    color: #fca5a5;
    padding: 8px 0 0;
  }

  .hz-mobile-settings__language {
    padding: 10px 14px 6px;
  }

  .hz-mobile-settings__language-select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    height: 44px;
    padding: 0 12px;
    font-size: 14px;
    background: #ffffff;
  }

  .hz-mobile-profile {
    --bs-offcanvas-width: 100vw;
    background: #ffffff;
  }

  .hz-mobile-profile__header {
    background: #f00f39;
    color: #ffffff;
    padding: 14px 14px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    border-bottom: 0;
  }

  .hz-mobile-profile__title {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
  }

  .hz-mobile-profile__back,
  .hz-mobile-profile__spacer {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .hz-mobile-profile__body {
    padding: 16px 14px 28px;
    background: #f3f4f6;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
  }

  .hz-mobile-profile__section {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 14px 14px;
    margin-bottom: 12px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  }

  .hz-mobile-profile__section-title {
    font-size: 12px;
    font-weight: 700;
    color: #f00f39;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .hz-mobile-profile__section-title::before {
    content: "";
    width: 4px;
    height: 14px;
    border-radius: 999px;
    background: #f00f39;
  }

  .hz-mobile-profile__auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hz-mobile-profile__field {
    position: relative;
  }

  .hz-mobile-profile__select-input {
    width: 100%;
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    padding: 0 38px 0 12px;
    font-size: 14px;
    font-weight: 600;
    appearance: none;
  }

  .hz-mobile-profile__select-caret {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .hz-mobile-profile__action {
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: #f00f39;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
  }

  .hz-mobile-profile__bottom {
    margin-top: auto;
    padding-top: 18px;
    text-align: center;
  }

  .hz-mobile-profile__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0 14px;
  }

  .hz-mobile-profile__social-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #f00f39;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .hz-mobile-profile__stores {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 10px;
  }

  .hz-mobile-profile__store {
    width: 150px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .hz-mobile-profile__store-icon {
    font-size: 18px;
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .hz-mobile-profile__store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
  }

  .hz-mobile-profile__store-sub {
    font-size: 10px;
    opacity: 0.85;
  }

  .hz-mobile-profile__store-main {
    font-size: 13px;
    font-weight: 800;
  }

  .hz-mobile-profile__copyright {
    font-size: 10px;
    color: #fca5a5;
    padding: 8px 0 0;
  }

}

  [data-hz-quick-links] {
    background: transparent;
    padding: 12px 0 16px;
  }

  [data-hz-quick-links] .hz-quick-links__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  [data-hz-quick-links] .hz-quick-links__btn {
    height: 50px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #ff3b3b 0%, #b80000 100%);
    box-shadow: 0 10px 24px rgba(184, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  }

  [data-hz-quick-links] .hz-quick-links__btn:hover,
  [data-hz-quick-links] .hz-quick-links__btn:focus {
    color: #ffffff;
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(184, 0, 0, 0.32);
  }

  [data-hz-quick-links] .hz-quick-links__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 1;
  }

  [data-hz-quick-links] .hz-quick-links__icon i {
    font-size: 14px;
  }

  [data-hz-quick-links] .hz-quick-links__text {
    white-space: nowrap;
  }

  [data-hz-quick-links] .hz-quick-links__btn.is-active {
    border: 3px solid rgb(255, 215, 0);
  }

  [data-hz-quick-links-mobile] {
    display: none;
  }

  @media (max-width: 992px) {
    [data-hz-quick-links] .hz-quick-links__list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    [data-hz-quick-links] {
      display: none;
    }

    [data-hz-quick-links-mobile] {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      padding: 10px 0 12px;
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 6px;
      width: 72px;
      height: 61px;
      min-height: 61px;
      border-radius: 8px;
      text-decoration: none;
      position: relative;
      background: rgba(0, 0, 0, 0.18);
      border: 0;
      color: #ffffff;
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__item::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1px;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(196, 29, 60, 0.5) 0%, rgba(255, 255, 255, 0.4) 100%);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      -webkit-mask-composite: xor;
      pointer-events: none;
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__item[data-hz-quick-link="quick-shopping"] {
      width: 79px;
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__item:focus {
      outline: none;
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__item:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__item.is-active {
      background: #4A0001;
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__icon {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      line-height: 1;
    }

    [data-hz-quick-links-mobile] .hz-mobile-quick-links__label {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.1;
      text-align: center;
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      max-width: 100%;
    }
  }

  @media (max-width: 480px) {
    [data-hz-quick-links] {
      padding: 10px 0 12px;
    }

    [data-hz-quick-links] .hz-quick-links__list {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    [data-hz-quick-links] .hz-quick-links__btn {
      height: 44px;
    }
  }