* { margin: 0; padding: 0; vertical-align: top; box-sizing: border-box; color: #202020; }
li { list-style: none; }
a { text-decoration: none; color: inherit; }
:root {
    --ci-blue : #0094FF;
    --ci-blue-gradient : linear-gradient(to left, #221CC8 0%, #0094FF 100%);
    --grayScale-01 : #FFFFFF;
    --grayScale-02 : #FAFCFE;
    --grayScale-03 : #F6F7F8;
    --grayScale-04 : #ECEFF2;
    --grayScale-05 : #DEE0E3;
    --grayScale-06 : #C6CBCF;
    --grayScale-07 : #B0B6BB;
    --grayScale-08 : #9AA0A6;
    --grayScale-09 : #858B92;
    --grayScale-10 : #70777D;
    --grayScale-11 : #5C6269;
    --grayScale-12 : #494F54;
    --grayScale-13 : #363B40;
    --grayScale-14 : #131516;
    --grayScale-15 : #000000;
    --ani : all 0.3s ease;
    --easing: cubic-bezier(.33,.33,.33,1);
    --card-shadow : 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
}

html, body {
    font-family: 'Pretendard', sans-serif;
    width: 100%;
    scroll-behavior: smooth;
}
img,video{ max-width: 100%; border: 0; }
table {border-collapse: collapse;}
select {
    appearance: none;
}
select option {
    color: var(--grayScale-08);
}
button,
select,
input,
textarea {font-family: 'Pretendard', sans-serif; border: none; outline: none;}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    box-sizing: border-box;
}
input[type="number"] {
    -moz-appearance: textfield; /* Firefox에서 기본 버튼 제거 */
}
input::placeholder {
    color: var(--grayScale-08);
}
/* IE의 경우 */
input::-ms-clear,
input::-ms-reveal{
    display:none;
}
/* 크롬의 경우 */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
    display:none;
}
.m_block {display: none}

.fadeIn {
    animation: fadeIn 0.3s forwards;
}

.wrap {
    width: 100%;
    padding-top: 118px;
    position: relative;
    background: var(--grayScale-01);
}
section {
    width: 100%;
    overflow: hidden;
    margin-bottom: 160px;
    background: #FFF;
    position: relative;
    z-index: 2;
}
section:first-of-type {
    margin-bottom: 60px;
}
.section__tit {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section__tit h2 {
    color: var(--grayScale-15);
    font-size: 28px;
    font-weight: 700;
}
.section__tit p {
    color: var(--grayScale-10);
    font-size: 16px;
    font-weight: 400;
}
.swiper-pagination-bullet-active {
    background: var(--grayScale-15) !important;
}
.swiper-pagination-bullet {
    width: 6px!important;
    height: 6px!important;
}


/***** header *****/
header  {
    width: 100%;
    background: var(--grayScale-01);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: var(--ani);
    transition-property: box-shadow;
    border-bottom: 1px solid var(--grayScale-04);
}
header.scrolled {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    border-bottom: none;
}
.header-left-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header__logo {
    width: fit-content;
}
.header__logo .logo {
    display: block;
}
header .inner {
    display: flex;
    justify-content: space-between;
    padding: 28px 0 4px;
}
.inner  {
    width: 1700px;
    margin: 0 auto;
}
.main-category {
    display: flex;
    gap: 12px;
    align-items: center;
}
.main-category ul{
    display: flex;
    gap: 12px;
}
.main-category ul:first-child {
    overflow-x: scroll;
}
.main-category ul:last-child {
    padding-bottom: 6px;
}
.main-category ul:first-child::-webkit-scrollbar {
    height: 6px;
    border: 1px solid var(--grayScale-01);
    background: var(--grayScale-01);
}
.main-category ul:first-child::-webkit-scrollbar-thumb {
    background: var(--grayScale-01);
    border-radius: 100px;
    border: 1px solid var(--grayScale-01);
}
.main-category ul:first-child:hover::-webkit-scrollbar-thumb {
    background: var(--grayScale-05);
}
.main-category ul:first-child::-webkit-scrollbar-thumb:hover {
    background: var(--grayScale-07);
    border: none;
    cursor: pointer;
}
.main-category > div,
.main-category > ul > li,
.main-category > ul:last-child{
    flex: 0 0 auto;
}
header .main-category ul li {
    padding: 4px 8px;
    display: inline-block;
    border-radius: 15px;
    transition: var(--ani);
}
.main-category ul li:hover,
.main-category ul li.active{
    background: var(--grayScale-15);
}
.main-category ul li:hover a,
.main-category ul li.active a{
    color: var(--grayScale-01);
}
.main-category .nav__divider {
    width: 2px;
    height: 12px;
    background: var(--grayScale-15);
    margin-bottom: 8px;
}
.main-category ul li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
}
.search-box .search {
    background: var(--grayScale-04);
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px 0 20px;
    border-radius: 20px;
    height: 40px;
    cursor: pointer;
}
.search-txt {
    color: var(--grayScale-13);
}
.inquiry-btn {
    text-align: right;
    margin-top: 12px;
    color: var(--grayScale-15);
    font-size: 16px;
    font-weight: 700;
}
.inquiry-btn a {
    display: block;
    height: 27px;
    line-height: 27px;
}
.inquiry-btn a svg {
    transform: translateY(-6px);
}

