

        :root {
            --brand-a: #5a3378;
            --brand-b: #693D97;
            --color-grad: linear-gradient(135deg, #5a3378 0%, #693D97 100%);
            --bg: #F2F8FD;
            --card: #ffffff;
            --border: rgba(90, 51, 120, 0.12);
            --input-bg: #F5F0FB;
            --text-pri: #1c1033;
            --text-sec: #5a5a7a;
            --text-muted: #9b9bb8;
            --danger: #d94f4f;
            --warn-bg: #fffbeb;
            --warn-border: #f59e0b;
            --warn-text: #92400e;
            --success-bg: #f0fdf4;
            --success-border: #22c55e;
            --success-text: #15803d;
            --shadow-sm: 0 2px 8px rgba(90, 51, 120, 0.07);
            --shadow-md: 0 8px 32px rgba(90, 51, 120, 0.10);
            --shadow-lg: 0 20px 60px rgba(90, 51, 120, 0.14);
            --r: 16px;
            --rx: 10px;
            --font-h: 'Bricolage Grotesque', sans-serif;
            --font-b: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }


        /* â”€â”€ TOPBAR â”€â”€ */
        .topbar {
            background: var(--color-grad);
            padding: 0 24px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(90, 51, 120, 0.25);
        }

        .tb-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #fff;
            font-family: var(--font-h);
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
        }

        .tb-logo-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tb-logo-icon svg {
            width: 16px;
            height: 16px;
            color: #fff;
        }

        .tb-call {
            display: flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 100px;
            padding: 6px 14px;
            color: #fff !important;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: background .2s;
        }

        .tb-call:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .tb-call svg {
            width: 13px;
            height: 13px;
        }

        /* â”€â”€ PAGE WRAP â”€â”€ */
        .page {
            max-width: 1000px;
            margin: 0 auto;
            padding: 32px 20px 80px;
        }

        /* â”€â”€ WARNING BANNER â”€â”€ */
        .warn-banner {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: var(--warn-bg);
            border: 1px solid var(--warn-border);
            border-left: 4px solid var(--warn-border);
            border-radius: var(--rx);
            padding: 14px 18px;
            margin-bottom: 24px;
            animation: fadeUp .5s ease both;
            /* flex-wrap: wrap; */
        }

        .warn-banner svg {
            width: 17px;
            height: 17px;
            color: #d97706;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .warn-banner p {
            font-size: 15px;
            color: var(--warn-text);
            line-height: 1.55;
        }

        .warn-banner a {
            color: var(--brand-b);
            font-weight: 600;
            text-decoration: none;
            word-break: break-all;
        }

        .warn-banner a:hover {
            text-decoration: underline;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* â”€â”€ PAGE HEADER â”€â”€ */
        .page-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
            animation: fadeUp .5s ease .05s both;
        }

        .ph-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .ph-icon {
            width: 46px;
            height: 46px;
            background: var(--color-grad);
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(90, 51, 120, 0.28);
            flex-shrink: 0;
        }

        .ph-icon svg {
            width: 22px;
            height: 22px;
            color: #fff;
        }

        .ph-title {
            font-family: var(--font-h);
            font-size: 22px;
            font-weight: 800;
            color: var(--text-pri);
            letter-spacing: -0.3px;
        }

        .ph-sub {
            font-size: 15px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* â”€â”€ SUCCESS ALERT â”€â”€ */
        .success-alert {
            display: none;
            align-items: center;
            gap: 10px;
            background: var(--success-bg);
            border: 1px solid var(--success-border);
            border-left: 4px solid var(--success-border);
            border-radius: var(--rx);
            padding: 12px 18px;
            margin-bottom: 20px;
            animation: fadeUp .4s ease both;
        }

        .success-alert.show {
            display: flex;
        }

        .success-alert svg {
            width: 18px;
            height: 18px;
            color: var(--success-text);
            flex-shrink: 0;
        }

        .success-alert span {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--success-text);
        }

        /* â”€â”€ CARD TYPE SELECTOR â”€â”€ */
        .card-types {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-bottom: 24px;
            animation: fadeUp .5s ease .1s both;
        }

        @media (max-width: 600px) {
            .card-types {
                grid-template-columns: 1fr;
            }
        }

        .ct-item {
            background: var(--card);
            border: 2px solid var(--border);
            border-radius: var(--r);
            padding: 18px 18px 16px;
            /* cursor: pointer; */
            transition: all .25s cubic-bezier(.34, 1.4, .64, 1);
            position: relative;
            overflow: hidden;
        }

        .ct-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--color-grad);
            opacity: 0;
            transition: opacity .25s;
        }

        .ct-item:hover {
            /* border-color: var(--brand-b);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md); */
        }

        .ct-item.active {
            border-color: var(--brand-b);
            background: var(--color-grad);
            box-shadow: 0 8px 24px rgba(90, 51, 120, 0.30);
            transform: translateY(-3px);
        }

        .ct-radio {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            transition: all .2s;
            background: #fff;
        }

        .ct-item.active .ct-radio {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .ct-radio-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: transparent;
            transition: background .2s;
        }

        .ct-item.active .ct-radio-dot {
            background: #fff;
        }

        .ct-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(105, 61, 151, 0.09);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            transition: background .25s;
        }

        .ct-item.active .ct-icon {
            background: rgba(255, 255, 255, 0.18);
        }

        .ct-icon svg {
            width: 18px;
            height: 18px;
            color: var(--brand-b);
            transition: color .25s;
        }

        .ct-item.active .ct-icon svg {
            color: #fff;
        }

        .ct-name {
            font-family: var(--font-h);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-pri);
            margin-bottom: 4px;
            transition: color .25s;
        }

        .ct-item.active .ct-name {
            color: #fff;
        }

        .ct-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.5;
            transition: color .25s;
        }

        .ct-item.active .ct-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        /* â”€â”€ MAIN CARD â”€â”€ */
        .main-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            animation: fadeUp .55s ease .15s both;
        }

        .mc-header {
            padding: 18px 26px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .mc-title {
            font-family: var(--font-h);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-pri);
        }

        .mc-sub {
            font-size: 15px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .btn-bulk {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--color-grad);
            color: #fff !important;
            border: none;
            border-radius: 100px;
            padding: 10px 20px;
            font-family: var(--font-h);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(90, 51, 120, 0.28);
            transition: all .2s ease;
            white-space: nowrap;
        }

        .btn-bulk:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(90, 51, 120, 0.36);
        }

        .btn-bulk svg {
            width: 14px;
            height: 14px;
        }

        /* â”€â”€ FORM BODY â”€â”€ */
        .mc-body {
            padding: 26px;
        }

        .form-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }

        @media (max-width: 600px) {
            .form-grid-2 {
                grid-template-columns: 1fr;
            }
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .field label {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-sec);
            letter-spacing: .45px;
            text-transform: uppercase;
        }

        .req {
            color: var(--danger);
        }

        .field-wrap {
            position: relative;
        }

        .fi {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            display: flex;
            transition: color .2s;
            z-index: 100;
        }

        .fi svg {
            width: 15px;
            height: 15px;
        }

        .field-wrap:focus-within .fi {
            color: var(--brand-b);
        }

        .field input,
        .field select {
            width: 100%;
            /* background: var(--input-bg); */
            border: 1.5px solid var(--border);
            border-radius: var(--rx);
            padding: 12px 14px 12px 38px;
            font-family: var(--font-b);
            font-size: 15px;
            color: var(--text-pri);
            outline: none;
            transition: all .2s;
            appearance: none;
            -webkit-appearance: none;
        }

        .field input::placeholder {
            color: var(--text-muted);
        }

        .field input:focus,
        .field select:focus {
            border-color: var(--brand-b);
            box-shadow: 0 0 0 3px rgba(105, 61, 151, .09);
            background: #fff;
        }

        /* select arrow */
        .sel-wrap::after {
            content: '';
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid var(--text-muted);
            pointer-events: none;
        }

        .sel-wrap select {
            padding-right: 32px;
        }

        /* branch not in list checkbox */
        .branch-label-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* margin-bottom: 6px; */
        }

        .branch-label-row label {
            font-weight: 600;
            color: var(--text-sec);
            letter-spacing: .45px;
            text-transform: uppercase;
        }

        .branch-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-b);
            user-select: none;
        }

        .branch-toggle input[type="checkbox"] {
            display: none;
        }

        .branch-cb {
            width: 16px;
            height: 16px;
            border: 2px solid var(--brand-b);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s;
            flex-shrink: 0;
        }

        .branch-cb svg {
            display: none;
            width: 10px;
            height: 10px;
            color: #fff;
        }

        .branch-toggle.checked .branch-cb {
            background: var(--brand-b);
        }

        .branch-toggle.checked .branch-cb svg {
            display: block;
        }

        /* â”€â”€ VALIDATION â”€â”€ */
        label.error {
            font-size: 11.5px !important;
            color: var(--danger) !important;
            font-weight: 500 !important;
            text-transform: none !important;
            letter-spacing: 0 !important;
        }

        input.error,
        select.error {
            border-color: var(--danger) !important;
            box-shadow: 0 0 0 3px rgba(217, 79, 79, .09) !important;
            background: #fff9f9 !important;
        }

        input.valid,
        select.valid {
            border-color: #22c55e !important;
        }

        /* â”€â”€ VALIDATE BTN ROW â”€â”€ */
        .validate-row {
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .btn-validate {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            background: var(--color-grad);
            color: #fff;
            border: none;
            border-radius: 100px;
            padding: 13px 36px;
            font-family: var(--font-h);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(90, 51, 120, 0.30);
            transition: all .25s ease;
            letter-spacing: .2px;
            width: auto;
        }
        .btn-validate .btn-text{
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-validate:hover {
            box-shadow: 0 10px 28px rgba(90, 51, 120, 0.40);
        }

        .btn-validate:active {
            transform: translateY(0);
        }

        .btn-validate:disabled {
            opacity: .7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-validate .arr {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .2s;
        }

        .btn-validate:hover .arr {
            transform: translateX(3px);
        }

        .btn-validate svg {
            width: 14px;
            height: 14px;
        }

        /* â”€â”€ RESULT SECTION â”€â”€ */
        .result-section {
            display: none;
            margin-top: 28px;
            animation: fadeUp .5s ease both;
        }

        .result-section.show {
            display: block;
        }

        .result-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .rc-inner {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 0;
        }

        @media (max-width: 700px) {
            .rc-inner {
                grid-template-columns: 1fr;
            }
        }

        /* gift card visual */
        .rc-card-preview {
            background: var(--color-grad);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            min-height: 220px;
        }

        .rc-card-preview::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            top: -60px;
            right: -50px;
        }

        .rc-card-preview::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            bottom: -30px;
            left: -20px;
        }

        .rcp-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-family: var(--font-h);
            font-size: 15px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .rcp-logo-icon {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, .22);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rcp-logo-icon svg {
            width: 14px;
            height: 14px;
            color: #fff;
        }

        .rcp-mid {
            position: relative;
            z-index: 1;
        }

        .rcp-name {
            font-family: var(--font-h);
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            letter-spacing: -0.3px;
        }

        .rcp-tagline {
            font-size: 12px;
            color: rgba(255, 255, 255, .65);
            margin-top: 4px;
            font-style: italic;
        }

        .rcp-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .rcp-valid {
            font-size: 11px;
            color: rgba(255, 255, 255, .6);
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .rcp-validity {
            font-family: var(--font-h);
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-top: 2px;
        }

        /* result details */
        .rc-details {
            padding: 24px 28px;
        }

        .rc-details-title {
            font-family: var(--font-h);
            font-size: 18px;
            font-weight: 800;
            color: var(--text-pri);
            margin-bottom: 2px;
            letter-spacing: -0.2px;
        }

        .rc-details-sub {
            font-size: 12.5px;
            color: var(--text-muted);
            margin-bottom: 18px;
            font-style: italic;
        }

        .detail-rows {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .detail-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 11px 0;
            border-bottom: 1px solid var(--border);
            gap: 16px;
        }

        .detail-row:last-child {
            border-bottom: none;
        }

        .dr-label {
            font-size: 12.5px;
            color: var(--text-muted);
            font-weight: 500;
            white-space: nowrap;
        }

        .dr-value {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-pri);
            text-align: right;
        }

        .dr-value.highlight {
            font-family: var(--font-h);
            font-size: 16px;
            font-weight: 800;
            color: var(--brand-b);
        }

        .dr-value.used {
            color: #6b7280;
        }

        /* redeem amount field */
        .redeem-field-wrap {
            margin-top: 16px;
        }

        .redeem-field-wrap label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-sec);
            letter-spacing: .45px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .redeem-input-row {
            display: flex;
            gap: 10px;
            align-items: stretch;
        }

        .redeem-input-row input {
            flex: 1;
            background: var(--input-bg);
            border: 1.5px solid var(--border);
            border-radius: var(--rx);
            padding: 12px 14px;
            font-family: var(--font-b);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-pri);
            outline: none;
            transition: all .2s;
        }

        .redeem-input-row input:focus {
            border-color: var(--brand-b);
            box-shadow: 0 0 0 3px rgba(105, 61, 151, .09);
            background: #fff;
        }

        .redeem-input-row input::placeholder {
            font-weight: 400;
            color: var(--text-muted);
        }

        .btn-redeem {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--color-grad);
            color: #fff;
            border: none;
            border-radius: var(--rx);
            padding: 12px 22px;
            font-family: var(--font-h);
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(90, 51, 120, 0.28);
            transition: all .2s;
            white-space: nowrap;
            width: auto;
        }

        .btn-redeem:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(90, 51, 120, 0.36);
        }

        .btn-redeem svg {
            width: 14px;
            height: 14px;
        }

        /* note in result */
        .rc-note {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            background: var(--warn-bg);
            border: 1px solid var(--warn-border);
            border-radius: 8px;
            padding: 10px 14px;
            margin-top: 14px;
        }

        .rc-note svg {
            width: 14px;
            height: 14px;
            color: #d97706;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .rc-note p {
            font-size: 12.5px;
            color: var(--warn-text);
            line-height: 1.5;
        }

        
        /* â”€â”€ RESPONSIVE â”€â”€ */
        @media (max-width: 480px) {
            .page {
                padding: 20px 14px 60px;
            }

            .mc-body {
                padding: 18px;
            }

            .mc-header {
                padding: 14px 18px;
            }

            .rc-details {
                padding: 18px;
            }

            .btn-validate {
                width: 100%;
                justify-content: center;
            }
        }
      /* ─── Extend CSS for vendor logo inside card preview ─── */
        .rcp-vendor-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            padding: 10px 0;
            position: relative;
            z-index: 1;
        }

        /* city select inside branch field */
        #city-listing-box select {
            width: 100%;
            background: var(--input-bg);
            border: 1.5px solid var(--border);
            border-radius: var(--rx);
            padding: 12px 14px;
            font-family: var(--font-b);
            font-size: 15px;
            color: var(--text-pri);
            outline: none;
            transition: all .2s;
            appearance: none;
            -webkit-appearance: none;
        }

        #city-listing-box select:focus {
            border-color: var(--brand-b);
            box-shadow: 0 0 0 3px rgba(105,61,151,.09);
            background: #fff;
        }

        .display-none { display: none; }

        /* Select2 improvements */
        .select2-container {
            width: 100% !important;
        }

        .select2-container .select2-selection--single {
            min-height: 55px;
            background: var(--input-bg);
            border: 1.5px solid var(--border) !important;
            border-radius: var(--rx) !important;
            padding: 12px 14px 12px 38px;
            font-family: var(--font-b);
            font-size: 15px;
            color: var(--text-pri);
            outline: none;
            transition: all .2s;
            display: flex !important;
            align-items: center;
        }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: var(--text-pri);
            line-height: 1.2;
            padding: 0;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 42px !important;
            right: 12px !important;
            top: 50% !important;
            transform: translateY(-50%);
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: var(--text-muted) transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

        .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent var(--text-muted) transparent;
            border-width: 0 4px 5px 4px;
        }

        .select2-container .select2-selection--single:focus {
            border-color: var(--brand-b);
            box-shadow: 0 0 0 3px rgba(105,61,151,.09);
            background: #fff;
        }

        .select2-dropdown {
            border: 1.5px solid var(--border);
            border-radius: var(--rx);
            box-shadow: var(--shadow-md);
            background: #fff;
        }

        .select2-container--default .select2-results__option {
            padding: 10px 14px;
            font-family: var(--font-b);
            font-size: 15px;
            color: var(--text-pri);
        }

        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: var(--brand-a);
            color: #fff;
        }

        .bultk-redeem-page svg{
            width: 20px;
            height: 20px;
        }
        button.btn-add-coupon.add_order_detail {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--color-grad);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 25px;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(90, 51, 120, 0.30);
    transition: all .25s ease;
    letter-spacing: .2px;
    width: auto;
}
.cts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.cts-title {
    font-size: 25px;
    font-weight: 700;
}
.td-action{
    display: flex;
    align-items: center;
    gap: 10px;
}
button.btn-remove.remove_order_detail{
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #d94f4f;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 25px;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(217, 79, 79, 0.30);
    transition: all .25s ease;
    letter-spacing: .2px;
}
input.voucher_code, input.redemption_code {
    background: var(--input-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--rx);
    padding: 12px 14px;
    font-family: var(--font-b);
    font-size: 15px;
    outline: none;
    transition: all .2s;
}
.select2-container .select2-selection--single .select2-selection__clear{
    width: 16px;
}
table.coupon-table,.cts-table{
    overflow-x: auto;
}
.coupon-table th{
    min-width: 140px;
}
.coupon-table th:first-child{
    min-width: auto;
}
@media(max-width: 576px){
    button.btn-add-coupon.add_order_detail{
        font-size: 12px;
        padding: 5px 10px;
        gap: 5px;
    }
}