/* BASIC css start */
/* =========================================
    µ¿±×¶û ±âÈ¹Àü ÆäÀÌÁö CSS
    - ¸ÞÀÎÆäÀÌÁö »óÇ° Ä«µå ½ºÅ¸ÀÏ ±âÁØ
    - ±âÈ¹Àü Àü¿ë ½ºÄÚÇÁ Àû¿ë
    - Âò/¹Ì¸®º¸±â ¹öÆ°Àº °øÅë »óÇ° Ä«µå ½ºÅ¸ÀÏ »ç¿ë
    - »ó´Ü ¹è³Ê ºñÀ² À¯Áö
    - prds--star ¼û±è
========================================= */


/* =========================================
    00. ±âÈ¹Àü ±âº» º¯¼ö
========================================= */

.plan-page {
    width: 100%;
    margin: 0;
    background: #fff;
    color: #222;

    /*
        Çì´õ ³»ºÎ ÄÜÅÙÃ÷¿Í µ¿ÀÏÇÑ ±âÁØ Æø
        PC ÁÂ¿ì ¿©¹éÀº ÀüÃ¼ 40px = ÁÂ¿ì °¢ 20px
    */
    --plan-max-width: var(--layout-max-width);
    --plan-hero-max-width: 1440px;
     --plan-side-space: calc(var(--layout-side-padding) * 2);

    --plan-page-bg: #ffffff;
    --plan-section-bg: #f7f8fa;
    --plan-card-bg: #ffffff;

    --plan-text: #171717;
    --plan-text-sub: #6b7280;
    --plan-text-light: #9ca3af;

    --plan-border: #e5e7eb;
    --plan-border-soft: #eef0f3;
    --plan-card-border: #e9ecef;
    --plan-card-border-hover: #dfe3e7;
    --plan-bg-soft: #f7f8fa;

    --plan-brand: #c8303a;
    --plan-sale: #e60012;
    --plan-green: #009b72;

    --plan-radius-card: 14px;
    --plan-radius-image: 10px;
    --plan-radius-section: 18px;

    --plan-card-shadow: 0 4px 14px rgba(0, 0, 0, 0.045);
    --plan-card-shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.08);

    --plan-sticky-top: 0px;
}

.plan-page *,
.plan-page *::before,
.plan-page *::after {
    box-sizing: border-box;
}

.plan-page a {
    color: inherit;
    text-decoration: none;
}

body .full-wrapper:has(.plan-page) {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;

    --bs-gutter-x: 0;
}


/* =========================================
    01. »ó´Ü ±âÈ¹Àü ¹è³Ê
    - ¿øº» ºñÀ² À¯Áö
    - PC¿¡¼­ °úÇÏ°Ô ´Ã¾î³ªÁö ¾Êµµ·Ï ÃÖ´ëÆø Á¦ÇÑ
========================================= */

.plan-page .plan-hero-full {
   position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--plan-section-bg);
    }
    
/* ºí·¯ ¹è°æ ·¹ÀÌ¾î */
.plan-page .plan-hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-url);
    background-size: cover;
    background-position: center;
    filter: blur(70px) brightness(1) saturate(1.1);
    transform: scale(1.5); /* ºí·¯ °¡ÀåÀÚ¸®°¡ ºñÄ¡Áö ¾Êµµ·Ï ³Ë³ËÈ÷ È®´ë */
    z-index: 0;
}
    
.plan-page .plan-hero-full__visual {
    position: relative;
    z-index: 1;
    width: min(100%, var(--plan-hero-max-width));
    max-width: var(--plan-hero-max-width);
    margin: 0 auto;

    /* ÁÂ¿ì 8% ±¸°£À» Åõ¸í ¡æ ºÒÅõ¸í ¡æ ºÒÅõ¸í ¡æ Åõ¸í À¸·Î ÆäÀÌµå */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
}

