
/* cookie_consent.css - autogenerated */
#cookie-consent-banner{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  z-index: 9999;
  display: none;
  width: 50%;               /* основная ширина: 50% */
  max-width: 1100px;        /* не шире сайта */
  min-width: 320px;         /* не слишком узкий на десктопе */
  box-sizing: border-box;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  pointer-events: auto;
}
#cookie-consent-banner .cc-card{
  background: #F6EAD2; /* песочный фон */
  border-radius: 10px;
  border: 1px solid #5B3A29; /* рамка цветом меню */
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display:flex;
  gap:14px;
  justify-content:space-between;
  flex-direction: column; /* stacked: top row, then bottom links */
}
#cookie-consent-banner .cc-top{
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:space-between;
}
@media (max-width:900px){
  /* на планшетах чуть уже, чтобы не занимал слишком много пространства */
  #cookie-consent-banner{ width:70%; }
}
@media (max-width:700px){
  /* на телефонах — почти на всю ширину, с небольшими отступами */
  #cookie-consent-banner { bottom: 12px; width: calc(100% - 24px); left: 50%; transform: translateX(-50%); }
  #cookie-consent-banner .cc-top{ flex-direction: column; align-items: stretch; gap:10px; }
}
.cc-text{ flex:1; color:#222; font-size:14px; line-height:1.35; }
.cc-actions{ display:flex; gap:10px; align-items:center; flex-shrink:0; }
.cc-btn{ padding:8px 12px; border-radius:8px; border:0; cursor:pointer; font-weight:600; font-size:14px; }
.cc-btn-accept{ background: #5B3A29; color: #fff; }
.cc-btn-decline{ background: transparent; color: #5B3A29; border: 1px solid rgba(0,0,0,0.06); }
.cookie-footer-links{ margin-top:10px; font-size:13px; color:#666; text-align:center; }
.cookie-footer-links a{ color: #5B3A29; text-decoration: underline; font-family: Roboto, Arial, Helvetica, sans-serif; }
.footer-privacy-link{ color: #5B3A29 !important; font-family: Roboto, Arial, Helvetica, sans-serif !important; }

/* уменьшение заголовка и текста privacy на мобильных, действует при body.privacy-page */
@media (max-width:700px) {
  body.privacy-page .main-text h1 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  body.privacy-page .main-text {
    font-size: 14px;
  }
}
