.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 16px;
  pointer-events: none;
}

.cookie-consent--hidden {
  display: none;
}

.cookie-consent__inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(188, 142, 49, 0.45);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(30, 18, 14, 0.98) 0%, rgba(41, 24, 19, 0.98) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-consent__content {
  flex: 1 1 320px;
  min-width: 0;
}

.cookie-consent__title {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.cookie-consent__text {
  margin: 0;
  color: #d8d0c8;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent__links {
  margin: 8px 0 0;
  font-size: 13px;
}

.cookie-consent__links a {
  color: #e99f0a;
  text-decoration: underline;
}

.cookie-consent__links a:hover {
  color: #bc8e31;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-consent button.cookie-consent__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-consent button.cookie-consent__btn--primary {
  border: 1px solid #bc8e31;
  background-color: #bc8e31;
  color: #fff;
}

.cookie-consent button.cookie-consent__btn--primary:hover,
.cookie-consent button.cookie-consent__btn--primary:focus-visible {
  border-color: #e99f0a;
  background-color: #e99f0a;
  color: #fff;
}

.cookie-consent button.cookie-consent__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-color: transparent;
  color: #dbdada;
}

.cookie-consent button.cookie-consent__btn--secondary:hover,
.cookie-consent button.cookie-consent__btn--secondary:focus-visible {
  border-color: rgba(188, 142, 49, 0.55);
  background-color: rgba(188, 142, 49, 0.1);
  color: #fff;
}

.cookie-consent button.cookie-consent__btn:active {
  opacity: 0.92;
}

@media (max-width: 767px) {
  .cookie-consent {
    padding: 12px;
  }

  .cookie-consent__inner {
    padding: 16px;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent button.cookie-consent__btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
}