.nav__divider {

}
/***** header *****/

/***** breadcrumb *****/

.breadcrumb {
    width: 100%;
    padding:12px 0 0 24px;
}
.absolute-breadcrumb {
    position: absolute;
    padding-top: 12px;
    z-index: 3;
}

.breadcrumb .inner {
    display: flex;
    gap: 15px;
    overflow: hidden;
}
.breadcrumb a,
.breadcrumb p{
    display: inline-block;
    position: relative;
    color: var(--grayScale-08);
    font-size: 13px;
    line-height: 15px;
    flex: 0 0 auto;
}
.breadcrumb a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 15px;
    background: url("../images/ico_breadcrumb_arrow.svg") no-repeat center/cover;
}
.breadcrumb a {
    padding:0 8px;
}
.breadcrumb a:first-child {
    padding-left: 0;
}
.breadcrumb p {
    color: var(--grayScale-13);
    padding-left: 8px;
}
/***** breadcrumb *****/

/***** footer *****/
footer {
    background: var(--grayScale-15);
}

footer .inner {
    display: flex;
    justify-content: space-between;
    padding: 120px 0;
}
footer h3 {
    color: var(--grayScale-01);
    font-size: 20px;
    font-weight: 700;
}
footer p {
    color: var(--grayScale-05);
    font-size: 16px;
    font-weight: 700;
}
footer span {
    color: var(--grayScale-09);
}
.footer-info {
    width: 50%;
}
.copyright {
    margin-top: 20px;
    color: var(--grayScale-09);
}
.footer-info__script-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 4px;
    margin-top: 20px;
}

.footer-call {
    font-size: 32px;
    color: var(--ci-blue);
    font-weight: 800;
    margin-top: 20px;
    display: block;
}
.footer-cs p,
.footer-logo{
    margin-top: 12px;
}
.footer-logo {
    display: block;
}
footer svg {
    max-width: 100%;
}
/***** footer *****/

/***** search popup *****/
dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.25);
    animation: fadeOut 0.3s forwards;
}
dialog {
    border-radius: 20px;
    background: var(--grayScale-01);
    width: 1080px;
    border: none;
    outline: none;
    margin: calc(50dvh - 360px) auto 0;
    padding: 60px 120px;
    opacity: 0;
    animation: fadeOut 0.3s forwards;
}
dialog.active,
dialog.active::backdrop {
    animation: fadeIn 0.3s forwards;
}

