/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--navy, #003A59);
  color: #fff;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cb-text {
  flex: 1;
  min-width: 280px;
}
.cb-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
.cb-text p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.cb-text a {
  color: var(--orange, #F09748);
  text-decoration: underline;
}
.cb-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cb-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
  font-family: var(--sans, system-ui, sans-serif);
}
.cb-btn:active {
  transform: scale(0.97);
}
.cb-accept, .cb-accept-inline {
  background: var(--orange, #F09748);
  color: #fff;
}
.cb-accept:hover, .cb-accept-inline:hover {
  background: var(--orange-hover, #E58535);
}
.cb-decline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.cb-decline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Google Maps placeholder */
.maps-placeholder {
  background: var(--sky, #E8F4FD);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  width: 100%;
}
.maps-ph-content {
  text-align: center;
  padding: 32px;
  color: var(--text, #2A3A48);
}
.maps-ph-content p {
  margin-bottom: 12px;
  font-size: 14px;
}
.cb-accept-inline {
  margin-top: 8px;
  border: none;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans, system-ui, sans-serif);
}

@media (max-width: 600px) {
  .cb-inner { flex-direction: column; text-align: center; }
  .cb-buttons { width: 100%; justify-content: center; }
}
