.order-scan-section,
.order-scan-section * {
    box-sizing: border-box;
}

.order-scan-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    color: #111827;
    background: #fff;
    font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

.order-scan-section--support {
    background: #f7f9fc;
}

.order-scan-section__inner {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
    gap: 72px;
    width: min(1280px, calc(100% - 72px));
    margin: 0 auto;
    align-items: center;
}

.order-scan-section__number {
    display: block;
    margin-bottom: 18px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.2px;
}

.order-scan-section__copy h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(42px, 4.2vw, 66px);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -3.6px;
    word-break: keep-all;
}

.order-scan-section__copy h2 strong {
    color: #2563eb;
    font-weight: 900;
}

.order-scan-section__lead {
    margin: 28px 0 0;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -1px;
    word-break: keep-all;
}

.order-scan-section__text {
    max-width: 620px;
    margin: 18px 0 0;
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: -.55px;
    word-break: keep-all;
}

.order-scan-section__note {
    display: inline-flex;
    max-width: 620px;
    margin: 28px 0 0;
    padding: 16px 20px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    color: #1d4ed8;
    background: #eff6ff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -.35px;
    word-break: keep-all;
}

.order-scan-section__visual {
    position: relative;
    min-height: 430px;
}

.order-scan-section__scan-card {
    position: relative;
    width: min(460px, 100%);
    min-height: 270px;
    margin-left: auto;
    padding: 34px;
    overflow: hidden;
    border: 1px solid #dce5f3;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(20, 184, 166, .08)),
        #fff;
    box-shadow: 0 28px 70px rgba(17, 24, 39, .12);
}

.order-scan-section__scan-card::before {
    position: absolute;
    inset: 32px;
    border: 1px dashed #bfdbfe;
    border-radius: 20px;
    content: "";
}

.order-scan-section__scanner-line {
    position: absolute;
    top: 68px;
    right: 34px;
    left: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    box-shadow: 0 0 24px rgba(34, 197, 94, .5);
    animation: orderScanLine 2.8s ease-in-out infinite;
}

.order-scan-section__scan-card span,
.order-scan-section__scan-card strong,
.order-scan-section__scan-card em {
    position: relative;
    z-index: 1;
    display: block;
}

