/* =========================================================
   HEADER
   ========================================================= */

.ab-ticker{
  background:var(--ink);
  color:#f6f5f1;
  overflow:hidden;
  font-size:12px;
  padding:8px 0;
}

.ab-ticker__in{
  display:flex;
  gap:48px;
  width:max-content;
  animation:abtick 26s linear infinite;
  white-space:nowrap;
}

@keyframes abtick{
  to{
    transform:translateX(50%);
  }
}

.ab-header{
  background:rgba(253,253,251,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}

.ab-header__in{
  display:flex;
  align-items:center;
  gap:24px;
  min-height:72px;
}

.ab-logo{
  display:flex;
  flex-direction:column;
  flex:0 0 auto;
}

.ab-logo .custom-logo-link{
  display:block;
}

.ab-logo .custom-logo{
  max-width:150px;
  max-height:48px;
  width:auto;
}

.ab-logo__fa{
  font-family:var(--font-display);
  font-size:26px;
}

.ab-logo__en{
  display:block;
  font-size:10px;
  letter-spacing:.4em;
  color:var(--steel);
}

.ab-nav ul{
  display:flex;
  gap:26px;
  list-style:none;
  margin:0;
  padding:0;
  font-weight:700;
  font-size:14px;
}

.ab-nav li{
  position:relative;
}

.ab-nav a{
  display:block;
  padding:10px 0;
}

.ab-nav a:hover{
  color:var(--signal);
}

.ab-header__actions{
  margin-inline-start:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.ab-search{
  position:relative;
  display:flex;
  border:1px solid var(--line);
  background:var(--paper);
}

.ab-search input{
  border:0;
  background:none;
  padding:10px 14px;
  outline:none;
  width:190px;
  font-family:inherit;
}

.ab-search button{
  border:0;
  background:none;
  padding:0 10px;
  cursor:pointer;
}

.ab-search svg{
  width:18px;
  height:18px;
}

.ab-search__results{
  position:absolute;
  top:calc(100% + 8px);
  inset-inline:0;
  background:var(--snow);
  border:1px solid var(--line);
  display:none;
  box-shadow:0 20px 40px -20px rgba(0,0,0,.3);
  z-index:100;
  max-height:420px;
  overflow:auto;
}

.ab-search__results.open{
  display:block;
}

.ab-search__result{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-bottom:1px solid var(--line);
}

.ab-search__result:last-child{
  border-bottom:0;
}

.ab-search__result:hover{
  background:var(--mist);
}

.ab-search__result img{
  width:48px;
  height:48px;
  object-fit:cover;
  background:var(--mist);
  border-radius:4px;
  flex:0 0 48px;
}

.ab-search__result span{
  font-size:13px;
  font-weight:700;
  line-height:1.7;
}

.ab-search__empty,
.ab-search__loading,
.ab-search__error{
  padding:16px;
  color:var(--steel);
  font-size:13px;
  text-align:center;
}

.ab-icon{
  position:relative;
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
}

.ab-icon svg{
  width:20px;
  height:20px;
}

.ab-icon--cart{
  background:var(--ink);
  color:#fff;
  border:0;
}

.allbina-cart-count{
  position:absolute;
  top:-7px;
  inset-inline-start:-7px;
  background:var(--signal);
  color:#fff;
  font-size:10px;
  font-weight:900;
  width:19px;
  height:19px;
  display:grid;
  place-items:center;
  border-radius:50%;
}

.ab-burger{
  display:none;
  background:none;
  border:1px solid var(--line);
  width:40px;
  height:40px;
  cursor:pointer;
  padding:0;
  border-radius:4px;
}

.ab-burger i{
  display:block;
  width:18px;
  height:2px;
  background:var(--ink);
  margin:3px auto;
  transition:transform .2s,opacity .2s;
}

.ab-burger[aria-expanded="true"] i:nth-child(1){
  transform:translateY(5px) rotate(45deg);
}

.ab-burger[aria-expanded="true"] i:nth-child(2){
  opacity:0;
}

.ab-burger[aria-expanded="true"] i:nth-child(3){
  transform:translateY(-5px) rotate(-45deg);
}

.ab-mobile{
  display:none;
  background:var(--snow);
  border-bottom:1px solid var(--line);
  box-shadow:0 15px 30px -25px rgba(0,0,0,.35);
}

.ab-mobile.open{
  display:block;
}

.ab-mobile__inner{
  padding:16px 20px 24px;
}

.ab-mobile__nav ul{
  list-style:none;
  margin:0;
  padding:0;
}

.ab-mobile__nav li{
  border-bottom:1px solid var(--line);
}

.ab-mobile__nav a{
  display:block;
  padding:13px 4px;
  font-weight:700;
}

.ab-mobile__search{
  margin-top:16px;
}

.ab-mobile__search .ab-search{
  display:flex;
  width:100%;
}

.ab-mobile__search .ab-search input{
  width:100%;
}


/* =========================================================
   FOOTER
   ========================================================= */

.ab-footer{
  position:relative;
  margin-top:100px;
  background:var(--ink);
  color:#f6f5f1;
  overflow:hidden;
}

.ab-footer::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 8% 18%,rgba(255,75,31,.07),transparent 28%),
    radial-gradient(circle at 92% 80%,rgba(255,255,255,.035),transparent 30%);
}

