.digital-products-page{
  max-width: 1280px;
  margin: 0 auto;
}

.digital-products-hero{
  text-align:center;
  margin-bottom: 30px;
}

.products-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
}

.product-card{
  position:relative;
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,205,56,.12);
  display:flex;
  flex-direction:column;
  gap:14px;
  transition:.25s ease;
}

.product-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,205,56,.35);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.product-tag{
  display:inline-flex;
  width:max-content;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,205,56,.12);
  border:1px solid rgba(255,205,56,.25);
  color:#ffcd38;
  font-size:12px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.product-image{
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-card h3{
  margin:0;
  color:#fff;
  line-height:1.2;
}

.product-card p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.7;
  font-size:14px;
}

.product-price{
  margin-top:auto;
  font-size:30px;
  font-weight:700;
  color:#ffcd38;
}

.product-price span{
  font-size:14px;
  opacity:.7;
  margin-left:6px;
}

.product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.premium-card{
  border:1px solid rgba(255,205,56,.35);
  background:
    linear-gradient(180deg, rgba(255,205,56,.08), rgba(255,255,255,.02)),
    rgba(255,255,255,.03);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

@media (max-width: 1100px){
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .products-grid{
    grid-template-columns: 1fr;
  }

  .product-actions .btn{
    width:100%;
    text-align:center;
    justify-content:center;
  }
}
.products-hero-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

@media (max-width:700px){
  .products-hero-actions .btn{
    width:100%;
    justify-content:center;
  }
}