@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ===================== NEW HEADER ===================== */
.font-poppins { font-family: 'Poppins', sans-serif; }
.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar { display: none; }
.nh-hidden { display: none !important; }
.lg-block { display: none !important; }

.new-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s;
  background-color: rgba(1, 44, 96, 0.85); /* #012c60/[0.85] */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(1, 60, 140, 0.5); /* #013c8c/50 */
  box-shadow: 0 2px 12px 0 rgba(1, 44, 96, 0.35);
}

.nh-container {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1rem;
}

.nh-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 0.75rem;
  /* ADDED: Forces this row and the search bar to stay on top */
  position: relative;
  z-index: 20;
}

.nh-logo-link { flex-shrink: 0; display: block; }
.nh-logo-img {
  height: 28px;
  width: auto;
  transition: opacity 0.2s;
}
.nh-logo-link:hover .nh-logo-img { opacity: 0.9; }

.nh-desktop-nav { display: none; }
.nh-nav-link {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s;
  text-decoration: none;
}
.nh-nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.nh-badge {
  display: inline-block;
  font-size: 8.5px;
  font-weight: bold;
  background-color: #ef4444; /* red-500 */
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.025em;
}

.nh-right-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nh-icon-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  cursor: pointer;
}
.nh-icon { width: 16px; height: 16px; }
.nh-icon-sm { width: 14px; height: 14px; }

.nh-search-dropdown {
  position: absolute;
  right: 0; /* Now it anchors to the edge of the screen */
  top: calc(100% + 8px); 
  width: calc(100vw - 2rem);
  max-width: 310px; 
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  background-color: #011e42; 
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: nh-fade-in 0.2s ease-out;
}

@keyframes nh-fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nh-search-input {
  flex: 1;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  border: none;
}
.nh-search-input::placeholder { color: rgba(255, 255, 255, 0.4); }

.nh-search-go {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  transition: background-color 0.2s;
  background-color: #e2ae3f;
  color: #011e42;
  border: none;
  cursor: pointer;
}

.nh-deals-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 9999px;
  transition: all 0.2s;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.025em;
  cursor: pointer;
}

.nh-account-link { text-decoration: none; display: block; }
.nh-account-btn-desktop { display: none; }

.nh-border-top { border-top: 1px solid rgba(255, 255, 255, 0.06); width: 100%; }

.nh-category-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  height: 34px;
}
.nh-cat-link {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  padding: 0 12px;
  height: 34px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.15s;
  flex-shrink: 0;
  text-decoration: none;
}
.nh-cat-link:first-child { padding-left: 0; }
.nh-cat-link:last-child { border-right: none; }
.nh-cat-link:hover { color: #e2ae3f; }

.nh-mobile-nav-scroll {
  display: flex;
  align-items: center;
  overflow-x: auto;
  height: 40px;
  gap: 1.25rem;
}
.nh-mobile-main-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  letter-spacing: 0.025em;
  text-decoration: none;
}
.nh-mobile-main-link:hover { color: #ffffff; }

.nh-mobile-dropdown {
  padding: 0.5rem 0;
  /* ADDED: Puts this layer below the top row */
  position: relative;
  z-index: 10;
}

.nh-mobile-dropdown-nav {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.nh-dropdown-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 8px;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
.nh-dropdown-link:hover { color: #ffffff; }
.nh-no-border { border-bottom: none; }

/* Sub-bars scroll wrapper animation */
.nh-subbars-wrapper {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 120px;
  opacity: 1;
  /* ADDED: Puts this layer below the top row */
  position: relative;
  z-index: 10;
}

/* Animations for hints */
@keyframes hintScroll {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(-20px); }
  45%  { transform: translateX(-22px); }
  60%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}

.hint-scroll-mobile {
  animation: hintScroll 1s ease-in-out 0.8s 1 both;
}

.hint-scroll-city {
  animation: hintScroll 1s ease-in-out 1s 1 both;
}

/* City / Location Sub-bar Styles */
.nh-city-bg {
  background-color: transparent; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.nh-city-scroll {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 32px;
  gap: 8px;
  overflow-x: auto;
}

@media (min-width: 1024px) {
  .nh-city-scroll {
    justify-content: center;
  }
}

.nh-city-link {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nh-city-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.40);
}

/* Dropdown Dot styling */
.nh-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nh-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(226, 174, 63, 0.6);
  flex-shrink: 0;
}

/* Media Queries */
@media (min-width: 640px) {
  .nh-container { padding: 0 1.5rem; }
  .sm-hidden { display: none !important; }
  .nh-account-btn-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 9999px;
    padding: 7px 16px;
    transition: all 0.2s;
    background-color: rgba(226, 174, 63, 0.12);
    border: 1px solid rgba(226, 174, 63, 0.38);
    color: #e2ae3f;
    cursor: pointer;
  }
  .nh-search-dropdown {
    right: 0;
    width: 310px;
  }
}