.ab-footer a{
  color:inherit;
  text-decoration:none;
}

.ab-footer img{
  max-width:100%;
  height:auto;
}

.ab-footer .container{
  position:relative;
  z-index:1;
}

.ab-footer__main{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) repeat(3,minmax(0,1fr));
  gap:54px;
  padding-top:72px;
  padding-bottom:64px;
}

.ab-footer__about{
  min-width:0;
}

.ab-footer__brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
  color:#fff;
  font-size:28px;
  font-weight:900;
  line-height:1;
}

.ab-footer__brand img{
  display:block;
  width:auto;
  max-width:170px;
  max-height:58px;
  object-fit:contain;
}

.ab-footer__desc{
  max-width:420px;
  margin:0;
  color:rgba(246,245,241,.68);
  font-size:14px;
  line-height:2.15;
}

.ab-footer__trust-mini{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:24px;
}

.ab-footer__trust-mini span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:6px 11px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:rgba(255,255,255,.72);
  font-size:11px;
  font-weight:800;
  transition:background-color .25s ease,border-color .25s ease,color .25s ease,transform .25s ease;
}

.ab-footer__trust-mini span:hover{
  background:rgba(255,75,31,.10);
  border-color:rgba(255,75,31,.30);
  color:#fff;
  transform:translateY(-2px);
}

.ab-footer__social{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:26px;
}

.ab-footer__social a{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:11px;
  background:rgba(255,255,255,.035);
  color:#fff;
  font-size:12px;
  font-weight:800;
  transition:transform .25s cubic-bezier(.22,.61,.36,1),background-color .25s ease,border-color .25s ease,color .25s ease;
}

.ab-footer__social a:hover{
  transform:translateY(-4px);
  border-color:rgba(255,75,31,.45);
  background:var(--signal);
  color:#fff;
  box-shadow:0 10px 25px rgba(255,75,31,.18);
}

.ab-footer__col{
  min-width:0;
}

.ab-footer__col h3,
.ab-footer__col h4{
  position:relative;
  margin:0 0 22px;
  padding-bottom:12px;
  color:#fff;
  font-family:var(--font-body);
  font-size:16px;
  font-weight:900;
}

.ab-footer__col h3::after,
.ab-footer__col h4::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:30px;
  height:2px;
  border-radius:999px;
  background:var(--signal);
}

.ab-footer__col ul{
  margin:0;
  padding:0;
  list-style:none;
}

