html body {
    padding-bottom: 256px;
}

/* ===== Phone Page ===== */
.phone-page {
    padding: 50px 0 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* 타이틀 */
.phone-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.phone-title {
    font-size: 36px;
    font-weight: 600;
    color: #1e1e1e;
    letter-spacing: -0.72px;
    line-height: 1;
    margin: 0;
}

.phone-title-wrap .dot-accent {
    margin-left: 0;
    margin-bottom: 8px;
}

/* 섹션 */
.phone-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.64px;
    line-height: 1.5;
    margin: 0;
}

/* ===== 통일 라디오 (제조사/용량/가입유형/할인) ===== */
.phone-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    align-items: center;
    padding: 10px 0 20px;
}

.phone-radio-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.phone-radio-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.phone-radio-mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    position: relative;
    flex-shrink: 0;
}

.phone-radio-item input:checked+.phone-radio-mark {
    border-color: #00b2b0;
    /* background: #00b2b0; */
}

.phone-radio-item input:checked+.phone-radio-mark::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #00b2b0;
}

.phone-radio-label {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.4px;
    line-height: 1.5;
}

/* ===== 모델 카드 ===== */
.model-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
}

.model-swiper .swiper-wrapper {
    align-items: stretch;
}

.model-swiper .swiper-slide {
    width: 280px;
    height: auto;
}

.model-card {
    width: 100%;
    height: 100%;
    /* height: 237px; */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
    overflow: hidden;
}

.model-card:hover {
    border-color: #b8e9e8;
}

.model-card.is-active {
    border-color: transparent;
    background: linear-gradient(116.95deg, #1488E8 -85.14%, #00B2B0 101.66%);
}

.model-bg {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    padding: 30px 22px 22px;
    font-family: inherit;
    background: #fff;
    transition: background 0.15s;
}

.model-card.is-active .model-bg {
    background: #f8ffff;
}

.model-img {
    width: 220px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.model-name {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.4px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ===== 가격탭 서브 항목 ===== */
.price-tab-row-sub .price-tab-label {
    /* padding-left: 12px; */
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.price-tab-row-sub .price-tab-value {
    font-size: 14px;
    color: #888;
}

/* ===== 요금제 카드 ===== */
.plan-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
}

.plan-swiper .swiper-wrapper {
    align-items: stretch;
}

.plan-swiper .swiper-slide {
    width: 350px;
    height: auto;
}

.plan-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
    overflow: hidden;
}

.plan-card:hover {
    border-color: #b8e9e8;
}

.plan-card.is-active {
    border-color: transparent;
    background: linear-gradient(116.95deg, #1488E8 -85.14%, #00B2B0 101.66%);
}

.plan-bg {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 30px 30px 22px;
    font-family: inherit;
    background: #fff;
    transition: background 0.15s;
}

.plan-card.is-active .plan-bg {
    background: #f8ffff;
}

.plan-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-tag {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.32px;
    line-height: 1.5;
    border-radius: 5px;
}

.plan-data {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
}

.plan-data-num {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.64px;
    line-height: 1.5;
}

.plan-data-unit {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.36px;
    line-height: 1.5;
}

.plan-desc {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    letter-spacing: -0.32px;
    line-height: 1.5;
    margin: 0;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
}

.plan-price-unit {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.4px;
}

.plan-price-num {
    font-size: 32px;
    font-weight: 600;
    color: #00b2b0;
    letter-spacing: -0.64px;
    line-height: 1.5;
}

/* ===== Tablet ===== */
@media screen and (max-width:1023px) {
    html body {
        padding-bottom: 140px;
    }
}

/* ===== 모바일 ===== */
@media (max-width: 768px) {
    html body {
        padding-bottom: 84px;
    }

    .phone-page {
        padding: 45px 0 60px;
        gap: 30px;
    }

    .phone-title {
        font-size: 24px;
    }

    .phone-title-wrap .dot-accent {
        width: 6px;
        height: 6px;
        margin-bottom: 4px;
    }

    .phone-section {
        gap: 20px;
    }

    .phone-section-title {
        padding-top: 16px;
        font-size: 20px;
        font-weight: 500;
        color: #1E1E1E;
    }

    .phone-radio-row {
        gap: 20px;
        flex-direction: column;
        padding: 0;
        align-items: flex-start;
    }

    .phone-radio-label {
        font-size: 16px;
    }

    .phone-radio-label img {
        height: 24px;
    }

    .model-swiper {
        padding-bottom: 0;
    }

    .model-swiper .swiper-slide {
        width: 158px;
    }

    .model-card {
        border-radius: 10px;
    }

    .model-bg {
        padding: 14px 4px 10px;
        gap: 5px;
    }

    .model-img {
        width: 126px;
        height: 80px;
    }

    .model-name {
        font-size: 14px;
    }

    .plan-swiper {
        padding-bottom: 0;
    }

    .plan-swiper .swiper-slide {
        width: 200px;
    }

    .plan-card {
        border-radius: 10px;
    }

    .plan-bg {
        padding: 16px 16px 12px;
        gap: 7px;
    }

    .plan-info {
        gap: 2px;
    }

    .plan-tag {
        font-size: 14px;
        line-height: 1.2;
    }

    .plan-data {
        gap: 4px;
    }

    .plan-data-num {
        font-size: 20px;
        line-height: 1.2;
    }

    .plan-data-unit {
        font-size: 14px;
        line-height: 1.2;
    }

    .plan-desc {
        font-size: 13px;
        line-height: 1.4;
    }

    .plan-price-num {
        font-size: 20px;
        line-height: 1.2;
    }

    .plan-price-unit {
        font-size: 13px;
        line-height: 1.2;
    }

    .plan-price {
        gap: 3px;
    }

}