#container{
    padding:160px 16px 0px 16px;
}
#header{
    width:100%;
    display:flex;
    flex-direction: column;
    align-items:center;
    box-sizing:border-box;
    height: 130px;
    background:#fff;
    justify-content: space-between;
    position:fixed;
    top:0;
    max-width: 540px;
    z-index: 100;
}
#header img{
    width:20px;
    height:auto;
}
#header .header-menu-top{
    display:flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    padding:0 16px;
    height:52px;
}
#header .hamburger-lines{
    cursor: pointer;
    display:flex;
    align-items: center;
}
#header .main_logo img{
    width:145px;
    height:auto;
}
#header .right_menu {
    position:relative;
    width:80px;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
#header .right_menu .search_btn{
    background:no-repeat url('/img/icon/search.png');
    background-size:20px 20px;
    width:20px;
    height:20px;
    border:none;
}
#header .right_menu .basket_count{
    width:20px;
    height:20px;
    text-align:center;
    border-radius:10px;
    background:#ff3627;
    display:block;
    position:absolute;
    top:-8px;
    right:-5px;
    color:#fff;
    font-size:12px;
    line-height:20px;
    text-align:center;
}
#header .hamburger_menu{
    width:100%;
    height:100vh;
    position:absolute;
    top:0;
    left:-100%;
    background:rgba(255,255,255,.85);
    box-sizing:border-box;
    transition-duration:0.5s;
    visibility: hidden;  
    opacity: 0;
    overflow-y: scroll;
    backdrop-filter: blur(30px);
}
#header .hamburger_menu::-webkit-scrollbar{
    display:none;
    -ms-overflow-style:none;
}
#header .hamburger_menu.open{
    left:0%;
    visibility: visible;
    opacity:1;
}
#header .hamburger_menu .hamburger_menu_top{
    width:100%;
    height:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 16px;
    box-sizing: border-box;
}
#header .hamburger_menu .hamburger_menu_top img{
    height:14px;
    width:auto;
}
#header .hamburger_menu .hamburger_menu_top .close_hamburger{
    cursor: pointer;
}
#header .hamburger_menu #category{
    width:100%;
    margin:20px 0 108px 0;
    padding:0 16px;
    box-sizing: border-box;
}
#header .hamburger_menu #category ul.cate > li{
    width:100%;
    box-sizing:border-box;
    line-height:50px;
    color:#000;
    font-size:15px;
    font-weight: 700;
    margin-bottom:6px;
    display:inline-block;
    border-bottom:1px solid #221f20;
}
#header .hamburger_menu #category ul.cate > li.more_cate{
    border-bottom:none;
}
#header .hamburger_menu #category ul.cate > li.more_cate p{
    width:100%;
    height:50px;
    background:no-repeat url('/img/icon/icon.png');
    background-size:12px 12px;
    background-position:center right;
    cursor: pointer;
    border-bottom:1px solid #221f20;
}
#header .hamburger_menu #category ul.cate > li.ct_op p{
    background:no-repeat url('/img/icon/vector.png');
    background-size:12px 2px;
    background-position:center right;
}
#header .hamburger_menu #category ul.cate > li > a{
    color:#000;
}
#header .hamburger_menu #category ul.cate > li > ul.sub_cate{
    display:none;
}
#header .hamburger_menu #category ul.cate > li.login_box a{
    color:#000;
    font-size:15px;
    font-weight:700;
}
#header .hamburger_menu #category ul.cate > li.login_box span{
    padding:0 5px;
}
#header .hamburger_menu #category ul.cate > li.login_box{
    border-bottom:none;
}
#header .hamburger_menu #category ul.cate > li > ul > li{
    border-bottom: 1px solid #e4e4e4;
    margin-bottom:4px;
    box-sizing: border-box;
    padding-left:30px;
}
#header .hamburger_menu #category ul.cate > li > ul > li > a{
    color:#221f20;
    font-size:14px;
    font-weight:400;
}
#header .hamburger_menu #category ul.cate > li > a.ol_after_name{
    color:#f190a4;
    font-weight: 500;
}
#header .hamburger_menu .bottom_menu{
    width:100%;
    height:54px;
    background:#a9b44b;
}
#header .hamburger_menu .bottom_menu ul{
    display:flex;
    align-items: center;

}
#header .hamburger_menu .bottom_menu ul li{
    width:100%;
    height:54px;
    line-height: 54px;
    display:flex;
    justify-content: center;
}
#header .hamburger_menu .bottom_menu ul li a{
    color:#fff;
    font-size:16px;
    display:flex;
    align-items: center;
}
#header .hamburger_menu .bottom_menu ul li a img{
    margin-right:10px;
}
#header .hamburger_menu .bottom_menu ul li a img.location{
    width:18px;
    height:22px;
}
#header .hamburger_menu .bottom_menu ul li a img.mypage{
    width:20px;
    height:20px;
}
#header .hamburger_menu .bottom_menu ul li:last-child{
    border-left:1px solid rgba(255,255,255,.5);
    box-sizing:border-box;
}
/* 검색 폼 */
#header .search_box{
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100vh;
    background:rgba(255,255,255,.85);
    box-sizing: border-box;
    padding:24px 16px;
    visibility: hidden;
    opacity: 0;
    transition-duration:0.5s;
    overflow-y:scroll;
    backdrop-filter:blur(30px);
}
#header .search_box.open{
    visibility: visible;
    left:0%;
    opacity: 1;
}
#header .search_box .search_close_btn{
    text-align:right;
}
#header .search_box .search_close_btn .sc_btn{
    cursor: pointer;
    width:14px;
    height:14px;
}
#header .search_box form{
    margin-top:40px;
    position:relative;
}
#header .search_box form button.btn_submit{
    position:absolute;
    right:0;
    bottom:15px;
    border:none;
    background:none;
}
#header .search_box form input{
    font-size:22px;
    background:none;
    border:none;
    border-bottom:2px solid #000000;
    width:100%;
    padding:10px 0;
    color:#333333;
}
#header .search_box form input:focus{
    outline:none;
}
#header .search_box .search_hot_keywords{
    width:100%;
    margin-top:20px;
}
#header .search_box .search_hot_keywords h1{
    font-size:22px;
    color:#333333;
    font-weight:400;
    padding-bottom:8px;
}
#header .search_box .keywords_list{
    display: flex;
    flex-wrap: wrap;
}
#header .search_box .search_hot_keywords p {
    padding: 5px 8px;
    border: 1px solid #bdbdbd;
    border-radius: 30px;
    background: #fff;
    margin-right: 5px;
    margin-bottom: 8px;
}
#header .search_box .search_hot_keywords p a{
    font-size:13px;
    color:#000000;
    font-weight: 300;
}

