

.woocommerce {
    width: 100%;
}
.woocommerce .products {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2.4rem;
}
.products .product {
    width: calc(33.33% - 1.6rem);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
}
.related-products .products .product,
.home .products .product {
    width: 100%;
}
.products .product:hover {

}
.products .product .product__wrapping-link {
    display: block;
    width: 100%;
}
.products .product .product__images {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 2.4rem;
}

.products .product .product__images .swiper-product-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.products .product .product__images .swiper-product-images .swiper-wrapper {

}
.products .product .product__images .swiper-product-images .swiper-controls {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    flex-direction: row;
    align-items: stretch;
    z-index: 50;
    pointer-events: none;
}
.products .product .product__images .swiper-product-images .swiper-pagination {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.products .product .product__images .swiper-product-images .swiper-pagination-bullet {
    width: 100%;
    pointer-events: auto;
    position: relative;
    display: block;
}
.products .product .product__images .swiper-product-images .swiper-pagination-bullet:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 1.2rem;
    height: .2rem;
    background-color: rgba(0, 0, 0, .15);
    content: '';
    display: block;
    transition: .3s;
}
.products .product .product__images .swiper-product-images .swiper-pagination-bullet-active {

}
.products .product .product__images .swiper-product-images .swiper-pagination-bullet-active:before {
    background-color: #917154;
    opacity: .7;
}

.products .product .product__images .product__image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.products .product .product__images .product__image-wrap:before {
    padding-top: 100%;
    content: '';
    display: block;
}
.products .product .product__images .product__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.products .product .product__images .product__remaining-images {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.products .product .product__details {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-grow: 1;
}
.products .product .woocommerce-loop-product__title {
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    display: block;
    line-height: 1.2;
}

.products .product .product__attributes {
    margin-top: 1.2rem;
}
.products .product .product__attribute {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    flex-direction: row;
}
.products .product .product__attribute .attribute-item {
    display: flex;
    align-items: center;
    height: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    background-color: rgba(0, 0, 0, .05);
    padding: 0 1rem;
    border-radius: 20rem;
}

.products .product .product__description {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.products .product .product__spacing {
    display: flex;
    flex-shrink: 1;
    width: 100%;
    height: 100%;
}

.products .product .product__cart {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-top: 1.2rem;
    width: 100%;
}
.products .product .price {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.products .product .price .price-prefix {
    order: 0;
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: #859376;
}
.products .product .price del {
    order: 20;
    margin-left: .6rem;
    display: block;
}
.products .product .price ins {
    order: 10;
    display: block;
}
.products .product .amount {
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: #859376;
}
.products .product .price del .amount {
    color: #333;
    font-weight: 400;
    font-size: 1.4rem;
    text-decoration: line-through;
}
.products .product .price ins .amount {

}

.products .product .button.add_to_cart_button {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    text-transform: uppercase;
    z-index: 10;
    height: 2.4rem;
    background-color: #859376;
    border-radius: 10rem;
    transition: .2s;
    padding: 0 1.2rem;
    color: #fff;
    font-weight: 700;
    transition: .3s;
}
.products .product .button.add_to_cart_button.on {

}
.products .product .added_to_cart {
    display: none !important;
}






