.product-page-container .products-section .products {
    margin-top: 0;
}

.product-page-container .products-section {
    padding: 30px 0 !important;
}

.subheader-product-page {
    position: relative;
    background-position: center !important;
}

.product-page-container .product-accessories h3, .others-products-section h3 {
    margin: 60px 10px 0;
    text-align: center;
}

.product-page-container .product-accessories .products li {
    min-height: 0
}

.product-page-container .subproducts {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .05);
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.product-page-container .subproducts li {
    width: 100%;
    min-height: 150px;
    background: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
    border-top: 1px solid #e5e5e5;
}

.product-page-container .subproducts li:first-child {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top: 1px solid #e5e5e5;
}

.product-page-container .subproducts li:last-child {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.product-page-container .subproducts li > div {
    display: flex;
    height: 100%;
    width: 100%;
}

.product-page-container .subproducts li .product-image {
    min-height: 200px;
    width: 250px;
    background-position: bottom;
    background-size: cover;
    border-right: 1px solid #e5e5e5;
    background-repeat: no-repeat;
}

.product-page-container .subproducts li .content {
    width: calc(100% - 250px);
}

.product-page-container .subproducts li .content,
.product-page-container .subproducts li > div.button {
    padding: 20px;
}

.product-page-container .subproducts li .content h6 {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 30px;
    padding: 7px 15px;
    display: inline-block;
    text-shadow: 0 0 4px rgba(0, 0, 0, .05);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
}

.product-page-container .subproducts li .content p {
    font-size: 15px;
    font-weight: 500;
}

.product-page-container .subproducts li div.button {
    display: flex;
    align-items: center;
    border-left: 1px solid #e5e5e5;
    background: #fafafa;
    box-shadow: inset 5px 0 5px -5px rgba(0, 0, 0, .1);
    min-height: 150px;
    padding: 20px;
}

.product-page-container li a {
    border: 2px solid var(--green);
    background: var(--white);
    transition: .4s;
}

.product-page-container li a span {
    color: var(--green);
}

.product-page-container li a:hover {
    background: var(--green);
    border-color: var(--black);
}

.product-page-container li a:hover span {
    color: var(--black);
}

@media screen and (max-width: 1024px) {
    .product-page-container .subproducts li {
        min-height: auto;
    }

    .product-page-container .subproducts li > div {
        flex-direction: column;
        height: auto;
    }

    .product-page-container .subproducts li div.button {
        width: 100%;
        border-top: 1px solid #e5e5e5;
        border-left: 0;
        justify-content: center;
        min-height: auto;
    }

    .product-page-container .subproducts li .product-image {
        display: none;
    }

    .product-page-container .subproducts li .content {
        width: 100%;
    }
}
