       body{
    margin:0;
    background:#f5f5f5;
    font-family:Segoe UI,sans-serif;
}

/* Push products below fixed header */
.container{
    max-width:1000px;
    margin:auto;
    padding:130px 15px 15px;
}

.top-bar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:white;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.store-header{
    padding:10px 15px;
    display:flex;
    align-items:center;
    gap:12px;
    border-bottom:1px solid #eee;
}

.store-header img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.search-box{
    padding:10px 15px;
}

.search-box form{
    display:flex;
    gap:8px;
}

.search-box input{
    flex:1;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
}

.search-box button{
    background:#ff6a00;
    color:white;
    border:none;
    padding:12px 16px;
    border-radius:8px;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}
.product-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 1px 4px rgba(0,0,0,.08);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.product-info{
    padding:12px;
}

.product-name{
    font-size:15px;
    font-weight:600;
    margin-bottom:8px;
}

.product-price{
    color:#ff6a00;
    font-weight:bold;
    margin-bottom:10px;
}

.cart-form{
    display:flex;
    gap:8px;
}

.cart-form input{
    width:60px;
    padding:6px;
}

.cart-form button{
    flex:1;
    background:#ff6a00;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.stock{
    font-size:12px;
    color:green;
    margin-top:8px;
}
.category-toggle{
    width:100%;
    background:#0B1A3F;
    color:white;
    border:none;
    padding:12px;
    border-radius:8px;
    margin-bottom:10px;
    cursor:pointer;
}

.category-bar{
    display:none;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:15px;
}
.category-bar .cat{
    padding:8px 12px;
    background:white;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
    color:#333;
    border:1px solid #ddd;
    transition:.2s;
}

.category-bar .cat:hover{
    background:#ff6a00;
    color:white;
}
.category-bar.show{
    display:flex;
}
.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin:20px 0;
}

.pagination a{
    padding:6px 12px;
    background:white;
    border:1px solid #ddd;
    border-radius:6px;
    text-decoration:none;
}
.low-stock{
    color:orange;
    font-weight:600;
}

.stock{
    font-size:12px;
    margin-top:8px;
}
.discount-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:red;
    color:white;
    padding:4px 8px;
    font-size:11px;
    border-radius:4px;
}
.product-card{
    position:relative;
}
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card img {
        height: 140px;
    }
}
.old-price {
    color: #888;
    font-size: 13px;
}

.strike {
    text-decoration: line-through;
}

.new-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff6a00;
}

.discount-label {
    background: #ff3b3b;
    color: white;
    padding: 3px 6px;
    font-size: 11px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
}