/* 여기에 작업 또는 수정할 당신의 css style을 설정하세요. (customizations) */

:root {
    --dowon-green: #006B58;
    --dowon-green-2: #007D68;
    --dowon-green-dark: #005143;
    --dowon-bg: #F7F8F6;
    --dowon-mint: #EAF6F2;
    --dowon-mint-2: #F4FBF8;
    --dowon-white: #FFFFFF;
    --dowon-text: #111111;
    --dowon-sub: #6B6B6B;
    --dowon-line: #E7E7E7;
    --dowon-danger: #EF4444;
    --dowon-orange: #F97316;
    --dowon-shadow: 0 12px 30px rgba(0, 0, 0, .09);
}

html body {
    background: var(--dowon-bg);
    color: var(--dowon-text);
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
}

html body a {
    color: inherit;
}

html body a:hover,
html body a:focus {
    color: var(--dowon-green);
}

html body .wrapper,
html body .basic-body,
html body .basic-body-main,
html body .my-home {
    background: var(--dowon-bg);
}

/* 모바일 페이지 이동 로딩 */
html body.dowon-click-loading-active {
    cursor: progress;
}

html body .dowon-click-loading {
    position: fixed;
    inset: 0;
    z-index: 2147483500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(247, 248, 246, .82);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

html body .dowon-click-loading.is-instant {
    transition: none;
}

html body .dowon-click-loading.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

html body .dowon-click-loading__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 132px;
    min-height: 112px;
    padding: 22px 24px 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(0, 107, 88, .14);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(0, 81, 67, .14);
}

html body .dowon-click-loading__spinner {
    width: 54px;
    height: 54px;
    display: block;
    animation: dowon-click-loading-spin 1.15s linear infinite;
    filter: drop-shadow(0 8px 14px rgba(0, 81, 67, .14));
}

html body .dowon-click-loading__spinner-track,
html body .dowon-click-loading__spinner-head {
    fill: none;
    stroke-width: 4;
}

html body .dowon-click-loading__spinner-track {
    stroke: rgba(0, 107, 88, .14);
}

html body .dowon-click-loading__spinner-head {
    stroke: var(--dowon-green);
    stroke-dasharray: 82 126;
    stroke-linecap: round;
}

html body .dowon-click-loading__text {
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    color: var(--dowon-green-dark);
}

html body #show_progress .dowon-click-loading__spinner {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
}

@keyframes dowon-click-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) {
    html body .dowon-click-loading {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .dowon-click-loading,
    html body .dowon-click-loading__spinner {
        transition: none;
        animation: none;
    }
}

html body .container {
    max-width: 1180px;
}

/* 도원 공통 버튼 */
html body .btn-e,
html body .btn {
    border-radius: 8px !important;
    letter-spacing: 0;
}

html body .btn-e {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.2;
}

html body .btn-e.btn-e-block,
html body .btn-e.btn-block {
    display: flex;
    width: 100%;
}

html body .btn-e-lg,
html body .btn-e-xl,
html body .btn-e-xlg,
html body .btn_submit {
    min-height: 48px;
}

html body .btn-e-navy,
html body .btn-navy,
html body .btn-e.btn-e-navy,
html body .btn-e.btn-navy {
    background-color: var(--dowon-green) !important;
    border-color: var(--dowon-green) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(0, 107, 88, .18);
}

html body .btn-e-navy:hover,
html body .btn-e-navy:focus,
html body .btn-navy:hover,
html body .btn-navy:focus {
    background-color: var(--dowon-green-2) !important;
    border-color: var(--dowon-green-2) !important;
    color: #fff !important;
}

html body .btn-e-dark,
html body .btn-e.btn-e-dark {
    background-color: #fff !important;
    border-color: #D9E1DE !important;
    color: #34403C !important;
    box-shadow: none;
}

html body .btn-e-dark:hover,
html body .btn-e-dark:focus {
    background-color: var(--dowon-mint-2) !important;
    border-color: #B8CBC5 !important;
    color: var(--dowon-green-dark) !important;
}

html body .btn-e-brd.btn-e-dark {
    background-color: #fff !important;
    border-color: #D9E1DE !important;
    color: #34403C !important;
    box-shadow: none;
}

html body .btn-e-brd.btn-e-navy,
html body .btn-e-brd.btn-navy {
    background-color: #fff !important;
    border-color: rgba(0, 107, 88, .28) !important;
    color: var(--dowon-green-dark) !important;
    box-shadow: none;
}

html body .btn-e-brd.btn-e-dark:hover {
    background-color: var(--dowon-mint-2) !important;
    border-color: #B8CBC5 !important;
    color: var(--dowon-green-dark) !important;
}

html body .btn-e-brd.btn-e-navy:hover,
html body .btn-e-brd.btn-navy:hover {
    background-color: var(--dowon-mint-2) !important;
    border-color: var(--dowon-green) !important;
    color: var(--dowon-green) !important;
}

html body .btn-e-crimson,
html body .btn-e.btn-e-crimson {
    background-color: var(--dowon-danger) !important;
    border-color: var(--dowon-danger) !important;
    color: #fff !important;
}

html body .sel_address.btn-e-crimson {
    background-color: var(--dowon-green) !important;
    border-color: var(--dowon-green) !important;
}

/* 헤더와 네비게이션 */
html body .header-wrap,
html body .top-header,
html body .header-title,
html body #hd {
    background: rgba(255, 255, 255, .96);
    border-color: var(--dowon-line);
}