.ab-footer__col li{
  margin:0;
  padding:0;
}

.ab-footer__col li+li{
  margin-top:11px;
}

.ab-footer__col li a{
  display:inline-flex;
  align-items:center;
  color:rgba(246,245,241,.64);
  font-size:13px;
  line-height:1.8;
  transition:color .22s ease,transform .22s ease;
}

.ab-footer__col li a::before{
  content:"";
  width:0;
  height:1px;
  margin-left:0;
  background:var(--signal);
  opacity:0;
  transition:width .22s ease,margin-left .22s ease,opacity .22s ease;
}

.ab-footer__col li a:hover{
  color:#fff;
  transform:translateX(-3px);
}

.ab-footer__col li a:hover::before{
  width:12px;
  margin-left:8px;
  opacity:1;
}

.ab-footer__contact-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.ab-footer__contact-list li{
  display:flex;
  align-items:flex-start;
  gap:11px;
  margin:0!important;
  color:rgba(246,245,241,.68);
  font-size:13px;
  line-height:1.9;
}

.ab-footer__contact-list li a{
  display:block;
  color:rgba(246,245,241,.72);
  font-size:13px;
  transition:color .22s ease;
}

.ab-footer__contact-list li a::before{
  display:none;
}

.ab-footer__contact-list li a:hover{
  color:#fff;
}

.ab-footer__contact-icon{
  flex:0 0 30px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  color:var(--signal);
  font-size:11px;
  direction:ltr;
}

.ab-footer__latest{
  position:relative;
  z-index:1;
  padding-top:42px;
  padding-bottom:48px;
  border-top:1px solid rgba(255,255,255,.08);
}

.ab-footer__section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}

.ab-footer__section-head>div{
  min-width:0;
}

.ab-footer__section-head span{
  display:block;
  margin-bottom:6px;
  color:var(--signal);
  font-size:11px;
  font-weight:900;
  letter-spacing:.4px;
}

.ab-footer__section-head h2{
  margin:0;
  color:#fff;
  font-family:var(--font-body);
  font-size:25px;
  line-height:1.3;
  font-weight:900;
}

.ab-footer__section-head a{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:9px;
  background:rgba(255,255,255,.035);
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:800;
  transition:background-color .25s ease,border-color .25s ease,color .25s ease,transform .25s ease;
}

.ab-footer__section-head a:hover{
  background:var(--signal);
  border-color:var(--signal);
  color:#fff;
  transform:translateY(-2px);
}

.ab-footer__posts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.ab-footer__post{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:15px;
  background:rgba(255,255,255,.035);
  transition:transform .35s cubic-bezier(.22,.61,.36,1),border-color .3s ease,background-color .3s ease,box-shadow .3s ease;
}

.ab-footer__post:hover{
  transform:translateY(-5px);
  border-color:rgba(255,75,31,.28);
  background:rgba(255,255,255,.055);
  box-shadow:0 18px 40px rgba(0,0,0,.20);
}

.ab-footer__post-image{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:#24241f;
}

.ab-footer__post-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.22,.61,.36,1),filter .4s ease;
}

.ab-footer__post:hover .ab-footer__post-image img{
  transform:scale(1.045);
  filter:saturate(1.05);
}

.ab-footer__post-placeholder{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
  color:rgba(255,255,255,.24);
  font-size:13px;
  font-weight:900;
}

.ab-footer__post-body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:17px 18px 18px;
}

.ab-footer__post-date{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.42);
  font-size:10px;
  font-weight:700;
}

.ab-footer__post-title{
  margin:0;
  color:#fff;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:900;
  line-height:1.9;
}

.ab-footer__post-title a{
  color:inherit;
  transition:color .22s ease;
}

.ab-footer__post-title a:hover{
  color:var(--signal);
}

.ab-footer__post-more{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  margin-top:auto;
  padding-top:14px;
  color:rgba(255,255,255,.52);
  font-size:11px;
  font-weight:800;
  transition:color .22s ease,transform .22s ease;
}

