:root {
  --wl-orange:       #E8491E;
  --wl-orange-dark:  #C93C16;
  --wl-orange-light: #FFF0EB;
  --wl-text:         #1A1A1A;
  --wl-muted:        #6B7280;
  --wl-border:       #E5E7EB;
  --wl-bg:           #FFFFFF;
  --wl-radius:       14px;
  --wl-input-radius: 10px;
}
#ast-scroll-top{display: none !important;}
.footer_whatsapp{
  width: 60px;
  height: 60px;
  background: #00d471;
  border-radius: 100%;
  position: fixed;
  right: 20px;
  bottom: 20px;
 display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer_whatsapp svg{width: 28px;}
.footer_whatsapp:hover,.footer_whatsapp:focus{
  transform: translateY(-2px);
  color: #fff;
}

.sticky_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fbfbf7e6 !important;
    border-bottom: 1px solid #f0ede9;
}
.sticky_header .hfe-nav-menu li a{color: #000 !important;}
.header-top .white-logo{display: block;}
.header-top .black-logo{display: none;}
.sticky_header .black-logo{display: block;}
.sticky_header .white-logo{display: none;}

/* ── Overlay ─────────────────────────────────── */
#wl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
#wl-overlay.wl-visible {
  display: flex;
  opacity: 1;
}
#wl-overlay.wl-closing {
  opacity: 0;
}

/* ── Modal card ──────────────────────────────── */
#wl-modal {
  background: var(--wl-bg);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 40px 36px 4px;
  position: relative;
  font-family: 'Archivo', sans-serif;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  opacity: 0;
  max-height: 90vh;
  overflow-y: auto;
}
#wl-overlay.wl-visible #wl-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Close button ────────────────────────────── */
#wl-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 18px;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}
#wl-close:hover {
  background: #E5E7EB;
  color: #1A1A1A;
}

/* ── Header ──────────────────────────────────── */
.wl-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wl-orange);
  text-align: center;
  margin: 0 0 10px;
}
.wl-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--wl-text);
  text-align: center;
  margin: 0 0 6px;
  line-height: 1.1;
}
.wl-subtitle {
  font-size: 14px;
  color: var(--wl-muted);
  text-align: center;
  margin: 0 0 28px;
}

.open-waitlist-popup{
  cursor: pointer;
}

/* ── Form ────────────────────────────────────── */
.wl-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wl-form br{display: none;}
.wl-form p{margin: 0;}
.wl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wl-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-text);
}
.wl-input {
  height: 44px !important;
  border: 1.5px solid var(--wl-border) !important;
  border-radius: var(--wl-input-radius) !important;
  padding: 0 14px !important;
  font-size: 15px !important;
  color: var(--wl-text) !important;
  background: #fff !important;
  outline: none !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.wl-input:focus {
  border-color: var(--wl-orange) !important;
  box-shadow: 0 0 0 3px rgba(232, 73, 30, 0.12) !important;
}
.wl-input::placeholder {
  color: transparent;
}

/* ── Submit button ───────────────────────────── */
.wl-submit {
  height: 54px !important;
  background: var(--wl-orange) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232, 73, 30, 0.35);
  letter-spacing: 0.01em;
}
.wl-submit:hover {
  background: var(--wl-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 73, 30, 0.4);
}
.wl-submit:active {
  transform: translateY(0);
}
.wl-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.wl-submit:hover svg {
  transform: translateX(3px);
}

/* ── Footer note ─────────────────────────────── */
.wl-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--wl-muted);
  margin-top: 4px;
}

/* ── Success state ───────────────────────────── */
.wl-success {
  display: none;
  text-align: center;
  padding: 16px 0 8px;
}
.wl-success-icon {
  width: 60px;
  height: 60px;
  background: var(--wl-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.wl-success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--wl-orange);
}
.wl-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--wl-text);
  margin: 0 0 8px;
}
.wl-success p {
  font-size: 14px;
  color: var(--wl-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 480px) {
  #wl-modal {
    padding: 32px 20px 24px;
  }
  .wl-row {
    grid-template-columns: 1fr;
  }
  .wl-title {
    font-size: 28px;
  }
}


/*for mobile style menu*/
.mobile-menu-overlay {
  position: fixed;
  top: -150%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f3ef;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: top 0.4s ease;
  font-family: 'Archivo', sans-serif;
  visibility: hidden;
}

/* ACTIVE */
.mobile-menu-overlay.active {
  top: 0;
  visibility: visible;
}

/* HEADER */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.menu-logo {
  height: 28px !important;
}

.menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

/* MENU */
.mobile-menu-nav {
  padding: 10px 20px;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid #ddd;
}

.mobile-menu-list li a {
  display: block;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* FOOTER BUTTON */
.mobile-menu-footer {
  padding: 20px;
}

.menu-btn {
  display: block;
  text-align: center;
  background: #e4572e;
  color: #fff;
  padding: 16px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}