﻿
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
}

/* Columns */
.left-column {
    width: 65%;
    position: relative;
    margin-top: 60px;
}

.right-column {
    width: 35%;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
}

.product-price .promocao {
    color: red;
    text-decoration: line-through;
}

/* Left Column */
.left-column img {
    width: 50%;
    position: absolute;
    left: 20%;
    object-fit: contain;
    top: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

    .left-column img.active {
        opacity: 1;
    }

/* Product Description */
.product-description {
    border-bottom: 1px solid #E1E8EE;
    margin-bottom: 20px;
}

    .product-description span {
        font-size: 12px;
        color: #358ED7;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .product-description h1 {
        font-weight: 300;
        font-size: 52px;
        color: #43484D;
        letter-spacing: -2px;
    }

    .product-description p {
        font-size: 20px;
        font-weight: 300;
        color: #86939E;
        line-height: 24px;
    }



/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: left;
}

    .product-price span {
        font-size: 26px;
        font-weight: 300;
        color: #43474D;
        margin-right: 20px;
    }

.cart-btn {
    display: inline-block;
    background-color: #7DC855;
    border-radius: 6px;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 30px;
    transition: all .5s;
}

    .cart-btn:hover {
        background-color: #64af3d;
    }