html body .top-header {
    background: var(--dowon-mint-2);
}

html body .top-header-nav li > a,
html body .navbar-nav a,
html body .navbar-toggler {
    color: var(--dowon-text);
}

html body .top-header-nav .cs-nav .activate {
    color: var(--dowon-green-dark);
    background-color: #fff;
    box-shadow: inset 0 -2px 0 var(--dowon-green);
}

html body .top-header-nav .cs-nav .deactivate,
html body .top-header-nav li > a i {
    color: var(--dowon-sub);
}

html body .top-header-nav li.dropdown .dropdown-menu,
html body .navbar-nav .dropdown-menu {
    border: 1px solid rgba(0, 107, 88, .16);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(0, 46, 39, .12);
}

html body .top-header-nav li.dropdown .dropdown-menu a:hover,
html body .navbar-nav>li>.nav-link.active,
html body .navbar-nav>li>.nav-link:hover,
html body .navbar-nav .dropdown-menu li a.active,
html body .navbar-nav .dropdown-menu li a:hover,
html body .navbar-nav .dropdown-menu>ul>.mega-menu-col ul>li:hover>a,
html body .navbar-nav .dropdown-menu>ul>li:hover>a {
    color: var(--dowon-green);
}

html body .header-title .container {
    min-height: 92px;
}

html body .header-title .header-title-search .eyoom-form .input input {
    height: 46px;
    border: 2px solid rgba(0, 107, 88, .24);
    border-radius: 999px;
    color: var(--dowon-text);
    padding-left: 18px;
}

html body .header-title .header-title-search .eyoom-form .input input:focus {
    border-color: var(--dowon-green) !important;
    box-shadow: 0 0 0 4px rgba(0, 107, 88, .1);
}

html body .header-title .header-title-search .eyoom-form .input-button .button {
    height: 46px;
    line-height: 46px;
    min-width: 54px;
    background-color: var(--dowon-green);
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    color: #fff;
}

html body .header-title .header-title-btn {
    top: 24px;
    height: 42px;
}

html body .header-title .header-title-btn .title-btn .title-btn-in,
html body .header-title .header-title-btn .title-btn .title-btn-in.title-btn-navy {
    width: 132px;
    height: 42px;
    line-height: 42px;
    background: var(--dowon-green-dark);
    border-radius: 999px !important;
    padding: 0 14px;
    box-shadow: 0 10px 20px rgba(0, 81, 67, .16);
}

html body .header-title .header-title-btn .title-btn + .title-btn {
    margin-left: 8px;
}

html body .header-title .header-title-btn .title-btn .title-btn-in .badge,
html body span.label-indigo,
html body span.badge-indigo,
html body .header-title .header-title-btn .title-btn .title-btn-in .badge-indigo {
    background: var(--dowon-green) !important;
}

html body .header-title-mobile-btn {
    top: 50%;
    display: none;
    align-items: center;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    html body .header-title-mobile-btn {
        display: flex;
    }
}

html body .header-title-mobile-btn .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: 4px;
    padding: 0;
    line-height: 1;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--dowon-green-dark);
}

html body .header-title-mobile-btn .navbar-toggler .fas {
    line-height: 1;
}

html body .header-title-mobile-btn .navbar-toggler:hover,
html body .header-title-mobile-btn .navbar-toggler:focus {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--dowon-green-dark);
}

html body .dowon-mobile-subpage-header {
    display: none;
}

