.single-product-section {
    display: flex;
    justify-content: center;
}


.sp-container {
    display: flex;
    width: 100%;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.07);
    border-radius: 5px;
    min-height: 440px;
}

.sp-image img {
    height: 100%;
    width: 100%;
    min-width: 300px;
    object-fit: contain;
}

.sp-image, .sp-details {
    background-color: white;
}

.sp-image {
    width: 40%;
}

.sp-details {
    text-align: start;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.sp-details .sp-sku {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-gray-2);
}

.sku {
    font-weight: 500;
    color: var(--text-gray-1);
}

.sp-details .sp-buy p {
    margin-bottom: 0 !important;
}

.sp-details .sp-buy .sp-price {
    font-size: 2.2rem;
    font-weight: 550;
    color: var(--text-dark);
    margin-bottom: .6rem;
}

.sp-buy .cart {
    display: flex;
    height: 40px;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: .2rem;
}

.sp-buy .single_add_to_cart_button {
    background-color: transparent !important;
    border: solid 2px var(--main-color) !important;
    color: var(--main-color) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border-radius: 5px !important;
}

.sp-buy .single_add_to_cart_button:hover {
    background-color: var(--main-color) !important;
    color: white !important;
}

@media screen and (max-width: 900px) {
    .sp-container {
        flex-direction: column;
    }

    .sp-details, .sp-image {
        width: 100%;
        min-width: 0;
    }
}