.product {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 150px;

    background: linear-gradient(-45deg, rgba(64,29,1,1), rgba(156,90,38,1));
}



.product_imgBx {
    position: relative;
    width: 95%;
}
.product_imgBx div {
    position: absolute;
    top: 0;
    right: calc(50% * var(--product_imgShadow));
    width: 50%;
    height: 100%;
    background: #fff;
}
.product_imgBx.active div {
    animation: product_imgBx .5s linear forwards;
    animation-delay: .5s;
}
@keyframes product_imgBx {
    0% {
        width: 50%;
    }
    60% {
        width: 30%;
    }
    100% {
        width: 0%;
    }
}
.product_imgBx img {
    width: 100%;
}



.product_text {
    position: relative;
    width: 95%;
    margin-left: auto;

    background: #fff;

    transform: translateY(-3px);
}
.product_text > p {
    position: absolute;
    top: -30px;
    left: 0;
    width: 300px;

    color: #6e3201;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 1rem;
    line-height: 300px;
    writing-mode: vertical-lr;

    transition: .5s;
    transition-delay: .5s;
    transform: translateX(-100px);
    opacity: 0;
}
.product_text.active > p {
    transform: translateX(0);
    opacity: 1;
} 
.product_textContext {
    position: relative;
    margin-left: 30rem;
    padding: 12rem 0;
}
.product_textContext p:nth-child(1) {
    position: absolute;
    top: -72px;
    left: 0px;
    background: linear-gradient(90deg, rgba(64,29,1,1), rgba(156,90,38,1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 10rem;
    font-weight: 700;
    text-transform: uppercase;

    transition: .5s;
    transition-delay: 1s;
    transform: translateX(-100px);
    opacity: 0;
}
.product_text.active .product_textContext p:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
} 
.product_textContext p:nth-child(2) {
    margin-bottom: 2.5rem;

    line-height: 1.7;
    letter-spacing: 2px;
} 
.product_textContext a {
    position: relative;
    padding: 5px 0;

    border-bottom: solid 2px #6e3201;

    color: #6e3201;
    text-decoration: none;

    transition: .5s;
    transition-delay: 1s;
    transform: translateY(50px);
    opacity: 0;
}
.product_text.active .product_textContext a {
    transform: translateY(0px);
    opacity: 1;
} 
.product_textContext a::before {
    content: '→';
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 100%;

    font-weight: 1000;
    text-align: center;
    line-height: 30px;

    transition: .5s;
}
.product_textContext a:hover::before {
    transform: translateX(10px);
}
.product_textContext a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0%;
    height: 2px;

    background: #fff;
}
.product_textContext a:hover::after {
    animation: detailA 1s linear forwards;
}
@keyframes detailA {
    0% {
        right: 100%;
        width: 0%;
    }
    60% {
        right: 20%;
        width: 80%;
    }
    100% {
        right: 0%;
        width: 0%;
    }
}





@media screen and (max-width: 1100px) {
    .product_text {
        position: relative;
        width: 100%;
        margin-left: 5rem;
    
        background: #fff;
    }
    .product_text > p {
        width: 200px;
        line-height: 200px;
    }
    .product_textContext {
        position: relative;
        width: 400px;
        margin: 0 0 0 20rem;
        padding: 100px 0 100px;
    }
    .product_textContext p:nth-child(1) {
        top: -60px;
        font-size: 10rem;
    }
    .product_textContext a::before {
        content: '→';
        position: absolute;
        top: 0;
        right: -40px;
        width: 40px;
        height: 100%;
    
        font-weight: 1000;
        text-align: center;
        line-height: 30px;
    
        transition: .5s;
    }
    .product_textContext a:hover::before {
        transform: translateX(10px);
    }
    .product_textContext a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        right: 0;
        width: 0%;
        height: 2px;
    
        background: #fff;
    }
    .product_textContext a:hover::after {
        animation: detailA 1s linear forwards;
    }
}





@media screen and (max-width: 900px) {
    .product_text {
        margin-left: 0;
    }
    .product_text > p {
        width: 100px;
        font-size: 2.4rem;
        line-height: 100px;
    }
    .product_textContext {
        padding: 80px 0 100px;
        margin-left: auto;
    }
    .product_textContext p:nth-child(1) {
        top: -20px;
        font-size: 4.6rem;
    }
}





@media screen and (max-width: 520px) {
    .product_text > p {
        top: -20px;
        width: 80px;

        line-height: 80px;
    }
    .product_textContext {
        position: relative;
        width: 300px;
        margin: 0 0 0 auto;
        padding: 60px 0 100px;
    }
}