@media (max-width: 991px) {
    html body .page-header-wrap .top-header {
        display: none;
    }

    html body .page-header-wrap .header-title {
        border-bottom: 1px solid rgba(0, 107, 88, .12);
        background: var(--dowon-white);
        box-shadow: 0 8px 24px rgba(0, 46, 39, .06);
    }

    html body .page-header-wrap .header-title .container {
        display: block;
        height: 60px;
        min-height: 60px;
        padding-right: 18px;
        padding-left: 18px;
    }

    html body .page-header-wrap .header-title .title-logo,
    html body .page-header-wrap .header-title .header-title-search,
    html body .page-header-wrap .header-title .header-title-btn,
    html body .page-header-wrap .header-title .header-title-mobile-btn {
        display: none !important;
    }

    html body .page-header-wrap .nav-wrap {
        height: 0;
        min-height: 0;
        overflow: visible;
        border: 0;
    }

    html body .page-header-wrap .nav-wrap > .container,
    html body .page-header-wrap .nav-wrap .navbar {
        height: 0;
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    html body .page-header-wrap + .page-title-wrap {
        display: none;
    }

    html body .dowon-mobile-subpage-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        color: var(--dowon-text);
        box-sizing: border-box;
    }

    html body .dowon-mobile-subpage-header__title {
        display: block;
        width: 100%;
        padding: 0 104px;
        overflow: hidden;
        color: var(--dowon-green-dark);
        font-size: 1.25rem;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html body .dowon-mobile-subpage-header__back,
    html body .dowon-mobile-subpage-header__action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0;
        border: 1px solid transparent;
        background: transparent;
        color: #1f2a27;
        font: inherit;
        line-height: 1;
        border-radius: 999px;
        text-decoration: none;
        transition: color .15s ease, background-color .15s ease, border-color .15s ease, transform .15s ease;
        appearance: none;
        -webkit-appearance: none;
    }

    html body .dowon-mobile-subpage-header__back {
        position: absolute;
        top: 8px;
        left: 0;
        font-size: 1.55rem;
    }

    html body .dowon-mobile-subpage-header__actions {
        position: absolute;
        top: 8px;
        right: 0;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    html body .dowon-mobile-subpage-header__action {
        position: relative;
        background: var(--dowon-mint-2);
        border-color: rgba(0, 107, 88, .12);
        font-size: 1.45rem;
    }

    html body .dowon-mobile-subpage-header__back:hover,
    html body .dowon-mobile-subpage-header__back:focus,
    html body .dowon-mobile-subpage-header__action:hover,
    html body .dowon-mobile-subpage-header__action:focus {
        color: var(--dowon-green-dark);
        background: var(--dowon-mint);
        border-color: rgba(0, 107, 88, .22);
        text-decoration: none;
        outline: 0;
    }

    html body .dowon-mobile-subpage-header__back:active,
    html body .dowon-mobile-subpage-header__action:active {
        transform: translateY(1px);
    }

    html body .dowon-mobile-subpage-header__back:focus-visible,
    html body .dowon-mobile-subpage-header__action:focus-visible {
        box-shadow: 0 0 0 3px rgba(0, 107, 88, .16);
    }

    html body .dowon-mobile-subpage-header__badge {
        position: absolute;
        top: 4px;
        right: 3px;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        border: 2px solid #fff;
        border-radius: 999px;
        background: var(--dowon-danger);
        color: #fff;
        font-size: .6875rem;
        font-weight: 800;
        line-height: 13px;
        text-align: center;
        box-shadow: 0 3px 8px rgba(239, 68, 68, .28);
    }

    html body .dowon-subpage-mobile-float {
        display: none !important;
    }
}

@media (max-width: 360px) {
    html body .dowon-mobile-subpage-header__title {
        padding-right: 96px;
        padding-left: 96px;
        font-size: 1.25rem;
    }
}

html body .nav-wrap {
    background: #fff;
    border-bottom: 1px solid var(--dowon-line);
}

html body .nav-wrap .navbar-nav>li.dropdown-mega-menu>.mega-menu-trigger {
    border-color: var(--dowon-line);
}

html body .navbar-nav .mega-menu-col {
    border-color: var(--dowon-line);
}

html body .navbar-nav .mega-menu-col h5 a {
    color: var(--dowon-green-dark);
}

html body .sidebar-left .sidebar-member-menu {
    background: var(--dowon-mint-2);
    border-color: var(--dowon-line);
}

html body .sidebar-left .sidebar-member-menu .sidebar-member-btn,
html body .sidebar-left .navbar-nav > li.navbar-nav-home > a {
    min-height: 44px;
    line-height: 44px;
    background: var(--dowon-green-dark);
    border-color: var(--dowon-green-dark);
    border-radius: 10px;
}

html body .sidebar-left .navbar-nav > li > .nav-link.active,
html body .sidebar-left .navbar-nav > li > .cate-dropdown-open.show:before {
    color: var(--dowon-green);
}

/* 제목, 탭, 검색 자동완성 */
html body .page-title-wrap {
    background: linear-gradient(135deg, var(--dowon-green-dark), var(--dowon-green));
}

html body .subpage-title {
    color: var(--dowon-green-dark);
    border-bottom-color: var(--dowon-line);
}

html body .subpage-title::after,
html body .headline-short h1:after,
html body .headline-short h2:after,
html body .headline-short h3:after,
html body .headline-short h4:after,
html body .headline-short h5:after,
html body .headline-short h6:after,
html body .main-heading h2:after {
    background: var(--dowon-green);
}

html body .main-heading h2 strong,
html body .headline-short h1,
html body .headline-short h2,
html body .headline-short h3,
html body .headline-short h4,
html body .headline-short h5,
html body .headline-short h6 {
    color: var(--dowon-green-dark);
    font-weight: 800;
}

html body .shop-search-autocomplete {
    border-color: rgba(0, 107, 88, .16);
    box-shadow: 0 18px 40px rgba(0, 46, 39, .14);
}

html body .shop-search-autocomplete__item:hover,
html body .shop-search-autocomplete__item.is-active,
html body .shop-search-autocomplete__item:focus {
    background: var(--dowon-mint-2);
}

html body .shop-search-autocomplete__category-badge {
    background: var(--dowon-mint);
    color: var(--dowon-green-dark);
}

html body .shop-search-autocomplete__price,
html body .shop-search-autocomplete__spinner {
    color: var(--dowon-green);
    border-top-color: var(--dowon-green);
}

html body .tab-scroll-category .category-list span.active a,
html body .tab-scroll-category .category-list span a:hover {
    color: var(--dowon-green-dark);
}

html body .tab-scroll-category .category-list span.active a {
    background: var(--dowon-mint);
    border-color: rgba(0, 107, 88, .2);
    border-radius: 999px;
}

/* 상품 카드 공통 */
html body .product-list-10 .item-list,
html body .product-main-10 .item-main-10,
html body .product-main-20 .item-main-20-in,
html body .product-main-20 .item-main-20,
html body .product-main-30 .item-main-30,
html body .product-main-40 .item-main-40-in,
html body .product-main-40 .item-main-40,
html body .product-main-50 .item-main-50-in,
html body .product-main-50 .item-main-50,
html body .relation-10 .item-relation-10-in {
    overflow: hidden;
    height: 100%;
    padding: 12px;
    background: var(--dowon-white);
    border: 1px solid var(--dowon-line);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 46, 39, .06);
}

