/* Utils */
.section-divider {
    margin-top: 30px;
    margin-bottom: 30px;
    border-color: var(--primary);
    opacity: .5;
}
/* End Utils */

/* Aside */
.aside-image-big > img {
    width: 100%;
    height: 63vh;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid var(--border);
}

.aside-image-small {
    padding: 4px;
    cursor: pointer;
}

.aside-image-small > img {
    -o-object-fit: fill;
       object-fit: fill;
    width: 100px;
    height: 100px;
}
/* End Aside */

/* Detail */
.product-variant-container {
    margin-top: 24px;
    width: 30%;
}

.detail-divider {
    margin: 24px 0;
    width: 60%;
    border-color: var(--primary);
}

.detail-qty {
    color: var(--black);
    font-family: var(--body-1);
    font-weight: 700;
    width: 40%;
    margin-right: 48px;
    margin-bottom: 16px;
}

.detail-cart {
    background: var(--secondary);
    border-radius: 4px;
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    height: 42px;
    padding: 6px 16px;
    transition: var(--transition);
}

.detail-buy-now {
    background: var(--primary);
    border-radius: 4px;
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    height: 42px;
    padding: 6px 16px;
    transition: var(--transition);
}

.detail-cart:hover {
    color: var(--white);
    filter: brightness(.8);
}

.detail-btn-back {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 32px;
    width: -moz-fit-content;
    width: fit-content;
}

.detail-input {
    border: 1px solid var(--primary);
    border-radius: 0;
}


.detail-button-size {
    margin-right: 16px;
    float: left;
    width: 60px;
    height: 38px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--primary);
    border-radius: 8px;
}

.detail-button-size .btn {
    padding: 4px;
}

.detail-button-size label,
.detail-button-size input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.detail-button-size input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.detail-button-size input[type="radio"]:hover {
    border: 2px solid var(--primary);
}

.detail-button-size input[type="radio"]:checked + label {
    background: var(--primary);
    border-radius: 4px;
    color: white;
}

.detail-button-size label {
    cursor: pointer;
    z-index: 90;
    font-size: 16px;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: var(--font-2);
    font-weight: 400;
    line-height: 24px;
}

/* End Detail */

@media (max-width: 767.98px) {

    /* Utilities */
    .page-header {
        padding-bottom: 48px;
    }
    /* End Utilities */

    .product-variant-container {
        margin-top: 24px;
        width: 100%;
    }

    /* Aside */
    .aside-image-big > img {
        height: auto;
    }

    .aside-image-small > img {
        width: 100%;
        height: auto;
    }
    /* End Aside */

    /* Detail */
    .detail-button-size {
        width: 70px;
    }

    .detail-button-size label {
        font-size: 12px;
    }
    /* End Detail */

    /* Section */
    .section-divider {
        width: 100%;
    }
    /* End Section */
}

@media (min-width: 768px) and (max-width: 997.98px) {

    /* Aside */
    .aside-image-big > img {
        height: 400px;
    }

    .aside-image-small > img {
        width: 100%;
        height: auto;
    }
    /* End Aside */


}

