#cartOrderLayer { 
    .modal {
        border: none;
        border-radius: 16px;
        padding: 0;
        width: 100%;
        max-width: 430px;
    }

    .card {
        padding: 20px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        font-family: 'Noto Sans KR', sans-serif;
    }

    /* HEADER */
    .card-header {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
    }

    .thumb {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }

    .title-wrap {
        text-align:left;
    }

    .title {
        font-weight: 700;
        font-size: 18px;    
    }

    .sub {
        color: #777;
        font-size: 14px;
    }

    /* BODY */
    .card-body {
        display: flex;
        flex-direction: column;
        /* gap: 10px; */
    }

    .btn.cancel {
        background: #eee;
    }

    .btn.primary {
        background: #A01749;
        color: #fff;
    }

    .price-content {
        flex: 1;
        margin: auto;
        text-align: left;
    }

    .label {
        font-size: 15px;
        color: #333;
        margin-bottom: 4px;
    }

    .price {
        font-weight: 700;
        font-size: 16px;
        color: #222;
    }


    .discount .after {
        font-weight: 700;
        font-size: 16px;
        color: #A01749;
    }

    .discount .before {
        margin-right: 6px;
        text-decoration: line-through;
        color: #999;
        font-size: 14px;
    }

    .badge {
        display: inline-block;
        margin-left: 4px;
        padding: 2px 6px;
        background: #A01749;
        color: #fff;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 700;
    }

    .payback,
    .note {
        font-size: 13px;
        text-align: right;
        white-space: nowrap;
    }

    .payback {
        color: #A01749;
        font-weight: 600;
    }

    .note {
        color: #777;
    }

    .card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;    
        padding-top:10px;
        padding-bottom:10px;
        border-top: 2px solid #DADADA;
    }

    .qty {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .qty-label {
        font-size: 16px;
        font-weight: 700;
    }

    .qty-control {
        display: flex;
        align-items: center;
        border: 1px solid #dddfe1;
        border-radius: 6px;
        overflow: hidden;
        background: #fff;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        border: none;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .qty-btn img {
        width: 16px;
        height: 16px;
    }

    #qtyInput {
        width: 40px;
        height: 32px;
        border: none;
        text-align: center;
        font-size: 14px;
        outline: none;
        background: #fff;
    }

    .total {
        font-size: 22px;
        font-weight: 700;
        color: #017EFF;
    }

    .price-box {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 0;
        margin-bottom: 12px;
        transition: all 0.2s ease;
    }

    .price-box.active {
        border: 1px solid #A01749;
        background: rgba(160, 23, 73, 0.05);
    }

    .price-box.disabled {
        opacity: 0.4;
        pointer-events: none;
        position: relative;
    }

    .price-box.disabled::after {
        content: "골드회원 이용가능";
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 12px;
        background: #999;
        color: #fff;
        padding: 2px 6px;
        border-radius: 4px;
    }

    .price-box.disabled:hover::after {
        content: "골드회원이상만 이용하실 수 있습니다.";
    }

    .price-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        cursor: pointer;
    }

    .price-option input[type="radio"] {
        display: none;
    }

    .radio-ui {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        background: url("/coopmall/img/common/radio.png") no-repeat center center;
        background-size: contain;
    }

    .price-option input[type="radio"]:checked + .radio-ui {
        background-image: url("/coopmall/img/common/radio-selected.png");
    }
}