html body .product-list-10 .item-list:hover,
html body .product-main-10 .item-main-10:hover,
html body .product-main-20 .item-main-20-in:hover,
html body .product-main-20 .item-main-20:hover,
html body .product-main-30 .item-main-30:hover,
html body .product-main-40 .item-main-40-in:hover,
html body .product-main-40 .item-main-40:hover,
html body .product-main-50 .item-main-50-in:hover,
html body .product-main-50 .item-main-50:hover,
html body .relation-10 .item-relation-10-in:hover {
    border-color: rgba(0, 107, 88, .35);
    box-shadow: 0 14px 30px rgba(0, 46, 39, .1);
    transform: translateY(-2px);
}

html body .product-main-20 .item-main-20,
html body .product-main-40 .item-main-40,
html body .product-main-50 .item-main-50 {
    overflow: visible;
    height: auto;
    padding: 0 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

html body .product-main-20 .item-main-20:hover,
html body .product-main-40 .item-main-40:hover,
html body .product-main-50 .item-main-50:hover {
    border: 0;
    box-shadow: none;
    transform: none;
}

html body .product-main-50 .slick-center .item-main-50 .item-main-50-in {
    border-color: rgba(0, 107, 88, .35);
}

html body .product-list-10 .product-img,
html body .product-main-10 .product-img,
html body .product-main-20 .product-img,
html body .product-main-30 .product-img,
html body .product-main-40 .product-img,
html body .product-main-50 .product-img,
html body .relation-10 .product-img-wrap,
html body .relation-10 .product-img {
    overflow: hidden;
    margin-bottom: 14px;
    background: linear-gradient(180deg, var(--dowon-mint-2), #fff);
    border: 1px solid rgba(0, 107, 88, .08);
    border-radius: 14px;
}

html body .product-list-10 .product-img-in:before,
html body .product-main-10 .product-img-in:before,
html body .product-main-20 .product-img-in:before,
html body .product-main-30 .product-img-in:before,
html body .product-main-40 .product-img-in:before,
html body .product-main-50 .product-img-in:before,
html body .relation-10 .product-img-in:before {
    background: transparent;
}

html body .product-list-10 .product-img-in img,
html body .product-main-10 .product-img-in img,
html body .product-main-20 .product-img-in img,
html body .product-main-30 .product-img-in img,
html body .product-main-40 .product-img-in img,
html body .product-main-50 .product-img-in img,
html body .relation-10 .product-img-in img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    padding: 8px;
}

html body .ebgoods-goods-wrap .product-main-10 .product-img-in img {
    object-fit: cover;
    padding: 0;
    transform-origin: center center;
    transition: transform .42s ease, filter .42s ease;
    will-change: transform;
}

html body .ebgoods-goods-wrap .product-main-10 .item-main-10:hover .product-img-in img,
html body .ebgoods-goods-wrap .product-main-10 .item-main-10:focus-within .product-img-in img,
html body .ebgoods-goods-wrap .product-main-10 .item-main-10:active .product-img-in img {
    transform: scale(1.12);
    filter: saturate(1.06);
}

html body .product-list-10 .product-img-in .discount-percent,
html body .product-main-10 .product-img-in .discount-percent,
html body .product-main-20 .product-img-in .discount-percent,
html body .product-main-30 .product-img-in .discount-percent,
html body .product-main-40 .product-img-in .discount-percent,
html body .product-main-50 .product-img-in .discount-percent {
    background: var(--dowon-orange);
    font-style: normal;
    font-weight: 800;
}

html body .product-list-10 .product-description .product-name,
html body .product-main-10 .product-description .product-name,
html body .product-main-20 .product-description .product-name,
html body .product-main-30 .product-description .product-name,
html body .product-main-40 .product-description .product-name,
html body .product-main-50 .product-description .product-name,
html body .relation-10 .product-description .product-name {
    display: -webkit-box;
    height: auto;
    min-height: 46px;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--dowon-text);
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

html body .product-list-10 .product-description .product-name a,
html body .product-main-10 .product-description .product-name a,
html body .product-main-20 .product-description .product-name a,
html body .product-main-30 .product-description .product-name a,
html body .product-main-40 .product-description .product-name a,
html body .product-main-50 .product-description .product-name a,
html body .relation-10 .product-description .product-name a {
    color: var(--dowon-text);
}

html body .product-list-10 .product-description .title-price,
html body .product-main-10 .product-description .title-price,
html body .product-main-20 .product-description .title-price,
html body .product-main-30 .product-description .title-price,
html body .product-main-40 .product-description .title-price,
html body .product-main-50 .product-description .title-price,
html body .relation-10 .product-description .title-price {
    color: var(--dowon-green);
    font-size: 1.1875rem;
    font-weight: 900;
}

html body .product-list-10 .product-description .line-through,
html body .product-main-10 .product-description .line-through,
html body .product-main-20 .product-description .line-through,
html body .product-main-30 .product-description .line-through,
html body .product-main-40 .product-description .line-through,
html body .product-main-50 .product-description .line-through,
html body .relation-10 .product-description .line-through {
    color: #9A9A9A;
    font-size: .875rem;
    font-weight: 500;
}

html body .product-list-10 .product-description .product-info,
html body .product-main-10 .product-description .product-info,
html body .product-main-20 .product-description .product-info,
html body .product-main-30 .product-description .product-info,
html body .product-main-40 .product-description .product-info,
html body .product-main-50 .product-description .product-info {
    color: var(--dowon-sub);
}

html body .product-list-10 .product-description .product-sns ul li a,
html body .product-main-10 .product-description .product-sns ul li a,
html body .product-main-20 .product-description .product-sns ul li a,
html body .product-main-30 .product-description .product-sns ul li a,
html body .product-main-40 .product-description .product-sns ul li a,
html body .product-main-50 .product-description .product-sns ul li a {
    width: 44px;
    height: 44px;
    background: var(--dowon-mint);
    border-radius: 50%;
}

html body .product-list-10 .product-description .product-sns,
html body .product-main-10 .product-description .product-sns,
html body .product-main-20 .product-description .product-sns,
html body .product-main-30 .product-description .product-sns,
html body .product-main-40 .product-description .product-sns,
html body .product-main-50 .product-description .product-sns {
    height: 44px;
    margin-top: 12px;
}

html body .product-list-10 .product-description .product-sns ul li img,
html body .product-main-10 .product-description .product-sns ul li img,
html body .product-main-20 .product-description .product-sns ul li img,
html body .product-main-30 .product-description .product-sns ul li img,
html body .product-main-40 .product-description .product-sns ul li img,
html body .product-main-50 .product-description .product-sns ul li img {
    width: 14px;
    height: 14px;
}

html body .product-list-10 .product-description .product-sns ul li:hover .wish-icon,
html body .product-main-10 .product-description .product-sns ul li:hover .wish-icon,
html body .product-main-20 .product-description .product-sns ul li:hover .wish-icon,
html body .product-main-30 .product-description .product-sns ul li:hover .wish-icon,
html body .product-main-40 .product-description .product-sns ul li:hover .wish-icon,
html body .product-main-50 .product-description .product-sns ul li:hover .wish-icon {
    background: var(--dowon-green);
}

html body .product-list-10 .product-description-bottom,
html body .product-main-10 .product-description-bottom,
html body .product-main-20 .product-description-bottom,
html body .product-main-30 .product-description-bottom,
html body .product-main-40 .product-description-bottom,
html body .product-main-50 .product-description-bottom {
    margin: 0 -12px -12px;
    padding: 12px;
    border-top: 1px solid var(--dowon-line);
    background: var(--dowon-mint-2);
}

html body .product-list-10 .product-ratings li .rating-selected,
html body .product-main-10 .product-ratings li .rating-selected,
html body .product-main-20 .product-ratings li .rating-selected,
html body .product-main-30 .product-ratings li .rating-selected,
html body .product-main-40 .product-ratings li .rating-selected,
html body .product-main-50 .product-ratings li .rating-selected {
    color: var(--dowon-orange);
}

html body .shop-timesale-timer {
    background: #FFF7ED;
    color: #C2410C;
}

html body .shop-timesale-timer.is-expired {
    background: #F3F4F6;
    color: var(--dowon-sub);
}

/* 상품 상세 */
html body .shop-product-form .product-title {
    color: var(--dowon-green-dark);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.3;
}

html body .shop-product .shop-description-box {
    padding: 18px;
    border: 1px solid var(--dowon-line);
    border-radius: 16px;
    background: #fff;
}

html body .shop-product .shop-description-box .shop-product-prices,
html body #sit_tot_price,
html body #sit_tot_price span + strong {
    color: var(--dowon-green);
}

