.elementor-43 .elementor-element.elementor-element-175bff2{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS */.screen-reader-text {
    display: none !important;
}


/* ===========================================================
   BASE HEADER LAYOUT
   =========================================================== */

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: flex-end;
  background: transparent;
  z-index: 9990;
}

/* === Logo Area === */
.header-logo {
  width: 140px;
  height: 140px;
  background: var(--e-global-color-1a85567);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--e-global-color-text);
}

.header-logo img {
  max-width: 100%;
  height: auto;
  padding: 1rem;
}

/* === Navigation Area === */
.header-nav {
  flex: 1;
  height: 90px;
  background: var(--e-global-color-1a85567);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  margin-top: 50px;
  border-top: 2px solid var(--e-global-color-text);
  border-bottom: 2px solid var(--e-global-color-text);
}

/* === Nav Items === */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: var(--e-global-color-text);
  position: relative;
  transition: color 0.3s ease;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  line-height: var(--e-global-typography-accent-line-height);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* ===========================================================
   CTA + CART (RIGHT SIDE)
   =========================================================== */

.header-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* CTA */
.header-cta {
  height: 90px;
  background: var(--e-global-color-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--e-global-color-text);
  border-bottom: 2px solid var(--e-global-color-text);
  border-left: 2px solid var(--e-global-color-text);
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease;
  padding: 0 40px;
}

.header-cta:hover {
  background: var(--e-global-color-secondary);
}

.cta-text {
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  line-height: var(--e-global-typography-accent-line-height);
  color: var(--e-global-color-text);
  transition: color 0.4s ease;
}

/* CTA animated dot */
.animated-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  text-decoration: none;
  color: var(--e-global-color-text);
  cursor: pointer;
  transition: color 0.3s ease;
  box-sizing: border-box;
}

.cta-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--e-global-color-text);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon {
  width: 16px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  fill: var(--e-global-color-1a85567);
}

.animated-dot:hover .cta-dot {
  width: 26px;
  height: 26px;
  background: var(--e-global-color-text);
}

.animated-dot:hover .cta-icon {
  opacity: 1;
  transform: translateX(0);
}

/* === Cart === */
.header-cart {
  position: relative;
  height: 90px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: start;
  background: var(--e-global-color-1a85567);
  border-top: 2px solid var(--e-global-color-text);
  border-bottom: 2px solid var(--e-global-color-text);
  border-left: 2px solid var(--e-global-color-text);
  padding: 0 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header-cart:hover {
  background: var(--e-global-color-secondary);
}

.cart-icon {
  width: 26px;
  height: auto;
}

.cart-count {
  position: absolute;
  top: 22px;
  right: 43px;
  background: var(--e-global-color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.header-cart:hover .cart-count {
  transform: scale(1.1);
}

/* ===========================================================
   RESPONSIVE BREAKPOINTS
   =========================================================== */

/* --- iPad landscape & small laptops --- */
@media (max-width: 1024px) {
  .header-logo {
    width: 90px;
    height: 90px;
  }

.header-logo img {
  padding: 0rem;
}


  .header-nav {
    padding: 0 20px;
  }

  .header-nav ul {
    gap: 25px;
  }

  .header-nav a {
    font-size: calc(var(--e-global-typography-accent-font-size) * 0.9);
  }

  .cart-count {
    right: 42%;
    top: 15px;
  }
}

/* --- Tablets & below --- */
@media (max-width: 768px) {
  .custom-header {
    flex-direction: column;
    align-items: stretch;
    background: var(--e-global-color-1a85567);
    border-bottom: 2px solid var(--e-global-color-text);
    width: 100vw;
  }

  .header-logo {
    width: 70px;
    height: 70px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .header-logo img {
    max-width: 60px;
  }

  .header-nav {
    display: none;
  }

  /* CTA + Cart row */
  .header-buttons {
    display: flex;
    width: 100%;
  }

  .header-cta {
    flex: 1; /* takes remaining width */
    border: none;
    height: 70px;
    justify-content: space-between;
    background: var(--e-global-color-accent);
    border-top: 2px solid var(--e-global-color-text);
    border-right: 2px solid var(--e-global-color-text);
    transition: background-color 0.3s ease;
  }

  .header-cart {
    width: 90px; /* fixed width for cart on mobile */
    border: none;
    height: 70px;
    justify-content: center;
    background: var(--e-global-color-1a85567);
    border-top: 2px solid var(--e-global-color-text);
    transition: background-color 0.3s ease;
  }

  .header-cta:hover,
  .header-cart:hover {
    background: var(--e-global-color-secondary);
  }

  .cta-text {
    font-size: calc(var(--e-global-typography-accent-font-size) * 0.9);
  }

  .cta-dot {
    width: 6px;
    height: 6px;
  }

  .cart-icon {
    width: 22px;
    height: 22px;
  }

  .cart-count {
    right: 1.5rem;
    top: 15px;
  }

  /* Hamburger */
  .hamburger {
    display: block;
    position: absolute;
    top: 24px;
    right: 20px;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 9991;
  }

  .hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--e-global-color-text);
    border-radius: 2px;
    transition: all 0.4s ease;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { top: 18px; }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--e-global-color-1a85567);
    border-top: 2px solid var(--e-global-color-text);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    z-index: 9989;
  }

  .mobile-nav a {
    color: var(--e-global-color-text);
    text-decoration: none;
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: calc(var(--e-global-typography-accent-font-size) * 1.1);
  }
}

/* ===========================================================
   MOBILE MENU VISIBILITY FIX
   =========================================================== */

.mobile-nav {
  display: none;
  opacity: 0;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .header-nav { display: none; }
}

@media (min-width: 769px) {
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}/* End custom CSS */