.cookie-notification-wrapper {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 0 24px 24px;
  pointer-events: none;
}

.cookie-notification {
  position: relative;
  max-width: 440px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  pointer-events: auto;
}

.cookie-notification-message {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cookie-notification-description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-notification-description a {
  color: #52ad27;
  text-decoration: none;
}

.cookie-notification-buttons {
  display: flex;
  gap: 8px;
}

.cookie-notification-buttons button {
  padding: 4px 15px;
  height: 32px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-accept-all {
  background: #52ad27;
  color: #fff;
}

.cookie-configure {
  background: #fff;
  color: #52ad27;
  border-color: #52ad27 !important;
}

.cookie-notification-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  padding: 0;
}

/* Стили для блока настроек */
.cookie-settings {
  margin-bottom: 16px;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.cookie-setting-item {
  margin-bottom: 12px;
}

.cookie-setting-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding-left: 24px;
  position: relative;
}

.cookie-setting-checkbox {
  position: absolute;
  left: 0;
  top: 2px;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  cursor: pointer;
}

.cookie-setting-text {
  font-weight: 500;
  margin-bottom: 2px;
}

.cookie-setting-description {
  font-size: 12px;
  color: #666;
}

/* Для отключенного чекбокса */
.cookie-setting-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}