/*  products/products.css  */


body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    margin: auto;
    padding: 0;
    background: hsl(216 12% 94%) !important;
    color: #111;
    max-width: 1201px;
}
a {
    text-decoration: none;
    }
header {
    position: fixed;
    top: 0;
    width: -webkit-fill-available;
    border-bottom: 0px solid #eee;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 10;
    justify-content: flex-end;
    max-width: 1200px;
    }
.logo {
    font-weight: 300;
    margin: 160px 0px 0px 0px;
    font-size: 25px;
    text-align: center;
    }
.spacer {
    flex: 1;
    }
.auth-btn, .logout-btn {
    border: 0;
    background: #111111;
    color: #fff;
    padding: 5px 11px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 11px;
    }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 10px;
    padding: 10px;
    justify-items: center;
    }

@media (min-width: 425px) {
    .grid {grid-template-columns: repeat(auto-fit, minmax(179px, 1fr)); }
    }

.card {
    background: #fff;
    border: 0px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(0px);
    transition: 0s;
    max-width: 387px;
    box-shadow: 0px 0px 8px 0px #3a5fa121;
    justify-content: space-between;
    }
.card:hover {
    transform: translateY(-5px);
    transition: 0.2s;
    }
.card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    }
.card .meta {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-direction: column-reverse;
    }
.name {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 300;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 31px;
    }
.price {
    color: #009d89;
    font-size: 17px;
    }
.cat {
    font-size: 12px;
    color: #666;
    }
.toolbar {
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    gap: 6px;
    background: #eeeff2;
    padding: 65px 10px 10px 10px;
    }
.toolbar input[type="search"] {
    outline: 0;
    font-size: 16px;
    color: #000;
    border: 0px solid #cacbcd;
    width: -webkit-fill-available;
    flex: 1;
    min-width: 260px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffffff;
    }
.toolbar input[type="search"]:hover {background: #fff;}
.toolbar select {
    border: 0px solid #999999;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(/img/icon24+.png);
    background-repeat: no-repeat;
    background-position: 169px 15px;
    background-size: 15px;
    cursor: pointer;
    outline: 0;
    font-size: 16px;
    padding: 11px 0px 11px 13px;
    color: #000000;
    width: 200px;
    flex-shrink: 0;
    border-radius: 10px;
    }
.toolbar button {
    border: 0px solid #999999;
    background: #ffffff;
    cursor: pointer;
    outline: 0;
    font-size: 16px;
    color: #000000;
    width: 74px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    }
.status {
    padding: 0 10px;
    color: #009f90;
    text-align: center;
    margin: -8px 0 0 0;
    }
.loadmore {
    display: flex;
    justify-content: center;
    padding: 12px;
    }
.loadmore button {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 99910px;
    background: #fff;
    cursor: pointer;
    font-size: 17px;
    min-width: 240px;
    }
.pill {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #555;
    display: inline-block;
    }
.avatar-initial {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #999;
    color: #fff;
    font-weight: 700;
    }

