@charset "utf-8";

@font-face {
    font-family: 'Wave';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2404@1.0/WavvePADO-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

.hotdeal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    margin: 36px auto 0;
    padding: 20px 0;
    max-width: 360px;
    border-radius: 8px;
    border: 2px solid #068C7A;
    animation: hotdealGlow 1.2s infinite ease-in-out;
}

@keyframes hotdealGlow {
    0% {
        box-shadow:
            0 0 4px rgba(6, 140, 122, 0.4),
            0 0 8px rgba(6, 140, 122, 0.3);
    }

    50% {
        box-shadow:
            0 0 10px rgba(6, 140, 122, 0.9),
            0 0 20px rgba(6, 140, 122, 0.7),
            0 0 30px rgba(6, 140, 122, 0.5);
    }

    100% {
        box-shadow:
            0 0 4px rgba(6, 140, 122, 0.4),
            0 0 8px rgba(6, 140, 122, 0.3);
    }
}

.hotdeal .label {
    color: #666;
}

.hotdeal .time {
    display: flex;
    gap: 6px;
}

.hotdeal .unit {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 6px;
    background: #cff2ed;
    color: #068C7A;
    border-radius: 4px;
    font-weight: 700;
}

.hotdeal .unit strong {
    text-align: right;
    font-size: 18px;
}

.hotdeal .unit em {
    font-style: normal;
    font-size: 15px;
}


.inner-144 {
    max-width: 1440px;
    margin: 0 auto;
}

.sec-title {
    margin-bottom: 60px;
    text-align: center;
}

.sec-title h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Wave';
}

.sec2 .sec-title h2 {
    color: #00b89e;
    font-size: 48px;
}

.sec2 .sec-title p {
    color: #96d0c8;
}

.sec4 .sec-title h2 {
    color: var(--primary);
    font-size: 48px;
}

.review-sec .sec-title h2,
.review-sec .sec-title p {
    color: #fff;
}

.sec2 {
    padding: 120px 20px;
    background: url(../images/car/sec2-bg.jpg) no-repeat center center / cover;
}

.sec4 {
    padding: 100px 20px;
}

.sec5 {
    padding: 100px 20px;
}

@media (max-width:768px) {
    .sec4 .sec-title h2,
    .sec2 .sec-title h2 {
        font-size: 32px;
    }
    
    .sec-title h2 {
        font-size: 32px;
    }
}



/* sec1 */
.sec1 .visual-img {
    overflow: hidden;
}

.sec1 .visual-img img {
    width: 100%;
}

@media (max-width:768px) {
    .sec1 .visual-img img {
        width: 120%;
        margin-left: -10%;
    }
}

/* card-wrap */


.sec4.card-wrap .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}


.card-wrap .hotSwiper {
    overflow: hidden;
}

.card-wrap .card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .25s ease, transform .25s ease;
    cursor: grabbing;
}

.card-wrap .card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transform: translateY(-6px);
}

.card-wrap .card .info {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.card-wrap .img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-wrap .img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    overflow: hidden;
}

.card-wrap .title {
    width: 100%;
}

.card-wrap .title .name-df {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.card-wrap .title .name-df .name {
    font-size: 20px;
    line-height: 1;
}

.card-wrap .title .name-df .type {
    color: #555;
    line-height: 1.4;
}

.card-wrap .prices {
    margin-top: 12px;
}

.card-wrap .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    margin-bottom: 8px;
}

.card-wrap .price-row .label {
    color: #555;
}

.card-wrap .price-row .price {
    font-weight: 600;
}

.card-wrap .price-row.highlight {
    align-items: flex-end;
}

.card-wrap .price-box {
    text-align: right;
}

.card-wrap .price-box .before {
    display: block;
    font-size: 14px;
    color: #aaa;
}

.card-wrap .price-box .after {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #e60023;
    line-height: 1.1;
}

.card-wrap .price-sub {
    margin-top: 4px;
    font-size: 13px;
    color: #777;
    text-align: right;
}

