#map {
  height: 100%;
  width: 100%;
}


/*Menú Categorias CSS*/
.container {
  width: 9.5em;
  z-index: 1;
  margin: 8px 0 22px;
  cursor: pointer;
  text-align: center;
  padding-left: 6px;
}

.dropDownControl {
  border-radius: 3px;
  width: 6em;
  text-align: left;
  position: relative;
  font-family: "Roboto Condensed";
  font-size: 20px;
  padding-top: 1px;
  padding-right: 6px;
  padding-bottom: 1px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(113, 123, 135);
  border-image: initial;
  -webkit-box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px;
  box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px;
  color: rgb(0, 0, 0);
  padding-left: 6px;
  font-weight: bold;
  background-color: rgb(255, 255, 255);
}

.dropDownArrow {
  border-radius: 8px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  padding: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  position: absolute;
  right: 6px;
  top: 50%;
  margin-top: -2px;
  width: 7px;
  height: 4px;
}

.dropDownOptionsDiv {
  background-color: white;
  z-index: 0;
  width: 9.5em;
  border-right-width: 28px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-color: rgb(113, 123, 135);
  border-bottom-color: rgb(113, 123, 135);
  border-left-color: rgb(113, 123, 135);
  border-image: initial;
  border-top-width: 0px;
  border-top-style: initial;
  border-top-color: initial;
  -webkit-box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px;
  box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px;
  position: relative;
  text-align: left;
  display: none;
}

.dropDownItemDiv {
  font-family: "Roboto Condensed";
  width: 9.4em;
  font-size: 13px;
  padding-top: 2px;
  padding-right: 5px;
  padding-bottom: 3px;
  padding-left: 5px;
  background-color: rgb(255, 255, 255);
  color: black;
}

.dropDownItemDiv:hover,
.checkboxContainer:hover {
  background-color: rgb(235, 235, 235);
}

.dropDownControl:hover {
  background: -webkit-linear-gradient(top, rgb(255, 255, 255), rgb(230, 230, 230));
}

#showAllButton {
  background-color: #f0f0f0;
  /* Different background color */
  color: #7b0909;
  /* Different text color */
}

/*Price Range CSS*/
.containerprice {
  background-color: #fff;
  align-items: center;
  border-radius: 3px;
  width: 50%;
  height: 3%;
  z-index: 1;
  margin-left: 6px;
  margin-right: 6px;
  padding: 20px 20px 20px 20px;
  display: flex;
  padding-bottom: 1px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(113, 123, 135);
  border-image: initial;
  -webkit-box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px;
  box-shadow: rgba(0, 0, 0, 0.398438) 0px 2px 4px;
  color: rgb(0, 0, 0);
}

.containerprice input[type=range] {
  appearance: none;
  position: absolute;
  z-index: 2;
  width: 90%;
  background: none;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}

.containerprice .price-track {
  appearance: none;
  position: absolute;
  bottom: 45%;
  width: 90%;
  z-index: 1;
  height: 5px;
  background-color: rgb(192, 31, 31);
  border-radius: 10px;
  transition: background-size 0.2s;
}

.containerprice .price-track::before {
  content: "";
  display: block;
  width: calc(var(--thumb-width) + 4px);
  height: 100%;
  border-radius: 10px;
  background-color: #ff0000;
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #b6b6b6;
  background: #fff;
  pointer-events: auto;
  appearance: none;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, .25);
  cursor: pointer;
}

input [type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #b6b6b6;
  background: #fff;
  pointer-events: auto;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, .25);
  -moz-appearance: none;
  cursor: pointer;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed";
}

.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(/Images/hero-bg.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 150px;
}

.nav-links {
  flex: 1;
  text-align: right;
  font-family: "Roboto Condensed";
  font-size: 10px;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #bc3127;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1 {
  font-size: 42px;
  font-family: "Roboto Condensed";
}

.text-box p {
  margin: 10px 0 40px;
  font-size: 20px;
  color: #fff;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  transition: var(--delay-time);
}

.hero-btn:hover {
  border: 1px solid #bc3127;
  background-color: #bc3127;
  transition: background-color var(--delay-time), border var(--delay-time);
}

.fa-regular.fa-circle-xmark,
.fa-solid.fa-bars {
  display: none;
}

