/* ==========================================================================
   GLIDE CORE BRAND INTERFACE SYSTEM STYLES
   ========================================================================== */
:root {
    --glide-dark-slate: #111827;
    --glide-bright-blue: #26bdf4;
    --glide-matte-grey-bg: #f4f5f8;
    --glide-hairline-border: #e5e7eb;
    --glide-muted-grey-text: #6b7280;
}

body {
    padding-top: 100px;
}

/* ==========================================================================
   NAVIGATION SYSTEMS LAYER CONSTRAINTS
   ========================================================================== */
.glide-navbar {
    background-color: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glide-hairline-border);
    padding: 18px 0;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 101;
}

.glide-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--glide-dark-slate);
    text-decoration: none;
}

.glide-logo .logo-dot {
    color: var(--glide-bright-blue);
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--glide-dark-slate);
    transition: color 0.2s ease;
}

/* .glide-navbar .navbar-nav .nav-link:hover,
.glide-navbar .navbar-nav .nav-link.active {
    color: var(--glide-bright-blue);
} */

.btn-test-ride {
    background-color: #FAFAFA;
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 32px !important;
    border-radius: 40px !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-test-ride:hover {
    /* background-color: #1f2937; */
    transform: translateY(-1px);
}

.custom-glide-breadcrumbs-nav {
    padding: 16px 0 32px 0;
}

.custom-glide-breadcrumbs-nav .breadcrumb-item,
.custom-glide-breadcrumbs-nav .breadcrumb-item a {
    font-size: 14px;
    color: #66677B;
    text-decoration: none;
    font-weight: 400;
}


/* Navigation hover effect */


.nav-link {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    padding: 0px !important;
    transition: color 0.3s ease;
}

/* Original text */
.nav-link span {
    display: block;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(.76,0,.24,1);
}

/* Hover text */
.nav-link::after {
    content: attr(data-text);

    position: absolute;
    inset: 0;
    /* display: flex;
    align-items: center; */

    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(.76,0,.24,1);
}

/* Animate */
.nav-link:hover span {
    transform: translateY(-110%);
}

.nav-link:hover::after {
    transform: translateY(0);
}




/* ==========================================================================
   MEGA MENU POSITIONING CONTAINER STYLING
   ========================================================================== */


.glide-mega-menu-dropdown {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #EAEBED; /* Matches the exact grey background tint from the design system */
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1099;
    
    /* Elegant smooth-collapse display animations */
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.glide-mega-menu-dropdown.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Left Sidebar Tab Navigation Elements */
.mega-menu-tabs-sidebar {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-vertical-tabs-list .mega-tab-item {
    margin-bottom: 12px;
}

.mega-vertical-tabs-list .mega-tab-link {
    font-family: var(--glide-font-family);
    font-size: 15px;
    font-weight: 600;
    color: var(--glide-neutral-600);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mega-vertical-tabs-list .mega-tab-item.active .mega-tab-link,
.mega-vertical-tabs-list .mega-tab-link:hover {
    color: var(--glide-neutral-900);
}

/* Right Showcase Slider Items styling */
.mega-products-swiper {
    width: 100%;
    overflow: hidden;
}

.mega-product-card {
    padding: 10px;
    background: transparent;
}

.mega-img-frame {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-img-frame img {
    max-height: 100%;
    object-fit: contain;
}

.mega-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--glide-neutral-900);
}

/* Precise Design System Blue Badge indicator */
.badge-new-tag {
    font-size: 11px;
    font-weight: 700;
    color: #0022FF; /* Precise blue from design system file */
    background-color: #EBF7FF;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Absolute Positioning Arrow Component styling */
.mega-swiper-arrow {
    position: absolute;
    top: 42%;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glide-neutral-900);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    z-index: 20;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mega-swiper-arrow:hover {
    background-color: var(--glide-neutral-200);
    transform: scale(1.05);
}

.mega-arrow-prev { left: -8px; }
.mega-arrow-next { right: 12px; }


/* Hide tabs content by default, reveal gracefully via active injection */
.mega-category-content-panel {
    display: none;
}

.mega-category-content-panel.active {
    display: block;
}

/* Ensure arrows sit over the active layout slide bounds properly */
.mega-swiper-arrow {
    pointer-events: auto;
}

button.menu-hamburger-trigger-btn{background: transparent;}

li.breadcrumb-item.active {
    color: #1A1A1A;
}



/* ==========================================================================
    Sidebar Popup
   ========================================================================== */

/* Sidebar Structural Configurations */
.test-ride-panel {
    width: 480px !important; /* Premium slide-out standard thickness */
    background-color: #ffffff;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

@media (max-width: 576px) {
    .test-ride-panel {
        width: 100% !important;
    }
}

/* Hero Section with Aspect Ratio Matching Design Image */
.panel-hero {
    background-image: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1)), url('../images/scooter-panel-hero.png');
    background-size: cover;
    background-position: center;
    height: 183px;
}

.btn-panel-close {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.btn-panel-close:hover {
    opacity: 1;
}

/* Typography Scale Matching Pixel Perfect Mockup */
.font-xs {
    font-size: 0.8rem !important;
}
.font-sm {
    font-size: 0.9rem !important;
}
.tracking-wide {
    letter-spacing: 0.05em;
}
.line-height-tight {
    line-height: 1.25;
}
.line-height-normal {
    line-height: 1.4;
}

/* Pixel Perfect Input & Selector Fields */
.custom-input, .custom-select {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: #1A202C;
}
.custom-input:focus, .custom-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Combined Prefix Fields Box Placement */
.custom-input-left {
    border: 1px solid #E2E8F0;
    border-radius: 8px 0 0 8px;
}
.custom-input-right {
    border-radius: 0 8px 8px 0;
}

/* Custom Dropdown Chevron Positioning */
.custom-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234A5568' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 10px 10px;
}

/* Custom timing selectors configuration */
.custom-timing-radio-group .timing-card {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.25s ease;
    cursor: pointer;
}

.custom-timing-radio-group .btn-check:checked + .timing-card {
    border-color: #22d3ee;
    background-color: #f0fdfa;
    box-shadow: 0 0 0 2px #22d3ee;
}

/* Indicator status circle element for Active Selections */
.custom-timing-radio-group .btn-check:checked + .timing-card::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    background-color: #22d3ee;
    color: white;
    font-size: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-timing-radio-group .col-4 {
    position: relative;
}

/* Proposition Block */
.value-proposition-box {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
}

/* Action submission interface element styling */
.btn-action-submit {
    background-color: #22d3ee;
    border: none;
    transition: background-color 0.2s ease;
}
.btn-action-submit:hover {
    background-color: #0bc5ea;
}


nav.navbar {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    /* padding-top: 23px; */
}

ul.navbar-nav {
    font-size: 16px;
    gap: 85px;
}

.nav-link-test-ride {
    background: #FAFAFA;
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 14px;
    color: #1A1A1A;
}

button.btn.btn-vip {
    background: #FAFAFA;
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 14px;
    color: #1A1A1A;
}

button.btn.btn-shop {
position: relative;
  display: inline-block;
  padding: 16px 40px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  text-decoration: none;
  z-index: 1;
}
button.btn.btn-shop::before{
    content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50px; 
  padding: 1px; /* This acts as your border width */
  background: linear-gradient(91.77deg, #63CEF5 21.67%, rgba(255, 255, 255, 0) 123.97%);
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}





/* nav.navbar.navbar-expand-lg.glide-navbar.fixed-top{
    position: relative !important;
} */