/* assets/css/shop.css */

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f4f5f7;
    color:#111;
}

.topbar{
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:18px 24px;
}

.topbar h1{
    margin:0;
}

.shop-container{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

/* STATES */

.status-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    padding:40px;
    text-align:center;
}

.hidden{
    display:none;
}

/* SPINNER */

.spinner{
    width:50px;
    height:50px;
    border:5px solid #ddd;
    border-top:5px solid #111;
    border-radius:50%;
    margin:0 auto 20px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* PRODUCTS */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:20px;
}

.product-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.product-content{
    padding:16px;
}

.product-content h3{
    margin-top:0;
}

.price{
    font-size:20px;
    font-weight:bold;
    margin:14px 0;
}

button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:6px;
    background:#111;
    color:#fff;
    cursor:pointer;
}

button:hover{
    background:#333;
}