.custom-product-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
gap:25px;
}

.custom-product-card{
background:#fff;
border:1px solid #ddd;
border-radius:10px;
padding:15px;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.product-placeholder{
height:220px;
display:flex;
align-items:center;
justify-content:center;
background:#f5f5f5;
border:1px dashed #ccc;
}

.product-image{
width:100%;
height:220px;
object-fit:cover;
}

.product-price{
font-size:22px;
font-weight:bold;
margin-top:10px;
margin-bottom:10px;
}

.order-button{
display:inline-block;
background:#0073aa;
color:#fff;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
}

.order-button:hover{
color:#fff;
}

.out-of-stock{
color:red;
font-weight:bold;
}

.order-container{
max-width:1000px;
margin:auto;
}

.order-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.order-grid label{
display:block;
font-weight:600;
margin-bottom:6px;
}

.order-grid input,
.order-grid select{
width:100%;
padding:10px;
box-sizing:border-box;
}

.submit-container{
margin-top:25px;
}

.submit-container button{
padding:12px 25px;
font-size:16px;
cursor:pointer;
}

#orderMessage{
margin-top:15px;
color:red;
}

@media(max-width:768px){

.order-grid{
grid-template-columns:1fr;
}

}