/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  color: #fff;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 40px;
  border-top: 3px solid #222;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  animation: slideUpBanner 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

#cookieBanner .cookie-text {
  flex: 1;
  max-width: 680px;
}

#cookieBanner .cookie-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

#cookieBanner .cookie-text p {
  font-size: 13px;
  line-height: 1.7;
  color: #aaaaaa;
  margin: 0;
}

#cookieBanner .cookie-text p a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
}

.cookie-toggle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
}

.cookie-toggle-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ffffff;
  cursor: pointer;
}

.cookie-toggle-item input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle-item label {
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: #e0e0e0;
}

.cookie-btn-necessary {
  background: transparent;
  color: #888;
  border: 1px solid #333;
  padding: 10px 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.cookie-btn-necessary:hover {
  color: #fff;
  border-color: #666;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
  #cookieBanner {
    flex-direction: column;
    padding: 20px 20px;
    gap: 16px;
  }
  .cookie-actions {
    flex-direction: row;
    width: 100%;
    align-items: stretch;
  }
  .cookie-btn-accept,
  .cookie-btn-necessary {
    flex: 1;
    text-align: center;
  }
}
