#main-page .item label[for="it_option_1"] {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
}

.main-visual {
    width: 100%;
    padding: 40px 0;
    /* margin-bottom: 140px; */
    overflow: hidden;
}

.main-visual .main-swiper {
    position: relative;
    width: 100%;
    max-width: 1292px;
    aspect-ratio: 1292/491;
    height: 491px;
    overflow: visible;
    padding:0 15px;
    margin-inline: auto;
}

.main-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.main-visual .main-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.main-visual .main-swiper .swiper-slide .swiper-main-img {
    width: 100%;
    height: 100%;
}

.main-swiper .swiper-slide-active .swiper-main-img img {
    animation: fi 3s forwards;
}

.main-visual .main-swiper .swiper-slide .swiper-main-img img {
    width: 100%;
    height: 100%;
}

.main-visual .main-swiper .swiper-slide .swiper-main-img .ban3 {
    object-position: 10% 10%;
}

.main-visual .main-swiper .page-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    right: 180px;
    bottom: 60px;
    z-index: 1;
}

.main-swiper .page-btn .swiper-button-next,
.main-swiper .page-btn .swiper-button-prev {
    color: #222222;
    background: rgb(255 255 255 / 85%);
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 2.8rem;
    height: auto;
    aspect-ratio: 1;
}

.main-swiper .page-btn .swiper-button-next {
    left: 65px;
}

.main-swiper .page-btn .swiper-button-next::after,
.main-swiper .page-btn .swiper-button-prev::after {
    font-size: 18px;
}

.main-swiper .page-btn .swiper-pagination {
    left: -110px;
    top: 50%;
    transform: translateY(-46%);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    align-content: center;
    background: rgb(255 255 255 / 85%);
    color: #808080;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5rem;
}

.main-swiper .page-btn .swiper-pagination-fraction {
    width: 6rem !important;
    font-size: 1.1rem;
    height: 2.8rem;
    line-height: 3rem;
    font-size: 16px;
    font-weight: 500;
}

.main-swiper .page-btn .swiper-pagination-fraction .swiper-pagination-current {
    color: #000;
}

.main-swiper .swiper-slide-active .txt>h2 {
    animation: sd 3s forwards;
}

.main-swiper .swiper-slide-active .sub {
    animation: su 3s forwards;
}

.main-swiper .swiper-slide .txt {
    position: absolute;
    top: 30%;
    width: 100%;
    padding: 0 10%;
    color: #fff;
    font-weight: 400;
}

.main-swiper .swiper-slide .txt.txt2 {
    width: 420px;
    text-align: right;
    left: 65%;
}


.main-swiper .txt>h2 {
    opacity: 0;
    margin-bottom: 25px;
    font-size: 40px;
    transition: all .4s ease;
    word-break: keep-all;
}

.main-swiper .txt .sub {
    opacity: 0;
    font-size: 22px;
    word-break: keep-all;
}

