/* =====================================
   Zenofy – Global App Styles (Minified-ready)
   ===================================== */

*{margin:0;padding:0;box-sizing:border-box}
html,body{width:100%;height:100%}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;background:#ffffff;color:#111;line-height:1.5}

/* Links */
a{text-decoration:none;color:inherit}
a:hover{opacity:.9}

/* Layout */
.container{max-width:1200px;margin:0 auto;padding:16px}
.row{display:flex;flex-wrap:wrap}
.col{flex:1}

/* Header / Navbar */
header{width:100%;background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:100}
.navbar{display:flex;align-items:center;justify-content:space-between;padding:14px 16px}
.navbar a{margin-right:16px;font-weight:500}

/* Buttons */
.btn{display:inline-block;padding:10px 18px;border-radius:6px;border:none;cursor:pointer;font-weight:500}
.btn-primary{background:#000;color:#fff}
.btn-secondary{background:#f3f3f3;color:#000}
.btn-danger{background:#e53935;color:#fff}

/* Forms */
input,select,textarea{width:100%;padding:10px;border:1px solid #ddd;border-radius:6px;outline:none}
input:focus,textarea:focus{border-color:#000}

/* Product Card */
.product-card{border:1px solid #eee;border-radius:8px;padding:12px;transition:.2s}
.product-card:hover{box-shadow:0 4px 20px rgba(0,0,0,.08)}
.product-card img{width:100%;border-radius:6px}
.product-title{font-size:16px;font-weight:600;margin:8px 0}
.product-price{font-size:15px;font-weight:700}

/* Cart */
.cart-item{display:flex;justify-content:space-between;align-items:center;padding:12px 0;border-bottom:1px solid #eee}

/* Footer */
footer{background:#fafafa;border-top:1px solid #eee;padding:20px;text-align:center;font-size:14px}

/* Utilities */
.text-center{text-align:center}
.hidden{display:none}
.mt-1{margin-top:8px}
.mt-2{margin-top:16px}
.mt-3{margin-top:24px}

/* Responsive */
@media(max-width:768px){
.navbar{flex-direction:column;align-items:flex-start}
.container{padding:12px}
}
