:root {
  --cc-bg: #101b1f;
  --cc-border: #837640;
  --cc-text: #ffffff;
  --cc-muted: rgba(255, 255, 255, 0.75);
  --cc-accent: #837640;
}

.cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  font-family: Raleway, Roboto, sans-serif;
}

.cc-banner.is-hidden {
  display: none;
}

.cc-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--cc-bg);
  border: 1px solid var(--cc-border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.cc-copy {
  flex: 1 1 260px;
}

.cc-title {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cc-text);
}

.cc-text {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--cc-muted);
}

.cc-link {
  color: var(--cc-text);
  text-decoration: underline;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cc-btn {
  border: 1px solid var(--cc-border);
  background: transparent;
  color: var(--cc-text);
  padding: 8px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-family: inherit;
}

.cc-btn.is-primary {
  background: var(--cc-accent);
  color: #0d1415;
}

.cc-settings {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9998;
  font-family: Raleway, Roboto, sans-serif;
  border: 1px solid var(--cc-border);
  background: var(--cc-bg);
  color: var(--cc-text);
  padding: 6px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.cc-settings.is-hidden {
  display: none;
}

.cc-map-host {
  position: relative;
  overflow: hidden;
}

.cc-map-host.cc-map-blocked > :not(.cc-map-overlay) {
  display: none !important;
}

.cc-map-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: block;
  padding: 0;
  z-index: 5;
}

.cc-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-map-text {
  color: var(--cc-text);
  font-size: 0.95rem;
  max-width: 420px;
}

.cc-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 720px) {
  .cc-banner {
    left: 24px;
    right: 24px;
  }

  .cc-panel {
    padding: 18px 22px;
  }
}
