.cookie-banner-center {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 4rem);
  max-width: 480px;
  background: #fffaf2;
  color: #1c1f23;
  border: 1px solid rgba(184, 137, 53, 0.36);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 24, 32, 0.18);
  padding: 1.15rem;
  z-index: 9999;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.4s ease;
  opacity: 0;
}

.cookie-banner-center.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #111820;
}

.cookie-text {
  color: rgba(28, 31, 35, 0.76);
  margin: 0 0 1rem;
  padding: 0.85rem;
  background: #f7f1e7;
  border: 1px solid rgba(184, 137, 53, 0.18);
  border-radius: 12px;
}

.cookie-text a {
  color: #8f6826;
  font-weight: 700;
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}

.cookie-btn {
  padding: 0.68rem 1rem;
  background: #111820;
  color: #fffaf2;
  border: 1px solid #111820;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-btn:hover {
  background: #b88935;
  border-color: #b88935;
}

.cookie-btn.reject,
.cookie-btn.manage,
.cookie-back-btn {
  background: transparent;
  color: #111820;
  border-color: rgba(184, 137, 53, 0.42);
}

.cookie-btn.reject:hover,
.cookie-btn.manage:hover,
.cookie-back-btn:hover {
  color: #fffaf2;
  background: #b88935;
}

.cookie-icon {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 52px;
  height: 52px;
  background: #111820;
  border: 1px solid rgba(184, 137, 53, 0.62);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(17, 24, 32, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  font-size: 24px;
  color: white;
}

.cookie-icon.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-toggle-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(184, 137, 53, 0.18);
}

.toggle-title {
  font-weight: 800;
}

.toggle-desc {
  color: rgba(28, 31, 35, 0.68);
}

.cookie-back-btn {
  font-size: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  margin-right: 8px;
}

@media (max-width: 480px) {
  .cookie-banner-center {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: translateY(120%);
  }

  .cookie-banner-center.show {
    transform: translateY(0);
  }
}
