* { box-sizing: border-box; }
body { margin:0; font-family: Tahoma, sans-serif; direction: rtl; background:#f4f7fb; color:#1c2b3a; }
a { text-decoration:none; color:inherit; }

.store-header { background: linear-gradient(135deg,#1b4f9c,#3f7fd6); color:#fff; padding: 26px 20px; }
.store-header-inner { max-width:1200px; margin:auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.store-brand { display:flex; align-items:center; gap:14px; }
.store-logo { width:56px; height:56px; border-radius:10px; object-fit:cover; background:#fff; }
.store-brand h1 { margin:0; font-size:24px; }
.store-brand .slogan { margin:4px 0 0; font-size:13px; opacity:.9; }
.store-search { display:flex; gap:8px; }
.store-search input { padding:10px 14px; border-radius:8px; border:none; width:240px; }
.store-search button { padding:10px 18px; border-radius:8px; border:none; background:#173d78; color:#fff; cursor:pointer; }

.store-container { max-width:1200px; margin:26px auto; display:flex; gap:24px; padding:0 20px; align-items:flex-start; }
.store-sidebar { width:220px; background:#fff; border-radius:12px; padding:18px; box-shadow:0 1px 4px rgba(0,0,0,.06); flex-shrink:0; }
.store-sidebar h3 { margin-top:0; font-size:15px; }
.cat-list { list-style:none; padding:0; margin:0; }
.cat-list li a { display:block; padding:8px 10px; border-radius:6px; font-size:14px; color:#334; }
.cat-list li a.active, .cat-list li a:hover { background:#e8f0fd; color:#1b4f9c; }

.store-main { flex:1; }
.product-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap:18px; }
.product-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,.06); transition:.2s; }
.product-card:hover { transform: translateY(-3px); box-shadow:0 6px 16px rgba(0,0,0,.1); }
.product-image { position:relative; height:170px; background:#f0f3f8; }
.product-image img { width:100%; height:100%; object-fit:cover; }
.stock-badge { position:absolute; top:10px; left:10px; padding:4px 10px; border-radius:20px; font-size:11px; color:#fff; }
.in-stock { background:#2fb380; }
.out-stock { background:#e5566d; }
.product-info { padding:12px 14px; }
.product-name { font-size:14px; margin:0 0 8px; min-height:36px; }
.product-price { color:#1b4f9c; font-weight:bold; font-size:15px; }
.no-products { text-align:center; color:#889; padding:40px; }

.pagination { display:flex; gap:6px; justify-content:center; margin-top:26px; }
.pagination a { padding:8px 14px; background:#fff; border-radius:6px; box-shadow:0 1px 3px rgba(0,0,0,.08); }
.pagination a.active { background:#1b4f9c; color:#fff; }

.store-footer { text-align:center; padding:20px; color:#778; font-size:13px; }
