/* =========================================
   ARIKASOFT PREMIUM PRODUCT DESIGN
========================================= */

.product-section{
  padding:90px 0;
  background:linear-gradient(135deg,#eef3f9,#f8fbff);
}

.section-header h2{
  font-weight:700;
  font-size:34px;
  color:#0b3c5d;
}

.section-header h2 span{
  color:#ff7a18;
}

.section-header p{
  color:#666;
  margin-top:10px;
}

/* CARD */
.product-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  transition:.4s ease;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  height:100%;
  display:flex;
  flex-direction:column;
}

.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* IMAGE */
.product-img-wrap{
  height:220px;
  overflow:hidden;
}

.product-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.product-card:hover img{
  transform:scale(1.05);
}

/* BODY */
.product-body{
  padding:30px;
  flex-grow:1;
  display:flex;
  flex-direction:column;
}

.product-title{
  font-size:20px;
  font-weight:700;
  color:#0b3c5d;
  margin-bottom:10px;
}

.product-desc{
  font-size:14px;
  color:#555;
  margin-bottom:20px;
  flex-grow:1;
}

/* FOOTER */
.product-footer{
  margin-top:auto;
}

.product-price{
  font-size:24px;
  font-weight:700;
  color:#ff7a18;
  margin-bottom:15px;
}

/* BUTTONS */
.view-btn{
  display:block;
  border:2px solid #0b3c5d;
  color:#0b3c5d;
  padding:10px;
  text-align:center;
  border-radius:10px;
  text-decoration:none;
  margin-bottom:10px;
  font-weight:600;
  transition:.3s;
}

.view-btn:hover{
  background:#0b3c5d;
  color:#fff;
}

.pay-btn{
  background:linear-gradient(135deg,#ff7a18,#ff9f1c);
  color:#fff;
  padding:12px;
  border:none;
  width:100%;
  border-radius:10px;
  font-weight:700;
  transition:.3s;
}

.pay-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(255,122,24,0.3);
}

/* MOBILE */
@media(max-width:768px){
  .product-body{
    padding:20px;
  }
}