#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #ffffff;
  border-top: 2px solid #ffee32;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  padding: 1.25rem 1.5rem;
}

#cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.cookie-banner-inner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #232323;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-banner-actions .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
}

#cookie-settings {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #edefeb;
}

#cookie-settings[hidden] {
  display: none !important;
}

#cookie-settings label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
}

body.cookie-banner-open {
  padding-bottom: 8rem;
}

@media (max-width: 767px) {
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    text-align: center;
  }
}
