@charset "utf-8";

/* =========================
   PRICE PAGE
========================= */
.price-page {
    display: block;
    width: 100%;
    min-height: auto;
}

.price-hero,
.price-section,
.expression-section,
.process-section,
.refund-section {
    width: 100%;
}

/* =========================
   HERO
========================= */
.price-hero .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon_price {
    margin-bottom: 18px;
}

.icon_price img {
    width: 40px;
    height: 40px;
}

.price-hero h1 {
    margin-bottom: 14px;
    font-size: 42px;
    font-weight: 700;
    color: #3BA6EA;
    letter-spacing: 3px;
    text-align: center;
}

.price-hero-text {
    max-width: 820px;
    margin-top: 6px;
    color: #5d6b78;
    font-size: 18px;
    line-height: 1.8;
    word-break: keep-all;
}

.price-highlight {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.price-highlight-card {
    padding: 24px 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dbe8f2;
    box-shadow: 0 16px 34px rgba(19, 57, 88, 0.08);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: #eef8fe;
    color: #1f86c6;
    font-size: 12px;
    font-weight: 700;
}

.price-highlight-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    color: #22384d;
}

.price-highlight-card p {
    color: #5f6d7a;
    font-size: 15px;
    line-height: 1.7;
    word-break: keep-all;
}


/* =========================
   PAYMENT PROCESS
========================= */
.payment-process {
    margin: 30px auto;
    text-align: center;
    max-width: 1040px;
    padding: 22px 24px;
    border-radius: 26px;
    background: #fbfcfe;
    border: 1px solid #edf2f7;
}

.process-title {
    font-weight: 700;
    color: #3BA6EA;
    margin-bottom: 6px;
}

.process-flow {
    font-weight: 700;
    color: #333;
    line-height: 1.6;
}

.process-note {
    margin-top: 6px;
    font-size: 18px;
    color: #888;
}

/* =========================
   SECTION COMMON
========================= */
.side-target {
    scroll-margin-top: 120px;
}

.price-section,
.expression-section,
.process-section,
.refund-section {
    margin-top: 30px;
    padding: 0 30px;
}

.section-note {
    margin: 0 auto 22px;
    text-align: center;
    color: #667482;
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
}

/* =========================
   PRICE CARD LIST
========================= */
.price-card-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.price-card {
    width: 100%;
    max-width: 1040px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 34px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid #e6eef5;
    box-shadow: 0 18px 40px rgba(19, 57, 88, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(19, 57, 88, 0.12);
}

.basic-card {
    background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
    border: 1px solid #d9e9f8;
    color: #002343;
}

.premium-card {
    background: linear-gradient(180deg, #fff6fa 0%, #ffffff 100%);
    border: 1px solid #f3d6e4;
    color: #380014;
}

/* =========================
   PRICE CARD IMAGE
========================= */
.price-card-image {
    width: 360px;
    flex-shrink: 0;
}

.price-card-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(19, 57, 88, 0.08);
}

/* =========================
   PRICE CARD CONTENT
========================= */
.price-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.card-title {
    width: 100%;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

.blue_t {
    color: #205781;
}

.pink_t {
    color: #a13f68;
}


.card-price {
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.basic-card .card-price {
    color: #0f4368;
}

.premium-card .card-price {
    color: #8e2d57;
}

.card-desc {
    width: 100%;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(247, 251, 255, 0.96);
    border: 1px solid rgba(219, 231, 241, 0.95);
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    word-break: keep-all;
}



.premium-card .card-desc {
    background: rgba(255, 248, 251, 0.96);
    border-color: rgba(239, 212, 223, 0.95);
}

.plus {
    display: inline-block;
    margin: 0 4px;
    color: var(--sky-deep);
    font-weight: 800;
}

.premium-card .plus {
    color: #c97f99;
}

.blue_p {
    color: #516F89;
}

.pink_p {
    color: #ce4f7f;
}

.basic-card .card-desc {
    color: #585E6C;
}

.premium-card .card-desc {
    color: #bb2b62;
}


.mobile-break {
    display: inline;
}

/* =========================
   PRICE CARD LIST TEXT
========================= */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    word-break: keep-all;
}

.card-list li {
    max-width: 100%;
    text-align: left;
    font-size: 17px;
    line-height: 1.8;
}

.list_notice li {
    position: relative;
    align-items: flex-start;
    border-radius: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
}

/* 카드용 (중앙 정렬 유지) */
.card-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border-radius: 2px;
    background: #3BA6EA;
    flex-shrink: 0;
        margin-top: 10px;
}

/* 공지용 (위 기준 정렬) */
.list_notice li::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border-radius: 2px;
    background: #3BA6EA;
    flex-shrink: 0;
    margin-top: 8px; 
}