html body #sit_tot_price {
    padding: 18px 0;
    font-size: 1.5rem;
    font-weight: 900;
}

html body #sit_tot_price span {
    color: var(--dowon-text);
}

html body .sit_option {
    border-bottom-color: var(--dowon-line);
}

html body .sit_option.eyoom-form .select select,
html body .sit_option.eyoom-form .select i {
    background: var(--dowon-mint-2);
}

html body #sit_opt_added li {
    margin-bottom: 8px;
    border: 1px solid var(--dowon-line);
    border-radius: 12px;
    background: var(--dowon-mint-2);
}

html body #sit_opt_added .sit_qty_minus,
html body #sit_opt_added .sit_qty_plus {
    width: 44px;
    height: 44px;
    border-color: rgba(0, 107, 88, .2);
    color: var(--dowon-green-dark);
}

html body #sit_opt_added .num_input {
    width: 54px;
    height: 44px;
    border-color: rgba(0, 107, 88, .2);
}

html body #sit_opt_added .sit_opt_del:hover {
    color: var(--dowon-danger);
}

html body #sit_btn_buy,
html body #sit_ov.fixed .buy-btn-wr button {
    background: var(--dowon-green) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 12px 26px rgba(0, 107, 88, .22);
}

html body #sit_btn_buy:hover,
html body #sit_ov.fixed .buy-btn-wr button:hover {
    background: var(--dowon-green-2) !important;
}

html body #sit_btn_cart {
    border: 1px solid var(--dowon-green) !important;
    background: #fff !important;
    color: var(--dowon-green) !important;
}

html body #sit_btn_wish {
    border-color: rgba(0, 107, 88, .24);
    color: var(--dowon-green-dark);
}

html body #sit_ov.fixed .buy-btn-wr button i {
    background: var(--dowon-green-dark);
}

html body .pg-anchor-in .nav-tabs li.active a,
html body .pg_current {
    border-color: var(--dowon-green) !important;
    background: #fff;
    color: var(--dowon-green-dark) !important;
}

html body .pg_current {
    background: var(--dowon-green) !important;
    color: #fff !important;
}

/* 장바구니와 주문 */
html body .shop-steps .step-indicator li:before {
    background-color: rgba(0, 107, 88, .18);
}