.header_menu {
    width: 100%;
    overflow: hidden;
    border-top:1px solid #f5f5f5;
    border-bottom:1px solid #f5f5f5;
}

.header_menu .swiper-wrapper {
    display: flex;
    align-items: center;
    z-index: 0;
}

.header_menu .swiper-slide a {
    display: block;
    width: 100%;
    padding: 10px 5px;
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
}

#header .menu-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px 8px;
        width: 100%;
        margin-top:20px;
        box-sizing: border-box;
        padding:0 16px;
    }

#header .menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
    }

    /* 이미지 영역 */
#header .menu-image {
        width: 100%;
        aspect-ratio: 1 / 1;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

#header .menu-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 메뉴 이름 */
#header .menu-title {
        margin-top: 7px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        text-align: center;
        white-space: nowrap;
    }


/* =========================================================
   전체 필터
   ========================================================= */

#lens-filter {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-top:14px;
}


/* =========================================================
   필터 전체 박스
   ========================================================= */

#lens-filter .lens-filter-box {
    width: 100%;

    margin: 0;
    padding: 24px 16px;

    border: 1px solid #dfdfdf;
    border-radius: 10px;

    background: rgba(255,255,255,.5);

    box-sizing: border-box;
}


/* =========================================================
   안내 문구
   ========================================================= */

#lens-filter .lens-filter-guide {
    margin: 0 0 12px;
    padding: 0 0 12px;

    border-bottom: 1px solid #eeeeee;

    font-size: 13px;
    line-height: 1.6;

    color: #777;

    box-sizing: border-box;
}


/* =========================================================
   필터 그룹 전체
   ========================================================= */

#lens-filter .lens-filter-groups {
    width: 100%;
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* =========================================================
   각각의 필터 그룹
   ========================================================= */

#lens-filter .filter-group {
    width: 100%;

    margin: 0;
    padding: 0 0 24px;

    box-sizing: border-box;
}


/*
 * 마지막 그룹은 아래 여백 제거
 */

#lens-filter .filter-group:last-child {
    padding-bottom: 0;
}


/* =========================================================
   필터 제목
   ========================================================= */

