#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0a0b10;
  border-top: 1px solid rgba(217,192,122,0.2);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  font-family: 'Syne', 'Inter', sans-serif;
}

.cb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cb-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 250px;
}

.cb-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cb-text strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cb-text p {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}

.cb-text a {
  color: #d9c07a;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.cb-text a:hover { opacity: 0.7; }

.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cb-btn {
  padding: 11px 24px;
  font-family: 'Syne', 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cb-reject {
  background: transparent;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08) !important;
}
.cb-reject:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.2) !important;
}

.cb-accept {
  background: linear-gradient(135deg, #d9c07a, #b89f5c);
  color: #000;
  clip-path: polygon(0 0,calc(100% - 6px) 0,100% 6px,100% 100%,6px 100%,0 calc(100% - 6px));
}
.cb-accept:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cb-inner { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; padding: 13px; }
}