html body .shop-steps .step-indicator .active .step {
    border-color: var(--dowon-green);
    color: var(--dowon-green);
    background: var(--dowon-mint-2);
}

html body .shop-steps .step-indicator .active .caption {
    color: var(--dowon-green-dark);
}

html body .shop-steps .step-indicator .complete .step,
html body .shop-steps .step-indicator .complete .caption {
    border-color: rgba(0, 107, 88, .3);
    color: var(--dowon-green);
}

html body .shop-cart .table-list-eb .table,
html body .shop-cart .shop-cart-li-wrap .shop-cart-li,
html body .shop-cart .shop-cart-all-select,
html body .shop-order-form .sod-li-wrap .sod-li,
html body .shop-order-form .payment-info-box,
html body .shop-order-form .payment-point-use,
html body .member-skin .member-box,
html body .member-skin .content-box,
html body .shop-mypage .panel,
html body .shop-mypage .mypage-wishlist-box-in {
    background: #fff;
    border: 1px solid var(--dowon-line);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 46, 39, .05);
}

html body .shop-cart .table-list-eb .table thead th {
    background: var(--dowon-mint-2);
    color: var(--dowon-green-dark);
    border-color: var(--dowon-line);
}

html body .shop-cart .shop-cart-li-wrap .li-name,
html body .shop-order-form .sod-li-wrap .li-name {
    border-color: var(--dowon-line);
    color: var(--dowon-green-dark);
}

html body .shop-cart .shop-cart-li-wrap .total-price,
html body .shop-order-form .sod-li-wrap .total_price {
    background: var(--dowon-mint-2);
    border-color: rgba(0, 107, 88, .18);
    border-radius: 12px;
}

html body .shop-cart .shop-cart-li-wrap .total-price strong,
html body .shop-cart .text-crimson,
html body .shop-cart .shop-cart-total .cart-total-box .cart-total-price,
html body .shop-order-form .sod-li-wrap .total_price strong,
html body .shop-order-form .payment-total-box strong,
html body .shop-order-form #od_tot_price .print_price,
html body .shop-personalpay .personalpay-box .personalpay-cost,
html body .shop-personalpay-form strong.text-crimson {
    color: var(--dowon-green) !important;
}

html body .shop-cart .shop-cart-total,
html body .shop-order-form .order-payment-total {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 107, 88, .25);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 46, 39, .08);
}

html body .shop-cart .shop-cart-total .cart-total-box,
html body .shop-order-form .payment-calc-box {
    height: auto;
    min-height: 96px;
    color: var(--dowon-sub);
}

html body .shop-cart .shop-cart-total .cart-total-box strong,
html body .shop-order-form .payment-calc-box strong,
html body .shop-order-form .payment-point-box strong,
html body .shop-order-form .payment-info-box strong {
    color: var(--dowon-text);
    font-weight: 800;
}

html body .shop-order-form .payment-calc-box:nth-child(1):after,
html body .shop-order-form .payment-calc-box:nth-child(2):after {
    color: var(--dowon-green);
    border-color: rgba(0, 107, 88, .18);
}

html body .shop-order-form .payment-info-box.border-color-red,
html body .shop-order-form #settle_bank {
    border-color: var(--dowon-green);
}

html body .shop-order-form .payment-select-wrap input[type="radio"]:checked+.payment-select-box {
    border-color: var(--dowon-green);
    background-color: var(--dowon-mint-2);
}

html body .shop-order-form .payment-select-wrap input[type="radio"]:checked+.payment-select-box:after {
    color: var(--dowon-green);
}

html body .shop-order-form .btn_confirm .btn_submit,
html body .shop-order-form #display_pay_button .btn_submit,
html body #display_pay_button .btn_submit {
    min-height: 52px;
    background: var(--dowon-green) !important;
    border: 0 !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 26px rgba(0, 107, 88, .22);
}

html body .shop-order-form .btn_confirm .btn_submit:hover,
html body .shop-order-form #display_pay_button .btn_submit:hover,
html body #display_pay_button .btn_submit:hover {
    background: var(--dowon-green-2) !important;
}

html body .cart-act-btn {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* 마이페이지와 회원 약관 */
html body .shop-mypage .panel-heading,
html body .member-skin .eyoom-form header,
html body .member-skin .content-box-header,
html body .member-skin #sns_register h2 {
    background: var(--dowon-mint-2);
    color: var(--dowon-green-dark);
    border-color: var(--dowon-line);
}

html body .shop-mypage .panel-heading .panel-title {
    color: var(--dowon-green-dark);
    font-weight: 800;
}

html body .shop-mypage .panel-body dt {
    color: var(--dowon-green-dark);
}

html body .shop-mypage .mypage-wishlist-box h5 {
    color: var(--dowon-text);
    line-height: 1.35;
}

html body .shop-mypage .mypage-wishlist-date {
    color: var(--dowon-sub);
}

html body .member-skin .member-agree {
    background: #fff;
}

html body .member-skin .eyoom-form footer,
html body .member-skin .content-box-footer {
    background: var(--dowon-mint-2);
    border-color: var(--dowon-line);
}

/* 우측 쇼핑 패널과 보조 버튼 */
html body .sidebar-shop-member-btn {
    background: var(--dowon-green);
    box-shadow: 0 10px 24px rgba(0, 107, 88, .24);
}

