/* Basic layout; colors are mostly controlled via Elementor */

.naww-section-header{
  max-width:1170px;
  margin:20px auto 10px;
  padding:0 5px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.naww-section-header h2{
  font-size:22px;
  font-weight:700;
}

.naww-products-grid{
  max-width:1170px;
  margin:20px auto 30px;
  padding:0;
}

/* Card */
.naww-product-card{
  border-radius:18px;
  padding:14px;
  border:1px solid #e1e1e1;
  box-shadow:0 2px 16px rgba(0,0,0,0.05);
  transition:0.25s ease;
  text-align:center;
  background:#ffffff;
}
.naww-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 22px rgba(0,0,0,0.08);
}
.naww-product-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  background:#fafafa;
  border-radius:18px;
  padding:4px;
}
.naww-product-card h3{
  margin:10px 0 4px;
  font-size:15px;
  font-weight:600;
  text-transform:uppercase;
}
.naww-product-card p{
  margin-bottom:10px;
  font-size:15px;
}
.naww-product-card p del{
  margin-right:5px;
  font-size:14px;
}

/* Buttons */
.naww-btn-box{
  display:flex;
  gap:8px;
  margin-top:8px;
}
.naww-btn-order,
.naww-btn-cart{
  width:50%;
  padding:10px;
  border-radius:6px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition:0.25s all ease;
  cursor:pointer;
  display:inline-block;
  background:#001529;
  color:#ffffff;
}
.naww-btn-cart{
  background:#F2F2F2;
  color:#001529;
}

/* Button animation */
.naww-btn-order:hover,
.naww-btn-cart:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,0.15);
}
.naww-btn-order:active,
.naww-btn-cart:active{
  transform:scale(0.94);
}
.naww-btn-order::after,
.naww-btn-cart::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:100%;
  background:rgba(255,255,255,0.25);
  transition:width 0.3s ease;
}
.naww-btn-order:hover::after,
.naww-btn-cart:hover::after{
  width:100%;
}

/* Pagination */
.naww-pagination{
  max-width:1170px;
  margin:5px auto 40px;
  text-align:center;
}
.naww-pagination a,
.naww-pagination span{
  display:inline-block;
  padding:8px 16px;
  margin:0 4px;
  font-size:14px;
  border-radius:6px;
  border:1px solid #dcdcdc;
  background:#ffffff;
  color:#001529;
  transition:0.25s ease;
}
.naww-pagination a:hover{
  background:#001529;
  color:#ffffff;
}
.naww-pagination .current{
  background:#001529;
  color:#ffffff;
  border-color:#001529;
}

/* Mobile tweaks */
@media(max-width:600px){
  .naww-products-grid{
    margin-bottom:25px;
  }
  .naww-product-card img{
    height:230px;
  }
}