.card-wrap .tags {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.card-wrap .tag {
    padding: 6px 10px;
    background: #f3f5f7;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
}

.card-wrap .cta {
    text-align: center;
    margin-top: auto;
    border: 0;
    background: #068C7A;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 18px;
    cursor: pointer;
}

@media (max-width:768px) {
/*
    .card-wrap .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
*/

    .card-wrap .prices span {
        font-size: 14px;
    }

    .card-wrap .prices strong {
        font-size: 14px;
    }

    .card-wrap .title .type {
        font-size: 13px;
    }
    
    .sec4.card-wrap .grid {
                grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .card-wrap .price-box .after {
        font-size: 17px;
    }
    
    .card-wrap .title .name-df .name {
        font-size: 17px;
    }
    
    .card-wrap .title .name-df .symbol img {
        width: 36px;
    }
}


.fixed-box {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    display: flex;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.fixed-box .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.fixed-box .btn img {
    width: 16px;
}

.fixed-box .btn.call {
    background: #007bff;
}

.fixed-box .btn.call:hover {
    background: #0066d8;
}

.fixed-box .btn.kakao {
    background: #f9e000;
    color: #3b1e1e;
}

.fixed-box .btn.kakao:hover {
    background: #ffe133;
}

.fixed-box .btn.consult {
    background: #333;
}

.fixed-box .btn.consult:hover {
    background: #000;
}

@media (min-width:768px) {
    .fixed-box-wrap {
        display: none;
    }
}

@media (max-width:768px) {
    .fixed-box-wrap {
        display: block;
    }
}

/* ✅ 반응형 */
@media (max-width: 480px) {
    .fixed-box {
        padding: 10px;
        gap: 8px;
    }

    .fixed-box .btn {
        font-size: 14px;
        padding: 10px 0;
    }
}

.sec5 .inner {
    max-width: 1280px;
    margin: 0 auto;
}

.sec5 .faq-list {
    margin: 40px auto 0px;
    word-break: keep-all;
}

.sec5 .faq-list .boxwrap {
    overflow: hidden;
    background: #f1f1f1;
    border-radius: 20px;
    padding: 0 40px;
    margin-bottom: 20px;
}

.sec5 .faq-list .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    cursor: pointer;
}

.sec5 .faq-list .question .mark {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
}

.sec5 .faq-list .question .tit {
    box-sizing: border-box;
    width: calc(100% - 50px - 30px);
    font-size: 19px;
    color: #000;
    font-weight: 600;
    margin-left: 24px;
}

.sec5 .faq-list .question .arr {
    width: 30px;
    text-align: center;
}

.sec5 .faq-list .question .arr:after {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    margin: 12px 0 0 0;
    border-right: 3px solid #222;
    border-bottom: 3px solid #222;
    transform: rotate(45deg);
    transition: all 0.4s;
}

.sec5 .faq-list .question.active .arr:after {
    transform: rotate(225deg) translate(-6px, -6px);
}

.sec5 .faq-list .answer {
    display: none;
    padding: 25px 0;
    border-top: 1px solid #ddd;
}

.sec5 .faq-list .answer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec5 .faq-list .answer > div .mark {
    width: 50px;
    height: 50px;
    background: #505255;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 50px;
}

.sec5 .faq-list .answer > div .txt {
    box-sizing: border-box;
    width: calc(100% - 30px);
    font-size: 17px;
    color: #666;
    text-align: left;
    line-height: 180%;
    margin-left: 24px;
}

.sec5 .faq-list .answer > div p {
    font-size: 17px;
    color: #666;
    text-align: left;
    line-height: 180%;
}

.sec5 .faq-list .answer > div a {
    box-sizing: border-box;
    font-size: 17px;
    color: #666;
    padding: 8px 95px 0 0;
    text-align: left;
    line-height: 180%;
}

.sec5 .faq-list .answer > div a > p {
    width: auto;
    padding: 0;
}

@media (max-width:768px) {
    .sec5 .faq-list .boxwrap {
        padding: 0 20px;
    }

    .sec5 .faq-list .answer > div .mark,
    .sec5 .faq-list .question .mark {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .sec5 .faq-list .answer > div .txt {
        font-size: 15px;
    }
}
