/** Shopify CDN: Minification failed

Line 15:7 Expected identifier but found whitespace
Line 15:9 Unexpected "{"
Line 15:18 Expected ":"
Line 16:11 Expected identifier but found whitespace
Line 16:13 Unexpected "{"
Line 16:22 Expected ":"
Line 17:9 Expected identifier but found whitespace
Line 17:11 Unexpected "{"
Line 17:20 Expected ":"

**/
.ecoride-header-section {
  --bg: {{ section.settings.bg_color }};
  --accent: {{ section.settings.accent_color }};
  --text: {{ section.settings.text_color }};
}

.ecoride-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg, #050f09) !important;
  color: var(--text, #fff);
  border-bottom: 1px solid rgba(46, 204, 113, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 32px;
  flex-wrap: wrap;
}

.ecoride-navbar-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46,204,113,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,113,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.ecoride-navbar::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent, #2ecc71) 15%, var(--accent, #2ecc71) 85%, transparent 100%);
  box-shadow: 0 0 10px rgba(46,204,113,0.6);
}

.ecoride-navbar-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff !important;
  flex-shrink: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.ecoride-navbar-logo-slot {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46,204,113,0.08);
  border: 1.5px solid rgba(46,204,113,0.35);
}

.ecoride-navbar-logo-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; mix-blend-mode: screen; }

.ecoride-navbar-logo-initials {
  color: #2ecc71 !important;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: 'Rajdhani', sans-serif;
}

.ecoride-navbar-logo-text span { color: var(--accent, #2ecc71) !important; }


.ecoride-navbar-logo-text {
  display: inline-flex !important;
  color: #ffffff !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 21px;
  font-weight: 800;
  gap: 4px;
}


.ecoride-navbar-hamburger {
  display: none;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.ecoride-navbar-hamburger span { display: block; height: 2px; width: 100%; background: #ffffff !important; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.ecoride-navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ecoride-navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.ecoride-navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ecoride-navbar-links {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ecoride-navbar-links li { display: flex; }

.ecoride-navbar-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #222222 !important;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
}

.ecoride-navbar-links a svg { width: 16px; height: 16px; flex-shrink: 0; color: inherit; }

.ecoride-navbar-links a:hover { background: rgba(255,255,255,0.06); color: #ffffff !important; }

.ecoride-navbar-links a.active {
  color: var(--accent, #2ecc71) !important;
  background: rgba(46, 204, 113, 0.08);
  border-color: rgba(46, 204, 113, 0.45);
}

.ecoride-navbar-badge {
  background: var(--accent, #2ecc71) !important;
  color: #04140a !important;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 4px;
}

.ecoride-navbar-links a.nav-login { color: #222222 !important; }

.ecoride-navbar-links a.nav-cta {
  background: var(--accent, #2ecc71) !important;
  color: #04140a !important;
  font-weight: 700;
}
.ecoride-navbar-links a.nav-cta:hover { filter: brightness(1.08); background: var(--accent, #2ecc71) !important; }

@media (max-width: 900px) {
  .ecoride-navbar { padding: 8px 14px; gap: 12px; }

  .ecoride-navbar-logo { font-size: 16px; gap: 7px; }
  .ecoride-navbar-logo-text { font-size: 16px; }
  .ecoride-navbar-logo-slot { width: 30px; height: 30px; }
  .ecoride-navbar-logo-initials { font-size: 0.85rem; }

  .ecoride-navbar-hamburger { display: flex; width: 26px; height: 26px; gap: 4px; }
  .ecoride-navbar-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .ecoride-navbar-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .ecoride-navbar-links {
    order: 3;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    transition: max-height 0.25s ease;
  }
  .ecoride-navbar-links.open { max-height: 480px; padding-top: 8px; padding-bottom: 12px; }
  .ecoride-navbar-links a { width: 100%; padding: 10px 6px; font-size: 13px; border-radius: 6px; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
