.hero-categories h1 {
    color: var(--text-light);
    margin-bottom: 1.4rem;

}

.categories-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;

}

.category-item {
    background-color: var(--text-light);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    transition: all 200ms ease-in-out;
    max-width: 200px;
}

.category-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.category-item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.category-item h2 {
    font-size: 1rem;
    text-align: center;
    margin: 0;
    margin-top: 10px;
}

/* product */
.product-card {
    background-color: var(--text-light);
}