.basic-card .card-list li::before {
    background: #5b8fd8;
}

.premium-card .card-list li::before {
    background: #cc77a7;
}

/* =========================
   NOTICE STYLE TEXT BLOCK
========================= */
.expression-text {
    max-width: 1040px;
    margin: auto;
    margin-top: 30px;
    padding: 22px 24px;
    border-radius: 26px;
      background: #fbfcfe;
    border: 1px solid #edf2f7;
}


.list_notice {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
}

.list_notice li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    border-radius: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
}

.list_notice li::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: rotate(45deg);
    border-radius: 2px;
    background: #3BA6EA;
    flex-shrink: 0;
    margin-top: 8px;
}





/* =========================
   EXPRESSION SECTION
========================= */
.expression-list {
    width: 100%;
    display: grid;
     max-width: 1040px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 30px 0 0;
    margin: 0 auto;

}

.expression-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expression-img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e0ebf4;
    box-shadow: 0 12px 26px rgba(19, 57, 88, 0.06);
}

.expression-img img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.expression-item:hover .expression-img img {
    transform: scale(1.08);
}

.expression-item p {
    margin-top: 12px;
    padding: 10px 20px;
    border-radius: 999px;
    background-color: #ffffff;
    color: #3BA6EA;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(19, 57, 88, 0.05);
}


/* =========================
   PROCESS IMAGE SECTION
========================= */
.process-img-section {
    width: 100%;
    margin-top: 58px;
}

.process-img-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-img-item {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-img-thumb {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe8f2;
    box-shadow: 0 14px 30px rgba(19, 57, 88, 0.06);
}

.process-img-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.process-img-item p {
    max-width: 220px;
    margin-top: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #3BA6EA;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(19, 57, 88, 0.08);
}
/* =========================
   PROCESS FLOW (작업과정)
========================= */
.process-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin: 50px 0 40px;
}

.process-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.process-box,
.process-dot,
.process-arrow {
    flex-shrink: 0;
}

/* 박스 */
.process-box {
    width: 170px;
    min-height: 170px;
    padding: 22px 16px;
    border-radius: 22px;
    background: #f9fafc;
    border: 1px solid #e6edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #2c2f33;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    word-break: keep-all;
}

.process-box.light {
    background: #f4f7fb;
}

.process-box.dark {
    background: #f8f3f6;
}

/* 컨펌 원 */
.process-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f6edd2;
    border: 1px solid #e6d8a2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #5c4a12;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}

/* 화살표 */
.process-arrow {
    width: 26px;
    height: 26px;
    position: relative;
}

.process-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    transform: translate(-60%, -50%) rotate(45deg);
}


/* =========================
   태블릿
========================= */
@media (max-width: 1024px) {
    .process-wrap {
        margin: 48px 0 38px;
    }

    .process-row {
        gap: 12px;
    }

    .process-box {
        width: 160px;
        min-height: 110px;
        font-size: 15px;
        padding: 18px 14px;
    }

    .process-dot {
        width: 70px;
        height: 70px;
        font-size: 14px;
    }

    .process-arrow {
        width: 24px;
        min-width: 24px;
    }
}
/* =========================
   모바일: 깔끔한 세로 진행형
========================= */
@media (max-width: 768px) {
    .process-wrap {
        margin: 32px 0 24px;
        padding: 0 16px;
    }

    .process-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    /* 박스 / 컨펌 공통 */
    .process-box,
    .process-dot {
        width: 100%;
        max-width: 220px;
        min-height: auto;
        padding: 14px 16px;
        border-radius: 16px;
        text-align: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* 작업 박스 */
    .process-box {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5;
        color: #2c2f33;
        position: relative;
    }

    .process-box.light {
        background: #f8fbff;
        border: 1px solid #dbe7f5;
    }

    .process-box.dark {
        background: #fff7fa;
        border: 1px solid #ecd7e2;
    }

    /* 기존 왼쪽 세로선 제거 */
    .process-box::before,
    .process-box::after {
        content: none !important;
    }

    /* 모바일에서는 줄바꿈 너무 과하면 답답하니 조금 정리 */
    .process-box br {
        display: inline;
    }

    /* 컨펌 */
    .process-dot {
        max-width: 140px;
        min-height: 44px;
        padding: 10px 14px;
        border-radius: 12px;
        background: #fff6db;
        border: 1px solid #ead48a;
        font-size: 13px;
        font-weight: 800;
        color: #6b4f00;
        white-space: nowrap;
    }

    /* 아래 화살표만 심플하게 */
    .process-arrow {
        width: 20px;
        height: 20px;
        position: relative;
    }

    .process-arrow::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #94a3b8;
        border-bottom: 2px solid #94a3b8;
        transform: translateX(-50%) rotate(45deg);
    }

    .process-arrow::after {
        content: none;
    }
}


