/* ITEM - 상품 */
.new-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 5px;
    font-size: 10px;
    background-color: #ff0085 !important;
    color: white !important;
    border-radius: 4px;
}
.i-product {
    vertical-align: top;
}

.i-product .item {
    min-width: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}

.i-product .item .thumb {
    position: relative;
    width: 100%;
    background: rgb(187, 189, 196);

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}
.i-product .item .thumb:hover .thumb-img {
    transform: scale(1.05);
}
.i-product .item .thumb .thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: transform 1s ease;
}
.i-product .item .thumb .count {
    position: absolute;
    top: 0;
    left: 0;
    background: #FF7571;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    z-index: 10;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}
.i-product .item .thumb::before {
    content: '';
    display: inline-block;
    margin-top: 100%;
}

.i-product .item .pr-tags {
    padding: 3px 0px;
    display: inline-block;
    width: 100%;
    margin-top: 16px;
}

.i-product .item .pr-tags li.active {
    opacity: 1;
}

.i-product .item .pr-tags li {
    float: left;
    opacity: 1;
    margin-right: 5px;
    padding: 3px 5px;
    font-size: 14px;
    color: #8F8F8F;
    background: #F6F7F8;
}

.i-product .item .subs {
    color: #8f8f8f;
    font-size: 15px;
    margin-top: 8px;
    /* font-size: 13px;
    line-height: 1;     */
}

.i-product .item .tit {
    color: #0f0f0f;
    font-weight: 500;
    font-size: 18px;
    margin-top: 4px;
    word-break: break-all;
}

/* ITEM - 단일상품*/
.i-product-single {
    vertical-align: top;
}
.i-product-single .item {
    min-width: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}

.i-product-single .item .thumb:hover .thumb-img {
    transform: scale(1.05);
}
.i-product-single .item .thumb .thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    transition: transform 1s ease;
}
.i-product-single .item .thumb {
    position: relative;
    width: 100%;
    background: rgb(187, 189, 196);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;    
    overflow: hidden;
}

.i-product-single .item .thumb::before {
    content: '';
    display: inline-block;
    margin-top: 100%;
}

.i-product-single .item .subs {
    color: #8f8f8f;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 7px;
    /* overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; */
}

.i-product-single .item .tit {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0f0f0f;
    font-weight: 500;
    font-size: 18px;
    margin-top: 15px;
    word-break: break-all;
}

/* ITEM - 핫딜상품 */
.i-product-hotdeal {
    position: relative;
}

.i-product-hotdeal .item {
    /* min-width: 100px; */
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    /* transition: opacity 0.2s ease; */
}

.i-product-hotdeal .count {
    position: absolute;
    top: 0;
    left: 0;
    background: #FF7571;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    z-index: 10;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}

.i-product-hotdeal .item .thumb .expire{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 200;
    color: white;
    z-index: 200;
    text-align: center;
}
.i-product-hotdeal .item .thumb {
    float: left;
    width: 50%;
    background: rgb(211 213 220);
    /* display: flex;
    align-items: center;
    justify-content: center; */
    color: white;

    position: relative;
    overflow: hidden;
    font-size: 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.i-product-hotdeal .item .thumb::before {
    content: '';
    display: inline-block;
    margin-top: 100%;
}
.i-product-hotdeal .item .thumb .thumb-cont{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;    
}
.i-product-hotdeal .item:hover .thumb .thumb-cont .img-cont {
    transform: scale(1.06);
}
.i-product-hotdeal .item .thumb .thumb-cont .img-cont{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(1.01);
    transition: transform 1s ease;
}
.i-product-hotdeal .item .thumb .thumb-cont .img-slide{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.i-product-hotdeal .item .thumb .thumb-cont .img-slide:first-child{
    /* z-index: 200; */
    /* border: 2px solid red; */
}
.i-product-hotdeal .item .thumb .swiper-container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.i-product-hotdeal .item .thumb .swiper-slide{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.i-product-hotdeal .item .info {
    float: left;
    width: 50%;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 10px;
}

.i-product-hotdeal .item .info .nav {}

.i-product-hotdeal .item .info .nav .nav-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8F8F8F;
    background: #F6F6F6;
    margin-right: 3px;
}

.i-product-hotdeal .item .info .nav .nav-item.active {
    color: white;
    background: #691593;
}

.i-product-hotdeal .item .info .pr-tags {
    display: flex;
    align-items: center;
    padding: 3px 0px;
    width: 100%;
    margin-top: 16px;
}

.i-product-hotdeal .item .info .pr-tags li.active {
    opacity: 1;
}

.i-product-hotdeal .item .info .pr-tags li {
    float: left;
    opacity: 1;
    margin-right: 5px;
    padding: 3px 5px;
    font-size: 14px;
    color: #8F8F8F;
    background: #F6F7F8;
}

.i-product-hotdeal .item .info .subs {
    color: #8f8f8f;
    font-size: 15px;
    margin-top: 8px;
}

.i-product-hotdeal .item .info .tit {
    color: #0f0f0f;
    font-weight: 500;
    font-size: 18px;
    margin-top: 4px;
    word-break: break-all;
}

.i-product-hotdeal .item .info .submit {
    visibility: hidden;
    margin-top: 10px;
    padding: 12px 26px;
    font-size: 15px;
    color: #333333;
    border: 1px solid #CECECE;
}

.i-product-hotdeal .item .info .submit i {
    margin-left: 5px;
}

/* ITEM - 카테고리 */
.i-category {
    padding: 0 32.5px;
    height: 205px;
}

.i-category .item {
    padding-top: 46px;
    padding-bottom: 40px;
    cursor: pointer;
}

.i-category .item .thumb {
    position: relative;
    overflow: hidden;
    /* min-width: 50px; */
    width: 100%;
    background: white;
    border-radius: 28px;
    font-size: 0;
    background-repeat: no-repeat;
    background-size: 66%;
    background-position: center center;
}



.i-category .item .thumb::before {
    content: '';
    display: inline-block;
    margin-top: 100%;
}

.i-category .item .thumb-active {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: 66%;
    background-position: center center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.i-category.active .thumb-active {
    opacity: 1;
    background-color: #5D0682;
}

.i-category .item .name {
    /* height: 30px; */
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    line-height: 1;
    color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ITEM - 웨딩홀 */
.i-wedding-hall {}

.i-wedding-hall .item {
    min-width: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
}

.i-wedding-hall .item .thumb:hover .thumb-img {
    transform: scale(1.03);
}
.i-wedding-hall .item .thumb .thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: transform 1s ease;
}
.i-wedding-hall .item .thumb {
    width: 100%;
    background: rgb(187, 189, 196);
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.i-wedding-hall .item .thumb::before {
    content: '';
    display: inline-block;
    margin-top: 100%;
}

.i-wedding-hall .item .tit {
    color: #0f0f0f;
    font-weight: 600;
    font-size: 18px;
    margin-top: 17px;
    word-break: break-all;
}

.i-wedding-hall .item .tags {
    color: #8f8f8f;
    font-size: 15px; 
    margin-top: 10px;   
    word-break: break-all;
}






/* PC */
@media screen and (min-width: 481px) {
    .i-product-hotdeal .item {
        flex-direction: column;
    }

    .i-product-hotdeal .item .thumb {
        width: 100%;
    }

    .i-product-hotdeal .item .info {
        width: 100%;
    }

    .i-product-hotdeal .item .info .nav {
        display: none;
    }
}