@import url("partials/short-hero.css");
@import url("partials/product-card.css");

#products-grid-view {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 30px;
    row-gap: 60px;
}

img {
    outline-style: none;
    border-style: none;
}

.categories-container {
    display: flex;
    align-items: center;
    align-self: stretch;
    height: 50px;
    border-radius: 20px;
    box-shadow: 0 0 10px -5px #000;
    gap: 15px;
}

.category-slide-button {
    height: 100%;
    aspect-ratio: 1;
    border-style: none;
    background-color: transparent;
    color: #888;
}

.category-list {
    display: flex;
    align-self: stretch;
    flex-grow: 1;
    gap: 10px;
    overflow: auto;
    scrollbar-width: none;
}

.category-list:focus {
    outline-style: none;
}

.category-list::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    min-width: 130px;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    padding: 0 10px;
    border-radius: 10px;
    background-color: #eee;
    text-decoration: none;
    color: #444;
    transition: background-color .3s ease,
                color .3s ease;
}

.category-item:hover {
    color: white;
    background-color: var(--primary-color);
}
