.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-surface);
  border-top: 1px solid var(--color-gold);
  padding: 1.5rem 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Modal preferences */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 11, 0.95);
  backdrop-filter: blur(5px);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--color-surface);
  border: 1px solid var(--color-gold);
  padding: 3rem;
  width: 90%;
  max-width: 500px;
}

.cookie-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-gold);
}

.cookie-option {
  margin-bottom: 2rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.cookie-option p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-left: 2.5rem;
}

.modal-actions {
  margin-top: 3rem;
  text-align: right;
}

@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
}
