* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f6f6;
}

.container {
  max-width: 1000px;
  margin: 6rem auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

.option-header {
  background-color: #006495;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
}

.options {
  display: flex;
  justify-content: space-around;
  padding: 30px 10px;
  border: 1px solid #ccc;
  border-top: none;
  align-items: center;
}

.option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.option:hover {
  transform: scale(1.05);
}

.option img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.option.active span {
  color: #006495;
}

.option span {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.form-section {
  display: none;
  margin-top: 30px;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: url("../ASSETS/images/map2.png") center/cover no-repeat;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

.form-group {
  margin-top: 15px;
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.map-placeholderd {
  background-color: lightgrey;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.form-note {
  font-size: 12px;
  color: #666;
  margin: 20px 0px;
}

.required {
  color: red;
}

.btn {
  background-color: #e31837;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  margin: auto;
  justify-content: center;
}

.btn:hover {
  background-color: #c4112e;
}

.map-placeholder {
  position: relative;
  min-height: 500px;
  background-color: #e0e0e0;
  margin-bottom: 20px;
  border-radius: 10px;
}

.store-card {
  position: absolute;
  top: 5rem;
  left: 13rem;
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.store-card .close-btn {
  float: right;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

.store-card .future-order-btn {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #e31837;
  color: white;
  border: none;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
}

.store-card .location-info {
  margin-top: 12px;
  font-size: 12px;
}

.timings {
  margin-top: 5px;
  font-size: 12px;
}

/* pins on map css */

.store-card {
  display: none;
}
.map-pin {
  position: absolute;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 5;
}

.map-pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* maps css */

.map-label {
  font-size: 22px;
  font-weight: bold;
  color: #016a70;
  margin-bottom: 4px;
}

.map-container {
  overflow: hidden;
  width: 100%;
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.map_settelite_squar {
  position: absolute;
  top: 11px;
  right: 40px;
}
.map_settelite_btn {
  position: absolute;
  top: 11px;
  left: 40px;
}
.map_settelite_btn button {
  background-color: white;
  padding: 15px;
  border: transparent;
  border-radius: 4px;
}
.map-search-bar {
  position: relative;
  width: 100%;
  max-width: 400px; /* o el ancho que prefieras */
}


.map-search-bar input {
  padding: 14px 8px;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 4px;
}

.map-search-bar button {
  padding: 8px 12px;
  background-color: #e60023;
  color: white;
  border: none;
  border-radius: 4px;
  margin-left: 5px;
  cursor: pointer;
}

.store-cards-wrapper {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.store-card {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  position: relative;
}

.store-card .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}
.map-placeholder {
  position: relative; /* Ensure absolute children position correctly */
}

.store-card.dynamic {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  width: 260px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white !important;
  border: 1px solid #ccc;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 14px;
}

#autocomplete-list li {
  padding: 8px 12px;
  cursor: pointer;
  background-color: white;
  border-bottom: 1px solid #eee;
}

#autocomplete-list li:hover {
  background-color: #f0f0f0;
}

@media screen and (max-width: 768px) {
  .map-search-bar {
    width: 100%;
    right: 0 !important;
  }
  .autocomplete-items {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  background: white;
  z-index: 1000;
  width: 100%;
}

.autocomplete-items li {
  padding: 10px;
  cursor: pointer;
}

.autocomplete-items li:hover {
  background-color: #eee;
}


}
