.pos-cookie-consent{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.pos-cookie-consent__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pos-cookie-consent__text{
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.pos-cookie-consent__link{
  color: #9ad5ff;
  text-decoration: underline;
}

.pos-cookie-consent__actions{
  display: flex;
  gap: 10px;
}

.pos-cookie-consent__btn{
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.pos-cookie-consent__btn--accept{
  background: #ffffff;
  color: #111;
}

.pos-cookie-consent__btn--reject{
  background: rgba(255,255,255,0.14);
  color: #fff;
}

@media (max-width: 600px){
  .pos-cookie-consent__inner{
    padding: 12px;
  }
  .pos-cookie-consent__actions{
    width: 100%;
  }
  .pos-cookie-consent__btn{
    width: 50%;
    text-align: center;
  }
}