.ab-footer__post-more:hover{
  color:var(--signal);
  transform:translateX(-3px);
}

.ab-footer__bottom-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:30px;
  align-items:stretch;
  padding-top:42px;
  padding-bottom:42px;
  border-top:1px solid rgba(255,255,255,.08);
}

.ab-footer__trust-box{
  min-width:0;
  padding:24px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:rgba(255,255,255,.035);
}

.ab-footer__trust-box h3{
  margin:0 0 7px;
  color:#fff;
  font-family:var(--font-body);
  font-size:18px;
  font-weight:900;
}

.ab-footer__trust-box>p{
  margin:0;
  color:rgba(255,255,255,.52);
  font-size:12px;
  line-height:1.9;
}

.ab-footer .ab-trust{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:20px;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.ab-footer .ab-trust span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:10px;
  background:rgba(255,255,255,.035);
  color:rgba(255,255,255,.72);
  text-align:center;
  transition:background-color .25s ease,border-color .25s ease,color .25s ease,transform .25s ease;
}

.ab-footer .ab-trust span:hover{
  background:rgba(255,75,31,.09);
  border-color:rgba(255,75,31,.30);
  color:#fff;
  transform:translateY(-2px);
}

.ab-footer__badges{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  min-width:190px;
  padding:18px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:rgba(255,255,255,.035);
}

.ab-footer__badge{
  display:flex;
  align-items:center;
  justify-content:center;
  width:82px;
  min-height:92px;
  padding:8px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  background:#fff;
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease;
}

.ab-footer__badge:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.ab-footer__badge img{
  display:block;
  width:100%;
  max-width:66px;
  max-height:72px;
  object-fit:contain;
}

.ab-footer__copyright{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.42);
  font-size:11px;
  line-height:1.8;
  flex-wrap:wrap;
}

.ab-footer__copyright p{
  margin:0;
}

.ab-footer__copyright a{
  color:rgba(255,255,255,.65);
  font-weight:800;
  transition:color .22s ease;
}

.ab-footer__copyright a:hover{
  color:var(--signal);
}