dialog h2 {
    color: var(--grayScale-15);
    font-size: 20px;
    font-weight: 700;
}
dialog.card-popup {
    width: 600px;
    height: 80dvh;
    padding: 0;
    margin: 10dvh auto 0;
}
.card-box-header {
    padding: 0 40px;
    height: 73px;
    line-height: 73px;
    border-bottom: 1px solid var(--grayScale-05);
    display: flex;
    justify-content: space-between;
}
.card-popup__close-btn {
    background: transparent;
}
.card-box {
    height: calc(100% - 93px);
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.card-box ul {
    display: flex;
    flex-direction: column;
}
.card-box ul li {
    position: relative;
    padding: 52px 40px 40px;
    border-bottom: 4px solid var(--grayScale-03);
    overflow: hidden;
}
.card-box ul li:last-child {
    border-bottom: none;
}
.card-box .img {
    width: 200px;
    position: absolute;
    right: 20px;
    top: 20px;
}
.card-box .info h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--grayScale-13);
}
.card-box .info .desc {
    font-size: 16px;
    line-height: 20px;
    color: var(--grayScale-11);
    margin-top: 8px;
    border-bottom: 1px solid var(--grayScale-04);
    padding-bottom: 52px;
    margin-bottom: 40px;
}
.card-box .info .desc em {
    color: var(--ci-blue);
    font-style: normal;
    font-weight: bold;
}
.card-box .info .txt {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.card-box .info .txt dl{
    display: flex;
    gap: 40px;
}
.card-box .info .txt dl dt {
    width: 120px;
    flex: 0 0 auto;
    color: var(--grayScale-13);
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
}
.card-box .info .txt dl dd {
    flex: 0 1 auto;
    width: 100%;
    font-size: 16px;
    color: var(--grayScale-11);
    line-height: 29px;
}
.card-box .info .txt dl dd em {
    font-style: normal;
    font-weight: 600;
    color: var(--grayScale-13);
}
.card-box .info .txt dl dd .btn {
    padding: 4px 8px;
    border: 1px solid var(--grayScale-06);
    border-radius: 4px;
}
.card-box .info .txt dl dd .btn span {
    color: var(--grayScale-10);
}
.card-box::-webkit-scrollbar {
    width: 12px;
    border: 4px solid var(--grayScale-03);
    background: var(--grayScale-03);
    border-radius: 0 4px 4px 0;
}
.card-box::-webkit-scrollbar-thumb{
    background: var(--grayScale-06);
    border: 4px solid var(--grayScale-03);
    border-radius: 100px;
    cursor: pointer;
}
.search-box {
    position: relative;
    padding-bottom: 6px;
}
.search-popup input {
    margin-top: 20px;
    background: var(--grayScale-03);
    border-radius: 40px;
    display: block;
    width: 100%;
    height: 64px;
    padding: 12px 80px 12px 40px;
    font-size: 16px;
    appearance: none;
}
.search-box button {
    background: transparent;
    position: absolute;
    right: 24px;
    bottom: 12px;
    cursor: pointer;
}

.search-popup__close-btn {
    background: transparent;
    position: absolute;
    cursor: pointer;
    top: 20px;
    right: 20px;
}

.search-popup-recommend-keyword-box {
    margin-top: 60px;
    display: flex;
    gap: 40px;
}
.search-popup-recommend-keyword-box h2 {
    width: fit-content;
    line-height: 37px;
    flex: 0 0 auto;
}

.search-popup-recommend-keyword {
    display: flex;
    gap: 12px;
    flex: 0 1 auto;
    flex-wrap: wrap;
}
.search-popup-recommend-keyword li {
    border: 1px solid var(--grayScale-06);
    border-radius: 20px;
}
.search-popup-recommend-keyword li a {
    display: block;
    padding: 8px 16px;
    color: var(--grayScale-15);
    font-size: 16px;
}
.search-popup-recommend-prd-box {
    margin-top: 60px;
}
.search-popup-recommend-prd {
    overflow: hidden;
}
.search-popup-recommend-prd ul {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.search-popup-recommend-prd__thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.search-popup-recommend-prd__thumb:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #002851;
    opacity: .03;
}

.search-popup-recommend-prd-script__model-number {
    color: var(--grayScale-09);
    font-size: 12px;
    margin-top: 8px;
}
.search-popup-recommend-prd-script__item-tit {
    color: var(--grayScale-15);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}
.search-popup-recommend-prd .swiper-btn-wrap {
    width: 100%;
    margin-top: 20px;
}
.swiper-btn-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 500px;
}
.swiper-btn-wrap div {
    position: relative!important;
    width: fit-content!important;
    margin: 0!important;
    bottom: auto!important;
    left: auto!important;
    right: auto!important;
    top: auto!important;
}
.search-popup-recommend-prd .swiper-button-prev:after {
    content: url("../images/ico_btn_prev2_gry.svg");
    font-size: 0;
}
.search-popup-recommend-prd .swiper-button-next:after {
    content: url("../images/ico_btn_next2_gry.svg");
    font-size: 0;
}
.search-popup-recommend-prd .swiper-button-next,
.search-popup-recommend-prd .swiper-button-prev {
    width: 20px!important;
    height: 20px;
}