#lens-filter .filter-group-title {
    margin: 0 0 12px;
    padding: 0;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;

    color: #222;

    box-sizing: border-box;
}


/* =========================================================
   버튼 영역
   ========================================================= */

#lens-filter .filter-options {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    width: 100%;
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* =========================================================
   필터 버튼
   ========================================================= */

#lens-filter .filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    box-sizing: border-box;
}


/* =========================================================
   버튼 Hover
   ========================================================= */

#lens-filter .filter-btn:hover {
    border-color: #222;
    background: #fafafa;
}


/* =========================================================
   선택된 버튼
   ========================================================= */

#lens-filter .filter-btn.active {
    border-color: #c7d83f;
    background: #c7d83f;
    color: #fff;
    font-weight: 600;
}


/* =========================================================
   컬러 ●
   ========================================================= */

#lens-filter .filter-color-dot {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
    line-height: 1;
}
#lens-filter .filter-color-0 .filter-color-dot{
    color:rgb(240, 215, 177);
}
#lens-filter .filter-color-1 .filter-color-dot{
    color:rgb(205, 205, 205);
}
#lens-filter .filter-color-2 .filter-color-dot{
    color:rgb(250, 190, 223);
}
#lens-filter .filter-color-3 .filter-color-dot{
    color:rgb(218, 190, 243);
}
#lens-filter .filter-color-4 .filter-color-dot{
    color:rgb(195, 250, 220);
}
#lens-filter .filter-color-5 .filter-color-dot{
    color:rgb(165, 222, 250);
}
#lens-filter .filter-color-6 .filter-color-dot{
    color:rgb(0, 0, 0);
}
#lens-filter .filter-color-7 .filter-color-dot{
    color:rgb(237, 248, 255);
}




/*
 * 선택됐을 때 ●도 흰색
 */

#lens-filter .filter-btn.active .filter-color-dot {
    color: #fff;
}


/* =========================================================
   아주 작은 모바일
   ========================================================= */

@media (max-width: 460px) {

    #lens-filter .lens-filter-box {
        padding: 12px 12px;
    }


    #lens-filter .filter-btn {
        padding: 6px 8px;
        font-size: 12px;
    }

}
/* =========================================================
   선택 초기화 버튼
   ========================================================= */

#lens-filter .lens-filter-reset-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom:8px;
}


#lens-filter .lens-filter-reset {
    height: 34px;

    padding: 0 14px;

    border: 1px solid #d5d5d5;
    border-radius: 5px;

    background: #fff;

    color: #666;

    font-size: 12px;
    font-weight: 400;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;

    box-sizing: border-box;
}


#lens-filter .lens-filter-reset:hover {
    border-color: #222;
    background: #222;
    color: #fff;
}

/* 상단 세로 띠배너 */
.top_stripbanner {
    width: 100%;
    height: 36px;
    overflow: hidden;
}

.top_stripbanner .swiper {
    width: 100%;
    height: 36px;
}
.top_stripbanner .swiper-wrapper{
    z-index: 0;
}

.top_stripbanner .swiper-slide {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top_stripbanner .swiper-slide a {
    display: block;
    width: 100%;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    line-height: 36px;
}


/* =========================================================
   필터 상품 결과 영역
   ========================================================= */
#lens-filter-result{
    margin-top:14px;
}
#lens-filter-result .filter-result-empty{
    font-size: 13px;
    color:#333333;
}

.filter-products {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   상품 개수
   ========================================================= */

.filter-products .filter-product-count {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    box-sizing: border-box;
}


.filter-products .filter-product-list {
    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 40px 20px;

    width: 100%;
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;

    box-sizing: border-box;
}

.filter-products .filter-product-list > li {
    display: block !important;

    width: 100% !important;
    min-width: 0;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box;
}


/* =========================================================
   상품 링크
   기존 .sct_li CSS 영향 제거
   ========================================================= */

.filter-products .filter-product-list > li > a.sct_li {
    display: block !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    color: inherit;
    text-decoration: none;

    box-sizing: border-box;
}


/* =========================================================
   상품 이미지 영역
   ========================================================= */

.filter-products .sct_img {
    position: relative;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;

    box-sizing: border-box;
}


/*
 * 이미지 비율
 * 필요하면 여기 숫자만 변경
 */

.filter-products .sct_a {
    position: relative;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;

    box-sizing: border-box;

    aspect-ratio: 1 / 1;
}


/* =========================================================
   상품 이미지
   ========================================================= */

.filter-products .sct_a img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;

    border: 0;

    box-sizing: border-box;
}