.ab-footer__copyright .ab-footer__developer{
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.ab-footer__copyright .ab-footer__version{
  color:rgba(255,255,255,.25);
  direction:ltr;
  font-family:var(--font-latin);
}


/* =========================================================
   RESPONSIVE HEADER / FOOTER
   ========================================================= */

@media(max-width:760px){

  .ab-nav{
    display:none;
  }

  .ab-header__in{
    gap:10px;
    min-height:64px;
  }

  .ab-header__actions{
    gap:7px;
  }

  .ab-search{
    display:none;
  }

  .ab-burger{
    display:block;
    order:-1;
  }

  .ab-mobile{
    display:none;
  }

  .ab-mobile.open{
    display:block;
  }

  .ab-footer{
    margin-top:60px;
  }

  .ab-footer__main{
    grid-template-columns:1fr;
    gap:34px;
    padding-top:48px;
    padding-bottom:42px;
  }

  .ab-footer__about{
    grid-column:auto;
  }

  .ab-footer__brand{
    font-size:25px;
    margin-bottom:16px;
  }

  .ab-footer__brand img{
    max-width:150px;
    max-height:50px;
  }

  .ab-footer__desc{
    max-width:none;
    font-size:13px;
    line-height:2;
  }

  .ab-footer__trust-mini{
    margin-top:18px;
  }

  .ab-footer__social{
    margin-top:20px;
  }

  .ab-footer__col h3,
  .ab-footer__col h4{
    margin-bottom:17px;
    font-size:15px;
  }

  .ab-footer__col li+li{
    margin-top:9px;
  }

  .ab-footer__col li a{
    font-size:12px;
  }

  .ab-footer__contact-list{
    gap:10px;
  }

  .ab-footer__contact-list li{
    font-size:12px;
  }

  .ab-footer__contact-list li a{
    font-size:12px;
  }

  .ab-footer__latest{
    padding-top:34px;
    padding-bottom:38px;
  }

  .ab-footer__section-head{
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
    margin-bottom:18px;
  }

  .ab-footer__section-head h2{
    font-size:21px;
  }

  .ab-footer__section-head a{
    min-height:38px;
    font-size:11px;
  }

  .ab-footer__posts{
    grid-template-columns:1fr;
    gap:14px;
  }

  .ab-footer__post:last-child{
    display:flex;
  }

  .ab-footer__post-body{
    padding:14px 15px 16px;
  }

  .ab-footer__post-title{
    font-size:13px;
  }

  .ab-footer__bottom-grid{
    grid-template-columns:1fr;
    gap:18px;
    padding-top:34px;
    padding-bottom:34px;
  }

  .ab-footer__trust-box{
    padding:18px;
    border-radius:13px;
  }

  .ab-footer__trust-box h3{
    font-size:16px;
  }

  .ab-footer__trust-box>p{
    font-size:11px;
  }

  .ab-footer .ab-trust{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .ab-footer .ab-trust span{
    min-height:40px;
    padding:7px 8px;
    font-size:10px;
  }

  .ab-footer__badges{
    min-width:0;
    padding:14px;
  }

  .ab-footer__copyright{
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
    padding:17px 0;
    font-size:10px;
  }

}

@media(max-width:480px){

  .ab-logo__fa{
    font-size:23px;
  }

  .ab-logo__en{
    font-size:8px;
  }

  .ab-header__actions .ab-icon{
    width:36px;
    height:36px;
  }

  .ab-footer__main{
    gap:30px;
    padding-top:42px;
  }

  .ab-footer__brand img{
    max-width:135px;
    max-height:46px;
  }

  .ab-footer__trust-mini{
    gap:6px;
  }

  .ab-footer__trust-mini span{
    min-height:30px;
    padding:5px 9px;
    font-size:10px;
  }

  .ab-footer__social a{
    width:37px;
    height:37px;
    border-radius:9px;
  }

  .ab-footer__latest{
    padding-top:30px;
    padding-bottom:32px;
  }

  .ab-footer__post-image{
    aspect-ratio:16 / 9;
  }

  .ab-footer__post-title{
    font-size:12px;
  }

  .ab-footer .ab-trust{
    grid-template-columns:1fr;
  }

  .ab-footer__badge{
    width:76px;
    min-height:86px;
  }

  .ab-footer__badge img{
    max-width:60px;
    max-height:68px;
  }

}

@media(max-width:1000px){

  .ab-footer__main{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:42px;
    padding-top:60px;
    padding-bottom:52px;
  }

  .ab-footer__about{
    grid-column:1 / -1;
  }

  .ab-footer__desc{
    max-width:620px;
  }

  .ab-footer__posts{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ab-footer__post:last-child{
    display:none;
  }

  .ab-footer__bottom-grid{
    grid-template-columns:1fr;
  }

  .ab-footer__badges{
    justify-content:flex-start;
  }

}

@media(prefers-reduced-motion:reduce){

  .ab-footer__trust-mini span,
  .ab-footer__social a,
  .ab-footer__col li a,
  .ab-footer__section-head a,
  .ab-footer__post,
  .ab-footer__post-image img,
  .ab-footer__post-more,
  .ab-footer__badge,
  .ab-footer__copyright a{
    transition:none!important;
  }

  .ab-footer__post:hover,
  .ab-footer__social a:hover,
  .ab-footer__trust-mini span:hover,
  .ab-footer__section-head a:hover,
  .ab-footer__post-more:hover,
  .ab-footer__badge:hover,
  .ab-footer .ab-trust span:hover{
    transform:none;
  }

  .ab-footer__post:hover .ab-footer__post-image img{
    transform:none;
  }

}