.cookie-consent-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: white;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.dark .cookie-consent-overlay {
  background: #0f172a;
  border-top-color: #334155;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

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

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
}

.cookie-consent-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
}

.dark .cookie-consent-text h3 {
  color: #f1f5f9;
}

.cookie-consent-text p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.dark .cookie-consent-text p {
  color: #94a3b8;
}

.cookie-consent-text a {
  color: #0891b2;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #0e7490;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: #0891b2;
  color: white;
}

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

.cookie-btn-decline {
  background: #e2e8f0;
  color: #475569;
}

.cookie-btn-decline:hover {
  background: #cbd5e1;
}

.dark .cookie-btn-decline {
  background: #334155;
  color: #cbd5e1;
}

.dark .cookie-btn-decline:hover {
  background: #475569;
}
