.language-switcher-pc {
  display: inline-block;
  position: relative;
  top: 15px;
  right: 15px;
}
.language-switcher-mob {
}

.social-menu > .menu-item > .menu-link img {
    width: 25px;
    height: 25px;
    vertical-align: middle;  
}

/* ==== Buybar (Кнопка «Купить» + количество) ==== */
.buybar{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap;
  margin:16px 0 24px;
}

/* Qty */
.buybar__qty{
  display:flex; align-items:center; border:1px solid #e2e2e2;
  border-radius:12px; overflow:hidden; height:46px; background:#fff;
}
.qty__btn{
  width:42px; height:100%; border:0; background:#f7f7f8; cursor:pointer;
  font-size:20px; line-height:1; display:grid; place-items:center;
  transition:background .15s ease, transform .05s ease;
}
.qty__btn:hover{ background:#efefef; }
.qty__btn:active{ transform:scale(0.97); }
.qty__input{
  width:64px; border:0; text-align:center; font-size:16px; height:100%;
  outline: none;
}

/* Button */
.buybar__btn{
  --bg:#1a7f46;      /* основной (подправьте под бренд) */
  --bg2:#179c57;     /* ховер */
  --bg3:#146c40;     /* active */
  display:inline-flex; align-items:center; gap:10px;
  background:var(--bg); color:#fff; border:0; border-radius:14px;
  height:46px; padding:0 18px; font-weight:600; font-size:16px;
  box-shadow:0 6px 14px rgb(26 127 70 / .25);
  transition:transform .06s ease, box-shadow .2s ease, background .15s;
  cursor:pointer;
}
.buybar__btn:hover{ background:var(--bg2); box-shadow:0 8px 18px rgb(23 156 87 / .28); }
.buybar__btn:active{ background:var(--bg3); transform:translateY(1px); }
.buybar__btn:focus-visible{ outline:2px solid #2bc27a; outline-offset:3px; }

.buybar__icon{ width:20px; height:20px; fill:currentColor; }

/* Мобильная компоновка */
@media (max-width: 640px){
  .buybar{ flex-direction:column; align-items:stretch; }
  .buybar__btn{ justify-content:center; width:100%; }
  .buybar__qty{ width:100%; justify-content:center; }
  .qty__input{ width:80px; }
}
