
.productsnavin2{
    background: #e2e2e2;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.shoppingMiniPage .mainImg {
    width: 100%;
    max-height: 480px;
    padding: 5%;
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    overflow: hidden;
}

.shoppingMiniPage .mainImg img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}
.shoppingMiniPage .productInfo .title {
    font-weight: bold;
}
.shoppingMiniPage .productInfo .price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.shoppingMiniPage .productInfo .price .off {
    color: #D32F2F;
    background-color: #fff6f6;
    background-image: linear-gradient(135deg, #fff6f6 0%, #fbe6e6 100%);
    border: 1px solid #fbe6e6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 30px 30px 0 30px;
    padding: 5px 10px;
    margin-bottom: 5px;
    position: relative;
    font-weight:bold;
}
.shoppingMiniPage .productInfo .price .off:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 98%;
    right: 0;
    top: 48%;
    background: #D50000;
    opacity: .3;
    transform: rotate(5deg);
}
.shoppingMiniPage .productInfo .price .realPrice {
    color: #1B5E20;
    background-color: #f6fff7;
    background-image: linear-gradient(55deg, #f6fff7 0%, #caffe8 100%);
    border: 1px solid #caffe8;
    padding: 8px 15px;
    border-radius: 30px 0 30px 30px;
}
.shoppingMiniPage .txt img {
    width: 100%;
}

