#bercutz-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 1rem 1.25rem;
  background: rgba(28, 28, 28, 0.97);
  border-top: 2px solid #f6ad00;
  color: #f6f6f9;
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

#bercutz-cookie-banner.is-visible {
  transform: translateY(0);
}

#bercutz-cookie-banner .bercutz-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

#bercutz-cookie-banner .bercutz-cookie-text {
  flex: 1 1 280px;
  margin: 0;
}

#bercutz-cookie-banner .bercutz-cookie-text a {
  color: #f6ad00;
  text-decoration: underline;
}

#bercutz-cookie-banner .bercutz-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

#bercutz-cookie-banner button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 0.65rem 1.1rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}

#bercutz-cookie-banner .bercutz-btn-accept {
  background: #f6ad00;
  color: #1c1c1c;
}

#bercutz-cookie-banner .bercutz-btn-accept:hover {
  background: #ffc233;
}

#bercutz-cookie-banner .bercutz-btn-essential {
  background: transparent;
  color: #f6f6f9;
  border: 1px solid rgba(246, 246, 249, 0.35);
}

#bercutz-cookie-banner .bercutz-btn-essential:hover {
  border-color: #f6ad00;
  color: #f6ad00;
}

@media (max-width: 640px) {
  #bercutz-cookie-banner .bercutz-cookie-actions {
    width: 100%;
  }

  #bercutz-cookie-banner button {
    flex: 1 1 auto;
  }
}