@media (min-width: 768px) {
  .nh-logo-img { height: 32px; }
}

@media (min-width: 1024px) {
  .nh-container { padding: 0 2rem; }
  .lg-hidden { display: none !important; }
  .lg-block { display: block !important; }
  .nh-desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }
  
  /* Centers the city links on desktop */
  .nh-city-scroll {
    justify-content: center;
  }
  
  /* Removes the bounce/hint animation on desktop */
  .hint-scroll-city,
  .hint-scroll-mobile {
    animation: none !important;
  }
}

/* Push page content below fixed header */
body {
  padding-top: 130px;
}

/* Desktop header height: top row 58px + deals bar 34px + city bar 32px */
@media (min-width: 1024px) {
  body {
    padding-top: 124px;
  }
}

/* ===================== FOOTER ===================== */
.lt-footer,
.lt-footer * {
  box-sizing: border-box;
}

.lt-footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #051b2f;
  background-image:
    linear-gradient(180deg, rgba(5, 27, 47, 0.74) 0%, rgba(5, 27, 47, 0.82) 55%, rgba(3, 17, 30, 0.93) 100%),
    url('https://dxk1acp76n912.cloudfront.net/images/homepage/waterma.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lt-footer a { color: inherit; text-decoration: none; }
.lt-footer p,
.lt-footer h2 { margin: 0; }

.lt-footer-glow {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.lt-footer-glow-left { top: 40px; left: -150px; background: rgba(230, 97, 91, 0.12); }
.lt-footer-glow-right { right: -150px; bottom: -50px; background: rgba(250, 204, 21, 0.1); }

.lt-footer-container {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
  padding: 48px 0 30px;
}

.lt-footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lt-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.lt-footer-logo-link { display: inline-flex; }
.lt-footer-logo {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.25));
}

