/* ajustes para mobile: back-to-top discreto */
@media (max-width: 576px) {
  .back-to-top {
    bottom: 18px;
    right: 14px;
    opacity: 0.9;
    transform: scale(0.5);
    transform-origin: bottom right;
    position: fixed;
    display: block;
    z-index: 1000;
  }
  .back-to-top svg { width: 39px; height: 75px; }
}

/* Cookie consent modal: desktop bottom-left, mobile centered */
.common-modal.cookie_consent_modal {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 420px;
  max-width: 92vw;
  max-height: 80vh;
  overflow-y: auto;
  padding: 16px;
  box-sizing: border-box;
}
.cookie_consent_close_btn { position: absolute; right: 12px; top: 12px; }
.common-modal.cookie_consent_modal .common-modal-btn .thm-btn-two { width: 100%; }

@media (max-width: 576px) {
  .common-modal.cookie_consent_modal {
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    transform: none;
    width: auto;
    max-width: none;
    border-radius: 12px;
    z-index: 999;
  }
}
