
.products .product .product-image {
    position: relative;
    height: 200px;
    z-index: 10;
    transform-origin: 0% 100%;
    transition: all .3s ease-in-out
}

.products .product .product-image img {
    width: auto;
    height: 100%
}

.products .product .product-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--src);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    opacity: 1;
    transform: scale(0.65);
    transition: all .3s ease-in-out
}

.products .product .product-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--src);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 1;
    transform: scale(0.85);
    transition: all .3s ease-in-out
}

.products .product:hover .product-image {
    transform: rotate(-5deg)
}

.products .product:hover .product-image:before {
    opacity: .6;
    transform: translateX(4.1rem) rotate(20deg) scale(0.65)
}

.products .product:hover .product-image:after {
    opacity: .75;
    transform: translateX(2rem) rotate(10deg) scale(0.85)
}

.brand {
    width: 8.5rem;
}

.brand1 {
    width: 10.5rem;
}

.brand .brand-image {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.brand .brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand1 .brand1-image {
    width: 100%;
    aspect-ratio: 1 / 0.7;
}

.brand1 .brand1-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.color-button {
    display: inline-flex;
    align-items: center;
    margin: 5px;
    padding: 5px 8px;
    border-radius: 20px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.color-circle {
    align-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
}