.search-popup-recommend-prd .swiper-pagination {
    display: flex;
    align-items: center;
}

/***** search popup *****/

/***** prd *****/
.prd-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 80px 20px;
}
.prd-item{
    display: flex;
    width: calc((100% - 60px)/4);
    flex-direction: column;
    gap: 20px;
}
.prd__thumb{
    position: relative;
    background: var(--grayScale-01);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    outline: 1px solid transparent;
    transition: all 0.3s ease-out;
}
.prd__thumb:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #002851;
    opacity: .03;
}
.prd-item:hover .prd__thumb{
    outline: 1px solid var(--ci-blue);
}
.prd-info__model-number {
    color: var(--grayScale-10);
    font-size: 13px;
    width: 100%;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.prd-info__item-tit {
    color: var(--grayScale-15);
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.prd-info__item-price {
    margin-top: 20px;
}
.prd-info__item-price--month {
    color: var(--grayScale-15);
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
}
.prd-info__item-price--month span {
    color: var(--grayScale-10);
    font-size: 16px;
    font-weight: 500;
    padding-right: 8px;
}
.prd-info__item-price--card {
    color: var(--ci-blue);
    font-size: 16px;
    font-weight: 700;
    margin-top: 4px;
}
.prd-info__item-price--card span {
    color: var(--ci-blue);
    font-size: 16px;
    font-weight: 500;
    padding-right: 8px;
}
/***** prd list*****/

/***** card banner *****/
section.card-banner {
    overflow-y:visible;
    position: static;
    background: var(--ci-blue-gradient);
    height: 160px;
}
.card-inner {
    width: 760px;
    margin: 0 auto;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.card-banner__tit p {
    color: var(--grayScale-01);
    font-size: 20px;
    font-weight: 500;
}

.card-banner__tit h2 {
    color: var(--grayScale-01);
    font-size: 32px;
    font-weight: 700;
    margin-top: 16px;
}
.card-banner__object {
    position: absolute;
    width: 200px;
    height: 200px;
    right: calc(50% - 400px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease-out;
}
.card-banner__object.active {
    transform: translateY(0);
    opacity: 1;
}
.card-item--back,
.card-item--front {
    bottom: 0;
    position: absolute;
    box-shadow: -5px 5px 8px rgba(0,0,0,0.3);
    border-radius: 12px;
    transition: all 0.3s ease-out;
}
.card-item--back {
    z-index: 1;
    width: 80px;
}
.card-item--front {
    z-index: 2;
    left: 8px;
    width: 100px;
}
.card-item--back.active {
    transform: rotate(-15deg);
}
.card-item--front.active {
    transform: rotate(15deg);
    left: 40px;
}

/***** card banner *****/

/***** prd seller *****/
section .prd__seller{
    position: absolute;
    right: 12px;
    top: 12px;
}
dialog .prd__seller {
    position: absolute;
    right: 8px;
    top: 8px;
}
.view .prd__seller {
    right: 77px;
}
dialog .prd__seller img,
section .prd__seller img {
    width: auto;
    height: 37px;
}
/***** prd seller *****/

/***** animation *****/
@keyframes fadeIn {
    0%{
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    0%{
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeInUp {
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInSlide {
    0%{
        opacity: 0;
        left: 80px;
    }
    100% {
        opacity: 1;
        left: 40px;
    }
}
@keyframes fadeOutSlide {
    0%{
        opacity: 1;
        left: 40px;
    }
    100% {
        opacity: 0;
        left: 80px;
    }
}
@keyframes checkClick {
    0% {
        stroke-dashoffset: 20;
        stroke-dasharray: 20;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 20;
    }
}
@keyframes topDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/***** animation *****/