.order-scan-section__scan-card span {
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

.order-scan-section__scan-card strong {
    margin-top: 76px;
    color: #111827;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.order-scan-section__scan-card em {
    margin-top: 12px;
    color: #64748b;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.order-scan-section__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(500px, 100%);
    margin: 24px 0 0 auto;
}

.order-scan-section__steps div {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
}

.order-scan-section__steps b {
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

.order-scan-section__steps span {
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.55px;
}

.order-scan-section__support-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.order-scan-section__support-list article {
    min-height: 190px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(17, 24, 39, .07);
}

.order-scan-section__support-list article span {
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

.order-scan-section__support-list article strong {
    display: block;
    margin-top: 18px;
    color: #111827;
    font-size: 23px;
    font-weight: 850;
    line-height: 1.28;
    letter-spacing: -1.1px;
    word-break: keep-all;
}

.order-scan-section__support-list article em {
    display: block;
    margin-top: 12px;
    color: #6b7280;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -.35px;
    word-break: keep-all;
}

@keyframes orderScanLine {
    0%, 100% {
        transform: translateY(0);
        opacity: .45;
    }
    45% {
        transform: translateY(118px);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .order-scan-section__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .order-scan-section__visual,
    .order-scan-section__scan-card,
    .order-scan-section__steps {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .order-scan-section {
        padding: 72px 0;
    }

    .order-scan-section__inner {
        width: calc(100% - 32px);
        gap: 32px;
    }

    .order-scan-section__copy h2 {
        font-size: 36px;
        letter-spacing: -2.2px;
    }

    .order-scan-section__lead {
        margin-top: 20px;
        font-size: 20px;
    }

    .order-scan-section__text {
        font-size: 16px;
    }

    .order-scan-section__visual {
        min-height: auto;
    }

    .order-scan-section__scan-card {
        min-height: 240px;
        padding: 26px;
        border-radius: 24px;
    }

    .order-scan-section__scan-card strong {
        margin-top: 64px;
        font-size: 27px;
    }

    .order-scan-section__steps,
    .order-scan-section__support-list {
        grid-template-columns: 1fr;
    }

    .order-scan-section__support-list article {
        min-height: auto;
        padding: 22px;
    }
}

/* 2026-07-14: section 02 barcode-scan presentation. */
.order-scan-section--scan {
    min-height: 820px;
    padding: 0;
    background:
        radial-gradient(circle at 73% 22%, rgba(92, 164, 255, .08), transparent 32%),
        #fff;
}

.order-scan-v2,
.order-scan-v2 * {
    box-sizing: border-box;
}

.order-scan-v2 {
    position: relative;
    display: grid;
    grid-template-columns: minmax(400px, .8fr) minmax(0, 1.2fr);
    gap: 24px;
    width: min(1280px, calc(100% - 64px));
    min-height: 760px;
    align-items: center;
    margin: 0 auto;
    padding: 92px 0 82px;
}

.order-scan-v2__copy {
    position: relative;
    z-index: 6;
    max-width: 540px;
}

.order-scan-v2__number {
    display: block;
    margin-bottom: 24px;
    color: #1769ed;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.2px;
}

.order-scan-v2__copy h2 {
    margin: 0;
    color: #111b2e;
    font-size: clamp(56px, 4.7vw, 78px);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -4.8px;
    word-break: keep-all;
}

.order-scan-v2__copy h2 strong {
    color: #2469ef;
    font-weight: 900;
}

.order-scan-v2__lead {
    position: relative;
    margin: 46px 0 0;
    padding-left: 26px;
    color: #172033;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.5;
    letter-spacing: -.85px;
    word-break: keep-all;
}

.order-scan-v2__lead::before {
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 5px;
    border-radius: 999px;
    background: #2469ef;
    content: "";
}

.order-scan-v2__text {
    margin: 27px 0 0;
    color: #536177;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.78;
    letter-spacing: -.42px;
    word-break: keep-all;
}

.order-scan-v2__note {
    display: flex;
    width: min(500px, 100%);
    min-height: 106px;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    padding: 18px 22px;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    color: #1f5fd6;
    background: linear-gradient(135deg, #f2f7ff, #eaf2ff);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .06);
}

.order-scan-v2__note-icon {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid #9fc2ff;
    border-radius: 50%;
    background: rgba(255, 255, 255, .72);
}

.order-scan-v2__note-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.order-scan-v2__note p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: -.35px;
}

.order-scan-v2__note strong {
    color: #175bd9;
    font-weight: 850;
}

.order-scan-v2__visual {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 680px;
}

.order-scan-v2__scene {
    position: absolute;
    top: 0;
    right: -4%;
    width: 108%;
    height: auto;
    aspect-ratio: 3 / 2;
    overflow: visible;
}

.order-scan-v2__scene::after {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .9) 86%, #fff 100%);
    content: "";
    pointer-events: none;
}

.order-scan-v2__shelf {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.order-scan-v2__status {
    position: absolute;
    top: -28px;
    left: 4%;
    z-index: 4;
    max-width: 300px;
    padding: 22px 24px 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(15, 23, 42, .16);
}

.order-scan-v2__status > span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: #1769ed;
    background: #eaf2ff;
    font-size: 12px;
    font-weight: 900;
}

.order-scan-v2__status > strong {
    display: block;
    margin-top: 25px;
    color: #101a2d;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2.5px;
}

.order-scan-v2__status > p {
    margin: 16px 0 0;
    color: #5c6d84;
    font-size: 16px;
    font-weight: 750;
    letter-spacing: -.45px;
}

.order-scan-v2__status > p b {
    color: #13a97e;
    font-weight: 900;
}

.order-scan-v2__price-tag {
    position: absolute;
    top: 42.8%;
    left: 55.9%;
    z-index: 5;
    width: 29.9%;
    height: 18%;
    padding: 7px 12px 6px;
    color: #111827;
    text-align: center;
}

.order-scan-v2__price-tag > span,
.order-scan-v2__price-tag > strong,
.order-scan-v2__price-tag > em {
    position: relative;
    z-index: 2;
    display: block;
}

.order-scan-v2__price-tag > span {
    overflow: hidden;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-scan-v2__price-tag > strong {
    margin-top: 1px;
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.6px;
}

.order-scan-v2__price-tag > strong small {
    margin-left: 2px;
    font-size: .55em;
}

.order-scan-v2__barcode {
    position: relative;
    z-index: 2;
    width: 82%;
    height: 24px;
    margin: 4px auto 0;
    overflow: visible;
}

.order-scan-v2__barcode > i:first-child {
    position: absolute;
    inset: 0;
    display: block;
    background:
        repeating-linear-gradient(90deg,
            #111827 0 2px,
            transparent 2px 4px,
            #111827 4px 5px,
            transparent 5px 8px,
            #111827 8px 12px,
            transparent 12px 15px);
}

.order-scan-v2__beam {
    position: absolute;
    top: -2px;
    right: -9px;
    left: -9px;
    z-index: 3;
    display: block;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #45f1b5 18%, #56ffbc 50%, #45f1b5 82%, transparent);
    box-shadow: 0 0 7px rgba(70, 255, 190, .95), 0 0 18px rgba(46, 216, 172, .72);
    animation: orderScanV2Beam 1.9s ease-in-out infinite alternate;
}

.order-scan-v2__price-tag > em {
    margin-top: 2px;
    color: #253247;
    font-size: 7px;
    font-style: normal;
    font-weight: 750;
    letter-spacing: .5px;
}

.order-scan-v2__scanner {
    position: absolute;
    top: 46%;
    left: 60%;
    z-index: 3;
    width: 22%;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 23px 24px rgba(20, 34, 59, .24));
    transform: rotate(-8deg);
    transform-origin: bottom left;
}

.order-scan-v2__steps {
    position: absolute;
    right: 1%;
    bottom: 0;
    z-index: 7;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 84%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-scan-v2__steps li {
    display: flex;
    min-height: 106px;
    align-items: center;
    gap: 17px;
    padding: 14px 20px;
    border: 1px solid rgba(221, 228, 239, .96);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 38px rgba(31, 47, 72, .08);
    backdrop-filter: blur(12px);
}

.order-scan-v2__step-icon {
    display: grid;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #edf4ff;
}

.order-scan-v2__step-icon img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.order-scan-v2__steps li:nth-child(2) .order-scan-v2__step-icon img {
    width: 44px;
    height: 54px;
}

.order-scan-v2__steps li:nth-child(3) .order-scan-v2__step-icon img {
    width: 48px;
    height: 40px;
}

.order-scan-v2__step-icon--barcode svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #1769ed;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.order-scan-v2__steps li > div {
    min-width: 0;
}

.order-scan-v2__steps b,
.order-scan-v2__steps strong {
    display: block;
}

.order-scan-v2__steps b {
    color: #1769ed;
    font-size: 13px;
    font-weight: 900;
}

.order-scan-v2__steps strong {
    margin-top: 8px;
    color: #172033;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.8px;
    white-space: nowrap;
}

@keyframes orderScanV2Beam {
    from {
        transform: translateY(0);
        opacity: .75;
    }
    to {
        transform: translateY(24px);
        opacity: 1;
    }
}

@media (max-width: 1320px) {
    .order-scan-v2 {
        grid-template-columns: minmax(390px, .72fr) minmax(620px, 1.28fr);
        width: calc(100% - 56px);
    }

    .order-scan-v2__copy h2 {
        font-size: 62px;
    }

    .order-scan-v2__steps {
        width: 88%;
    }

    .order-scan-v2__steps li {
        min-height: 96px;
        padding: 12px 15px;
    }
}

@media (max-width: 1024px) {
    .order-scan-section--scan,
    .order-scan-v2 {
        min-height: auto;
    }

    .order-scan-v2 {
        grid-template-columns: 1fr;
        gap: 48px;
        width: min(760px, calc(100% - 40px));
        padding: 94px 0 80px;
    }

    .order-scan-v2__copy {
        max-width: 620px;
    }

    .order-scan-v2__visual {
        min-height: 680px;
    }

    .order-scan-v2__scene {
        right: -8%;
        width: 116%;
    }

    .order-scan-v2__steps {
        right: 0;
        width: 90%;
    }
}

@media (max-width: 640px) {
    .order-scan-section--scan {
        padding: 0;
    }

    .order-scan-v2 {
        gap: 34px;
        width: calc(100% - 32px);
        padding: 76px 0 68px;
    }

    .order-scan-v2__number {
        margin-bottom: 18px;
        font-size: 13px;
    }

    .order-scan-v2__copy h2 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .order-scan-v2__lead {
        margin-top: 30px;
        padding-left: 18px;
        font-size: 18px;
    }

    .order-scan-v2__lead::before {
        width: 4px;
    }

    .order-scan-v2__text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.72;
    }

    .order-scan-v2__text br {
        display: none;
    }

    .order-scan-v2__note {
        min-height: 92px;
        gap: 13px;
        margin-top: 25px;
        padding: 14px;
        border-radius: 15px;
    }

    .order-scan-v2__note-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .order-scan-v2__note-icon svg {
        width: 24px;
        height: 24px;
    }

    .order-scan-v2__note p {
        font-size: 12px;
    }

    .order-scan-v2__visual {
        min-height: 610px;
    }

    .order-scan-v2__scene {
        top: 0;
        right: -32%;
        width: 155%;
        height: auto;
    }

    .order-scan-v2__status {
        top: 16px;
        left: 4%;
        max-width: 220px;
        padding: 16px 18px 18px;
        border-radius: 18px;
    }

    .order-scan-v2__status > span {
        min-height: 29px;
        padding: 0 10px;
        font-size: 9px;
    }

    .order-scan-v2__status > strong {
        margin-top: 15px;
        font-size: 26px;
        letter-spacing: -1.5px;
    }

    .order-scan-v2__status > p {
        margin-top: 9px;
        font-size: 11px;
    }

    .order-scan-v2__price-tag {
        top: 42.8%;
        left: 55.9%;
        padding: 6px 8px;
    }

    .order-scan-v2__price-tag > span {
        font-size: 7px;
    }

    .order-scan-v2__price-tag > strong {
        font-size: 17px;
    }

    .order-scan-v2__barcode {
        height: 30px;
        margin-top: 4px;
    }

    .order-scan-v2__price-tag > em {
        font-size: 5px;
    }

    .order-scan-v2__scanner {
        top: 46%;
        left: 60%;
        width: 20%;
    }

    .order-scan-v2__steps {
        right: 0;
        bottom: 0;
        width: 100%;
        gap: 8px;
    }

    .order-scan-v2__steps li {
        min-height: 78px;
        gap: 9px;
        padding: 9px 10px;
        border-radius: 15px;
    }

    .order-scan-v2__step-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

    .order-scan-v2__step-icon img,
    .order-scan-v2__steps li:nth-child(2) .order-scan-v2__step-icon img,
    .order-scan-v2__steps li:nth-child(3) .order-scan-v2__step-icon img {
        width: 35px;
        height: 35px;
    }

    .order-scan-v2__steps b {
        font-size: 10px;
    }

    .order-scan-v2__steps strong {
        margin-top: 4px;
        font-size: 13px;
    }

    @keyframes orderScanV2Beam {
        from {
            transform: translateY(0);
        }
        to {
            transform: translateY(30px);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-scan-v2__beam {
        animation: none;
    }
}
