/* ===== FIXED PHONE WIDGET ===== */
.fixed-phone-widget{
  position:fixed;
  right:24px;
  left:auto;
  bottom:24px;
  z-index:1090;
  width:min(360px,calc(100vw - 32px));
  padding:14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  background:rgba(12,18,26,.82);
  box-shadow:
    0 24px 70px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.fixed-phone-widget__field{
  display:flex;
  align-items:center;
  min-height:52px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.72);
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.16);
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.fixed-phone-widget__field:focus-within{
  border-color:#D8B770;
  box-shadow:
    0 12px 32px rgba(0,0,0,.20),
    0 0 0 4px rgba(216,183,112,.13);
  transform:translateY(-1px);
}

.fixed-phone-widget__flag{
  display:inline-block;
  flex:0 0 auto;
  width:19px;
  height:13px;
  margin-left:18px;
  overflow:hidden;
  border-radius:2px;
  box-shadow:0 0 0 1px rgba(17,24,39,.14);
  background:
    linear-gradient(
      180deg,
      #fff 0 33.333%,
      #1f4ba8 33.333% 66.666%,
      #d52b1e 66.666% 100%
    );
}

.fixed-phone-widget__input{
  width:100%;
  min-width:0;
  height:50px;
  padding:0 18px 0 10px;
  border:0;
  outline:0;
  background:transparent;
  color:#111827;
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:15px;
  line-height:1;
  font-weight:600;
}

.fixed-phone-widget__input::placeholder{
  color:#7b828d;
  opacity:1;
}

.fixed-phone-widget__policy{
  margin:12px 2px 0;
  color:rgba(255,255,255,.62);
  font-size:11px;
  line-height:1.45;
}

.fixed-phone-widget__policy a{
  color:rgba(255,255,255,.92);
  font-weight:700;
  text-decoration:none;
}

.fixed-phone-widget__policy a:hover{
  color:#E7C57A;
}

.fixed-phone-widget__submit{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:50px;
  margin-top:13px;
  padding:12px 18px;
  border:1px solid rgba(176,203,167,.22);
  border-radius:999px;
  background:linear-gradient(180deg,#173F35 0%,#0F3028 100%);
  color:#F6F4EC;
  box-shadow:
    0 16px 34px rgba(3,18,14,.34),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.22);
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:14px;
  line-height:1.2;
  font-weight:800;
  cursor:pointer;
  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.fixed-phone-widget__submit:hover{
  transform:translateY(-1px);
  background:linear-gradient(180deg,#1D4B40 0%,#12382F 100%);
  box-shadow:
    0 18px 38px rgba(3,18,14,.42),
    0 0 0 1px rgba(201,225,190,.06),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.fixed-phone-widget__submit:active{
  transform:translateY(0);
}


.fixed-phone-widget__consent{
  display:grid;
  grid-template-columns:20px minmax(0,1fr);
  gap:10px;
  align-items:start;
  margin:13px 2px 0;
  cursor:pointer;
}

.fixed-phone-widget__consent-input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.fixed-phone-widget__consent-box{
  display:flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  margin-top:1px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:6px;
  background:rgba(255,255,255,.055);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 6px 16px rgba(0,0,0,.12);
  color:#fff;
  font-size:13px;
  line-height:1;
  transition:
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.fixed-phone-widget__consent-box i{
  opacity:0;
  transform:scale(.6);
  transition:opacity .18s ease, transform .18s ease;
}

.fixed-phone-widget__consent-input:checked + .fixed-phone-widget__consent-box{
  border-color:rgba(190,217,181,.30);
  background:linear-gradient(180deg,#1A463B 0%,#11352D 100%);
  box-shadow:
    0 8px 18px rgba(3,18,14,.24),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.fixed-phone-widget__consent-input:checked + .fixed-phone-widget__consent-box i{
  opacity:1;
  transform:scale(1);
}

.fixed-phone-widget__consent-input:focus-visible + .fixed-phone-widget__consent-box{
  outline:3px solid rgba(200,169,107,.20);
  outline-offset:2px;
}

.fixed-phone-widget__consent-text{
  color:rgba(255,255,255,.66);
  font-size:11px;
  line-height:1.45;
}

.fixed-phone-widget__consent-text a{
  color:rgba(255,255,255,.92);
  font-weight:700;
  text-decoration:none;
}

.fixed-phone-widget__consent-text a:hover{
  color:#E7C57A;
}

.fixed-phone-widget__error,
.fixed-phone-widget__status{
  margin:10px 2px 0;
  font-size:12px;
  line-height:1.45;
}

.fixed-phone-widget__error,
.fixed-phone-widget__status--error{
  color:#ffb6b6;
}

.fixed-phone-widget__status--success{
  padding:11px 13px;
  border:1px solid rgba(143,211,169,.24);
  border-radius:13px;
  background:rgba(143,211,169,.08);
  color:#d8f5e2;
}

@media (max-width:767.98px){
  .fixed-phone-widget{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    padding:12px;
    border-radius:20px;
  }

  .fixed-phone-widget__field,
  .fixed-phone-widget__submit{
    min-height:52px;
  }

  .fixed-phone-widget__input{
    height:50px;
    font-size:16px;
  }
}
