.mex-title{color:#fff;font-size:42px;font-weight:700;margin:20px;}
.mex-wrapper{display:flex;background:#1f2c30;}
.mex-categories{width:25%;padding:15px;}
.mex-category{background:#e9e9e9;margin-bottom:10px;padding:12px 15px;border-radius:25px;cursor:pointer;position:relative;}
.mex-category::before{content:'';position:absolute;left:0;top:0;height:100%;width:6px;background:red;border-radius:25px 0 0 25px;}
.mex-products{width:75%;padding:30px;}
.mex-products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.mex-product-card{background:#fff;padding:20px;text-align:center;border-radius:6px;position:relative;}
.mex-product-card::before{content:'';position:absolute;top:0;left:20%;width:60%;height:6px;background:#e11b22;}
.mex-product-card img{width:100%;height:220px;object-fit:contain;background:linear-gradient(to bottom,#fff,#dbe7ef);padding:15px;}
.price{color:#e11b22;font-weight:bold;}
.gst-note{font-size:13px;color:#666;}
.qty{width:80px;padding:8px;margin:10px auto;}
.add-to-cart{background:#1f2c30;color:#fff;padding:12px;border-radius:25px;margin-top:10px;}
.buy-now{background:#e11b22;color:#fff;padding:12px;border-radius:25px;margin-top:10px;}

@media(max-width:768px){
.mex-wrapper{flex-direction:column;}
.mex-categories{width:100%;display:flex;overflow-x:auto;gap:10px;}
.mex-category{min-width:200px;}
.mex-products{width:100%;}
.mex-products-grid{grid-template-columns:1fr;}
}
