.shop-site{
  background:#000;
}

.shop-hero{
  padding-top:82px;
  padding-bottom:72px;
  border-bottom:1px solid rgba(255,157,0,.14);
}

.shop-hero h1{
  max-width:980px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.shop-cart-link{
  border:1px solid rgba(255,157,0,.45);
  color:#ffad29 !important;
  background:rgba(255,157,0,.06);
}

.shop-cart-link:hover{
  border-color:#ff9d00;
  background:rgba(255,157,0,.13);
}

.shop-catalog{
  background:#000;
}

.shop-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin:0 0 22px;
}

.shop-section-head h2{
  margin:7px 0 0;
  font-size:34px;
}

.shop-count{
  border:1px solid rgba(255,157,0,.35);
  border-radius:999px;
  padding:9px 13px;
  color:#ffad29;
  background:rgba(255,157,0,.055);
  font-size:12px;
  font-weight:800;
}

.category-grid{
  align-items:stretch;
}

.category-card{
  display:flex;
  flex-direction:column;
}

.category-card h2{
  margin:11px 0;
  font-size:28px;
}

.category-description{
  flex:1;
  font-size:15px;
}

.category-card .btn{
  align-self:flex-start;
  margin-top:10px;
}

.category-placeholder{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  padding:25px;
  border:1px solid rgba(255,157,0,.16);
  background:
    linear-gradient(135deg,rgba(255,157,0,.08),transparent 38%),
    radial-gradient(circle at 85% 18%,rgba(0,229,255,.12),transparent 30%),
    #020202;
}

.category-placeholder::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-55px;
  top:-55px;
  border:1px solid rgba(255,157,0,.28);
  border-radius:50%;
  box-shadow:
    0 0 0 24px rgba(255,157,0,.025),
    0 0 0 48px rgba(0,229,255,.018);
}

.category-placeholder span{
  color:#7df9ff;
  font-size:10px;
  letter-spacing:.18em;
  font-weight:850;
}

.category-placeholder strong{
  position:relative;
  z-index:2;
  max-width:85%;
  margin-top:9px;
  color:#f4f7fb;
  font-size:27px;
  line-height:1.05;
}

.empty-catalog{
  min-height:310px;
  display:grid;
  grid-template-columns:180px 1fr;
  align-items:center;
  gap:34px;
}

.empty-catalog-icon{
  width:170px;
  height:170px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,157,0,.45);
  border-radius:24px;
  color:#ff9d00;
  background:
    radial-gradient(circle,rgba(255,157,0,.12),transparent 65%),
    #000;
  font-size:48px;
  font-weight:950;
  letter-spacing:-4px;
}

.featured-products{
  background:#000;
}

.product-name{
  margin:10px 0;
  font-size:28px;
}

.product-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  margin-top:18px;
}

.price{
  color:#ffad29;
  font-size:25px;
  font-weight:950;
}

.support-footer{
  background:#000;
}

@media(max-width:850px){
  .shop-hero{
    padding-top:55px;
  }

  .shop-section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .empty-catalog{
    grid-template-columns:1fr;
  }

  .empty-catalog-icon{
    width:110px;
    height:110px;
    font-size:34px;
  }

  .product-bottom{
    align-items:flex-start;
    flex-direction:column;
  }
}