.lt-footer-description {
  max-width: 430px;
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.lt-footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.lt-footer-socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lt-footer-socials a:hover {
  transform: translateY(-4px);
  border-color: #e6615b;
  background: #e6615b;
  box-shadow: 0 10px 24px rgba(230, 97, 91, 0.3);
}

.lt-footer-heading {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lt-footer-section { text-align: left; }

.lt-footer-company-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.lt-footer-company-name { color: #ffffff; font-weight: 700; }
.lt-footer-address { margin-top: 4px !important; }
.lt-footer-registration { display: flex; flex-direction: column; gap: 5px; }
.lt-footer-registration span { color: rgba(255, 255, 255, 0.5); }

.lt-footer-terms {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  font-weight: 700;
  transition: color 0.3s ease;
}

.lt-footer-terms i { font-size: 10px; }
.lt-footer-terms:hover { color: #f6c75c !important; }

.lt-footer-contact-list {
  display: flex;
  max-width: 430px;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.lt-footer-contact-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
  text-align: left;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lt-footer-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.lt-footer-contact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #f6c75c;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.lt-footer-contact-card:hover .lt-footer-contact-icon { background: #f6c75c; color: #061c2f; }
.lt-footer-contact-copy { display: block; min-width: 0; }
.lt-footer-contact-label { display: block; margin-bottom: 3px; color: rgba(255, 255, 255, 0.5); font-size: 12px; }
.lt-footer-contact-copy strong { display: block; overflow-wrap: anywhere; color: #ffffff; font-size: 14px; }

.lt-footer-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.lt-footer-whatsapp i { font-size: 19px; }
.lt-footer-whatsapp:hover { transform: translateY(-2px); background: #1ebe5d; box-shadow: 0 16px 32px rgba(37, 211, 102, 0.34); }

.lt-footer-payments { padding: 32px 0; }
.lt-footer-payment-heading { margin-bottom: 20px; text-align: center; }
.lt-footer-payment-heading h2 { color: #ffffff; font-size: 14px; font-weight: 700; }
.lt-footer-payment-heading p { margin-top: 5px; color: rgba(255, 255, 255, 0.55); font-size: 12px; }

.lt-payment-marquee {
  position: relative;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lt-payment-marquee::-webkit-scrollbar { display: none; }

.lt-payment-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: lt-footer-payment-scroll 24s linear infinite;
  will-change: transform;
}

.lt-payment-marquee:hover .lt-payment-track { animation-play-state: paused; }
.lt-payment-set { display: flex; flex-shrink: 0; align-items: center; gap: 12px; padding-right: 12px; }

.lt-payment-card {
  display: flex;
  width: 118px;
  height: 64px;
  flex: 0 0 118px;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lt-payment-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); }
.lt-payment-card img { display: block; width: auto; height: 44px; max-width: 104px; max-height: 48px; object-fit: contain; }

.lt-payment-fade { position: absolute; z-index: 2; top: 0; bottom: 0; width: 90px; pointer-events: none; }
.lt-payment-fade-left { left: 0; background: linear-gradient(to right, rgba(5, 27, 47, 0.94), transparent); }
.lt-payment-fade-right { right: 0; background: linear-gradient(to left, rgba(5, 27, 47, 0.94), transparent); }

@keyframes lt-footer-payment-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.lt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.lt-footer-confidence { display: flex; align-items: center; gap: 6px; }
.lt-footer-confidence span { color: #e6615b; }

@media (max-width: 1023px) {
  .lt-footer-container { width: min(100% - 32px, 900px); padding-top: 42px; }
  .lt-footer-main { grid-template-columns: 1fr; gap: 38px; text-align: center; }
  .lt-footer-brand { align-items: center; text-align: center; }
  .lt-footer-description { margin-right: auto; margin-left: auto; }
  .lt-footer-socials { justify-content: center; }
  .lt-footer-section { text-align: center; }
  .lt-footer-company-content { align-items: center; }
  .lt-footer-terms { justify-content: center; }
  .lt-footer-contact-list { margin-right: auto; margin-left: auto; }
}

@media (max-width: 640px) {
  .lt-footer-container { width: min(100% - 28px, 520px); padding: 38px 0 24px; }
  .lt-footer-main { gap: 34px; padding-bottom: 34px; }
  .lt-footer-logo { height: 58px; }
  .lt-footer-description { font-size: 14px; line-height: 1.75; }
  .lt-footer-socials a { width: 40px; height: 40px; }
  .lt-footer-contact-card { justify-content: center; text-align: center; }
  .lt-footer-contact-copy { text-align: left; }
  .lt-footer-payments { padding: 28px 0; }
  .lt-payment-track { animation-duration: 18s; }
  .lt-payment-card { width: 102px; height: 58px; flex-basis: 102px; padding: 5px; }
  .lt-payment-card img { height: 40px; max-width: 90px; max-height: 44px; }
  .lt-payment-fade { width: 46px; }
  .lt-footer-bottom { flex-direction: column; justify-content: center; gap: 9px; text-align: center; }
  .lt-footer-confidence { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .lt-payment-track { animation-duration: 40s; }
}