@keyframes sd {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes su {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fi {
    from {
        filter:brightness(1);
        opacity: 0.6;
        scale: 1.1;
    }

    to {
        filter:brightness(0.7);
        opacity: 1;
        scale: 1;
    }
}

@media screen and (max-width:760px) {

    .main-visual {
        height: auto;
        padding: 30px 0;
        margin-bottom: 50px;
    }

    .main-visual .main-swiper {
        position: relative;
        height: 391px;
    }
    

    .main-swiper .txt>h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .main-swiper .txt .sub {
        font-size: 20px;
    }

    .main-swiper .swiper-slide .txt {
        padding: 0 5%;
    }

    .main-swiper .swiper-slide .txt.txt2 {
        width: 420px;
        text-align: right;
        left: 45%;
    }

}
@media screen and (max-width:575px) {
    .main-visual{
        margin-bottom: 0;
    }
    .main-visual .main-swiper {
        height: 291px;
    }
    .main-swiper .txt>h2 {
        font-size: 20px;
    }

    .main-swiper .txt .sub {
        font-size: 16px;
    }
}
@media screen and (max-width:480px) {

    .main-visual .main-swiper {
        height: 200px;
    }
    
    .main-swiper .txt>h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .main-swiper .txt .sub {
        font-size: 14px;
    }

    .main-swiper .swiper-slide .txt.txt2 {
        width: 420px;
        text-align: right;
        left: 30%;
    }

    .main-visual .main-swiper .page-btn {
        right: 20px;
        bottom: 15px;
    }

    .main-swiper .page-btn .swiper-pagination-fraction {
        position: static;
        transform: none;
        margin-right: 5px;
        width: 4rem !important;
        font-size: 12px;
        height: 2rem;
        line-height: normal;
    }

    .main-swiper .page-btn .swiper-button-next, .main-swiper .page-btn .swiper-button-prev{
        position: static;
        margin-top: 0;
        width: 2rem;
    }

    .main-swiper .page-btn .swiper-button-next::after, .main-swiper .page-btn .swiper-button-prev::after {
        font-size: 10px;
    }

    .main-swiper .page-btn .swiper-button-prev{
        margin-right: 5px;
    }

     /* .main-swiper .page-btn .swiper-pagination {
        left: -80px;
        top: 50%;
        transform: translateY(-50%);
    } */
  
}
/* 사이트맵 */
section.pd-100 {
    margin-bottom: 100px;
}

/* .site-wrap img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

#site-icon ul li {
    transition: all .25s ease;
    width: auto;
}
#site-icon .swiper-container{
    overflow-x: hidden;
    position: relative;
}
#site-icon .swiper-wrapper {
    justify-content: center;
}

#site-icon a {
    text-decoration: none;
    display: block;
    word-break: keep-all;
    margin: 0 auto;
    transition: all .25s ease;
    text-align: center;
}

#site-icon .img {
    max-width: 120px;
    background-color: #f5f5f5;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    padding: 2rem;
}


#site-icon a p {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

#site-icon .swiper-button-prev,
#site-icon .swiper-button-next {
    width: 4.5rem;
    height: 4.5rem;
    transition: all .25s ease;
    border: 0px solid #ddd;
    border-radius: 50%;
    margin-top: -3rem;
}
#site-icon .webpublic-banner-item{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

@media (min-width: 1025px) {
    #site-icon a:after {
        font-size: 15px;
        padding: 10px 0;
    }
     section.pd-100 {
        margin-bottom: 60px;
    }
}

@media screen and (max-width:768px) {
    #site-icon .swiper-wrapper {
        justify-content: flex-start;
    }
    #site-icon a{
        width: 100%;
    }
    #site-icon a p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
    }
    section.pd-100 {
        margin-bottom: 40px;
    }

}
@media screen and (max-width:480px) {
    #site-icon .swiper-wrapper {
        justify-content: flex-start;
    }
    #site-icon a p {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    }
    #site-icon .img{
        background-color: #fff;
        padding: 10px;
    }
    .site-wrap .img img {
        object-fit: cover;
        width: 40px;
        height: 40px;
    }
    section.pd-100{
        margin-bottom: 40px;
    }
} */

/*카테고리영역*/
/* #site-icon {padding: 100px 0;} */
#site-icon .inner ul {position: relative; width: 100%; height: 100%; z-index: 1; display: flex; justify-content: center; gap: 20px}
#site-icon .inner ul li {width: calc(12.5% - 17.5px);}


#site-icon .webpublic-banner-item {display: flex; flex-direction: column; align-items: center;}
#site-icon .webpublic-banner-item:last-child {margin-right: 0;}

#site-icon .img {max-width: 120px; background: #fff; border: 1px solid#ddd; padding: 3%; border-radius: 100%;}
#site-icon .img img {width: 100%; border-radius: 100%;}
#site-icon .inner ul li a p {font-size: 19.2px; margin-top: 1rem; font-weight: bold; text-align: center;}

@media screen and (max-width:768px) {
  #site-icon .inner ul {flex-wrap: wrap; gap: 10px; }
  #site-icon .inner ul li {width: calc(30% - 5px);}
}

@media screen and (max-width:500px) {
  #site-icon .inner ul li a p {font-size: 15px;}
}

@media screen and (max-width:375px) {
  #site-icon .inner ul li a p {font-size: 13px;}
}


/* 제품 배경 슬라이드 */
@keyframes motionInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.motionInUp {
    -webkit-animation-name: motionInUp;
    animation-name: motionInUp;
}

.fade_animate {
    animation-duration: .7s;
    animation-fill-mode: both;
}



/* 슬라이드 제품 섹션 */
.product{overflow: hidden;}
.main_prd_overflow_list {
    width: 100%;
    height: 100%;
    padding: 0;
    display: inline-block;
}

.main_blank::before {
    content: "";
    width: 100%;
    height: 175px;
    background: #FFF;
    background: var(--mallbg);
    display: block;
    clear: both;
}

.main_prd_overflow_list .main_prd_overflow_inner {
    width: 100%;
    margin: 0;
    display: inline-block;
}

.main_prd_overflow_list .main_prd_overflow_inner .main_banner_bg .mall_width {
    width: 100%;
    max-width: 1440px;
    margin: 110px auto 90px;
    display: flex;
    flex-direction: row;
    padding: 0 20px;
}

.main_prd_overflow_list .main_prd_overflow_content {
    width: 100%;
    position: relative;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-right: 345px;
    display: inline-block;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide {
    width: 100%;
    margin-left: 345px;
    display: inline-block;
    overflow: hidden;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle {
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: 100%;
    z-index: 5;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title {
    /* border-top: 2px solid #000; */
    padding-top: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title::after {
    display: block;
    content: '';
    width: 90%;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title_text {
    padding: 0;
    margin: 0;
    color: #222;
    text-align: inherit;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title_text span {
        font-family: 'Agro1', sans-serif;
    font-size: 18px;
    color: #0b0b0b;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title_text p {
    font-family: 'Agro2', sans-serif;
    width: 300px;
    font-size: 36px;
    padding-top: 10px;
    color: #000;
    font-weight: 500;
}

.main_prd_overflow_list .swiper-area .swiper-buttons {
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 15%;
    left: 50%;
    z-index: 1;
}

.main_prd_overflow_list .swiper-buttons.position-off {
    position: relative;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    bottom: 0;
    left: 0;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper-buttons {
    width: 71px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area [class*='swiper-button-'] {
    border: 1px #ddd solid;
    border-radius: 50%;
    width: 60px;
    aspect-ratio: 1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.main_prd_overflow_list .swiper-buttons.position-off [class*='swiper-button-'].arrow-show {
    top: 0;
    margin-top: 0px;

}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper-button-prev,
.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper-button-next {
    position: static;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper-button-prev::after,
.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper-button-next::after {
    font-size: 14px;
    color: #444;
}

.main_prd_overflow_list .swiper-button-next.arrow-show.swiper-button-disabled,
.main_prd_overflow_list .swiper-button-prev.arrow-show.swiper-button-disabled {
    opacity: 0.35;
}

.main_prd_overflow_list ul.prdList {
    margin: 0 auto;
    padding: 0;
    line-height: 1.5;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .box {
    margin: 0 auto;
    letter-spacing: 0px;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .box .item_inner {
    margin: 0px auto;
}

.main_prd_overflow_list ul.prdList .prdImg_thumb {
    position: relative;
    margin: 0 auto 10px;
    display: inline-block;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .prd_thumb_img {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.main_prd_overflow_list ul.prdList .prdImg_thumb .prd_thumb_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

@media screen and (max-width:1440px) {
    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title::after {
    width: 100%;
    }
}


/* 슬라이드 제품 섹션 */
.effect_over .effect_over_on {
    filter: alpha(opacity=0);
    opacity: 1;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.effect_over:hover .effect_over_on {
    filter: alpha(opacity=100);
    opacity: 1;
}

.main_prd_overflow_list ul.prdList .prdImg_thumb .prd_thumb_img img {
    max-width: 100%;
    height: 100%;
}

.main_prd_overflow_list ul.prdList .prdImg_thumb .prd_thumb_img .prdImg_hover {
    position: absolute;
    top: 0;
    left: 0;
}

.main_prd_overflow_list ul.prdList .button {
    width: auto;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    position: absolute;
    right: 10px;
    bottom: 20px;
    z-index: 50;
}

.main_prd_overflow_list ul.prdList .button>ul {
    margin: auto;
    padding: 0;
    display: table;
}

.main_prd_overflow_list ul.prdList .button>ul>li {
    width: 34px;
    height: 34px;
    margin: 10px 7px 0;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}

.main_prd_overflow_list ul.prdList .button>ul>li.basket .button_ico {
    background: url(../../images/common/item_btn_basket.png) no-repeat 54% 45%;
    background-size: auto 17px;
    width: inherit;
    height: inherit;
    padding: 0 0 0 1px;
    background-color: rgba(254, 254, 254, .7) !important;
    box-shadow: 1px 1px 2px rgba(150, 150, 150, .7);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.main_prd_overflow_list ul.prdList .button>ul>li .button_ico img {
    cursor: pointer;
    width: 15px;
    height: 15px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .box .prd_Info_list {
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-align: left;
}

.prdImg_thumb .prd_icon {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.prdImg_thumb .prd_icon img {
    width: 40px;
}

.main_prd_overflow_list ul.prdList .prd_brand {
    padding: 0 5px;
}

.main_prd_overflow_list ul.prdList .prd_name {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 5px 5px 0;
    padding-left: 0;
}

.main_prd_overflow_list ul.prdList .prd_name .icon-bascket {
    width: 20px;
}

.main_prd_overflow_list ul.prdList .prd_name .icon-bascket img {
    width: 100%;
}

.main_prd_overflow_list ul.prdList .prd_name a span {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.item_content_list {
    padding: 0 5px;
    padding-left: 0;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.item_content_list li {
    width: auto;
    margin: 7px 0 0;
    font-size: 0;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.item_content_list li span {
    display: inline-block;
    font-size: 15px;
    color: #898989;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .box .prd_Info_list .prd_price_list {
    width: auto;
    margin: 10px 0 -7px;
    display: block;
    border-top: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 10px;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.prd_price_list:after {
    content: "";
    display: block;
    clear: both;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.prd_price_list li.prd_price.item_tle_custom_price {
    width: auto;
    display: block;
    text-align: left;
    line-height: 1.3;
    margin: 0;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.prd_price_list li.prd_price span {
    display: inline-block;
    padding-right: 5px;
    font-size: 15px;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.prd_price_list li.prd_price span.line-through {
    text-decoration: line-through;
    color: #c2c2c2;

}

.prdList .product_sale_displaydisplaynone .prd_price_list .item_tle_custom_price .font_inner {
    font-size: 1.2rem;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.prd_price_list li.prd_price.item_tle_price:not(.price_line) [style*="bold"] {
    font-size: 15px;
    color: #000000;
    font-weight: bold;
}

.prdList .product_sale_displaydisplaynone .prd_price_list .item_tle_price .font_inner {
    font-size: 14px;
}

.main_prd_overflow_list ul.prdList .prd_Info_list ul.prd_price_list li.prd_price .item_sale_percent.percent_blank {
    display: inline-block;
    zoom: 1;
    margin-top: 0px;
    padding-right: 5px;
    color: #ae0000;
    font-weight: bold;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide .swiper-paginations {
    width: calc(1440px - 355px);
    margin-top: 50px;
}

.main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide .swiper-paginations .swiper-pagination {
    width: 94%;
    margin-left: 3%;
}


/* 제품스와이퍼2 list2 */

.main_prd_overflow_list.list2 {
    background: rgb(249, 249, 249);
}

.main_prd_overflow_list.list2 .main_prd_overflow_tle {
    background-color: rgb(249, 249, 249);
}

.main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area {
    overflow: visible;
    width: 100%;
}

.main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide {
    overflow: visible;
}

.main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .prd_thumb_img {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
    display: block;
}

.main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area .main_prd_overflow_tle::before {
    content: '';
    display: block;
    position: absolute;
    width: 200%;
    height: 100%;
    left: -200%;
    background: rgb(249, 249, 249);
    z-index: 1;
}

.main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area .main_prd_overflow_tle::after {
    content: '';
    display: block;
    position: absolute;
    width: 30%;
    height: 100%;
    right: -70px;
    top: 0;
    background: rgb(249, 249, 249);
    z-index: 1;
}

.main_prd_overflow_list ul.prdList .prdImg_thumb {
    width: 100%;
}

/* 제품스와이퍼3 list3*/
.main_prd_overflow_list.list3 .text-white p {
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: bold;
}

.main_prd_overflow_list.list3 .text-white span a {
    position: relative;
    color: #666;
}

.main_prd_overflow_list.list3 .text-white span a::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    display: block;
    position: absolute;
    top: 60%;
    transform: translateY(-50%) rotate(45deg);
    right: -10px;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list {
    padding-inline: 20px;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list .star {
    border-top: 1px solid #dfdddd;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list .star .left-star .img {
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list .star .right-star {
    margin-top: 5px;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list .star .right-star .score {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 14px;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list .star .right-star .score img {
    width: 16px;
    object-fit: contain;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list .star .right-star .name {
    font-size: 14px;
}

.main_prd_overflow_list.list3 .swiper-slide .prd_Info_list .star .left-star .img img {
    width: 100%;
    height: 100%;
}

.main_prd_overflow_list.list3 ul.prdList .prd_Info_list ul.item_content_list li span::before {
    content: "";
    display: inline-block;
    background: url(../../imgs/icon/ico_user.png) no-repeat 0 0 / 10px;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    margin-right: 2px;
    margin-top: -2px;
}

.main_prd_overflow_list.list3 ul.prdList .prd_name a span {
    display: block;
    line-height: 1.3;
    font-size: 14px;
    color: #323232;
}

.main_prd_overflow_list.list3 .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .prd_thumb_img {
    position: relative;
}

.main_prd_overflow_list.list3 .prdImg_thumb .list-box {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main_prd_overflow_list.list3 .prdImg_thumb .list-box .bx {
    width: 40px;
    height: 40px;
    transition: all .35s ease;
}

.main_prd_overflow_list.list3 .prdImg_thumb .list-box .bx:hover {
    transform: translateY(-5px);
}

.main_prd_overflow_list.list3 .prdImg_thumb img {
    transition: all .35s ease;
}

.main_prd_overflow_list.list3 .prdImg_thumb .list-box .bx img {
    width: 100%;
    height: 100%;
}

.main_prd_overflow_list.list3 .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item .prd_thumb_img {
    border-radius: 0;
}

.main_prd_overflow_list.list3 .item_inner {
    border: 1px solid #dfdddd;
    border-radius: 10px;
    overflow: hidden;
    padding-block: 0 20px;
}

.main_prd_overflow_list.list3 .item_inner:hover .prdImg_thumb>a img {
    filter: brightness(70%);
    scale: 1.05;
}

@media all and (max-width: 1960px) {
    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item {
        width: 341px;
    }
}

@media all and (max-width: 1440px) {

    .main_prd_overflow_list .main_prd_overflow_inner .main_banner_bg .mall_width {
        width: 100%;
        margin: 50px auto;
        display: inline-block !important;
        flex-direction: none !important;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area {
        width: 100%;
        padding-right: 0;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide {
        width: 100%;
        margin-left: 0px;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle {
        width: 100%;
        margin: 0 0 20px;
        text-align: center !important;
        position: relative;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title {
        text-align: center;
        position: relative;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title .main_list_title_text {
        padding-bottom: 10px;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title_text p {
        width: 100%;
        padding-top: 0px;
        margin: auto;
        display: block;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title .main_list_title_text p::before {
        height: 25px;
        margin: 15px auto;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper-buttons {
        display: none;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide ul>li.item {
        width: 25%;
    }
    .main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area .main_prd_overflow_tle::after {
    display: none;
}

}
@media all and (max-width: 1440px) {

    .main_prd_overflow_list .main_prd_overflow_inner .main_banner_bg .mall_width {
        margin-block: 50px 0;
    }
}


/* 핫스와이퍼 hot-swiper */
section.hot {
    margin-bottom: 100px;
}

.hot-container {
    width: 100%;
    background: #f9f9f9;
    padding-block: 40px;
}

.hot-container .hot-title {
    margin-bottom: 10px;
    padding-left: 30px;
}

.hot-container .hot-title .hot-txt span {
    color: #303030;
    font-size: 20px;
}

.hot-container .hot-title h2 {
    font-size: 32px;
}

.hot-container .hot-swiper {
    padding-block: 20px;
    padding-inline: 25px;
}

.hot-swiper .swiper-slide {
    position: relative;
    width: 663.5px;
    border: 0;
    padding: 40px 20px 40px 40px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 40px;
}

.hot-swiper .swiper-button-prev,
.hot-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    opacity: .7;
    transition: all .25s ease;
    background: #fff;
    border: 0px solid #ddd;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.hot-swiper .swiper-button-prev {
    left: 4px;
}

.hot-swiper .swiper-button-next {
    right: 4px;
}

.hot-swiper .swiper-button-prev::after,
.hot-swiper .swiper-button-next::after {
    font-size: 20px;
    color: #6d6d6d;
}

.hot-swiper .hot-swiper-img {
    position: relative;
    width: 275px;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.hot-swiper .hot-swiper-img .prd_icon {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.hot-swiper .hot-swiper-img .prd_icon img {
    width: 40px;
}

.hot-swiper .hot-swiper-img img {
    width: 100%;
    height: 100%;
}

.hot-swiper-content {
    width: 50%;
}

.hot-swiper-content p {
    width: 100%;
    border-radius: 20px;
    padding-block: 5px;
    background: #222222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 12px;
    gap: 2px;
}

span.white {
    font-weight: bold;
    font-size: 16px;
}

span.bold {
    font-weight: 500;
}

.hot-swiper-content h4 img {
    width: 18px;
    margin-right: 5px;
}

.hot-swiper-content h4 {
    font-size: 18px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hot-swiper-content .hot-sp1 {
    display: inline-block;
    color: #3d3d3d;
    font-size: 16px;
    margin-bottom: 10px;
}

.hot-swiper-content .custome {
    color: #999;
}

.hot-swiper-content .custome .line-price {
    position: relative;
}

.hot-swiper-content .custome .line-price::after {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    width: 100%;
    height: 1px;
    top: 50%;
    background: #999;
}

span.red {
    color: #ae0000;
    margin-right: 10px;
}

.hot-swiper-content .sale-price {
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width:1080px) {
    .hot-swiper .swiper-slide {
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 15px;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    }
    .hot-swiper-content {
        width: 100%;
    }
    .hot-swiper .hot-swiper-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    }
}
@media screen and (max-width:480px) {
    .hot-container .hot-title .hot-txt span {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .hot-container .hot-title h2 {
        font-size: 20px;
    }
    section.hot {
        margin-bottom: 60px;
    }
    .hot-container {
        width: 100%;
        background: #f9f9f9;
        padding-block: 20px;
    }
}



/* special */
.special-swiper .swiper-slide {
    width: 100%;
    padding-block: 40px;
    border: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    border-radius: 15px;
    overflow: hidden;
}
.special-swiper .swiper-slide.sp1{
    background: #f8f4e3;
}
.special-swiper .swiper-slide.sp2{
    background: rgb(249, 235, 236);
}
.special-swiper .swiper-slide.sp3{
     background: rgb(234, 248, 253);
}

.special-swiper .swiper-slide .special-icon {
    border-radius: 50%;
    width: 160px;
    aspect-ratio: 1;
    background: #f0ecd9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-swiper .swiper-slide .special-icon.icon2 {
    background: rgb(246, 220, 220);
}

.special-swiper .swiper-slide .special-icon.icon3 {
    background: rgb(214, 237, 245);
}

.special-swiper .swiper-slide .special-icon img {
    width: 70px;
}

.special-swiper .hot-swiper-img.img2 {
    background: rgb(249, 235, 236);
}

.special-swiper .hot-swiper-img.img3 {
    background: rgb(234, 248, 253);
}

.special-swiper .hot-swiper-img img {
    width: 100%;
    height: 100%;
}

.special-swiper-content {
    display: flex;
    flex-direction: column;
}

.special-swiper-content h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 10px;
}

.special-swiper-content p {
    color: #605f5f;
    font-weight: 500;
    font-size: 20px;
}

@media screen and (max-width:1080px) {
     .special-swiper .swiper-slide {
        padding: 20px;
        margin-bottom: 10px;
        border-radius: 15px;
        align-items: center;
        gap: 20px;
        flex-direction: row;
    }

}
@media screen and (max-width:760px) {
    .special-swiper-content h2 {
        font-size: 20px;
    }

    .special-swiper-content p {
        font-size: 16px;
    }
    .special-swiper .swiper-slide .special-icon {
        width: auto;
        padding: 20px;
    }
     .special-swiper .swiper-slide .special-icon img{
        width: 50px;
     }
}
@media screen and (max-width:480px) {
    .special-swiper-content h2 {
        font-size: 14px;
    }

    .special-swiper-content p {
        font-size: 12px;
    }
    .special-swiper .swiper-slide .special-icon {
        width: auto;
        padding: 20px;
    }
     .special-swiper .swiper-slide .special-icon img{
        width: 40px;
     }
}



/* like */
section.like {
    margin-bottom: 100px;
}

.like-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.like-container .like-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    padding-block: 40px 30px;
}

.like-container .like-item {
    width: 50%;
    padding-block: 20px;
    border-radius: 20px;
}

.like-container .left-like {
    background: rgb(255, 245, 246);
}

.like-container .right-like {
    background: #f8f8f8;
}

.like-container .like-item .like-bx {
    padding-inline: 40px;
}

.like-container .like-item .like-box {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.like-container .like-item .like-box .like-content {
    width: 55%;
}

.like-container .like-item .like-box .like-content h4 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-size: 20px;
}

.like-container .like-item .like-box .like-content h4 img {
    width: 20px;
}

.like-container .like-item .like-box .like-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.like-container .like-item .like-box .like-content>span {
    position: relative;
    font-size: 15px;
    color: #494848;
}

.like-container .like-item .like-box .like-content>span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background: #494848;
}

.like-container .like-item .like-box .like-content .sale-price {
    font-size: 18px;
    font-weight: 600;
}

.like-container .like-item .like-box .like-box-img {
    position: relative;
    width: 35%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.like-container .like-item .like-box .like-box-img .prd_icon {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.like-container .like-item .like-box .like-box-img .prd_icon img {
    width: 32px;
}

.like-container .like-item .like-box .like-box-img img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:960px) {
    .like-container{
        flex-direction: column;
    }
    .like-container .like-item{
        width: 100%;
    }
    .like-container .like-item .like-box .like-box-img {
    width: 150px;
    aspect-ratio: 1;
    margin-right: 40px;
    }
}
@media screen and (max-width:630px) {
    .like-container{
        flex-direction: column;
    }
    .like-container .like-item{
        width: 100%;
    }
    .like-container .like-item .like-box .like-box-img {
    width: 150px;
    margin-right: 10px;
    }
        
    .like-container .like-item .like-box .like-content h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .like-container .like-item .like-box .like-content h4 img {
        width: 18px;
    }

    .like-container .like-item .like-box .like-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .like-container .like-item .like-box .like-content>span {
        font-size: 15px;
    }

    .like-container .like-item .like-box .like-content .sale-price {
        font-size: 16px;
    }

    .like-container .like-item .like-box .like-box-img {
        position: relative;
        width: 35%;
        height: 100%;
        overflow: hidden;
        border-radius: 15px;
    }

    .like-container .like-item .like-box .like-box-img .prd_icon {
        position: absolute;
        left: 10px;
        bottom: 10px;
    }

    .like-container .like-item .like-box .like-box-img .prd_icon img {
        width: 32px;
    }
}
@media screen and (max-width:480px) {
    section.like {
        margin-bottom: 60px;
    }
    .like-container .like-item .like-box .like-box-img {
    width: 150px;
    margin-right: 10px;
    }
    .like-container .like-item .like-bx {
    padding-inline: 10px;
}
    .like-container .like-item .like-box .like-content h4 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .like-container .like-item .like-box .like-content h4 img {
        width: 16px;
    }

    .like-container .like-item .like-box .like-content p {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .like-container .like-item .like-box .like-content>span {
        font-size: 12px;
    }

    .like-container .like-item .like-box .like-content .sale-price {
        font-size: 14px;
    }

    .like-container .like-item .like-box .like-box-img {
        position: relative;
        width: 35%;
        height: 100%;
        overflow: hidden;
        border-radius: 15px;
    }

    .like-container .like-item .like-box .like-box-img .prd_icon {
        position: absolute;
        left: 10px;
        bottom: 10px;
    }

    .like-container .like-item .like-box .like-box-img .prd_icon img {
        width: 32px;
    }
}
/* 이벤트배너페이지 */
section.alarm {
    margin-bottom: 100px;
}

.alarm-swiper .swiper-slide {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 134px;
    overflow: hidden;
    border-radius: 20px;
}

.alarm-swiper .swiper-slide .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    text-align: center;
}

.alarm-swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
}

.alarm-swiper .swiper-slide .img img {
    width: 100%;
    height: 100%;
}

.alarm-swiper .swiper-pagination {
    padding-block: 5px;
    width: 80px;
    gap: 3px;
    background: rgba(0, 0, 0, 0.55);
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(187, 187, 187);
    border-radius: 5rem;
    left: 90%;
}

.alarm-swiper .swiper-pagination-fraction {
    bottom: 15px;
}

.alarm-swiper .swiper-pagination-current {
    color: #fff;
}
@media screen and (max-width:1080px) {
.alarm-swiper .swiper-pagination {
    left: 80%;
}
}

@media screen and (max-width:480px) {
    section.alarm {
        margin-bottom: 60px;
    }
    .alarm-swiper .swiper-slide .txt {
        font-size: 18px;
    }
    .alarm-swiper .swiper-pagination {
        left: 75%;
        width: 60px;
        gap: 5px;
        font-size: 12px;
    }
   
}

/* 픽 */
section.pick {
    margin-bottom: 100px;
}

.pick-container .pick-title {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pick-container .pick-title .pick-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pick-container .pick-title .pick-select .pick-ck {
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 18px;
    border: 1px solid rgb(221, 221, 221);
    transition: all .4s ease;
}

.pick-container .pick-title .pick-select .pick-ck.active {
    background: rgb(247, 227, 229);
}

.pick-item {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0.4;
    transition: all .6s ease;
}

.pick-item {
    display: none;
}

.pick-item.active {
    display: flex;
    opacity: 1;
}

.pick-item .pick-bx {
    width: 25%;
    display: flex;
    flex-direction: column;
}

.pick-item .pick-bx .pick-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 15px;
}

.pick-item .pick-bx .pick-img img {
    width: 100%;
    height: 100%;
}

.pick-item .pick-bx .pick-img .prd_icon {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.pick-item .pick-bx .pick-img .prd_icon img {
    width: 36px;
}

.pick-item .pick-content>h2 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-right: 10px;
    font-size: 20px;
    margin-bottom: 2px;
}

.pick-item .pick-content>h2 img {
    width: 20px;
}

.pick-item .pick-content .explain {
    font-size: 16px;
    margin-bottom: 5px;
}

.pick-item .pick-content>span {
    position: relative;
    color: #999;
}

.pick-item .pick-content>span::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #999;
    top: 50%;
    left: 0;
}

.pick-item .pick-content .sale-price {
    display: flex;
    align-items: baseline;
    font-weight: bold;
    font-size: 16px;
}
@media screen and (max-width:840px) {
    .pick-container .pick-title {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
    .pick-item {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.4;
    transition: all .6s ease;
    }
    .pick-item .pick-bx {
        width: 40%;
        display: flex;
        flex-direction: column;
    }

}

@media screen and (max-width:620px){

.pick-item .pick-content>h2 {
    font-size: 16px;
}

.pick-item .pick-content>h2 img {
    width: 16px;
}

.pick-item .pick-content .explain {
    margin-bottom: 5px;
    font-size: 14px;
}

.pick-item .pick-content>span {
    font-size: 14px;
}


.pick-item .pick-content .sale-price {
    font-size: 15px;
}
}
@media screen and (max-width:480px){
    section.pick{
        margin-bottom: 60px;
    }
    .pick-container .pick-title {
        font-size: 20px;
    }
    .pick-container .pick-title .pick-ck h4{
        font-size: 14px
    }
    .pick-item .pick-bx {
        width: 47%;
    }
    .pick-container{
        padding-inline: 10px;
    }
    .pick-item {
    gap: 15px;
    }
    .pick-item .pick-content>h2 {
    font-size: 14px;
    }

    .pick-item .pick-content>h2 img {
        width: 14px;
    }

    .pick-item .pick-content .explain {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .pick-item .pick-content>span {
        font-size: 12px;
    }
    .pick-item .pick-content .sale-price {
        font-size: 14px;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title_text span {
        font-size: 16px;
    }

    .main_prd_overflow_list .main_prd_overflow_content .swiper-area .main_prd_overflow_tle .main_list_title_text p {
        font-size: 26px;
        padding-top: 5px;
    }
}

/* 공지사항 */
section.notice {
    margin-bottom: 100px;
}

.notice-container {
    display: flex;
    align-items: first baseline;
    justify-content: center;
    gap: 80px;
}

.notice-container .table {
    width: 50%;
}

.notice-container .table .title {}

.notice-container .table .tit {
    font-weight: bold;
    font-size: 28px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.notice-container .table .tit2 {
    color: #777;
    font-weight: 300;
    font-size: 14px;
}

.notice-container .table .tit2 span {
    position: relative;
}

.notice-container .table .tit2 span::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    display: block;
    position: absolute;
    top: 55%;
    transform: translateY(-50%) rotate(45deg);
    right: -10px;
}

.bor-bot {
    border-bottom: 1px solid #cbc9c9;
    padding-block: 20px;
    color: #777;
}

.bor-bot a {
    display: block;
}

.bor {
    padding-top: 20px;
    color: #777;
}

.table-date {
    font-size: 13px;
}

@media screen and (max-width:830px) {
    .notice-container {
    flex-direction: column;
    }
    .notice-container .table{
        width: 100%;
    }
}
@media screen and (max-width:480px) {

}

@media screen and (max-width:480px) {
    .main-visual .main-swiper{
        overflow: hidden;
    }
    .main-visual .main-swiper{
        overflow: hidden;
    }
    .main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area{
        overflow: hidden;
    }
    .main_prd_overflow_list.list2 .main_prd_overflow_content .swiper-area .swiper_prd_overflow_slide {
    overflow: hidden;
    }
}





/* 섹션 추가 */
/* 섹션01 */
#new_section {width: 100%; height: 100%;}
#new_section .contents01 {margin: 0 auto; position: relative; display: flex; justify-content: space-between; padding: 100px 0px;}

#new_section .new_tit {flex: 0 0 30%; min-width: 320px; padding: 80px 40px 50px; display: flex; justify-content: center; flex-direction: column; position: relative; word-break: keep-all;}
#new_section .new_tit h4 {font-size: 20px; color: #555;}
#new_section .new_tit h3 {font-family: 'Agro2', sans-serif; font-size: 40px; margin: 20px 0; font-weight: 500;}
#new_section .new_tit p {font-family: 'Agro1', sans-serif; font-size: 25px; margin-top: 30px;}
#new_section .new_tit  a {border: 1px solid var(--mallcolor); color: var(--mallcolor); padding: 10px 30px; border-radius: 50px; transition: .3s; display: block; width: auto; align-self: flex-start;}
#new_section .new_tit a span {font-size: 18px;}
#new_section .new_tit a:hover {background: var(--mallcolor);}
#new_section .new_tit a:hover span {color: #fff;}
#new_section .new_tit .brick {color: var(--mallcolor);}

#new_section .new_con {position: relative; overflow: hidden;}
#new_section .swiper-slide {width: 100%; height: 100%; background: #fff1ec; padding: 50px 30px; display: flex; justify-content: space-between; flex-direction: column; border-radius: 20px;}
#new_section .swiper-slide .new_img {width: 100%; overflow: hidden; aspect-ratio: 1/1; }
#new_section .swiper-slide .new_img a {display: block; width: 100%; height: 100%;}
#new_section .swiper-slide .new_img img {width: 100%; height: 100%; transition: transform 0.3s ease;}
#new_section .swiper-slide:hover .new_img img {transform: scale(1.05);}
#new_section .red {color: #ae0000; font-weight: 700;}
#new_section .new_text {padding: 20px;}
#new_section .new_text h4 {font-size: 25px; margin-bottom: 30px; display: flex; justify-content: space-between;}
#new_section .new_text h4 .newTitle {width: calc(100% - 30px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
#new_section .new_text button {width: 30px; float: right; cursor: pointer; background: none; border: none;}
/* #new_section .new_text button img {width: 30px;}

#new_section .new_text .before-price {font-size: 15px; font-weight: 100; position: relative;}
#new_section .new_text .before-price::after {content: ""; display: inline-block; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #333;}
#new_section .new_text .new-price {font-size: 20px; font-weight: 600;} */

/*251229 수정*/
#new_section .new_text button img {width: 25px;}

#new_section .new_text .before-price {font-size: 15px; font-weight: 100; position: relative;}
#new_section .new_text .before-price::after {content: ""; display: inline-block; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #333;}
#new_section .new_text .new-price {font-size: 20px; font-weight: 600;}

@media screen and (max-width:1440px) {
  #new_section .contents01 {padding: 100px 20px; }
}



/*251229 수정*/
@media screen and (max-width:1300px) {
  #new_section .new_tit {flex: 0 0 30%;}
  #new_section .swiper-slide {
    padding: 20px;
  }
  #new_section .new_text {
    padding: 15px 10px 0;
  }
}

@media screen and (max-width:1024px) {
  #new_section .contents01 {flex-wrap: wrap;}
  #new_section .new_tit {width: 100%;  align-items: center; padding: 0 40px 50px; flex: 0 0 100%;}
  #new_section .new_tit  a {align-self: center; text-align: center;}
  #new_section .swiper-slide {padding: 30px 20px;}
  #new_section .new_tit h4 {font-size: 18px;}
  #new_section .new_tit h3 {font-size: 30px;}

  #new_section .new_text {width: 100%; }
  #new_section .new_text h4 {display: flex; flex-direction: column-reverse; gap: 10px; width: 100%; }
  /* 글자가 들어있는 span에 ellipsis */
    #new_section .new_text h4 .newTitle{
    flex:1 1 auto;            /* 남는 공간 차지 */
    min-width:0;               /* flex 수축 허용(중요) */
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    width: calc(100% - 5px);
    }

    /* 버튼은 내용폭에 영향 안 주게 */
    #new_section .new_text h4 .btn-cart{ flex:0 0 auto; }

}

@media screen and (max-width:768px) {
    #new_section .new_tit{min-width: auto;  padding: 0 20px 30px; }
  #new_section .new_tit h4 {font-size: 18px;}
  #new_section .new_tit h3 {font-size: 30px;}
  #new_section .new_tit a {padding: 5px 20px;}
  #new_section .new_tit a span {font-size: 14px;}

  #new_section .swiper-slide {padding: 30px 20px;}
  #new_section .new_text {padding: 10px; }
  #new_section .new_text h4 {font-size: 20px; margin-bottom: 20px; gap: 5px;}
  #new_section .new_text button {width: 20px;}
  #new_section .new_text button img {width: 20px;}
}

@media screen and (max-width:500px) {
  #new_section .contents01 {padding: 80px 20px;}
  #new_section .swiper-slide {padding: 15px 10px;}
  #new_section .new_text {padding-bottom: 0;}
  #new_section .new_text{padding: 10px 0;}
  #new_section .new_text h4{
    font-size: 14px;
        margin-bottom: 10px;
  }
}

@media screen and (max-width:480px) {
  #new_section .contents01 {padding: 80px 15px;}
}

@media screen and (max-width:420px) {
  #new_section .new_text .before-price {font-size: 13px;}
  #new_section .new_text .new-price {font-size: 17px;}
}


/* 섹션02 */
#like_section {width: 100%; height: 100%; background: #fffbf0;}
#like_section .contents02 {max-width: 1440px; margin: 0 auto; position: relative; gap: 30px; display: flex; flex-direction: column; padding: 100px 20px;}
#like_section .con ul {display: flex; justify-content: space-between; gap: 30px;}
#like_section .con ul li {width: calc(33.333% - 20px); background: #fff; border-radius: 20px; position: relative;}
#like_section .con ul li a {display: block; width: 100%; }
/* #like_section .con ul li button {background: none; border: none;} */
#like_section .con_top ul li:last-child {background: none;}
#like_section .con_bottom ul li:first-child {background: none;}
#like_section .con_tit {padding: 80px 20px 50px; display: flex; justify-content: space-between; flex-direction: column;}
#like_section .con_tit h3 {font-family: 'Agro2', sans-serif; font-size: 40px;}
#like_section .con_tit p {font-family: 'Agro1', sans-serif; font-size: 25px; margin-top: 30px;}
#like_section .con_tit .bottom_text a {display: inline-block; width: auto; border: 1px solid var(--mallcolor); color: var(--mallcolor); padding: 10px 30px; border-radius: 50px; transition: .3s;}
#like_section .con_tit .bottom_text a span {font-size: 18px; }
#like_section .con_tit .bottom_text:hover a {background: var(--mallcolor);}
#like_section .con_tit .bottom_text:hover a span {color: #fff;}


#like_section .product {display: flex; justify-content: center; flex-direction: column; align-items: center; padding: 20px;}
#like_section .product_img {width: 100%; height: 400px; overflow: hidden; border-radius: 20px;}
#like_section .product_img img {width: 100%; height: 100%; border-radius: 20px; transition: transform 0.3s ease;}
#like_section .product:hover {box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06);}
#like_section .product:hover .product_img img {transform: scale(1.05);}

#like_section .red {color: #ae0000; font-weight: 700;}
#like_section .price_text {padding: 20px;}
#like_section .price_text h4 {font-size: 25px; margin-bottom: 30px;}
#like_section .price_text button {width: 30px; float: right; cursor: pointer;}
#like_section .price_text button img {width: 30px;}

#like_section .price_text .before-price {font-size: 15px; font-weight: 100; position: relative;}
#like_section .price_text .before-price::after {content: ""; display: inline-block; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #333;}
#like_section .price_text .sale-price {font-size: 20px; font-weight: 600;}

@media screen and (max-width:1280px) {
  #like_section .con_top ul {display: grid; grid-template-columns: repeat(2, 1fr); }
  #like_section .con_top ul li { width: auto; }
  #like_section .con_tit {order: -1; grid-column: 1 / -1; padding: 30px 20px;  text-align: center;}
   #like_section .con_bottom ul {display: grid; grid-template-columns: repeat(2, 1fr); }
  #like_section .con_bottom ul li {width: auto;}
  #like_section .con_tit p {margin: 20px 0 20px;}
}
@media screen and (max-width:1024px) {
    #like_section .price_text {width: 100%; }
    #like_section .price_text h4 {display: flex; flex-direction: column-reverse; gap: 10px; width: 100%; }
    /* 글자가 들어있는 span에 ellipsis */
    #like_section .price_text .price_textTitle{
        flex:1 1 auto;            /* 남는 공간 차지 */
        min-width:0;               /* flex 수축 허용(중요) */
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

        /* 버튼은 내용폭에 영향 안 주게 */
        #like_section .price_text .btn-cart{ flex:0 0 auto; }
}
@media screen and (max-width:768px) {
  #like_section .con ul {gap: 20px;}

  
  #like_section .con_tit h3 {font-size: 30px;}
  #like_section .con_tit p {font-size: 18px;}
  #like_section .con_tit .bottom_text a {padding: 5px 20px;}
  #like_section .con_tit .bottom_text a span {font-size: 14px;}
  #like_section .product_img {height: 280px;}

  #like_section .price_text{padding: 10px 0 ;}
  #like_section .price_text h4 {font-size: 20px; margin-bottom: 30px;}
  #like_section .price_text button {width: 20px;}
  #like_section .price_text button img {width: 20px;}
  #like_section .price_text .before-price {font-size: 13px;}
  #like_section .price_text .sale-price {font-size: 20px;}
}

@media screen and (max-width:600px) {
  #like_section .contents02 {padding: 80px 20px;}
  #like_section .product_img {height: 200px;}
  #like_section .con ul {gap: 10px;}

}

@media screen and (max-width:500px) {
  #like_section .product_img {height: 150px;}
  #like_section .product {padding: 15px 10px;}

    #like_section .price_text h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:480px) {
  #like_section .contents02 {padding: 80px 15px;}
}

@media screen and (max-width:420px) {
  #like_section .price_text .sale-price {font-size: 17px;}
}

@media screen and (max-width:376px) {
  #like_section .product_img {height: 120px;}
}


/* 섹션03 */
.only_section {width: 100%; height: 100%;}
.only_section .contents03 {max-width: 1440px; margin: 0 auto; position: relative; padding: 100px 20px;}

.only_section .con_tit {display: flex; justify-content: space-between; margin-bottom: 100px;}
.only_section .con_tit h3 {font-family: 'Agro2', sans-serif; font-size: 40px;}
.only_section .cate ul {display: flex; justify-content: flex-end; align-items: end; gap: 20px;}
.only_section .cate ul li {color: var(--mallcolor); border: 1px solid var(--mallcolor); border-radius: 50px;  padding: 10px 20px; transition: .3s; font-size: 15px; cursor: pointer;}
.only_section .cate ul li:hover {background: var(--mallcolor); color: #fff;}

.only_section .only_product ul {display: flex; justify-content: center; gap: 20px;}
.only_section .only_product ul li {width: calc(25% - 15px); height: 400px; position: relative; overflow: hidden;}
.only_section .only_product .text {
    color: rgb(255, 255, 255);
    font-size: 25px;
    position: absolute;
    z-index: 2;
    bottom: 0px;
    width: 100%;
    left: 0px;
    text-align: center;
    padding: 30% 0px 10%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}
.only_section .only_product .text h4 {font-family: 'Agro1'; /* color: #434e38; */ font-size: 25px; position: absolute; z-index: 2; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(0); opacity: 1; width: 100%; }  

.only_section .only_product .product {width: 100%; height: 100%; transition: all 0.3s ease; display: block; position: relative; border-radius: 20px; overflow: hidden;} 
/* .only_section .only_product .product::after{content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 1; opacity: 0; transition: opacity .35s ease;}
.only_section .only_product .product:hover::after{opacity:1;} */
.only_section .only_product .product:hover .text h4 {display: none;}


.only_section .only_product .product{
  width:100%;
  height:100%;
  display:block;
  position:relative;
  border-radius:20px;
  overflow:hidden;
}

.only_section .only_product .product .thumb{
  position:absolute;
  inset:0;
  border-radius:inherit;
  overflow:hidden;
  z-index:0;
}

.only_section .only_product .product .thumb img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition: opacity .45s ease, transform .45s ease;
  transform: scale(1);
  display:block;
}

.only_section .only_product .product .img_base{ opacity:1; }
.only_section .only_product .product .img_hover{ opacity:0; }

.only_section .only_product .product:hover .img_base{ opacity:0; }
.only_section .only_product .product:hover .img_hover{ opacity:1; }
.only_section .only_product .product:hover .thumb img{ transform: scale(1.03); }

.only_section .only_product .text h4{
  position:absolute;
  z-index:2;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
}


.only_section .only_product .hover_arrow{
  z-index:2;
}

.only_section .only_product .product:hover .text h4 { display:none; }


.only_section .only_product .hover_arrow {position: absolute; right: 16px; bottom: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--mallcolor); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0; transform: scale(0.9); transition: opacity 0.25s ease, transform 0.25s ease; z-index: 2;}
.only_section .only_product .product:hover .hover_arrow {opacity: 1; transform: scale(1);}

/*active*/
.only_section .cate ul li.active {background: var(--mallcolor);color: #fff;}
.only_section .only_product > div {display: none;}
/*251229 수정*/
.only_section .only_product > div:first-child {display: block;}

@media screen and (max-width:1024px) {
  .only_section .only_product ul {flex-wrap: wrap;}
  .only_section .only_product ul li {width: calc(50% - 10px);}
}

@media screen and (max-width:640px) {
  .only_section .cate ul {gap: 10px;}
}

@media screen and (max-width:768px) {
  .only_section .con_tit {justify-content: center; flex-wrap: wrap; margin-bottom: 50px;}
  .only_section .con_tit .cate {width: 100%; }
  .only_section .cate ul {width: 100%; justify-content: center;}
  .only_section .con_tit h3 {font-size: 30px; width: 100%; text-align: center; margin-bottom: 30px;}
  .only_section .cate ul li {font-size: 13px;}

  .only_section .only_product ul li {height: 300px;}
  .only_section .only_product .text h4 {font-size: 16px;}
}

@media screen and (max-width:500px) {
  .only_section .contents03 {padding: 80px 20px;}
  .only_section .only_product ul {gap: 10px;}
}

@media screen and (max-width:480px) {
  .only_section .contents03 {padding: 80px 15px;}
  .only_section .cate ul {justify-content: center; align-items: center; flex-wrap: wrap;}
  .only_section .cate ul li {width: calc(50% - 5px); text-align: center;}
}

@media screen and (max-width:420px) {
  .only_section .only_product .text h4 {font-size: 14px;}
  .only_section .only_product .product {background-size: contain !important;}
}

/* 배너섹션 */
#banner_section {
  padding-bottom: 100px;
}
#banner_section .contents04 {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0px 20px;
}

#banner_section .contents04 ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#banner_section .contents04 ul li {
  width: calc(50% - 10px);
}
#banner_section .banner{
  display:block;
  position:relative;
  border-radius:20px;
  overflow:hidden;
  min-height:260px;
}

#banner_section .banner_img{
  position:absolute;
  inset:0;
}

#banner_section .banner_img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1);
  transition:transform .45s ease;
}

#banner_section .banner_cong::after{
  content:"";
  position:absolute;
  inset:0;
  transition:opacity .35s ease;
  opacity:1;
}

#banner_section .banner_cond::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.0));
  transition:opacity .35s ease;
  opacity:1;
}

#banner_section .banner_text{
  position:relative;
  z-index:2;
  padding:32px 28px;
  color:#fff;
  max-width:70%;
  font-family: 'Agro1', sans-serif; 
}

#banner_section .banner_cong .banner_text {
  color: #333;
}

#banner_section .banner_text strong{
  display:block;
  font-size:30px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:10px;
}

#banner_section .banner_text p{
  font-size:15px;
  line-height:1.55;
  opacity:.92;
  margin-bottom:18px;
}

#banner_section .banner_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.28);
  font-size:13px;
  font-weight:700;
  transition:background .25s ease, transform .25s ease;
}

#banner_section .banner .banner_btn{
  color: #333;
  margin-top: 50px;
}

#banner_section .banner:hover .banner_img img{
  transform:scale(1.05);
}

#banner_section .banner:hover .banner_btn{
  background:rgba(255,255,255,.24);
  transform:translateY(-1px);
}

@media (max-width:768px){
  #banner_section .contents04 ul{
    flex-wrap:wrap;
  }
  #banner_section .contents04 ul li{
    width:100%;
  }
  #banner_section .banner{
    min-height:220px;
  }
  #banner_section .banner_text{
    max-width:85%;
  }
}

@media (max-width:500px){
  #banner_section .banner_text strong {
    font-size: 20px;
  }
  #banner_section .banner_text p {
    font-size: 13px;
    margin: 0;
  }
  #banner_section .banner .banner_btn {
    font-size: 12px;
    margin-top: 20px;
    height: auto;
    padding: 5px 16px;
  }
  #banner_section .banner {
    min-height: 180px;
  }
}

/* 배너섹션02 : 띠배너 */
#banner_section02 .contents04{
  max-width:1440px;
  margin:0 auto;
  position:relative;
  padding:0 20px 100px;
}

#banner_section02 .strip_banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 26px;
  border-radius:18px;
  color:#fff;
  overflow:hidden;
  position:relative;
  background:linear-gradient(90deg, #144d0c, #3a3a3a);
}

#banner_section02 .strip_banner::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at 30% 50%, rgba(255,255,255,.20), transparent 55%);
  transform:rotate(8deg);
  pointer-events:none;
}

#banner_section02 .strip_text{
  position:relative;
  z-index:1;
  font-family: 'Agro1', sans-serif; 
}

#banner_section02 .strip_text strong{
  display:block;
  font-size:22px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:6px;
}

#banner_section02 .strip_text p{
  font-size:14px;
  opacity:.9;
  line-height:1.4;
}

#banner_section02 .strip_btn{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:40px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
  transition:transform .25s ease, background .25s ease;
}

#banner_section02 .strip_banner:hover .strip_btn{
  background:rgba(255,255,255,.22);
  transform:translateX(2px);
}

@media (max-width:768px){
  #banner_section02 .strip_banner{
    flex-direction:column;
    align-items:flex-start;
  }
  #banner_section02 .strip_btn{
    width:100%;
    justify-content:center;
  }
}

@media (max-width:500px){
  #banner_section02 .contents04 {
    padding: 0 15px 80px;
  }
}

/* 화환섹션 */
.wreath_section {
  padding: 0 20px 100px;
}
.wreath_section .wreath_tit {
  margin-bottom: 100px;
}

.wreath_section .wreath_tit h3 {
    font-family: 'Agro2', sans-serif;
    font-size: 40px;
}

.wreath_section .product {display: flex; justify-content: center; flex-direction: column; align-items: center; padding: 20px; border: 1px solid #eee;}
.wreath_section .product_link {display: block; width: 100%;}
.wreath_section .product_img {width: 100%; overflow: hidden; border-radius: 20px; }

.wreath_section .product_img img {width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 20px; transition: transform 0.3s ease;}
.wreath_section .product:hover {box-shadow: 0 8px 10px rgba(0, 0, 0, 0.06);}
.wreath_section .product:hover .product_img img {transform: scale(1.05);}

.wreath_section .red {color: #ae0000; font-weight: 700;}
.wreath_section .price_text {padding: 20px;}
.wreath_section .price_text h4 {font-size: 25px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: center;}
.wreath_section .price_text h4 .price_textTitle{
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wreath_section .price_text .btn-cart{ flex: 0 0 auto; }
.wreath_section .price_text button {width: 25px; float: right; cursor: pointer;}
.wreath_section .price_text button img {width: 25px;}

.wreath_section .price_text .before-price {font-size: 15px; font-weight: 100; position: relative;}
.wreath_section .price_text .before-price::after {content: ""; display: inline-block; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #333;}
.wreath_section .price_text .sale-price {font-size: 20px; font-weight: 600; word-break: keep-all; }
.wreath_section .price_text button {background: none; border: none;}

.wreath_section .con_wreath{
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 30px;
  align-items: center;
}
.wreath_section .con_wreath.sym_wreath{
  margin-top: 70px;
  grid-template-columns: 1fr minmax(280px, 380px);
}


/* 공통 타이틀 박스 */
.wreath_section .sub_tit{
  position: relative;
  width: 100%;
  height: 100%;
  background: #E39678;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;

  border-radius: 24px;
  background: rgba(227,150,120,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.wreath_section .sub_tit > *{
  text-align: left;
}

.wreath_section .sym_wreath .sub_tit{
  background: rgba(40, 46, 55, 0.45);
  border: 1px solid rgba(255,255,255,0.35);
}


.wreath_section .sub_tit::before{
  content:"화환의 품격";
  position:absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(17,17,17,0.8);
  background: rgba(255,255,255,0.55);
}
.wreath_section .sub_tit::after{
  content:"";
  position:absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  filter: blur(0.2px);
}

.wreath_section .sub_tit h4{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.wreath_section .sub_tit p{
  font-size: 16px;
   color: rgba(17,17,17,0.75);
  line-height: 1.6;
}

/* 더보기 버튼 */
.wreath_section .more_btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  transition: 0.2s ease;
  background: rgba(255, 255, 255, .3);
}
.wreath_section .more_btn:hover{
  border-color: rgba(0,0,0,0.35);
  transform: translateY(-1px);
}
.wreath_section .more_btn .arrow{
  transition: 0.2s ease;
}
.wreath_section .more_btn:hover .arrow{
  transform: translateX(3px);
}

.wreath_section .swiper-wrapper{
  margin: 0;
  padding: 0;
  list-style: none;
}

.wreath_section .wreath_swiper_wrap,
.wreath_section .wreath_swiper,
.wreath_section .swiper{
  min-width: 0;
}



@media (max-width: 1024px){
  .wreath_section .wreath_tit h3{ font-size: 34px; }
  .wreath_section .con_wreath{
    grid-template-columns: 320px 1fr;
  }
  .wreath_section .con_wreath.sym_wreath{
    grid-template-columns: 1fr 320px;
  }

  .wreath_section .price_text h4 .price_textTitle{
    font-size: 18px;
  }

    .wreath_section .red{
        font-size: 16px;
    }

    .wreath_section .price_text .sale-price{
        font-size: 16px;
    }

    
  .wreath_section .price_text .before-price {
    font-size: 13px;
  }

}

@media (max-width: 768px){
  .wreath_section{
    padding: 0 20px 50px;
  }
  
  .wreath_section .wreath_tit{
    margin-bottom: 50px;
  }
  .wreath_section .wreath_tit h3{
    font-size: 28px;
  }

  .wreath_section .sub_tit {
    padding: 10px 20px;
  }

  .wreath_section .sub_tit h4 {
    margin: 0;
    font-size: 25px;
  }
  .wreath_section .sub_tit p {
    font-size: 14px;
  }
  .wreath_section .more_btn {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .wreath_section .sub_tit::before {
    display: none;
  }

  .wreath_section .con_wreath,
  .wreath_section .con_wreath.sym_wreath{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .wreath_section .con_wreath.sym_wreath .sub_tit,
  .wreath_section .con_wreath.sym_wreath .wreath_swiper_wrap{
    order: initial;
  }

  .wreath_section .con_wreath.sym_wreath .sub_tit{ order: 1; }
  .wreath_section .con_wreath.sym_wreath .wreath_swiper_wrap{ order: 2; }

  .wreath_swiper_wrap{
    padding: 10px 0;
  }

  .wreath_section .price_text{
    padding: 20px 0;
  }

  .wreath_section .price_text h4 .price_textTitle{
    font-size: 16px;
  }

  
}

@media (max-width: 500px){
  .wreath_section {
    padding: 0 15px 50px;
  }
  .wreath_section .con_wreath.sym_wreath {
    margin-top: 40px;
  }
  .wreath_section .product {
    padding: 15px 10px;
  }
  .wreath_section .price_text {
    padding: 10px 0;
  }
  .wreath_section .price_text h4 {
    font-size: 18px;
    margin-bottom: 30px
  }
  .wreath_section .price_text button img {
    width: 20px;
  }

  .wreath_section .price_text h4 .price_textTitle{
    font-size: 14px;
  }


}
