:root {
    --primary-color: #D07501;
    --primary-hover: #C63809;
    --text-primary: #031419;
    --text-secondary: #536b75;
    --background: #ffffff;
    --background-gray: #f6f7f7;
    --border-color: #ccd2d8;
    --success-color: #18824c;
    --warning-color: #9f5800;
    --danger-color: #9b0031;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    color: var(--text-primary);
    background-color: #f3f5fb;
    padding-top: 64px !important;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1350px;
    margin: 0 auto;
    padding-top: 0.5rem;
    padding-bottom: 0.1rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.language-selector {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.language-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.language-btn:hover,
.language-btn.active {
    background: var(--text-primary);
    color: #fff;
}
.btn-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.nav-divider {
    width: 0.0625rem;
    height: 3rem;
    background: linear-gradient(#fff, #ccd2d8, #fff);
    display: block;
    margin: 0 12px;
}

.nav-desktop a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size:14px;
}

.nav-desktop a:hover {
    color: var(--primary-color);
}

/* Menu Mobile */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    padding: 2rem;
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.nav-mobile-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-mobile-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.nav-mobile-menu a:hover {
    color: var(--primary-color);
}

.nav-mobile-login {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-login-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-login-btn:hover {
    background: var(--primary-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-desktop-only {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-mobile.active {
        display: block;
    }
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #C63809 0%, #D07501 100%);
    color: white;
    padding: 1.2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 150px;
  	display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgb(255,255,255,0)"/></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="400"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-hover);
}

/* Events Section */
.events-section {
    padding: 1.5rem 1.5rem;
    max-width: 1350px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.see-all-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.see-all-btn:hover {
    color: var(--primary-hover);
}

.events-carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.events-carousel::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 250px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.event-card-ranking {
    position: absolute;
    bottom: 150px;
    left: 10px;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Badge topo */
.event-badge {
    position: absolute;
    top: -18px;
    left: 20px;
    background: #eaeaea;
    border-radius: 10px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
}

.event-badge i {
    font-style: normal;
}

.event-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-content {
    padding: 20px 20px 20px 90px;
    position: relative;
}

/* Data lateral */
.event-date-box {
    position: absolute;
    left: 20px;
    top: 50px;
    transform: translateY(-50%);
    background: #374151;;
    color: #fff;
    border-radius: 12px;
    width: 60px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}

.event-date-box span.day {
    font-size: 22px;
}

.event-date-box span.month {
    font-size: 14px;
    text-transform: lowercase;
}

.event-date-box span.year {
    font-size: 14px;
}

.event-location {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    margin-bottom: 6px;
}

.event-title {
    color: #0089e3;
    font-size: 13px;
    font-weight: 500;
    line-height: 14px;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.event-description1 {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-rating1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 0.875rem;
}

.rating-value {
    font-size: 0.875rem;
    font-weight: 600;
}

.event-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.event-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.event-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.favorite-btn {
    background: none;
    border: none;
    color: var(--border-color);
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.favorite-btn:hover,
.favorite-btn.active {
    color: var(--danger-color);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .event-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .language-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .event-card {
        flex: 0 0 340px;
    }
    .events-carousel {
    flex-direction: column;
}
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Dashboard Layout Variables */
:root{
  --brand:#3b82f6;
  --brand-glow:#60a5fa;
  --brand-soft:#dbeafe;
  --navy:#1e2a4a;
  --app-bg:#f3f5fb;
  --muted:#7a849a;
  --border:#e6eaf2;
  --sidebar-from:#eef0f8;
  --sidebar-to:#e2e7f4;
  --light-bar:#dde3ef;
}

/* Dashboard Layout Base */
.dashboard-app {
  display: flex;
  min-height: 100vh;
  background: #fff;
  max-width: 1350px;
  margin: 0 auto;
}

.dashboard-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff !important;
  margin-top: 10px;
}

.dashboard-card {
  background: #fff;
  border-radius: 16px;
  padding-top: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.dashboard-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.dashboard-col-9 {
  grid-column: span 9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.dashboard-col-3 {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.dashboard-col-12 {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* Events Carousel Slider */
.events-carousel {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.events-carousel-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  gap: 16px;
}

/* Event Card Styles - Fever Style */
.events-carousel-item {
  flex: 0 0 250px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ccd2d8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-decoration: none;
  display: block;
  min-height: 330px;
  margin-top: 20px;
}

.events-carousel-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6b35;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 16px;
}

.carousel-nav:hover {
  background: #ff8c42;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-nav.disabled:hover {
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 1200px) {
  .dashboard-col-9, .dashboard-col-3 {
    grid-column: span 12;
  }
}

@media (max-width: 1024px) {
  .dashboard-main {
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .dashboard-main {
    padding: 12px;
    gap: 12px;
  }
  
  .dashboard-card {
    padding: 16px;
    border-radius: 14px;
    height: 100px!important;
  }

  .event-image {
    width: auto;
    height: auto;
  }

  .event-date-box {
    display: none;
  }
  
  .event-content {
    display: none;
  }
  .event-card {
    flex: 0 0 150px!important;
  }
}

/* Fever Navbar Styles */
.fv-navbar {
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    height: 64px !important;
    width: 100% !important;
}

.fv-navbar__container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.fv-navbar__logo {
    flex-shrink: 0;
}

.fv-navbar__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Main Navigation */
.fv-navbar__main {
    flex: 1;
    display: flex;
    justify-content: center;
}

.fv-navbar__links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fv-navbar__item {
    position: relative;
}

.fv-navbar__item:hover {
    background: #e9ecef;
    border-radius:20px;
    color:var(--text-primary)!important;
}
.fa-full:hover a:hover {
    color:#0089e3!important;
}
.fv-navbar__link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
  	font: 400 1rem / 1.5rem Montserrat, sans-serif;
    background: none;
    border: none;
    cursor: pointer;
}

.fv-navbar__link:hover {
    color: var(--primary-color);
    background-color: rgba(208, 117, 1, 0.1);
}

/* Tools Section */
.fv-navbar__tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Search Styles */
.fv-navbar__search-link {
    position: relative;
}

.fv-navbar__search-link .mobile {
    display: none;
}

.fv-navbar__search {
    position: relative;
}

.search-typeahead {
    position: relative;
    display: flex;
    align-items: center;
}

.search-typeahead-light {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 0 12px;
    transition: all 0.2s ease;
    min-width: 280px;
}

.search-typeahead-light:hover {
    border-color: #e9ecef;
}

.search-typeahead__box {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 450px;
    position: relative;
}

.search-typeahead__search-icon {
    width: 16px;
    height: 16px;
    color: #6c757d;
    margin-right: 8px;
    flex-shrink: 0;
}

.search-typeahead__box__input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
    padding: 8px 0;
  	font: 400 1rem / 1.5rem Montserrat, sans-serif;
}

.search-typeahead__box__input::placeholder {
    color: #6c757d;
}

.search-typeahead__placeholder {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-typeahead__placeholder-static {
    color: #6c757d;
    font-size: 14px;
}

.search-typeahead__dynamic-cta {
    overflow: hidden;
    width: 200px;
}

.embla {
    position: relative;
}

.embla__container {
    display: flex;
    transition: transform 0.3s ease;
}

.search-typeahead__item {
    white-space: nowrap;
    padding: 2px 8px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.search-typeahead__link {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-left: 8px;
    display: none;
}

.search-typeahead__link:hover {
    background-color: rgba(208, 117, 1, 0.1);
}

.search-typeahead__link .search-typeahead__placeholder {
    position: static;
    transform: none;
}

/* Language Selector */
.fv-navbar__language-selector {
    position: relative;
}

.language-selector-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.language-selector-button:hover {
    border-color: var(--primary-color);
    background-color: rgba(208, 117, 1, 0.1);
}

.language-icon {
    width: 16px;
    height: 16px;
    color: var(--text-primary);
}

.language-selector-button-text {
    font-weight: 500;
}

.fv-language-selector {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

.fv-language-selector.show {
    display: block;
}

.fv-language-selector__language {
    display: block;
    padding: 8px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.fv-language-selector__language:hover {
    background-color: #f8f9fa;
}

.fv-language-selector__language--selected {
    color: var(--primary-color);
    font-weight: 600;
}

/* Divider */
.fv-navbar__divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 8px;
}

.fv-navbar__divider.desktop {
    display: block;
}

/* City Selector Button */
.fv-city-selector-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 0px solid var(--border-color);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.fv-city-selector-button:hover {
    border-color: #e9ecef;
    background-color: #e9ecef;
}

.fv-city-selector-button__icon-mode {
    padding: 8px;
}

.fv-city-selector-button__location-icon,
.fv-city-selector-button__favorites-icon {
    display: flex;
    align-items: center;
}

.fa-full {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

/* Login/User Button */
.fv-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 0px solid var(--border-color);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.fv-login:hover {
    border-color:  #e9ecef;
    background-color: #e9ecef;
}

.fv-login__user {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.fv-login__user-name {
    font-weight: 500;
  	font: 400 1rem / 1.5rem Montserrat, sans-serif;
}

/* Mobile Toggle */
.fv-navbar__toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-primary);
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.fv-navbar__toggle:hover {
    background-color: rgba(208, 117, 1, 0.1);
}

.toggle-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.fv-navbar__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 2000;
    overflow-y: auto;
}

.fv-navbar__mobile-menu.show {
    display: block;
}

.fv-navbar__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.fv-navbar__mobile-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-primary);
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.fv-navbar__mobile-close:hover {
    background-color: rgba(208, 117, 1, 0.1);
}

.fv-navbar__mobile-close svg {
    width: 20px;
    height: 20px;
}

.fv-navbar__mobile-body {
    padding: 1.5rem;
}

.fv-navbar__mobile-links {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.fv-navbar__mobile-item {
    margin-bottom: 0.5rem;
}

.fv-navbar__mobile-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.fv-navbar__mobile-link:hover {
    background-color: rgba(208, 117, 1, 0.1);
    color: var(--primary-color);
}

.fv-navbar__mobile-search {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fv-navbar__main {
        display: none;
    }
    
    .fv-navbar__tools .desktop {
        display: none;
    }
    
    .fv-navbar__tools .mobile {
        display: block;
    }
    
    .fv-navbar__toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .fv-navbar__container {
        padding: 0 1rem;
    }
    
    .search-typeahead__box {
        min-width: 200px;
    }
    
    .search-typeahead__dynamic-cta {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .fv-navbar__container {
        padding: 0 0.75rem;
    }
    
    .search-typeahead__box {
        min-width: 160px;
    }
    
    .search-typeahead__dynamic-cta {
        display: none;
    }
    
    .fv-navbar__mobile-body {
        padding: 1rem;
    }
    
    /* Hide search button and icon on screens smaller than 480px */
    .fv-navbar__search-link {
        display: none;
    }

    .fv-login {
        display: none;
    }
    /* Hide the entire search container on screens smaller than 480px */
    .fv-navbar__search {
        display: none;
    }
}

/* Hide elements on mobile */
.mobile {
    display: none;
}

@media (max-width: 1024px) {
    .mobile {
        display: block;
    }
}

/* Desktop only */
@media (min-width: 1025px) {
    .mobile {
        display: none;
    }
}

/* City Selector Modal - FeverUp Inspired */
.fv-city-selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none !important;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fv-city-selector-modal.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
}

.fv-city-selector-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.fv-city-selector-modal__content {
    position: relative;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.fv-city-selector-modal__city-name:hover {
color: #0089e3!important;
}
.fv-city-selector-modal.active .fv-city-selector-modal__content {
    transform: scale(1);
}

.fv-city-selector-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.fv-city-selector-modal__title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.fv-city-selector-modal__close {
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.2s ease;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv-city-selector-modal__close:hover {
    background: #e9ecef;
    color: #111827;
    transform: rotate(90deg);
}

.fv-city-selector-modal__body {
    padding: 24px;
    max-height: calc(85vh - 80px);
    overflow-y: auto;
}

.fv-city-selector-modal__search {
    position: relative;
    margin-bottom: 20px;
}

.fv-city-selector-modal__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.fv-city-selector-modal__search-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #111827;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
}

.fv-city-selector-modal__search-input:focus {
    border: 1px solid #0089e3;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 137, 227, 0.1);
}

.fv-city-selector-modal__search-input::placeholder {
    color: #9ca3af;
}

.fv-city-selector-modal__cities {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv-city-selector-modal__city-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.fv-city-selector-modal__city-item:hover {
    border-color: #0089e3;
    background: #e6f4ff;
    transform: translateX(4px);
}

.fv-city-selector-modal__city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    color: #0089e3;
    flex-shrink: 0;
}

.fv-city-selector-modal__city-name {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    font-family: 'Montserrat', sans-serif;
}

.fv-city-selector-modal__city-item:hover .fv-city-selector-modal__city-name:hover {
    color: ##0089e3;

.fv-city-selector-modal__city-item.hidden {
    display: none;
}

@media (max-width: 480px) {
    .fv-city-selector-modal__content {
        width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }

    .fv-city-selector-modal__header {
        padding: 20px;
    }

    .fv-city-selector-modal__body {
        padding: 20px;
    }

    .fv-city-selector-modal__title {
        font-size: 20px;
    }

    .fv-city-selector-modal__city-item {
        padding: 12px 14px;
    }

    .fv-city-selector-modal__city-name {
        font-size: 14px;
    }
}