/* =========================
   REFUND
========================= */
.refund-section .section-head h2 {
    border-color: rgba(255, 145, 145, 0.28);
    color: #c45a5a;
    background: rgba(255, 250, 250, 0.95);
    
}

.refund-section .inner {
    position: relative;
}

.refund-box {
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 250, 250, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(239, 203, 203, 0.95);
    box-shadow: 0 18px 34px rgba(195, 108, 108, 0.12);
    padding: 30px 26px 26px;
}

.refund-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff1f1;
    border: 1px solid #f2caca;
    color: #a94d4d;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.6;
}

.refund-alert::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #e96c6c;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    flex: 0 0 auto;
}

.refund-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.refund-list li {
    position: relative;
    font-weight: 600;
    border-radius: 22px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    word-break: keep-all;
}


.refund-list li.important {
    background: linear-gradient(180deg, rgba(255, 245, 245, 0.98) 0%, rgba(255, 250, 250, 0.98) 100%);
    border: 1px solid rgba(239, 203, 203, 0.95);
    box-shadow: 0 12px 24px rgba(195, 108, 108, 0.1);
    color: #8f4040;
}

.refund-list li.important::before {
    background: #e47b7b;
    box-shadow: 0 0 0 6px rgba(228, 123, 123, 0.18);
}

.refund-list li:nth-child(4),.refund-list li:nth-child(6) {
    color: #c45a5a;
}

.refund-note-box {
    max-width: 1040px;
    margin: 0 auto;
    margin-top: 8px;
    padding: 22px 24px;
    border-radius: 26px;
    background: rgba(255, 250, 245, 0.92);
    border: 1px solid rgba(255, 210, 180, 0.5);
}

/* =========================
   REFUND LIST
========================= */
.refund-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 기본 */
.refund-list li {
    display: flex;
    align-items: center; 
    gap: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.refund-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-radius: 2px;
    background: #d77a4c;

    flex: 0 0 auto;
}

.refund-list li:nth-child(4)::before,
.refund-list li:nth-child(6)::before {
    background: #d9534f;
}

/* 강조 다이아 */
.refund-list li:nth-child(4)::before,
.refund-list li:nth-child(6)::before {
    background: #d9534f;
}

/* =========================
   CTA
========================= */
.apply-cta {
    display: block;
    width: 100%;
    padding: 74px 0 90px;
    text-align: center;
}

.apply-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    min-height: 60px;
    padding: 0 28px;
    border-radius: 999px;
    background: #3BA6EA;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.apply-cta__btn:hover {
    transform: translateY(-2px);
    opacity: 0.94;
}

.apply-cta p {
    margin-top: 14px;
    font-size: 14px;
    color: #666;
}



