.cookie-banner-shell {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  max-width: 400px;
  width: calc(100% - 32px);
  pointer-events: none;
}

.cookie-banner-card {
  pointer-events: auto;
  border: 1px solid #e6e4f2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 80px -38px rgba(11, 11, 119, 0.38);
  padding: 22px 22px 18px;
  backdrop-filter: blur(16px);
}

.cookie-banner-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cookie-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f3eeff;
  flex-shrink: 0;
}

.cookie-banner-icon svg {
  width: 24px;
  height: 24px;
}

.cookie-banner-header h2 {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.2;
  color: #070748;
}

.cookie-banner-header p,
.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  color: #4b4b66;
  line-height: 1.65;
}

.cookie-banner-text a {
  color: #4a28c0;
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  color: #0b0b77;
}

.cookie-banner-options {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e6e4f2;
  border-radius: 12px;
  background: #fdfdff;
}

.cookie-option span {
  display: grid;
  gap: 2px;
}

.cookie-option small {
  color: #7a7a93;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  accent-color: #6d4af0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}


.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  min-width: max-content;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: #6d4af0;
  color: #fff;
  box-shadow: 0 10px 26px -16px rgba(109, 74, 240, 0.6);
}

.cookie-btn-primary:hover {
  background: #4a28c0;
}

.cookie-btn-secondary {
  background: #eef2ff;
  color: #4a28c0;
}

.cookie-btn-secondary:hover {
  background: #e0dbff;
}

.cookie-btn-ghost {
  background: #fff;
  border: 1px solid #dbe0f4;
  color: #14142b;
}

.cookie-btn-ghost:hover {
  border-color: #c9cfeb;
  background: #f7f7ff;
}

@media (max-width: 720px) {
  .cookie-banner-shell {
    padding: 10px;
  }

  .cookie-banner-card {
    padding: 18px;
  }

  .cookie-banner-header {
    flex-direction: column;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
