.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 16px 0;
  background: rgba(15, 23, 42, 0.96);
  border-top: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent__text {
  flex: 1 1 320px;
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cookie-consent__policy {
  color: #06b6d4;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__policy:hover {
  color: #f59e0b;
}

.cookie-consent__accept {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 12px 0;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }

  .cookie-consent__text {
    flex: 0 0 auto;
  }

  .cookie-consent__actions {
    flex: 0 0 auto;
    justify-content: space-between;
    gap: 10px;
  }
}
