.is-hidden { display: none !important; }

    .no-border-input{
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
        background: transparent;
    }
    .no-border-input:focus{
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
    }

    .print-list.two-col{
        display: grid !important;
        margin-bottom: 10px;
        margin-top: 10px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .print-list.two-col > .item{
        width: auto !important;
        margin: 0 !important;
    }

    .print-list.two-col .radio-container{
        display: block;
        width: 100%;
    }

    .radio-img img,
    .print-img img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .item-builder-actions{
        display:flex;
        gap:12px;
        margin-top:16px;
        flex-wrap: wrap;
    }

    .btn-secondary-action,
    .btn-outline-action,
    .btn-primary-action{
        border: 0;
        border-radius: 999px;
        padding: 12px 22px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all .2s ease;
    }

    .btn-primary-action{
        background:#233f8c;
        color:#fff;
    }

    .btn-primary-action:hover{
        opacity:.92;
    }

    .btn-secondary-action{
        background:#eef2fb;
        color:#233f8c;
    }

    .btn-outline-action{
        background:#fff;
        color:#233f8c;
        border:1px solid #233f8c;
    }

    .order-side-box{
        background:#fff;
        border:1px solid #d7dbe6;
        border-radius:12px;
        padding:18px 18px 10px 18px;
        margin-bottom:18px;
    }

    .order-side-box .title{
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid #d9dde8;
    }

    .order-side-box .title h2,
    .order-side-box .title h1{
        margin:0;
    }

    .order-meta .item,
    .order-summary .item{
        display:flex;
        justify-content:space-between;
        gap:16px;
        padding:10px 0;
        border-bottom:1px solid #eef1f6;
    }

    .order-meta .item:last-child,
    .order-summary .item:last-child{
        border-bottom:0;
    }

    .order-meta .label,
    .order-summary .label{
        color:#5c6c84;
        font-weight:600;
        flex:0 0 120px;
    }

    .order-meta .desc,
    .order-summary .desc{
        text-align:right;
        color:#33415c;
        flex:1;
        word-break:break-word;
    }

    .order-items-list{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .order-item-card{
        border:1px solid #d9dde8;
        border-radius:12px;
        padding:14px;
        background:#fafbff;
    }

    .order-item-card-head{
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:12px;
        margin-bottom:12px;
    }

    .order-item-card-title{
        font-size:18px;
        font-weight:800;
        color:#233f8c;
    }

    .order-item-card-actions{
        display:flex;
        gap:8px;
        flex-wrap:wrap;
    }

    .mini-btn{
        border:1px solid #c9d2e6;
        background:#fff;
        color:#233f8c;
        border-radius:999px;
        padding:6px 12px;
        cursor:pointer;
        font-size:14px;
        font-weight:700;
    }

    .mini-btn.btn-danger{
        color:#b42318;
        border-color:#f0b4ae;
    }

    .order-item-grid{
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap:8px 16px;
    }

    .order-item-grid .row{
        display:flex;
        justify-content:space-between;
        gap:12px;
        padding:6px 0;
        border-bottom:1px dashed #e4e8f1;
    }

    .order-item-grid .row .label{
        color:#667085;
        font-weight:600;
    }

    .order-item-grid .row .value{
        text-align:right;
        color:#344054;
    }

    .empty-order-items{
        text-align:center;
        color:#7b8798;
        padding:24px 12px;
        border:1px dashed #cfd6e5;
        border-radius:12px;
        background:#fbfcfe;
    }

    .field-error{
        margin-top:8px;
        color:#b42318;
        font-size:14px;
        font-weight:600;
        display:none;
    }

    .field-error.show{
        display:block;
    }

    .sticky-submit-wrap{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .muted-note{
        color:#667085;
        font-size:14px;
        line-height:1.7;
    }

    .selected-info-bar{
        margin-top: 12px;
        padding: 12px 14px;
        border: 1px solid #d9dde8;
        border-radius: 10px;
        background: #f8faff;
        color: #344054;
        font-size: 14px;
        line-height: 1.8;
    }

    .selected-info-bar strong{
        color:#233f8c;
    }

    #selectedCartonPreview {
        max-width: 360px;
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    #printOptionList .item .img-box {
        display: none;
        margin-top: 15px;
    }

    #printOptionList .item.active .img-box {
        display: block;
    }

    #printOptionList .img-box img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    @media (max-width: 991px){
        .order-item-grid{
            grid-template-columns:1fr;
        }
    }

    @media (max-width: 576px){
        .print-list.two-col{
            grid-template-columns: 1fr;
        }

        .item-builder-actions{
            flex-direction:column;
        }

        .btn-secondary-action,
        .btn-outline-action,
        .btn-primary-action{
            width:100%;
        }

        .order-item-card-head{
            flex-direction:column;
            align-items:flex-start;
        }
    }

    .current-item-panel{
        margin-top: 16px;
        border: 1px solid #d9deea;
        background: #f7f9fd;
        border-radius: 12px;
        padding: 14px 16px;
    }

    .current-item-panel .panel-label{
        font-size: 13px;
        font-weight: 700;
        color: #5b6b86;
        margin-bottom: 8px;
    }

    .current-item-panel .panel-content{
        font-size: 15px;
        line-height: 1.8;
        color: #22324d;
        word-break: break-word;
    }

    .current-item-panel .panel-content strong{
        color: #233f8c;
        font-weight: 800;
    }

    .item-builder-actions{
        display: flex;
        gap: 10px;
        margin-top: 14px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .btn-primary-action,
    .btn-secondary-action{
        min-width: 140px;
        height: 46px;
        border-radius: 999px;
        padding: 0 20px;
        font-size: 16px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .2s ease;
    }

    .btn-primary-action{
        border: 0;
        background: #233f8c;
        color: #fff;
        box-shadow: 0 4px 10px rgba(35, 63, 140, 0.16);
    }

    .btn-primary-action:hover{
        opacity: .92;
        transform: translateY(-1px);
    }

    .btn-secondary-action{
        border: 1px solid #d4dbeb;
        background: #f3f6fb;
        color: #233f8c;
    }

    .btn-secondary-action:hover{
        background: #eaf0fa;
    }

    .order-common-section{
        margin-top: 8px;
        padding-top: 18px;
        border-top: 1px solid #dfe4ee;
    }

    .order-common-box{
        border: 1px solid #dde3ef;
        border-radius: 14px;
        background: #fcfdff;
        padding: 18px 16px 10px;
        margin-top: 8px;
    }

    .order-common-box .section-title{
        font-size: 18px;
        font-weight: 800;
        color: #233f8c;
        margin-bottom: 12px;
    }

    .order-common-box .tag{
        margin-top: 10px;
    }

    .compact-radio-grid{
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 8px;
        margin-bottom: 14px;
    }

    .compact-radio-grid .item{
        width: auto !important;
        margin: 0 !important;
    }

    .compact-radio-grid .print-img{
        border: 1px solid #dde3ef;
        border-radius: 12px;
        background: #fff;
        padding: 14px 16px;
        min-height: 52px;
        display: flex;
        align-items: center;
    }

    .compact-radio-grid .radio-container{
        width: 100%;
        display: block;
        margin: 0;
    }

    .shipping-address-wrap{
        margin-top: 8px;
        padding: 12px 14px;
        border: 1px dashed #cfd8ea;
        border-radius: 12px;
        background: #f8fbff;
    }

    .shipping-address-wrap .sub-title{
        margin-bottom: 8px;
    }

    .shipping-address-wrap input{
        width: 100% !important;
        min-height: 42px;
    }

    .field-error{
        margin-top: 8px;
        color: #b42318;
        font-size: 14px;
        font-weight: 700;
        display: none;
    }

    .field-error.show{
        display: block;
    }

    @media (max-width: 768px){
        .compact-radio-grid{
            grid-template-columns: 1fr;
        }

        .item-builder-actions{
            flex-direction: column;
        }

        .btn-primary-action,
        .btn-secondary-action{
            width: 100%;
            min-width: 0;
        }

        .current-item-panel{
            padding: 12px 14px;
        }

        .current-item-panel .panel-content{
            font-size: 14px;
            line-height: 1.7;
        }
    }

    .popup-file-estimate-box {
        max-width: 620px;
    }

    .file-estimate-desc,
    .file-estimate-note {
        line-height: 1.8;
        margin-bottom: 16px;
        color: #333;
    }

    .file-estimate-info {
        margin: 18px 0;
        border: 1px solid #eadfcc;
        border-radius: 12px;
        overflow: hidden;
        background: #fffaf3;
    }

    .file-estimate-info .info-row {
        display: grid;
        grid-template-columns: 110px 1fr;
        border-bottom: 1px solid #eadfcc;
    }

    .file-estimate-info .info-row:last-child {
        border-bottom: 0;
    }

    .file-estimate-info .info-label {
        padding: 12px 14px;
        font-weight: 700;
        color: #7a4b20;
        background: #f6eadb;
    }

    .file-estimate-info .info-value {
        padding: 12px 14px;
        color: #222;
        word-break: break-all;
    }

    #estimate-ok {
        width: 100%;
        margin-top: 20px;
        padding: 14px 20px;
        border: none;
        border-radius: 8px;
        background: #163b8c;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all .25s ease;
    }

    #estimate-ok:hover {
        background: #0f2f72;
    }

    #estimate-ok:active {
        transform: scale(.98);
    }

    #estimate-ok:disabled {
        background: #7fa2d6;
        cursor: default;
    }

    .info-value{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px;
        padding:12px 14px;
    }

    .info-value span{
        flex:1;
        word-break:break-all;
    }

    @media (max-width: 575px) {
        .popup-file-estimate-box {
            width: calc(100% - 32px);
        }

        .file-estimate-info .info-row {
            grid-template-columns: 1fr;
        }

        .file-estimate-info .info-label {
            padding-bottom: 6px;
        }

        .file-estimate-info .info-value {
            padding-top: 6px;
        }
    }
        