.cookie-banner-center {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 4rem);
  max-width: 460px;
  background: #FFF7EE;
  color: #403027;
  border: 1px solid rgba(110, 59, 91, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(64, 48, 39, 0.24);
  padding: 1rem;
  z-index: 9999;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  transition: all 0.4s ease;
  opacity: 0;
}

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

.cookie-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #6E3B5B;
}

.cookie-text {
  color: rgba(64, 48, 39, 0.78);
  margin: 0 0 1rem;
  padding: 0.75rem;
  background: #fffaf3;
  border: 1px solid rgba(242, 140, 107, 0.28);
  border-radius: 16px;
}

.cookie-text a {
  color: #A6583D;
  text-decoration: underline;
}

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

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

.cookie-btn.reject,
.cookie-btn.manage {
  color: #6E3B5B;
  background: transparent;
}

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

.cookie-icon {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #F28C6B, #6E3B5B);
  border: 1px solid rgba(255, 247, 238, 0.55);
  border-radius: 50%;
  box-shadow: 0 18px 32px rgba(64, 48, 39, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  font-size: 24px;
  color: #FFF7EE;
}

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

.cookie-toggle-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(110, 59, 91, 0.16);
}

.toggle-title {
  color: #403027;
  font-weight: 700;
}

.toggle-desc {
  color: rgba(64, 48, 39, 0.68);
}

.cookie-back-btn {
  background: #fffaf3;
  border: 1px solid rgba(110, 59, 91, 0.18);
  border-radius: 50%;
  color: #6E3B5B;
  font-size: 16px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input:checked + .slider {
  background-color: #F28C6B;
}

@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);
  }
}
