@charset "utf-8";

/* 본문 콘텐츠 영역 - 사용자 입력 HTML 기본 스타일 */
#bo_v_con a { color: var(--hex-primary-600); text-decoration: underline; }
#bo_v_con a:hover { color: var(--hex-primary-700); }
#bo_v_con img { max-width: 100%; height: auto; }

/* 임시저장 콘텐츠 숨김 */
.autosave_content { display: none; }

/* 7일 내 출고 목록 */
.quickship-wrap,
.quickship-wrap * { box-sizing: border-box; }

.quickship-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 70px;
    color: #111;
    letter-spacing: -0.035em;
    background: #fff;
}

.quickship-wrap a { color: inherit; text-decoration: none; }
.quickship-wrap img { max-width: 100%; vertical-align: top; }

.quickship-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(120deg, #12377c 0%, #12377c 42%, #fff 42%, #fff 100%);
}

.quickship-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.quickship-hero.is-no-image {
    height: 400px;
}

.quickship-share {
    position: absolute;
    top: 38px;
    right: 258px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #6f6f6f;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.quickship-share:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.quickship-share svg { width: 18px; height: 18px; }

.quickship-benefit {
    width: 704px;
    max-width: calc(100% - 32px);
    margin: 26px auto 0;
    min-height: 82px;
    display: grid;
    grid-template-columns: 92px 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
    gap: 0;
}

.benefit-circle {
    width: 74px;
    height: 74px;
    margin: 0 auto;
    border-radius: 50%;
    background: #12377c;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
}

.benefit-circle span {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 900;
}

.benefit-item {
    position: relative;
    min-height: 56px;
    padding: 0 18px;
    border-left: 1px solid #d8d8d8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-item strong {
    display: block;
    margin-bottom: 8px;
    color: #12377c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.benefit-item p {
    margin: 0;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.28;
}

.benefit-item em {
    position: absolute;
    right: -86px;
    bottom: -18px;
    color: #777;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
}

.quickship-cate {
    width: 704px;
    max-width: calc(100% - 32px);
    margin: 45px auto 31px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 10px;
}

.quickship-cate a {
    height: 27px;
    padding: 0 13px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    background: #fff;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.03em;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.quickship-cate a:hover,
.quickship-cate a.is-active {
    border-color: #ef001e;
    color: #ef001e;
    background: #fff7f8;
}

.quickship-adminbar {
    width: 704px;
    max-width: calc(100% - 32px);
    margin: -8px auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    color: #777;
    font-size: 13px;
}

.quickship-adminbar > div {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.qs-admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 7px;
    background: #fff;
    color: #555;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.qs-admin-btn.is-write {
    border-color: #ef001e;
    background: #ef001e;
    color: #fff;
}

.quickship-section {
    width: 704px;
    max-width: calc(100% - 32px);
    margin: 0 auto 42px;
}

.quickship-section h2 {
    margin: 0 0 22px 6px;
    color: #111;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.055em;
}

.quickship-grid {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    gap: 28px 18px;
    justify-content: start;
}

.quick-car-card {
    position: relative;
    width: 220px;
    min-height: 320px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.02);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.quick-car-card:hover {
    transform: translateY(-2px);
    border-color: #dadada;
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.qs-card-check {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #777;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

.qs-card-check input { width: 12px; height: 12px; margin: 0; }

.car-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 154px;
    padding: 30px 18px 16px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.car-img-box img {
    width: 166px;
    height: 92px;
    object-fit: contain;
    transition: transform .18s ease;
}

.quick-car-card:hover .car-img-box img { transform: scale(1.03); }

.promo-badge {
    position: absolute;
    top: 16px;
    left: 12px;
    min-width: 58px;
    height: 18px;
    padding: 0 7px 0 5px;
    border: 1px solid #ef001e;
    border-radius: 999px;
    background: #fff;
    color: #ef001e;
    font-size: 9px;
    font-weight: 900;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.04em;
}

.promo-badge i {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 3px;
    border-radius: 50%;
    background: #ef001e;
    vertical-align: -1px;
}

.business-badge {
    position: absolute;
    right: 42px;
    bottom: 44px;
    min-width: 49px;
    padding: 6px 6px 5px;
    border-radius: 2px;
    background: #333d82;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    letter-spacing: -0.04em;
}

.qs-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 166px;
    height: 92px;
    border-radius: 8px;
    background: #f6f6f6;
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
}

.car-action {
    position: absolute;
    top: 132px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    letter-spacing: -0.05em;
}

.circle-btn.consult {
    border: 1px solid #111;
    background: #fff;
    color: #111;
}

.circle-btn.estimate {
    border: 1px solid #ef001e;
    background: #ef001e;
    color: #fff;
}

.car-info {
    padding: 18px 14px 15px;
}

.car-info h3 {
    margin: 0 0 5px;
    color: #111;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.car-info .trim {
    margin: 0 0 12px;
    color: #222;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    min-height: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spec-list {
    margin: 0;
    padding: 0 0 12px;
    border-bottom: 1px solid #f0f0f0;
}

.spec-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 4px;
    margin-top: 5px;
    min-height: 13px;
}

.spec-list div:first-child { margin-top: 0; }

.spec-list dt {
    margin: 0;
    color: #9a9a9a;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.spec-list dd {
    margin: 0;
    color: #222;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    word-break: keep-all;
}

.color-box {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 4px;
    border: 1px solid #cfcfcf;
    border-radius: 2px;
    background: #fff;
    vertical-align: -2px;
}

.color-box.is-dark {
    border-color: #111;
    background: #111;
}

.price-list {
    padding-top: 13px;
}

.price-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
}

.price-list div:first-child { margin-top: 0; }

.price-list span {
    color: #222;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.price-list strong {
    color: #111;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.quickship-empty {
    width: 704px;
    max-width: calc(100% - 32px);
    margin: 0 auto 40px;
    padding: 60px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fafafa;
    color: #999;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.quickship-notice {
    width: 704px;
    max-width: calc(100% - 32px);
    margin: 6px auto 38px;
    color: #111;
}

.quickship-notice h3 {
    position: relative;
    margin: 0 0 12px;
    padding-left: 14px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.quickship-notice h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 8px;
    height: 8px;
    background: #111;
}

.quickship-notice ul {
    margin: 0;
    padding: 0 0 0 12px;
    list-style: none;
}

.quickship-notice li {
    position: relative;
    margin: 5px 0 0;
    padding-left: 8px;
    color: #333;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.quickship-notice li:before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
}

.quickship-page {
    width: 704px;
    max-width: calc(100% - 32px);
    margin: 30px auto 0;
    text-align: center;
}

@media (max-width: 900px) {
    .quickship-share {
        top: 20px;
        right: 24px;
    }

    .benefit-item em {
        right: 0;
        bottom: -16px;
    }
}

@media (max-width: 720px) {
    .quickship-wrap {
        margin-bottom: 46px;
    }

    .quickship-hero {
        border-radius: 0;
    }

    .quickship-hero.is-no-image {
        height: 230px;
    }

    .quickship-benefit {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }

    .benefit-circle {
        width: 72px;
        height: 72px;
    }

    .benefit-item {
        width: 100%;
        min-height: auto;
        padding: 12px 14px;
        border-left: 0;
        border-top: 1px solid #e5e5e5;
    }

    .benefit-item em {
        position: static;
        margin-top: 6px;
    }

    .quickship-cate {
        width: calc(100% - 28px);
        margin: 34px auto 26px;
        gap: 8px;
    }

    .quickship-cate a {
        height: 30px;
        padding: 0 10px;
        font-size: 11px;
        line-height: 28px;
    }

    .quickship-adminbar,
    .quickship-section,
    .quickship-empty,
    .quickship-notice,
    .quickship-page {
        width: calc(100% - 28px);
        max-width: 100%;
    }

    .quickship-adminbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .quickship-adminbar > div {
        justify-content: flex-start;
    }

    .quickship-section {
        margin-bottom: 36px;
    }

    .quickship-section h2 {
        margin-left: 0;
        margin-bottom: 16px;
        font-size: 19px;
    }

    .quickship-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-car-card {
        width: 100%;
        min-height: 0;
    }

    .car-img-box {
        height: 172px;
    }

    .car-img-box img,
    .qs-noimg {
        width: 210px;
        height: 110px;
    }

    .business-badge {
        right: 78px;
        bottom: 50px;
    }

    .car-action {
        top: 150px;
    }

    .car-info h3 {
        font-size: 15px;
    }

    .spec-list dt,
    .spec-list dd,
    .price-list span,
    .car-info .trim,
    .quickship-notice li {
        font-size: 11px;
    }

    .price-list strong {
        font-size: 12px;
    }
}
