.elementor-kit-29{--e-global-color-primary:#1E1E1E;--e-global-color-secondary:#E8C7C2;--e-global-color-text:#444;--e-global-color-accent:#DDB1AA;--e-global-color-80aa0cb:#F0F0F0;--e-global-color-029357b:#CC8E85;--e-global-color-87cebc1:#101010;--e-global-typography-primary-font-family:"Onest";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;--e-global-typography-24f9012-font-weight:700;--e-global-typography-24f9012-text-transform:uppercase;--e-global-typography-24f9012-letter-spacing:0.1em;--e-global-typography-a61dfc3-font-family:"Playfair Display";--e-global-typography-a61dfc3-font-size:3em;--e-global-typography-a61dfc3-font-weight:700;--e-global-typography-8b0e51c-font-family:"Playfair Display";--e-global-typography-8b0e51c-font-size:2em;--e-global-typography-8b0e51c-font-weight:600;--e-global-typography-e02125d-font-family:"Playfair Display";--e-global-typography-e02125d-font-size:2em;--e-global-typography-e02125d-font-weight:600;--e-global-typography-7cd8ff0-font-family:"Onest";--e-global-typography-7cd8ff0-font-size:1.4em;--e-global-typography-7cd8ff0-font-weight:700;--e-global-typography-7cd8ff0-text-transform:uppercase;--e-global-typography-7cd8ff0-letter-spacing:4.9px;}.elementor-kit-29 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-kit-29{--e-global-typography-a61dfc3-font-size:3em;--e-global-typography-8b0e51c-font-size:2em;--e-global-typography-e02125d-font-size:1.5em;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100%;
  background: #f0f0f0;
}

/* Hamburger Icon */
.menu-toggle {
  position: relative;
  top: -6px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: top 0.3s ease;
}

.bar {
  position: absolute;
  left: 0;
  height: 4px;
  width: 100%;
  background: #e8c7c2;
  margin: 6px 0;
  transition: all 0.4s ease;
  transform-origin: center;
}

.bar:nth-child(1) {
  top: 0;
}

.bar:nth-child(2) {
  top: 10px;
}

.bar:nth-child(3) {
  top: 20px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Overlay menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0f0f0f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  z-index: 1000;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.overlay-menu a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.overlay-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 5px;
  width: 100%;
  background-color: #e8c7c2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.overlay-menu a:hover {
  color: #e8c7c2;
  transform: scale(1.05);
}

.overlay-menu a:hover::after {
  transform: scaleX(1);
}

.overlay-menu a.current-menu-item,
.overlay-menu a.active,
.overlay-menu a.elementor-item-active {
  color: #e8c7c2;
  transform: scale(1.05);
}

.overlay-menu a.current-menu-item::after,
.overlay-menu a.active::after,
.overlay-menu a.elementor-item-active::after {
  transform: scaleX(1);
}

/* Sticky header */
.hamburger-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px 0;
  transition: background-color 0.5s ease, padding 0.4s ease;
  z-index: 999;
}

.hamburger-header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Flex container to align header elements */
.hamburger-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Carousel default */
.styled-carousel .swiper-slide {
  transition: all 0.4s ease;
  filter: grayscale(100%);
  transform: scale(0.85);
  opacity: 0.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hamburger-header {
    padding: 20px 0;
  }

  .menu-toggle {
    width: 24px;
    height: 20px;
  }

  .bar {
    height: 3px;
  }

  .bar:nth-child(1) {
    top: 0;
  }

  .bar:nth-child(2) {
    top: 8px;
  }

  .bar:nth-child(3) {
    top: 16px;
  }

  .menu-toggle.active .bar:nth-child(1),
  .menu-toggle.active .bar:nth-child(3) {
    top: 8px;
  }

  .overlay-menu {
    font-size: 2rem;
  }
}

/* 1) Responsive grid wrapper (wrap ALL the cards with this class) */
.salon-professional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* scales 1→4 cols */
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Builders (Elementor, etc.) often inject extra wrappers.
   This flattens immediate children so cards align to the grid without HTML surgery. */
.salon-professional-grid > * { display: contents; }

/* 2) Your existing card styles (kept) + small responsive tweaks */
.salon-professional-grid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* ensure each card fills its grid cell cleanly */
  width: 100%;
  height: 100%;
  position: relative;

  /* fluid padding */
  padding: clamp(12px, 2vw, 20px);
  box-sizing: border-box;
}

/* Wrap image in a flex spacer to center it */
.salon-professional-grid-content .logo-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.salon-professional-grid-content img.company-logo {
  /* responsive logo sizing: never too small on mobile, never too big on desktop */
  max-width: clamp(160px, 40vw, 300px);
  height: auto;
}

/* Bottom-aligned text */
.salon-professional-grid-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.3rem); /* fluid heading size */
  margin: 10px 0 0 0;
}

/* 3) No-HTML-change fallback:
   If you *can't* add .salon-professional-grid around the cards,
   upgrade the existing parent to a responsive grid automatically. */
.elementor-widget-wrap:has(> .salon-professional-grid-content),
.elementor-container:has(> .salon-professional-grid-content) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}/* End custom CSS */