#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #111111;
  border-top: 1px solid rgba(200,169,110,0.25);
  padding: 0;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  font-family: 'DM Sans', -apple-system, sans-serif;
}

.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 5%;
  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: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cb-text strong {
  display: block;
  color: #f0ece4;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.cb-text p {
  color: rgba(240,236,228,0.6);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.cb-text a {
  color: #c8a96e;
  text-decoration: underline;
}

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

.cb-btn {
  padding: 10px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: 0.2s;
}

.cb-reject {
  background: transparent;
  color: rgba(240,236,228,0.6);
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.cb-reject:hover {
  color: #f0ece4;
  border-color: rgba(255,255,255,0.3) !important;
}

.cb-accept {
  background: #c8a96e;
  color: #0d0d0d;
}

.cb-accept:hover {
  background: #a8873e;
}

@media (max-width: 600px) {
  .cb-inner {
    flex-direction: column;
    gap: 16px;
  }
  .cb-actions {
    width: 100%;
    justify-content: stretch;
  }
  .cb-btn {
    flex: 1;
    padding: 12px;
  }
}