/* =========================================================
   상품 정보
   ========================================================= */

.filter-products .prd_info {
    width: 100% !important;

    margin: 0 !important;
    padding: 14px 0 0 !important;

    box-sizing: border-box;
}


/* =========================================================
   상품 텍스트
   ========================================================= */

.filter-products .sct_text_items {
    width: 100%;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* =========================================================
   상품명
   ========================================================= */

.filter-products .prd_name {
    display: block;

    width: 100%;

    margin: 0 0 8px !important;
    padding: 0 !important;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;

    color: #222;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    box-sizing: border-box;
}


/* =========================================================
   가격
   ========================================================= */

.filter-products .prd_price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;

    color: #111;

    box-sizing: border-box;
}


/* 기존 가격 CSS 영향 최소화 */

.filter-products .prd_price .before {
    margin-right: 6px;

    color: #999;
    font-size: 13px;
    font-weight: 400;
}


/* 취소선 */

.filter-products .prd_price .before strike {
    text-decoration: line-through;
}


/* 원 */

.filter-products .prd_price .price_unit {
    margin-left: 2px;

    font-size: 13px;
    font-weight: 400;
}


/* =========================================================
   더보기 영역
   ========================================================= */

.filter-products .filter-more-wrap {
    display: flex;

    width: 100%;

    margin: 50px 0 0;
    padding: 0;

    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   더보기 버튼
   ========================================================= */

.filter-products .filter-more-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;
    height: 48px;

    margin: 0;
    padding: 0 30px;

    border: 1px solid #ddd;
    border-radius: 4px;

    background: #fff;

    color: #222;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;

    box-sizing: border-box;
}


/* 더보기 hover */

.filter-products .filter-more-btn:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}


/* 더보기 로딩 */

.filter-products .filter-more-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}


/* =========================================================
   결과 없음
   ========================================================= */

.filter-products .filter-result-empty {
    display: flex;

    width: 100%;
    min-height: 200px;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 40px 20px;

    color: #888;

    font-size: 14px;

    box-sizing: border-box;
}


/* =========================================================
   로딩
   ========================================================= */

.filter-products .filter-result-loading {
    display: flex;

    width: 100%;
    min-height: 200px;

    align-items: center;
    justify-content: center;

    color: #888;

    font-size: 14px;

    box-sizing: border-box;
}


/* =========================================================
   태블릿
   ========================================================= */

@media (max-width: 1024px) {

    .filter-products .filter-product-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 35px 16px;
    }

}


/* =========================================================
   모바일
   ========================================================= */

@media (max-width: 767px) {

    .filter-products .filter-product-count {
        margin-bottom: 16px;

        font-size: 13px;
    }


    .filter-products .filter-product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 30px 10px;
    }


    .filter-products .prd_info {
        padding-top: 10px !important;
    }


    .filter-products .prd_name {
        margin-bottom: 5px !important;

        font-size: 13px;
    }


    .filter-products .prd_price {
        font-size: 14px;
    }


    .filter-products .filter-more-wrap {
        margin-top: 40px;
    }


    .filter-products .filter-more-btn {
        width: 100%;
        max-width: 100%;
        height: 46px;
    }

}


/* =========================================================
   아주 작은 모바일
   ========================================================= */

@media (max-width: 460px) {

    .filter-products .filter-product-list {
        gap: 25px 8px;
    }


    .filter-products .prd_name {
        font-size: 12px;
    }


    .filter-products .prd_price {
        font-size: 13px;
    }

}
/* ================================
   모바일
================================ */

@media (max-width: 460px) {
    #header .search_box .search_hot_keywords p{
        padding:4px 8px;
    }
    .search-filter-group{
        padding-top:15px;
    }

    .search-filter-menu {
        padding: 15px 0px;
    }

    .search-filter-title {
        margin-bottom: 22px;
        font-size: 16px;
    }

    .search-color-grid {
        row-gap: 20px;
    }

    .search-color-dot {
        width: 27px;
        height: 27px;
    }

    .search-color-name {
        font-size: 12px;
    }

    .search-filter-group.diameter-group {
        margin-top: 25px;
    }

    .search-diameter-list {
        gap: 8px 6px;
    }

    .search-diameter-item {
        height: 24px;
        padding: 0 8px;
    }
    #header .search_box .search_hot_keywords p a{
        font-size:12px;
    }
}