.img-box {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
}

.product img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background-color: #f1f1f1;
    transition: transform 2s ease;
}

.products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.product {
    padding: 5px;
}

.product a {
    text-decoration: none;
    color: var(--grey);
}

.product h3 {
    font-size: var(--font-size-h3);
}

.product p {
    font-size: var(--font-size-p);
}

.product:hover a {
    color: var(--red);
}

.product:hover img {
    transform: scale(1.2);
}

.product:hover {
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5);
}

.colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.title {
    text-align: center;
    padding: 5vh 5vw;
    line-height: 40px;
    position: relative;
}

.title h1 {
    font-size: var(--font-size-h2);
    color: var(--grey);
}

.title h2 {
    font-size: var(--font-size-h3);
    color: #666666;
}

.title strong {
    color: var(--red);
}

.cart-btn {
    position: absolute;
    top: 6vh;
    right: 4vw;
    color: #666666;
}

.cart-btn:hover {
    color: var(--red);
}

.cart-btn span {
    display: none;
}