html body .sidebar-shop-member-btn .direction-icon,
html body .sidebar-shop-member-btn.active .direction-icon:before,
html body .sidebar-shop-member-btn.active {
    background: var(--dowon-green-dark);
}

html body .sidebar-shop-member .shop-member-box .panel .panel-title {
    background: var(--dowon-green-dark);
}

html body .sidebar-shop-member .shop-member-box .panel .panel-title .count-num {
    background: var(--dowon-green);
    color: #fff;
}

html body .sidebar-shop-member .shop-member-box .op-area li .prd-cost {
    color: var(--dowon-green);
}

html body .counsel-btn,
html body .eb-backtotop svg.backtotop-progress path {
    background: var(--dowon-green);
    stroke: var(--dowon-green);
}

html body .eb-backtotop:hover:after {
    color: var(--dowon-green);
}

/* 모바일 쇼핑 하단 탭바 */
html body .dowon-shop-bottom-nav {
    display: none;
}

@media (max-width: 991px) {
    html body .dowon-shop-wrapper .basic-body {
        padding: 20px 0 calc(128px + env(safe-area-inset-bottom));
    }

    html body .dowon-shop-wrapper .basic-body.dowon-shop-item-detail {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    html body .header-title .container {
        min-height: 72px;
        height: 72px;
        padding-left: 18px;
        padding-right: 18px;
    }

    html body .sidebar-left.offcanvas,
    html body .sidebar-shop-member.offcanvas {
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    html body .dowon-shop-mobile-float {
        display: none !important;
    }

    html body .dowon-shop-wrapper .footer {
        display: none;
    }

    html body .eb-backtotop {
        bottom: calc(94px + env(safe-area-inset-bottom));
    }

    html body .eb-backtotop.dowon-shop-item-backtotop {
        bottom: calc(70px + env(safe-area-inset-bottom));
    }

    html body .dowon-shop-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1010;
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        min-height: calc(78px + env(safe-area-inset-bottom));
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .98);
        border-top: 1px solid rgba(0, 0, 0, .08);
        box-shadow: 0 -12px 28px rgba(0, 46, 39, .08);
        -webkit-backdrop-filter: saturate(180%) blur(18px);
        backdrop-filter: saturate(180%) blur(18px);
    }

    html body .dowon-shop-bottom-nav__item {
        position: relative;
        display: inline-flex;
        flex: 1 1 20%;
        min-width: 0;
        min-height: 62px;
        padding: 4px 2px 2px;
        border: 0;
        background: transparent;
        color: #666A70;
        font-family: inherit;
        font-size: .8125rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        appearance: none;
        -webkit-appearance: none;
    }

    html body .dowon-shop-bottom-nav__item i {
        display: block;
        min-width: 26px;
        height: 27px;
        color: currentColor;
        font-size: 1.45rem;
        line-height: 27px;
    }

    html body .dowon-shop-bottom-nav__item span {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    html body .dowon-shop-bottom-nav__item:hover,
    html body .dowon-shop-bottom-nav__item:focus,
    html body .dowon-shop-bottom-nav__item.is-active {
        color: var(--dowon-green);
        text-decoration: none;
        outline: 0;
    }

    html body .dowon-shop-bottom-nav__item:focus-visible {
        border-radius: 12px;
        box-shadow: 0 0 0 3px rgba(0, 107, 88, .16);
    }

    html body .dowon-shop-bottom-nav__item.is-active {
        font-weight: 800;
    }

    html body .dowon-shop-bottom-nav__icon-wrap {
        position: relative;
        display: block;
        width: 30px;
        height: 27px;
    }

    html body .dowon-shop-bottom-nav__icon-wrap i {
        min-width: 30px;
    }

    html body .dowon-shop-bottom-nav__dot {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 9px;
        height: 9px;
        border: 2px solid #fff;
        background: var(--dowon-danger);
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(239, 68, 68, .28);
    }
}

@media (max-width: 767px) {
    html body .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    html body .product-list-10,
    html body .product-main-10,
    html body .product-main-30 {
        margin-left: -5px;
        margin-right: -5px;
    }

    html body .product-main-20,
    html body .product-main-40,
    html body .product-main-50 {
        margin-left: 0;
        margin-right: 0;
    }

    html body .product-list-10 .item-list-wrap,
    html body .product-main-10 .item-main-wrap,
    html body .product-main-30 .item-main-wrap {
        padding: 5px;
    }

    html body .product-main-20 .item-main-20,
    html body .product-main-40 .item-main-40,
    html body .product-main-50 .item-main-50,
    html body .relation-10 .item-relation-10 {
        padding-left: 5px;
        padding-right: 5px;
    }

    html body .product-list-10 .item-list,
    html body .product-main-10 .item-main-10,
    html body .product-main-20 .item-main-20-in,
    html body .product-main-20 .item-main-20,
    html body .product-main-30 .item-main-30,
    html body .product-main-40 .item-main-40-in,
    html body .product-main-40 .item-main-40,
    html body .product-main-50 .item-main-50-in,
    html body .product-main-50 .item-main-50,
    html body .relation-10 .item-relation-10-in {
        padding: 10px;
        border-radius: 14px;
    }

    html body .product-main-20 .item-main-20,
    html body .product-main-40 .item-main-40,
    html body .product-main-50 .item-main-50 {
        padding-top: 0;
        padding-bottom: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    html body .product-list-10 .product-description .product-name,
    html body .product-main-10 .product-description .product-name,
    html body .product-main-20 .product-description .product-name,
    html body .product-main-30 .product-description .product-name,
    html body .product-main-40 .product-description .product-name,
    html body .product-main-50 .product-description .product-name,
    html body .relation-10 .product-description .product-name {
        min-height: 42px;
        font-size: .9375rem;
    }

    html body .product-list-10 .product-description .title-price,
    html body .product-main-10 .product-description .title-price,
    html body .product-main-20 .product-description .title-price,
    html body .product-main-30 .product-description .title-price,
    html body .product-main-40 .product-description .title-price,
    html body .product-main-50 .product-description .title-price,
    html body .relation-10 .product-description .title-price {
        font-size: 1.0625rem;
    }

    html body .shop-steps {
        margin-bottom: 22px;
    }

    html body .shop-steps .step-indicator .step {
        width: 58px;
        height: 58px;
        line-height: 52px;
    }

    html body .shop-steps .step-indicator .caption {
        font-size: .8125rem;
    }

    html body .shop-cart .shop-cart-total,
    html body .shop-order-form .order-payment-total {
        border-radius: 14px;
    }

    html body .shop-cart .shop-cart-total .cart-total-box,
    html body .shop-order-form .payment-calc-box {
        min-height: 84px;
        padding: 16px 6px;
        font-size: .875rem;
    }

    html body .cart-act-btn .btn-e {
        width: 100%;
    }

    html body #sit_ov_btn {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    html body #sit_ov_btn button {
        width: calc(50% - 4px);
        min-height: 52px;
        margin: 0 0 8px;
    }

    html body #sit_btn_wish {
        width: 100%;
        min-height: 48px;
        line-height: 46px;
    }
}

