/* Cookie Banner Styles */
.cookie-banner-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #1d2024;
  color: #ffffff;
  padding: 25px 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #bc1273;
  display: none;
}
.cookie-banner-area h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}
.cookie-banner-area p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
.cookie-banner-area a {
  color: #bc1273;
  text-decoration: underline;
}
.cookie-banner-area .btn {
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .cookie-banner-area {
    text-align: center;
  }
  .cookie-banner-area .text-lg-end {
    text-align: center !important;
    margin-top: 20px;
  }
}

/* Map Placeholder */
.map-container {
  width: 100%;
  min-height: 450px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.map-placeholder {
  text-align: center;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 500px;
}
.map-placeholder i {
  font-size: 50px;
  color: #bc1273;
  margin-bottom: 20px;
}
.map-placeholder h4 {
  margin-bottom: 10px;
  font-weight: 700;
}
.map-placeholder p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}
