.bulka-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(62, 39, 35, 0.97);
  color: #fdf6e3;
  box-shadow: 0 -4px 24px rgba(62, 39, 35, 0.35);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bulka-cookie-consent[hidden] {
  display: none !important;
}

.bulka-cookie-consent--hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.bulka-cookie-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.bulka-cookie-consent__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  flex: 1 1 200px;
}

.bulka-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.bulka-cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bulka-cookie-consent__btn--primary {
  background: #d4a76a;
  color: #3e2723;
  border-color: #d4a76a;
}

.bulka-cookie-consent__btn--primary:hover {
  background: #b8894f;
  border-color: #b8894f;
}

.bulka-cookie-consent__btn--secondary {
  background: transparent;
  color: #fdf6e3;
  border-color: rgba(212, 167, 106, 0.65);
}

.bulka-cookie-consent__btn--secondary:hover {
  background: rgba(212, 167, 106, 0.12);
  color: #fff;
}

@media (max-width: 520px) {
  .bulka-cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .bulka-cookie-consent__actions {
    width: 100%;
  }

  .bulka-cookie-consent__btn {
    flex: 1 1 auto;
  }
}