@media (min-width: 992px) {

    /* ========================================
       nav-wrap 레이아웃 정렬 수정
       ======================================== */

    /* navbar-nav: flex 정렬 + max-height 해제로 깨짐 방지 */
    .nav-wrap .navbar {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-wrap .navbar-nav {
        display: flex;
        align-items: stretch;
        /* 모든 li가 동일 높이 차지 */
        max-height: none;
        /* shop_style.css의 max-height:59px 오버라이드 */
    }

    /* 모든 navbar-nav 직속 li: flex 정렬로 텍스트 수직 중앙 */
    .nav-wrap .navbar-nav>li {
        display: flex;
        align-items: stretch;
    }

    .nav-wrap .navbar-nav>li>.nav-link {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    /* ========================================
       메가메뉴(카테고리) 버튼 - absolute 해제, 인라인 배치
       ======================================== */
    .nav-wrap .navbar-nav>li.dropdown-mega-menu>.mega-menu-trigger {
        position: relative;
        /* absolute → relative: flex 흐름 복귀 */
        top: auto;
        right: auto;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 1rem;
        font-weight: 600;
        padding: 0 20px !important;
        border-left: 1px solid rgba(0, 0, 0, 0.10);
        border-right: 1px solid rgba(0, 0, 0, 0.10);
        line-height: 1;
        height: 100%;
        /* 부모 li 높이에 맞춤 */
    }

    .nav-wrap .navbar-nav>li.dropdown-mega-menu>.mega-menu-trigger i {
        font-size: 1.125rem;
    }

    .nav-wrap .navbar-nav>li.dropdown-mega-menu>.mega-menu-trigger span {
        line-height: 1;
        white-space: nowrap;
    }

    /* 메가메뉴 드롭다운 위치: container 기준 좌측 정렬 */
    .nav-wrap .navbar-nav .dropdown-mega-menu .dropdown-menu {
        left: 0;
        right: 0;
    }

    /* ========================================
       쇼핑몰 링크 및 일반 메뉴 - 수직 중앙 정렬 통일
       ======================================== */
    .nav-wrap .navbar-nav>li>.nav-link {
        padding: 16px 20px !important;
    }

    /* 드롭다운 서브메뉴 위치 보정 */
    .nav-wrap .navbar-nav .dropdown-submenu {
        position: relative;
    }

    .nav-wrap .navbar-nav .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }
}

/* ========================================
   총 기부액 배지 스타일
   ======================================== */
.donation-total {
    display: flex !important;
    align-items: center;
    height: 39px;
    line-height: 39px;
    padding: 0 !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    white-space: nowrap;
    font-size: 0.875rem;
    margin: 3px;
}

.donation-total__link {
    display: flex !important;
    align-items: center;
    gap: 6px;
    height: 100%;
    padding: 0 4px !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
}

.donation-total__link:hover {
    color: inherit;
    text-decoration: none;
}

/* 기부 아이콘 */
.donation-total .fas.fa-hand-holding-heart {
    display: inline-block;
    font-size: 1rem;
    margin: 0;
    color: var(--dowon-green) !important;
}

/* "총 기부액" 라벨 */
.donation-total .donation-label {
    font-weight: 500;
    color: var(--dowon-green-dark);
}

/* 금액 부분 - 강조 스타일 */
.donation-total .donation-amount {
    font-weight: 800;
    color: var(--dowon-green);
    letter-spacing: 0.02em;
}

/* 반응형: 모바일에서는 여백 축소 */
@media (max-width: 991px) {
    .header-title .title-logo img {
        width: auto;
        height: auto !important;
        max-width: 170px;
        max-height: 36px;
        object-fit: contain;
    }

    .donation-total {
        font-size: 0.8rem;
        gap: 4px;
    }

    .donation-total__link {
        gap: 4px;
        padding: 0 8px !important;
    }
}
