.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: calc(100% - 32px);
  padding: 12px 14px 12px 18px;
  color: #162433;
  background: rgba(244, 248, 251, .97);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 18px;
  box-shadow: 10px 10px 24px rgba(43, 83, 118, .2), -6px -6px 16px rgba(255, 255, 255, .9), inset 3px 3px 7px rgba(47, 107, 255, .03), inset -3px -3px 7px rgba(255, 255, 255, .8);
  font-family: "DM Sans", sans-serif;
}

.cookie-consent p {
  margin: 0;
  color: #526779;
  font-size: .9rem;
  line-height: 1.4;
}

.cookie-consent button {
  min-width: 52px;
  min-height: 42px;
  padding: 9px 15px;
  color: #fff;
  background: linear-gradient(145deg, #4f9ff0, #2aa7a1);
  border: 0;
  border-radius: 14px;
  box-shadow: 6px 6px 13px rgba(42, 167, 161, .22), -4px -4px 10px rgba(255, 255, 255, .8), inset 2px 2px 5px rgba(255, 255, 255, .28), inset -2px -2px 5px rgba(0, 0, 0, .08);
  font: 800 .86rem "DM Sans", sans-serif;
  cursor: pointer;
  transition: transform .18s ease;
}

.cookie-consent button:hover {
  transform: translateY(-2px);
}

.cookie-consent button:active {
  transform: scale(.96);
}

.cookie-consent button:focus-visible {
  outline: 3px solid rgba(47, 107, 255, .35);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: space-between;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent button {
    transition: none;
  }
}
