.esmaps-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  padding: 0 12px max(10px, env(safe-area-inset-bottom));
  box-sizing: border-box;
  pointer-events: none;
}
.esmaps-cookie-banner[hidden] {
  display: none !important;
}
.esmaps-cookie-backdrop {
  display: none;
}
.esmaps-cookie-panel {
  pointer-events: auto;
  width: 100%;
  max-width: 560px;
  background: #fff;
  color: #1d1a16;
  border-radius: 12px 12px 0 0;
  padding: 14px 16px 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid #d7cfc3;
  border-bottom: 0;
}
.esmaps-cookie-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.esmaps-cookie-text {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #3a342c;
}
.esmaps-cookie-text a {
  color: #2f6f3e;
  font-weight: 600;
}
.esmaps-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.esmaps-cookie-actions button {
  border: 0;
  border-radius: 8px;
  padding: 9px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  width: auto;
  flex: 0 0 auto;
}
.esmaps-cookie-accept {
  background: #2f6f3e;
  color: #fff;
}
.esmaps-cookie-accept:hover {
  background: #265a33;
}
.esmaps-cookie-reject {
  background: #e7e0d6;
  color: #1d1a16;
  font-weight: 600;
}
.esmaps-cookie-reject:hover {
  background: #dcd4c8;
}