.fotoPerfil {
  flex-grow: 1;
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.fotoPerfil img {
  width: 100%;
}

@media(max-width: 710px) {

  .slideshow-container {
    height: 400px;
  }

  .text-box h1 {
    font-size: 20 px;
  }

  .text-box p {
    font-size: 20px;
  }

  .nav-links ul li {
    display: block;
  }

  .nav-links {
    position: fixed;
    background: #bc3127;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }

  .fa-regular.fa-circle-xmark,
  .fa-solid.fa-bars {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }

  .nav-links ul {
    padding: 30px;
  }

  .nav-links ul li:hover::after {
    background: #fff;
    height: 1px;
  }

  .row {
    flex-direction: column;
  }
}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

/*----- Sobre Mi page-----*/
.sub-header {
  min-height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(/Images/fotoSobreMi.webp);
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "Roboto Condensed";
}

.sub-header h1 {
  margin-top: 100px;
  font-family: "Roboto Condensed";
}

.sobre-mi {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.sobre-col {
  flex-grow: 1;
  padding: 30px 2px;
}

.sobre-col img {
  width: 100%;
}

.sobre-col h1 {
  padding-top: 0;
}

.sobre-col p {
  padding: 15px 0 25px;
}

.sobremi {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Roboto Condensed";
}

p {
  color: #777;
  font-size: 20px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

/*------ Club del Taco -------*/
.sub-header2 {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(/Images/ClubdelTaco.jpeg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  font-family: "Roboto Condensed";
}

.sub-header2 h1 {
  margin-top: 100px;
  font-family: "Roboto Condensed";
}

.club-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 0;
}

.club-col {
  flex-grow: 1;
  background: linear-gradient(#e6dbdb, #ffffff);
  border-radius: 10px;
  margin-left: 5%;
  margin-bottom: 5%;
  margin-right: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
}

.club-col h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.club-col p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.club-col:hover {
  box-shadow: 20px 20px 60px #d9cfcf,
    -20px -20px 60px #ffffff;
}

.red-btn {
  border: 1px solid #bc3127;
  background: transparent;
  color: #bc3127;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
}

.red-btn:hover {
  color: #fff
}

/*------ Contacta conmigo -------*/
.contact {
  width: 80%;
  margin: auto;
}

.contact-col {
  flex-grow: 1;
  margin-bottom: 30px;
  margin-left: 10px;
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-col div i {
  font-size: 28px;
  color: #bc3127;
  margin: 10px;
  margin-right: 30px;
}

.contact-col h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

.contact-col p {
  padding: 0;
  font-size: 15px;
}

.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/*------ Registro -------*/
.club-form {
  width: 80%;
  margin: auto;
}

.club-col {
  flex-basis: 48%;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.club-col div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.club-col div i {
  font-size: 28px;
  color: #bc3127;
  margin: 10px;
  margin-right: 30px;
}

.club-col h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

.club-col p {
  padding: 0;
  font-size: 15px;
}

.club-col input,
.club-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/*----- Colaboraciones -----*/

.colab-col {
  flex-basis: 48%;
  background: linear-gradient(#e6dbdb, #ffffff);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-left: 5%;
  margin-bottom: 5%;
  margin-right: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
}

.colab-col p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.colab-col:hover {
  box-shadow: 20px 20px 60px #d9cfcf,
    -20px -20px 60px #ffffff;
}

.slideshow-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide {
  position: absolute;
  display: block;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: var(--slide-index);
  transition: 200ms opacity ease-in-out;
}

.slide[data-active] {
  opacity: 1;
  z-index: var(--slide-index-active);
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border-radius: .25rem;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0 .5rem;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
  z-index: 3;
}

.prev {
  left: 0.4rem;
}

/* Position the "next button" to the right */
.next {
  right: 0.4rem;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: #717171;
  color: #bbb;
}

/* The dots */
.dotdiv {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  opacity: 0.5;
}

.dot:hover {
  background-color: #717171;
  opacity: 0.7;
}

.dot.active {
  background-color: #717171;
  opacity: 1;
}

.svg-icon {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin: 7px;
}

.svg-icon2 {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
}

/*----- Cookies ----*/
.containercookies {
  width: 1600px;
  margin: auto;
}

.subcontainer {
  width: 85%;
  margin: auto;
}

#cookies {
  width: 100%;
  position: fixed;
  bottom: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: none;
}

.cookies {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 5;
}

.cookies a {
  color: #278abc;
  font-weight: 500;
  text-decoration: none;
}

#cookies-btn {
  border-radius: 5px;
  padding: 8px 12px 8px 12px;
  font-size: 1rem;
  margin: 10px;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid white;
  background-color: #278abc;
  color: white;
}

#cookies-btn:hover {
  background-color: transparent;
  color: #278abc;
  border: 1px solid #278abc;
  transition: 0.5s ease-in-out;
}

@media (max-width: 1600px) {
  .containercookies {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .cookies {
    padding: 10px 0;
  }
}

/*----- Footer -----*/
.footer {
  width: 100%;
  text-align: center;
  padding: 30px 0;
  background-color: #f5f5f5;
}

.footer h4 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}

.icons i {
  color: #bc3127;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  transition: color var(--delay-time), transform var(--delay-time);
}

.icons i:hover {
  color: #000;
  transform: scale(1.5);
  transition: transform var(--delay-time);
}

.info-window {
  transform: scale(0);
  opacity: 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.footer .privacy-link {
  margin-top: 10px;
  /* adjust as needed */
  text-align: center;
}

.footer .privacy-link a {
  color: #000;
  /* or any color that matches your design */
  text-decoration: none;
}

.footer .privacy-link a:hover {
  text-decoration: underline;
}

/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* set the default transition time */
:root {
  --delay-time: .5s;
  --primary-color: #bc3127;
  --primary-hover: #9a2921;
}

#mapContainer {
  height: 100%;
}

#logo {
  width: 75px;
  height: 75px;
}

h1 {
  font-family: "Roboto Condensed";
  text-align: center;
  font-size: 2rem;
}

/* ========================================
   NEW IMPROVEMENTS - 2025 Update
   ======================================== */

/* Map Loading State */
#map {
  position: relative;
}

#map.loading::before {
  content: "Cargando mapa...";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  font-family: "Roboto Condensed";
  font-size: 1.2rem;
  color: #666;
  z-index: 10;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* Modern Cookie Banner */
#cookies {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.85) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#cookies-btn {
  transition: all 0.3s ease;
}

#cookies-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 138, 188, 0.4);
}

/* Enhanced Button Hover Effects */
.hero-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 49, 39, 0.4);
}