.plan-page .plan-hero-full__visual > img,
.plan-page .plan-hero-full__visual picture,
.plan-page .plan-hero-full__visual picture img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.plan-page .plan-hero-full__visual > img,
.plan-page .plan-hero-full__visual picture img {
     width: 100%;
    height: auto;
    object-fit: cover;
}

.plan-page .plan-hero-full__visual > *:not(img):not(picture) {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.plan-page .plan-hero-full__visual > *:not(img):not(picture) img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: initial;
    object-position: center;
}


/* =========================================
    02. ³»ºÎ °øÅë Æø
========================================= */

.plan-page .plan-inner {
    width: calc(100% - var(--plan-side-space));
    max-width: var(--plan-max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}


/* =========================================
    03. »ó´Ü ÄÁÆ®·Ñ
========================================= */

.plan-page .plan-top-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0 20px;
}

.plan-page .plan-top-control strong {
    color: var(--plan-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.03em;
    word-break: keep-all;
}

.plan-page .plan-top-control .cw-select-box {
    width: 280px;
}


/* =========================================
    04. Ä«Å×°í¸® ÅÇ
========================================= */

.plan-page .plan-category {
    position: sticky;
    top: var(--plan-sticky-top);
    z-index: 30;
    margin: 0 0 34px;
    border-top: 1px solid var(--plan-border);
    border-bottom: 1px solid var(--plan-border);
    background: rgba(255, 255, 255, 0.98);
    transition: box-shadow 0.2s ease;
}

.plan-page .plan-category.is-stuck {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.plan-page .plan-category__list {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    cursor: grab;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.plan-page .plan-category__list::-webkit-scrollbar {
    display: none;
}

.plan-page .plan-category__list.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.plan-page .plan-category__list li {
    flex: 1 0 auto;
    min-width: 120px;
    border-right: 1px solid var(--plan-border);
}

.plan-page .plan-category__list li:first-child {
    border-left: 1px solid var(--plan-border);
}

.plan-page .plan-category__list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.03em;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.plan-page .plan-category__list li.active a {
    background: #f7f8f8;
    color: var(--plan-text);
    font-weight: 800;
}


/* =========================================
    05. »óÇ° ¿µ¿ª Çì´õ
========================================= */

.plan-page .plan-product-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 42px 0 24px;
    text-align: center;
}

.plan-page .plan-product-head h2 {
    margin: 0;
    color: var(--plan-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.plan-page .products-type {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    transform: translateY(-50%);
}

.plan-page .products-type .type {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--plan-border);
    border-radius: 50%;
    background: #fff;
}

.plan-page .products-type .type img {
    width: 18px;
    height: 18px;
}


/* =========================================
    06. »óÇ° ¸®½ºÆ® ·¹ÀÌ¾Æ¿ô
========================================= */

.plan-page .plan-products .prds-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-page .plan-products .prds-list.gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 14px;
}

.plan-page .plan-products .prds-list.list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================
    07. »óÇ° Ä«µå °øÅë
========================================= */

.plan-page .plan-products .prds-list--item {
    position: relative;
    min-width: 0;
    padding: 12px 12px 14px;
    border: 1px solid var(--plan-card-border);
    border-radius: var(--plan-radius-card);
    background: var(--plan-card-bg);
    box-shadow: var(--plan-card-shadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-page .plan-products .prds-list--item:hover {
    transform: translateY(-2px);
    border-color: var(--plan-card-border-hover);
    box-shadow: var(--plan-card-shadow-hover);
}

.plan-page .plan-products .prds-list.gallery .prds-list--item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-page .plan-products .prds-list.list .prds-list--item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}


/* =========================================
    08. »óÇ° ÀÌ¹ÌÁö ¿µ¿ª
========================================= */

.plan-page .plan-products .prds--image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 0 10px;
    border: 0;
    border-radius: var(--plan-radius-image);
    background: var(--plan-bg-soft);
    overflow: hidden;
    cursor: pointer;
}

.plan-page .plan-products .prds-list.list .prds--image {
    margin-bottom: 0;
}

.plan-page .plan-products .prds--image > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


/* =========================================
    09. Âò / ¹Ì¸®º¸±â ¹öÆ°
    - Å©±â, À§Ä¡, ¹è°æÀº Á÷Á¢ ÁöÁ¤ÇÏÁö ¾ÊÀ½
    - ¸ÞÀÎÆäÀÌÁö/°øÅë »óÇ° Ä«µå ½ºÅ¸ÀÏÀ» ±×´ë·Î »ç¿ë
    - Å¬¸¯ Ãæµ¹¸¸ ¹æÁö
========================================= */

.plan-page .plan-products .prds--image .thumb-button {
    z-index: 30;
    pointer-events: none;
}

.plan-page .plan-products .prds--image .thumb-button a {
    z-index: 31;
    pointer-events: auto;
}

/* ¸ÞÀÎ CSS¿Í µ¿ÀÏÇÏ°Ô ³»ºÎ ÀÌ¹ÌÁö ±âº»°ª¸¸ À¯Áö */
.plan-page .plan-products .prds--image .thumb-button img {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: initial;
}


/* =========================================
    10. »óÇ° Á¤º¸
========================================= */

.plan-page .plan-products .prds--wrap {
    position: relative;
    min-width: 0;
}

.plan-page .plan-products .prds--colorchip {
    display: flex;
    gap: 4px;
    margin: 0 0 6px;
}

.plan-page .plan-products .prds--colorchip .rectangle {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.plan-page .plan-products .prds--brand {
    display: none;
}

.plan-page .plan-products .prds--name {
    display: -webkit-box;
    min-height: 40px;
    margin: 0 0 4px;
    color: var(--plan-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.03em;
    word-break: keep-all;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.plan-page .plan-products .prds--engname,
.plan-page .plan-products .prds--subname {
    display: block;
    min-height: 18px;
    margin: 0 0 2px;
    color: var(--plan-text-sub);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================
    11. °¡°Ý ¿µ¿ª
========================================= */

.plan-page .plan-products .priceArea {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 4px;
    min-height: 42px;
    margin: 4px 0 0;
}

.plan-page .plan-products .priceArea del {
    width: 100%;
    margin-bottom: 1px;
    color: var(--plan-text-light);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: line-through;
}

.plan-page .plan-products .priceArea .-discount {
    color: var(--plan-sale);
    font-size: 15px;
    font-weight: 800;
    line-height: 22px;
}

.plan-page .plan-products .priceArea .-price {
    color: var(--plan-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.plan-page .plan-products .priceArea .-price strong {
    font-size: 16px;
    font-weight: 800;
}

.plan-page .plan-products .-soldout {
    color: var(--plan-sale);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================
    12. ÄíÆù°¡
========================================= */

.plan-page .plan-products .prds--price-wrap {
    position: relative;
    z-index: 5;
    margin: 4px 0 0;
}

.plan-page .plan-products .prds--price-wrap .coupon {
    display: block;
    color: var(--plan-brand);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.plan-page .plan-products .prds--price-wrap .coupon span {
    color: var(--plan-brand);
}


/* =========================================
    13. »óÇ° ¾ÆÀÌÄÜ
========================================= */

.plan-page .plan-products .prds--icons {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    min-height: 20px;
    margin-top: 8px;
}

.plan-page .plan-products .prds--icons img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 20px;
    vertical-align: top;
}


/* =========================================
    14. ÇýÅÃ / ¿É¼Ç ¹öÆ°
========================================= */

.plan-page .plan-products .prds--more {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.plan-page .plan-products .benefit-btn {
    display: inline-flex;
    align-items: center;
    height: 28px;
    border: 1px solid #111;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
}

.plan-page .plan-products .benefit-btn--black {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 100%;
    background: #111;
    color: #fff;
}

.plan-page .plan-products .benefit-btn--white {
    padding: 0 9px;
    background: #fff;
    color: #111;
}

.plan-page .plan-products .option-detail {
    position: relative;
    z-index: 31;
}

.plan-page .plan-products .option-detail .opt-btn {
    position: relative;
    z-index: 32;
}


/* =========================================
    15. ¸®ºä / ÇØ½ÃÅÂ±×
========================================= */

.plan-page .plan-products .prds--star {
    display: none;
}

.plan-page .plan-products .prds--hashtag {
    position: relative;
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.plan-page .plan-products .prds--hashtag a {
    position: relative;
    z-index: 31;
    color: var(--plan-text-sub);
    font-size: 12px;
    text-decoration: none;
}


/* =========================================
    16. Ä«µå ÀüÃ¼ ¸µÅ©
    - ½æ³×ÀÏ Å¬¸¯ ÀÌµ¿Àº JS¿¡¼­ Ã³¸®
    - Âò/¹Ì¸®º¸±â/ÇýÅÃ ¹öÆ°º¸´Ù ³·°Ô À¯Áö
========================================= */

.plan-page .plan-products .prds-list--item > .link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}


/* =========================================
    17. ´õº¸±â
========================================= */

.plan-page .plan-more,
.plan-page .products-more {
    margin-top: 56px;
    text-align: center;
}

.plan-page .plan-more a,
.plan-page .products-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 260px;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.plan-page .plan-more a:hover,
.plan-page .products-more a:hover {
    border-color: #111;
    background: #fafafa;
}


/* =========================================
    18. »óÇ° ¾øÀ½
========================================= */

.plan-page .plan-products .list-none {
    margin: 70px 0;
    padding: 70px 20px;
    border: 1px solid var(--plan-border);
    border-radius: 14px;
    background: #fafafa;
    color: #777;
    font-size: 15px;
    text-align: center;
}


/* =========================================
    19. ±âÈ¹Àü À¯ÀÇ»çÇ×
========================================= */

.plan-page .plan-notice {
    width: calc(100% - var(--plan-side-space));
    max-width: var(--plan-max-width);
    margin: 70px auto 90px;
    padding-right: 0;
    padding-left: 0;
}

.plan-page .plan-notice__box {
    padding: 34px 38px;
    border: 1px solid #d8d8d8;
    border-radius: 14px;
    background: #fff;
}

.plan-page .plan-notice__box + .plan-notice__box {
    margin-top: 24px;
}

.plan-page .plan-notice__box h3 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 28px;
    color: #333;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.plan-page .plan-notice__box h3::before {
    content: "!";
    position: absolute;
    top: 4px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #343a40;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.plan-page .plan-notice__box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-page .plan-notice__box li {
    position: relative;
    padding-left: 12px;
    color: #3f4650;
    font-size: 15px;
    line-height: 2;
    word-break: keep-all;
}

.plan-page .plan-notice__box li::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #333;
}


/* =========================================
    20. ±âÁ¸ Å¬·¡½º È£È¯
========================================= */

.plan-page .shopbrand-header,
.plan-page .category-title {
    display: none;
}


/* =========================================
    21. Tablet
========================================= */

@media (min-width: 768px) and (max-width: 1023.98px) {
    .plan-page {
        --plan-side-space: 32px;
    }

    .plan-page .plan-top-control {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 24px 0 18px;
    }

    .plan-page .plan-top-control strong {
        font-size: 21px;
    }

    .plan-page .plan-top-control .cw-select-box {
        width: 100%;
    }

    .plan-page .plan-category {
        margin-left: calc(-1 * var(--plan-side-space) / 2);
        margin-right: calc(-1 * var(--plan-side-space) / 2);
    }

    .plan-page .plan-category__list li {
        flex: 0 0 auto;
        min-width: 112px;
    }

    .plan-page .plan-category__list li a {
        min-height: 50px;
        padding: 0 14px;
        font-size: 13px;
    }

    .plan-page .plan-product-head {
        margin: 36px 0 20px;
    }

    .plan-page .plan-products .prds-list.gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 10px;
    }

    .plan-page .plan-products .prds-list.list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .plan-page .plan-products .prds-list.list .prds-list--item {
        grid-template-columns: 140px minmax(0, 1fr);
    }
}


/* =========================================
    22. Mobile
========================================= */

@media (max-width: 767.98px) {
    .plan-page {
        --plan-side-space: 24px;
    }

    .plan-page .plan-top-control {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 22px 0 16px;
    }

    .plan-page .plan-top-control strong {
        font-size: 20px;
    }

    .plan-page .plan-top-control .cw-select-box {
        width: 100%;
    }

    .plan-page .plan-category {
        margin-bottom: 28px;
    }

    .plan-page .plan-category__list li {
        flex: 0 0 auto;
        min-width: 96px;
    }

    .plan-page .plan-category__list li a {
        min-height: 46px;
        padding: 0 12px;
        font-size: 12px;
    }

    .plan-page .plan-product-head {
        justify-content: flex-start;
        margin: 30px 0 16px;
        text-align: left;
    }

    .plan-page .plan-product-head h2 {
        font-size: 18px;
    }

    .plan-page .products-type {
        right: 0;
    }

    .plan-page .products-type .type {
        width: 34px;
        height: 34px;
    }

    .plan-page .plan-products .prds-list.gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 8px;
    }

    .plan-page .plan-products .prds-list.list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .plan-page .plan-products .prds-list.list .prds-list--item {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 10px;
    }

    .plan-page .plan-products .prds-list--item {
        padding: 10px 9px 12px;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    }

    .plan-page .plan-products .prds--image {
        margin-bottom: 8px;
        border-radius: 9px;
    }

    .plan-page .plan-products .prds--name {
        min-height: 38px;
        font-size: 13px;
        line-height: 19px;
    }

    .plan-page .plan-products .prds--engname,
    .plan-page .plan-products .prds--subname {
        min-height: 16px;
        font-size: 11px;
        line-height: 16px;
    }

    .plan-page .plan-products .priceArea {
        min-height: 38px;
    }

    .plan-page .plan-products .priceArea del {
        font-size: 11px;
        line-height: 15px;
    }

    .plan-page .plan-products .priceArea .-discount {
        font-size: 13px;
        line-height: 20px;
    }

    .plan-page .plan-products .priceArea .-price {
        font-size: 12px;
        line-height: 20px;
    }

    .plan-page .plan-products .priceArea .-price strong {
        font-size: 14px;
    }

    .plan-page .plan-products .prds--icons {
        gap: 3px;
        min-height: 20px;
        margin-top: 7px;
    }

    .plan-page .plan-products .prds--icons img {
        max-height: 18px;
    }

    .plan-page .plan-products .prds--more {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .plan-page .plan-more,
    .plan-page .products-more {
        margin-top: 42px;
    }

    .plan-page .plan-more a,
    .plan-page .products-more a {
        width: 100%;
        height: 44px;
    }

    .plan-page .plan-notice {
        margin: 50px auto 70px;
    }

    .plan-page .plan-notice__box {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .plan-page .plan-notice__box + .plan-notice__box {
        margin-top: 18px;
    }

    .plan-page .plan-notice__box h3 {
        margin-bottom: 14px;
        font-size: 17px;
    }

    .plan-page .plan-notice__box h3::before {
        top: 3px;
    }

    .plan-page .plan-notice__box li {
        font-size: 13px;
        line-height: 1.8;
    }

    .plan-page .plan-notice__box li::before {
        top: 11px;
    }
}


/* =========================================
    23. Small Mobile
========================================= */

@media (max-width: 360px) {
    .plan-page {
        --plan-side-space: 20px;
    }

    .plan-page .plan-products .prds-list.gallery {
        gap: 14px 7px;
    }

    .plan-page .plan-products .prds-list--item {
        padding: 9px 8px 11px;
    }

    .plan-page .plan-products .prds--name {
        font-size: 12px;
        line-height: 18px;
    }
}
/* BASIC css end */