/* =========================
   FLOATING NAV
========================= */
/* =========================
   FLOATING SIDE NAV
========================= */
.floating-nav {
    position: fixed;
    right: max(18px, calc((100vw - 1320px) / 2 - 70px));
    bottom: 32px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.side-nav-top,
.top-btn {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(185, 214, 234, 0.82);
    box-shadow: 0 12px 24px rgba(59, 166, 234, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.side-nav-top::before,
.top-btn::before {
    content: "";
    position: absolute;
    top: 54%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--sky-deep);
    border-left: 2px solid var(--sky-deep);
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(185, 214, 234, 0.72);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.side-nav button,
.side-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.side-nav button:hover,
.side-nav a:hover,
.side-nav button.active,
.side-nav a.active {
    background: #eef8fe;
    color: var(--sky-deep);
    transform: translateY(-1px);
}


/* =========================
   TABLET
========================= */
@media (max-width: 1200px) {
    .price-highlight {
        grid-template-columns: 1fr;
    }

    .price-card {
        flex-direction: column;
        align-items: stretch;
    }

    .price-card-image {
        width: 100%;
    }

    .expression-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-wrap {
        gap: 24px;
    }

    .process-row {
        gap: 14px;
    }

    .process-box {
        min-width: 140px;
        max-width: 180px;
        min-height: 140px;
        font-size: 15px;
    }

    .process-dot {
        min-width: 56px;
        height: 56px;
        font-size: 13px;
    }

    .refund-list {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .price-page {
        padding-top: 100px;
    }

    .process-note {
font-size: 14px;
}

    .process-flow
    {
         font-size: 16px;
    }

    .price-hero h1 {
        font-size: 32px;
    }

    .price-hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .price-highlight {
        gap: 14px;
        margin-top: 24px;
    }

    .price-highlight-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .price-highlight-card strong {
        font-size: 20px;
    }

    .price-card {
        gap: 20px;
        padding: 22px 18px;
        border-radius: 24px;
        align-items: center;
    }

    .card-title {
        font-size: 22px;
        text-align: center;
    }

    .card-price {
        font-size: 24px;
        
    }

    .card-desc,
    .card-list li,
    .list_notice li {
        font-size: 15px;
    }

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

    .expression-item p {
        font-size: 14px;
    }

    .process-wrap {
        gap: 18px;
    }

    .process-row {
        gap: 10px;
        max-width: 100%;
    }

    .process-box {
        min-width: 110px;
        max-width: 140px;
        min-height: 110px;
        padding: 14px 8px;
        border-radius: 18px;
        font-size: 13px;
        flex: 0 1 auto;
    }

    .process-dot {
        min-width: 46px;
        height: 46px;
        font-size: 12px;
    }

    .process-arrow {
        width: 16px;
        height: 16px;
    }

    .process-arrow::before {
        width: 7px;
        height: 7px;
    }

    .process-img-section {
        margin-top: 38px;
    }

    .refund-list li {
        padding: 16px 14px;
        border-radius: 18px;
        font-size: 15px;
    }

    .apply-cta {
        padding: 54px 0 70px;
    }

    .apply-cta__btn {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        font-size: 16px;
    }

    .floating-nav {
        right: 12px;
        gap: 12px;
        top:85%;
    }

    .side-nav-top {
        width: 48px;
        height: 48px;
    
    }
 .side-nav
 {
    display: none;
 }

}

.price-guide-text {
max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    color: #666;
    letter-spacing: 0;
    text-align: center;
}

/* =========================
   EXTRA OPTION
========================= */
.extra-option-section {
    margin-top: 34px;
    padding: 0 30px;
}

.extra-option-grid {
    display: flex;
    gap: 22px 24px;
    align-items: center;
        justify-content: center;
}

.extra-option-group {
    padding: 20px;
    width: 39%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
        border: 1px solid #d9e9f8;
    box-shadow: 0 14px 28px rgba(19, 57, 88, 0.05);
}

.extra-option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extra-option-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 16px;
    background: #fbfcfe;
    border: 1px solid #edf2f7;
}

.extra-option-row::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    transform: rotate(45deg);
    border-radius: 2px;
    background: #CF6F98;
}

.extra-option-name {
    flex: 1 1 auto;
    min-width: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    word-break: keep-all;
}

.extra-option-price {
    flex: 0 0 auto;
    margin-left: 8px;
    color: #CF6F98;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.list_notice,
.refund-list
 {
    max-width: 1040px;
    margin: 0 auto;
}

.price-guide-text
{
    margin: 30px auto;
}

@media (max-width: 768px) {

    .payment-process
    {
        margin: 0 20px;
    }
    

.refund-list li 
{
    padding: 0 10px;
}

.price-hero .inner
{
    padding: 0;
}

.expression-text
{
    width: 100%;
}
      .extra-option-grid {
    flex-direction: column;
    gap: 16px;
  }
    .extra-option-section {
        margin-top: 26px;
        padding: 0 20px;
    }

    .extra-option-group {
        padding: 14px;
        border-radius: 20px;
    }

    .extra-option-group__title {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .extra-option-row {
        min-height: 50px;
        padding: 10px 12px;
    }

    .extra-option-name,
    .extra-option-price {
        font-size: 14px;
    }
     .extra-option-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}