.red-btn {
  transition: all 0.3s ease;
}

.red-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(188, 49, 39, 0.3);
}

/* Social Icons Enhancement */
.icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.icons a:hover {
  transform: translateY(-3px);
}

/* Improved Mobile Experience */
@media (max-width: 710px) {
  .nav-links ul li a {
    padding: 14px 20px;
    display: block;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropDownItemDiv {
    padding: 14px 12px;
    font-size: 16px;
  }

  /* Better touch targets for filters */
  .dropDownControl {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Improve cookie banner on mobile */
  .cookies {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookies p {
    font-size: 14px;
    line-height: 1.5;
  }

  #cookies-btn {
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
  }
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Accessibility improvements */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Better form inputs */
.contact-col input,
.contact-col textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-col input:focus,
.contact-col textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(188, 49, 39, 0.1);
}

/* Info window animations */
.gm-style-iw {
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   TACOTIOS MAP 2.0 - New Components
   ======================================== */

/* Hero Search Bar */
.hero-search {
  margin: 25px 0;
}

.hero-search input {
  width: 100%;
  max-width: 400px;
  padding: 16px 24px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-search input:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.hero-search input::placeholder {
  color: #666;
}

/* Hero CTA Button Group */
.hero-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.hero-btn-primary:hover {
  background: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

.hero-btn-secondary {
  background: transparent;
  border: 2px solid #fff;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-btn i {
  margin-right: 8px;
}

/* ========================================
   WAITLIST SECTION
   ======================================== */

.waitlist-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(188, 49, 39, 0.1) 0%, transparent 50%);
  animation: pulse-bg 15s infinite;
}

@keyframes pulse-bg {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5%, 5%);
  }
}

.waitlist-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.waitlist-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.waitlist-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #e74c3c);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.waitlist-section h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Roboto Condensed";
}

.waitlist-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.waitlist-subtitle strong {
  color: var(--primary-color);
}

/* Benefits Grid */
.waitlist-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.benefit-item i {
  font-size: 28px;
  color: var(--primary-color);
  background: rgba(188, 49, 39, 0.2);
  padding: 15px;
  border-radius: 50%;
}

.benefit-item span {
  font-size: 14px;
  opacity: 0.9;
}

/* Waitlist Form */
.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.waitlist-form input,
.waitlist-form select {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.waitlist-form select {
  cursor: pointer;
}

.waitlist-form select option {
  background: #1a1a2e;
  color: #fff;
}

.waitlist-submit {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--primary-color), #e74c3c);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.waitlist-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 49, 39, 0.4);
}

.waitlist-submit i {
  margin-right: 8px;
}

/* Incentive & Count */
.waitlist-incentive {
  color: #fff;
  font-size: 1rem;
  margin-top: 25px;
  padding: 0;
}

.waitlist-incentive strong {
  background: linear-gradient(90deg, #f39c12, #e74c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 8px;
  padding: 0;
}

/* Responsive Waitlist */
@media (max-width: 600px) {
  .waitlist-section {
    padding: 60px 15px;
  }

  .waitlist-content {
    padding: 35px 20px;
  }

  .waitlist-section h2 {
    font-size: 1.8rem;
  }

  .waitlist-form .form-row {
    flex-direction: column;
  }

  .waitlist-benefits {
    gap: 20px;
  }

  .benefit-item i {
    font-size: 22px;
    padding: 12px;
  }

  .hero-search input {
    max-width: 100%;
    padding: 14px 20px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ========================================
   ENHANCED FILTERS (Phase 5)
   ======================================== */

.enhanced-filters-container {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  margin: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.enhanced-filter-select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  min-width: 120px;
}

.enhanced-filter-select:hover {
  border-color: var(--primary-color);
}

.enhanced-filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(188, 49, 39, 0.1);
}

.verified-toggle-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.verified-toggle-label:hover {
  background: #eee;
}

.verified-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.verified-toggle-text {
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.verified-checkbox:checked+.verified-toggle-text {
  color: var(--primary-color);
  font-weight: 600;
}

/* Mobile responsive enhanced filters */
@media (max-width: 600px) {
  .enhanced-filters-container {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .enhanced-filter-select {
    width: 100%;
    min-width: auto;
  }

  .verified-toggle-label {
    width: 100%;
    justify-content: center;
  }
}