/* E-COMMERCE — CSS3
   Styles product catalogue, cart and checkout pages. */
.shop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.shop-card{background:#fff;border:1px solid #e1e6ef;border-radius:18px;padding:20px;display:flex;flex-direction:column;min-height:390px}
.shop-image{height:150px;border-radius:12px;background:#eef2f8;display:grid;place-items:center;overflow:hidden;margin-bottom:18px;color:#7a8599;font-size:12px}
.shop-image img{width:100%;height:100%;object-fit:cover}
.shop-card h3{font-family:"Space Grotesk",sans-serif;font-size:21px;margin:0 0 5px}.shop-card p{font-size:13px;color:#6d7890;margin:0 0 15px}
.price-options{display:grid;gap:6px;margin-top:auto}.price-option{border:1px solid #e0e5ee;border-radius:9px;padding:9px 10px;display:flex;justify-content:space-between;align-items:center;font-size:11px}.price-option strong{font-size:13px}
.shop-actions{display:flex;gap:8px;margin-top:12px}.shop-actions .btn{flex:1;padding:11px 10px;font-size:12px}
.cart-badge{display:inline-grid;place-items:center;min-width:20px;height:20px;padding:0 5px;border-radius:99px;background:#fff;color:#3148ff;font-size:10px;margin-left:4px}
.cart-layout{display:grid;grid-template-columns:1.3fr .7fr;gap:20px}.cart-items{display:grid;gap:10px}.cart-item{background:#fff;border:1px solid #e1e6ef;border-radius:14px;padding:16px;display:grid;grid-template-columns:70px 1fr auto;gap:15px;align-items:center}.cart-item img{width:70px;height:60px;object-fit:cover;border-radius:8px;background:#eef2f8}.cart-item h3{margin:0;font-size:15px}.cart-item p{margin:3px 0;color:#778299;font-size:11px}.cart-total{background:#fff;border:1px solid #e1e6ef;border-radius:14px;padding:22px;height:max-content;position:sticky;top:95px}.total-row{display:flex;justify-content:space-between;padding:8px 0;font-size:13px}.total-row.grand{border-top:1px solid #e3e7ef;margin-top:8px;padding-top:15px;font-weight:800;font-size:18px}.qty{display:flex;align-items:center;gap:8px}.qty button{width:27px;height:27px;border:1px solid #d9e0eb;background:#fff;border-radius:6px;cursor:pointer}.checkout-form{display:grid;gap:13px}.checkout-form label{font-size:11px;font-weight:800;color:#526078}.checkout-form input,.checkout-form select,.checkout-form textarea{display:block;width:100%;margin-top:6px;border:1px solid #d9e0eb;border-radius:8px;padding:11px;font:inherit}
.payment-box{padding:14px;background:#f4f7fb;border-radius:10px;font-size:12px;color:#65708a}.order-success{background:#e5f6eb;color:#18733f;border:1px solid #bfe6cd;border-radius:12px;padding:18px;font-size:13px}
.orders-table{width:100%;border-collapse:collapse;min-width:650px}.orders-table th,.orders-table td{padding:12px;border-bottom:1px solid #edf0f4;text-align:left;font-size:12px}.orders-table th{font-size:10px;text-transform:uppercase;color:#68738a;background:#f5f7fa}
@media(max-width:850px){.shop-grid{grid-template-columns:repeat(2,1fr)}.cart-layout{grid-template-columns:1fr}.cart-total{position:static}}
@media(max-width:550px){.shop-grid{grid-template-columns:1fr}.cart-item{grid-template-columns:55px 1fr}.cart-item>div:last-child{grid-column:2}.cart-item img{width:55px;height:50px}}
