.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 16px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
.cookie-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-consent__text {
  margin: 0 0 12px;
  color: #525358;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-consent__link {
  color: #6cc4cc;
  text-decoration: underline;
}
.cookie-consent__link:hover {
  color: #1bc6ce;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-consent__btn {
  display: inline-block;
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  border-radius: 18px;
  border: 2px solid #6cc4cc;
  background: transparent;
  color: #6cc4cc;
  -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
          transition: color 0.1s ease-in, background 0.1s ease-in;
}
.cookie-consent__btn:hover {
  color: #fff;
  background: #1bc6ce;
}
.cookie-consent__btn--primary {
  color: #fff;
  background: #6cc4cc;
}
.cookie-consent__btn--primary:hover {
  background: #1bc6ce;
}
@media only screen and (max-width: 499px) {
  .cookie-consent__btn {
    width: 100%;
  }
}
