```css
/* ==========================================================================
   NGK24 DASHBOARD
   Complete / Clean / Responsive Version
   ========================================================================== */


/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ==========================================================================
   DASHBOARD
   ========================================================================== */

.ngk24-dashboard {
    direction: rtl;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}


/* ==========================================================================
   WELCOME HEADER
   ========================================================================== */

.ngk24-dashboard-header {
    margin-bottom: 34px;
}

.ngk24-dashboard-header h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.8;
    color: #222;
}

.ngk24-dashboard-header p {
    margin: 8px 0 0;
    font-size: 15px;
    color: #777;
}


/* ==========================================================================
   CARD
   ========================================================================== */

.ngk24-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 28px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.ngk24-card:hover {
    transform: translateY(-3px);
    border-color: #ddd;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}


/* ==========================================================================
   CARD HEADER
   ========================================================================== */

.ngk24-card-title,
.ngk24-card-header {
    display: flex;
    align-items: center;
    gap: 10px;

    direction: rtl;

    padding: 14px 18px;

    border-bottom: 1px solid #f3f3f3;

    background: #fff;
}

.ngk24-card-title span {
    margin: 0;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.7;

    color: #222;
}

.ngk24-card-header h2,
.ngk24-card-header h3 {
    margin: 0;
    padding: 0;

    line-height: 1.7;
}

.ngk24-card-header svg,
.ngk24-card-header .ngk24-title-icon,
.ngk24-card-header .ngk24-section-icon {
    flex: 0 0 auto;

    width: 26px;
    height: 26px;
}


/* ==========================================================================
   SECTION ICONS
   ========================================================================== */

.ngk24-section-icon,
.ngk24-title-icon {
    width: 22px;
    height: 22px;

    min-width: 22px;
    min-height: 22px;

    flex-shrink: 0;

    fill: none;
    stroke: #27ae60;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==========================================================================
   CARD BODY
   ========================================================================== */

.ngk24-card-body {
    padding: 18px 22px;

    font-size: 15px;
    color: #555;

    line-height: 2.1;
}

.ngk24-card-body p {
    margin: 0 0 18px;
}

.ngk24-card-body p:last-child {
    margin-bottom: 0;
}

.ngk24-campaign .ngk24-card-body,
.ngk24-orders .ngk24-card-body {
    padding-top: 26px;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.ngk24-primary-btn,
.ngk24-copy-coupon,
.ngk24-disabled-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 250px;
    height: 52px;

    padding: 0 26px;

    border: none;
    border-radius: 13px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: .25s ease;
}

.ngk24-primary-btn,
.ngk24-copy-coupon {
    background: #27ae60;
    color: #fff;
}

.ngk24-primary-btn:hover,
.ngk24-copy-coupon:hover {
    background: #1f944f;
    color: #fff;
}

.ngk24-disabled-btn {
    background: #efefef;
    color: #999;
    cursor: not-allowed;
}


/* ==========================================================================
   COUPON
   ========================================================================== */

.ngk24-coupon-result {
    text-align: center;
}

.ngk24-coupon-result h3 {
    margin: 0 0 18px;

    font-size: 26px;
    color: #222;
}

.ngk24-coupon-code {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 270px;
    height: 64px;

    margin: 20px auto;

    border: 2px dashed #27ae60;
    border-radius: 16px;

    background: #fbfffc;

    color: #222;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: .5px;
}


/* ==========================================================================
   DASHBOARD BOTTOM
   ========================================================================== */

.ngk24-dashboard-bottom {
    display: grid;

    grid-template-columns: 340px 1fr;

    gap: 28px;

    align-items: start;
}

.ngk24-dashboard-bottom .ngk24-card {
    margin-bottom: 0;
}


/* ==========================================================================
   GIFT CARD
   ========================================================================== */

.ngk24-gift-card {
    position: relative;

    overflow: hidden;

    border: 1px solid #edf2ed;
    border-radius: 22px;

    background: #fff;
}

.ngk24-gift-card::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at top left,
            rgba(39, 174, 96, .05),
            transparent 45%
        );
}


/* ==========================================================================
   REWARD PROGRESS
   ========================================================================== */

.ngk24-reward-progress {
    position: relative;

    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    margin: 38px 0 32px;

    padding: 0 34px;
}

.ngk24-reward-progress::before {
    content: "";

    position: absolute;

    top: 27px;
    left: 58px;
    right: 58px;

    height: 4px;

    background: #e5e5e5;

    border-radius: 20px;

    z-index: 0;
}

.ngk24-progress-step {
    position: relative;

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    z-index: 2;
}

.ngk24-progress-step span {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;
    border: 3px solid #d9d9d9;

    transition: .25s ease;
}

.ngk24-progress-step.completed span {
    background: #27ae60;
    border-color: #27ae60;
}

.ngk24-progress-step.current span {
    border-color: #27ae60;

    box-shadow:
        0 0 0 7px rgba(39, 174, 96, .08);
}

.ngk24-progress-icon {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: #9b9b9b;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.ngk24-progress-step.completed .ngk24-progress-icon {
    stroke: #fff;
}

.ngk24-progress-step.current .ngk24-progress-icon {
    stroke: #27ae60;
}

.ngk24-progress-step small {
    margin-top: 12px;

    font-size: 13px;
    font-weight: 700;

    color: #666;
}


/* ==========================================================================
   GIFT CONTENT
   ========================================================================== */

.ngk24-gift-content {
    display: grid;

    grid-template-columns: 180px 1fr 180px;

    align-items: center;

    gap: 42px;
}


/* ==========================================================================
   GIFT IMAGES
   ========================================================================== */

.ngk24-gift-chat,
.ngk24-gift-image {
    display: flex;

    align-items: center;
    justify-content: center;
}

.ngk24-gift-chat img {
    width: 150px;
    height: auto;

    display: block;
}

.ngk24-gift-image img {
    width: 170px;
    height: auto;

    display: block;

    filter:
        drop-shadow(
            0 16px 28px rgba(39, 174, 96, .18)
        );

    transition: .3s ease;
}

.ngk24-gift-card:hover .ngk24-gift-image img {
    transform: translateY(-5px);
}


/* ==========================================================================
   GIFT TEXT
   ========================================================================== */

.ngk24-gift-info {
    text-align: center;
}

.ngk24-gift-info h5 {
    margin: 0 0 18px;

    font-size: 22px;
    font-weight: 800;

    line-height: 1.8;

    color: #222;
}

.ngk24-gift-info p {
    margin: 0 0 14px;

    font-size: 15px;

    line-height: 2.15;

    color: #666;
}

.ngk24-gift-note {
    margin-top: 18px;

    font-weight: 700;

    color: #27ae60;
}

.ngk24-gift-action {
    margin-top: 20px;
}


/* ==========================================================================
   ACTIVE CAMPAIGNS
   ========================================================================== */

.ngk24-campaign-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;
}


/* Campaign Item */

.ngk24-campaign-item {
    appearance: none;
    -webkit-appearance: none;

    position: relative;

    display: flex;

    flex-direction: row;

    align-items: center;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    gap: 14px;

    padding: 18px;

    margin: 0;

    border: 1px solid #ececec;

    border-radius: 18px;

    background: #fff;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;

    line-height: inherit;

    text-align: right;
    text-decoration: none;

    color: inherit;

    cursor: pointer;

    overflow: hidden;

    box-sizing: border-box;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* Campaign Hover */

.ngk24-campaign-item:hover {
    border-color: #d8eedf;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .06);

    transform: translateY(-2px);
}

.ngk24-campaign-item:focus {
    outline: none;
}

.ngk24-campaign-item:focus-visible {
    border-color: #27ae60;

    box-shadow:
        0 0 0 3px rgba(39, 174, 96, .12);
}


/* Campaign Icon */

.ngk24-campaign-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    min-width: 60px;
    min-height: 60px;

    border-radius: 17px;

    background: #f0faf3;

    box-sizing: border-box;
}

.ngk24-campaign-icon svg {
    display: block;

    width: 30px;
    height: 30px;

    min-width: 30px;
    min-height: 30px;

    flex: 0 0 auto;

    fill: none;

    stroke: #27ae60;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Campaign Info */

.ngk24-campaign-info {
    display: block;

    flex: 1 1 auto;

    width: 0;
    min-width: 0;
    max-width: 100%;

    overflow: hidden;
}

.ngk24-campaign-info h4 {
    width: 100%;
    max-width: 100%;

    margin: 0 0 6px;
    padding: 0;

    font-size: 18px;
    font-weight: 800;

    line-height: 1.5;

    color: #222;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.ngk24-campaign-info p {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    color: #777;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.8;

    overflow-wrap: anywhere;
    word-break: break-word;
}


/* Campaign Status */

.ngk24-campaign-status {
    display: inline-flex;

    align-items: center;

    max-width: 100%;

    margin-bottom: 6px;

    padding: 4px 10px;

    border-radius: 20px;

    background: #e9f9ef;

    border: 1px solid #c8edd5;

    color: #198754;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.5;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;
}


/* Campaign Arrow */

.ngk24-campaign-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    min-width: 38px;
    min-height: 38px;

    border-radius: 50%;

    background: #f3fbf5;

    color: #27ae60;

    font-size: 20px;
    font-weight: 700;

    transition: .25s ease;
}

.ngk24-campaign-item:hover .ngk24-campaign-arrow {
    background: #27ae60;

    color: #fff;

    transform: translateX(-3px);
}


/* ==========================================================================
   POPUPS
   ========================================================================== */

.shipping-popup-overlay,
.discount-popup-overlay {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(20, 25, 22, .55);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;

    z-index: 999999;
}

.shipping-popup-overlay.active,
.discount-popup-overlay.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* Popup */

.ngk24-popup {
    position: relative;

    width: 100%;
    max-width: 520px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 32px;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 24px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .18);

    text-align: center;

    direction: rtl;

    transform: translateY(18px) scale(.97);

    opacity: 0;

    transition:
        transform .28s ease,
        opacity .25s ease;
}

.shipping-popup-overlay.active .ngk24-popup,
.discount-popup-overlay.active .ngk24-popup {
    transform: translateY(0) scale(1);

    opacity: 1;
}


/* Popup Close */

.ngk24-popup-close {
    position: absolute;

    top: 14px;
    left: 14px;

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #eee;

    border-radius: 50%;

    background: #f8f8f8;

    color: #666;

    font-family: inherit;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    transition: .25s ease;
}

.ngk24-popup-close:hover {
    background: #27ae60;

    border-color: #27ae60;

    color: #fff;

    transform: rotate(90deg);
}


/* Popup Icon */

.ngk24-popup-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #f0faf3;
}

.ngk24-popup-icon svg {
    width: 34px;
    height: 34px;

    fill: none;

    stroke: #27ae60;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Popup Status */

.ngk24-popup-status {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 5px 13px;

    margin-bottom: 10px;

    border-radius: 30px;

    background: #e9f9ef;

    border: 1px solid #c8edd5;

    color: #198754;

    font-size: 12px;
    font-weight: 800;
}


/* Popup Heading */

.ngk24-popup h3 {
    margin: 4px 0 12px;

    font-size: 24px;
    font-weight: 800;

    line-height: 1.7;

    color: #222;
}

.ngk24-popup > p {
    max-width: 440px;

    margin: 0 auto 20px;

    color: #666;

    font-size: 14px;

    line-height: 2;
}


/* Popup Highlight */

.ngk24-popup-highlight {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 18px;

    margin: 20px 0;

    border-radius: 18px;

    background: #f5fbf7;

    border: 1px solid #dcefe2;
}

.ngk24-popup-highlight strong {
    font-size: 25px;

    font-weight: 900;

    color: #198754;
}

.ngk24-popup-highlight span {
    color: #777;

    font-size: 12px;
}


/* Popup Note */

.ngk24-popup-note {
    margin-top: 18px;

    padding: 12px 15px;

    border-radius: 14px;

    background: #fafafa;

    color: #777;

    font-size: 12px;

    line-height: 1.9;

    text-align: right;
}


/* ==========================================================================
   DISCOUNT TABLE
   ========================================================================== */

.ngk24-discount-table {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin: 20px 0;
}

.ngk24-discount-table > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    min-height: 46px;

    padding: 8px 14px;

    border: 1px solid #eee;

    border-radius: 12px;

    background: #fafafa;

    transition: .2s ease;
}

.ngk24-discount-table > div:hover {
    background: #f4fbf6;

    border-color: #d8eedf;
}

.ngk24-discount-table span {
    color: #555;

    font-size: 13px;
    font-weight: 600;
}

.ngk24-discount-table strong {
    min-width: 45px;

    padding: 5px 9px;

    border-radius: 20px;

    background: #e9f9ef;

    color: #198754;

    font-size: 13px;
    font-weight: 900;

    text-align: center;
}


/* ==========================================================================
   DISCOUNT CALCULATOR
   ========================================================================== */

.ngk24-discount-calculator {
    margin-top: 24px;

    padding: 20px;

    border: 1px solid #e9e9e9;

    border-radius: 18px;

    background: #fff;
}

.ngk24-discount-calculator h4 {
    margin: 0 0 14px;

    color: #222;

    font-size: 16px;
    font-weight: 800;
}

.ngk24-calculator-input {
    display: flex;

    gap: 8px;
}

.ngk24-calculator-input input {
    flex: 1;

    min-width: 0;

    height: 48px;

    padding: 0 14px;

    border: 1px solid #ddd;

    border-radius: 12px;

    background: #fff;

    color: #222;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    text-align: right;

    transition: .2s ease;
}

.ngk24-calculator-input input:focus {
    border-color: #27ae60;

    box-shadow:
        0 0 0 3px rgba(39, 174, 96, .10);
}

.ngk24-calculator-input input::placeholder {
    color: #aaa;
}

.ngk24-calculator-input button {
    flex-shrink: 0;

    height: 48px;

    padding: 0 18px;

    border: 0;

    border-radius: 12px;

    background: #27ae60;

    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: .25s ease;
}

.ngk24-calculator-input button:hover {
    background: #1f944f;
}

.ngk24-discount-result {
    margin-top: 14px;

    padding: 14px;

    border-radius: 13px;

    background: #f5fbf7;

    border: 1px solid #dcefe2;

    color: #198754;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.9;

    text-align: center;
}


/* ==========================================================================
   ORDERS
   ========================================================================== */

.ngk24-orders-table {
    width: 100%;

    border-collapse: separate;

    border-spacing: 0 12px;
}

.ngk24-orders-table thead th {
    padding: 14px;

    background: #f8f8f8;

    font-size: 14px;
    font-weight: 700;

    color: #555;
}

.ngk24-orders-table tbody tr {
    background: #fafafa;

    transition: .25s ease;
}

.ngk24-orders-table tbody tr:hover {
    background: #f7fff9;
}

.ngk24-orders-table td {
    padding: 18px 16px;

    text-align: center;

    color: #555;

    font-size: 14px;
}

.ngk24-orders-table td:first-child {
    border-radius: 14px 0 0 14px;
}

.ngk24-orders-table td:last-child {
    border-radius: 0 14px 14px 0;
}

.ngk24-order-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 105px;
    height: 40px;

    background: #27ae60;

    color: #fff;

    text-decoration: none;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: .25s ease;
}

.ngk24-order-btn:hover {
    background: #1f944f;

    color: #fff;
}


/* ==========================================================================
   REWARD HISTORY
   ========================================================================== */

.ngk24-reward-history-box {
    margin-top: 15px;

    padding-top: 12px;

    border-top: 1px dashed #d93025;

    text-align: center;
}

.ngk24-reward-history-box a {
    color: #111;

    font-weight: 700;

    text-decoration: none;

    font-size: 14px;
}

.ngk24-reward-history-box p {
    margin: 6px 0 0;

    font-size: 12px;

    color: #777;
}


/* ==========================================================================
   REWARDS PAGE
   ========================================================================== */

.ngk24-rewards-page {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}

.ngk24-rewards-header {
    text-align: center;

    margin-bottom: 25px;
}

.ngk24-rewards-header h2 {
    margin: 0 0 10px;

    font-size: 24px;
    font-weight: 800;
}

.ngk24-rewards-header p {
    color: #666;

    font-size: 14px;

    line-height: 2;
}

.ngk24-rewards-counter {
    display: inline-block;

    margin-top: 15px;

    padding: 10px 20px;

    border-radius: 30px;

    background: #fff7e6;

    color: #b26a00;

    font-weight: 700;
}


/* ==========================================================================
   REWARD STEPS
   ========================================================================== */

.ngk24-reward-step {
    position: relative;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f7f7f7;

    color: #aaa;

    border: 1px dashed #ddd;

    font-size: 18px;
    font-weight: 800;
}

.ngk24-reward-step:not(:last-child)::after {
    content: "";

    position: absolute;

    width: 45px;
    height: 4px;

    left: 38px;
    top: 19px;

    z-index: -1;

    background: #ddd;
}

.ngk24-reward-step.completed {
    background: linear-gradient(
        135deg,
        #ffb300,
        #f59e0b
    );

    color: #fff;

    border: none;

    box-shadow:
        0 5px 15px rgba(245, 158, 11, .35);
}

.ngk24-reward-step.completed:not(:last-child)::after {
    background: #f59e0b;
}


/* ==========================================================================
   REWARD LIST
   ========================================================================== */

.ngk24-rewards-list {
    display: grid;

    gap: 18px;
}

.ngk24-reward-box {
    position: relative;

    background: #fff;

    border-radius: 18px;

    padding: 22px;

    border: 1px solid #eee;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .06);
}

.ngk24-reward-title {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 18px;

    font-size: 17px;

    font-weight: 800;
}


/* Reward Code */

.ngk24-reward-code {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background: #fafafa;

    border-radius: 12px;

    padding: 14px 16px;

    margin-bottom: 15px;
}

.ngk24-reward-code span {
    font-size: 13px;

    color: #666;
}

.ngk24-reward-code strong {
    font-size: 18px;

    letter-spacing: 1px;

    direction: ltr;
}


/* Reward Info */

.ngk24-reward-info {
    margin-top: 8px;

    color: #666;

    font-size: 13px;
}


/* Reward Button */

.ngk24-copy-reward {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: auto;

    min-width: 180px;

    margin-top: 18px;

    padding: 13px 28px;

    border: 1px solid #e3a008;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #ffb300,
            #f59e0b
        );

    color: #fff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 6px 15px rgba(245, 158, 11, .25);

    transition: .25s ease;
}

.ngk24-copy-reward:hover {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #d97706
        );
}

.ngk24-copy-reward.ngk24-copied {
    background: #198754;

    border-color: #198754;
}


/* Reward Status */

.ngk24-reward-status {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}

.ngk24-reward-status.active {
    background: #e9fff1;

    color: #138a45;

    border: 1px solid #b8edcc;
}

.ngk24-reward-status.used {
    background: #f5f5f5;

    color: #777;

    border: 1px solid #ddd;
}


/* Used Order */

.ngk24-reward-used-order {
    margin-top: 14px;

    padding: 10px 14px;

    border-radius: 12px;

    background: #f7f7f7;

    color: #666;

    font-size: 13px;
    font-weight: 700;
}


/* Expiry */

.ngk24-reward-expiry-warning,
.ngk24-reward-expiry-danger {
    margin-top: 15px;

    padding: 12px 15px;

    border-radius: 14px;

    font-size: 13px;
    font-weight: 700;
}

.ngk24-reward-expiry-warning {
    background: #fff7e6;

    border: 1px solid #f5c45b;

    color: #a16207;
}

.ngk24-reward-expiry-danger {
    background: #fff1f2;

    border: 1px solid #fca5a5;

    color: #b91c1c;

    font-weight: 800;
}


/* Empty */

.ngk24-reward-empty {
    text-align: center;

    padding: 40px;

    border-radius: 20px;

    border: 1px dashed #ddd;

    color: #777;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .ngk24-dashboard-bottom {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================================
   MOBILE — DASHBOARD
   ========================================================================== */

@media (max-width: 768px) {

    .ngk24-dashboard {
        width: 100%;
        max-width: 100%;
    }


    /* Header */

    .ngk24-dashboard-header {
        text-align: center;

        margin-bottom: 25px;
    }

    .ngk24-dashboard-header h3 {
        font-size: 25px;
    }

    .ngk24-dashboard-header p {
        font-size: 14px;
    }


    /* Card */

    .ngk24-card {
        border-radius: 18px;

        margin-bottom: 20px;
    }

    .ngk24-card-title,
    .ngk24-card-header {
        padding: 16px 18px;
    }

    .ngk24-card-body {
        padding: 20px;
    }


    /* Gift */

    .ngk24-gift-content {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .ngk24-gift-chat {
        order: 1;
    }

    .ngk24-gift-info {
        order: 2;
    }

    .ngk24-gift-image {
        order: 3;
    }

    .ngk24-gift-chat img {
        width: 120px;
    }

    .ngk24-gift-image img {
        width: 145px;
    }

    .ngk24-gift-info h5 {
        font-size: 24px;
    }


    /* Buttons */

    .ngk24-primary-btn,
    .ngk24-copy-coupon,
    .ngk24-disabled-btn {
        width: 100%;

        min-width: 100%;
    }


    /* Progress */

    .ngk24-reward-progress {
        padding: 0 10px;
    }

    .ngk24-reward-progress::before {
        left: 34px;
        right: 34px;
    }


    /* Orders */

    .ngk24-orders-table {
        display: block;

        overflow-x: auto;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;
    }


    /* Campaign */

    .ngk24-campaign-grid {
        grid-template-columns: 1fr;

        width: 100%;

        gap: 12px;
    }

    .ngk24-campaign-item {
        width: 100%;
        max-width: 100%;

        padding: 15px;

        gap: 12px;

        border-radius: 16px;

        transform: none;
    }

    .ngk24-campaign-item:hover {
        transform: none;
    }

    .ngk24-campaign-icon {
        flex: 0 0 54px;

        width: 54px;
        height: 54px;

        min-width: 54px;
        min-height: 54px;

        border-radius: 15px;
    }

    .ngk24-campaign-icon svg {
        width: 27px;
        height: 27px;
    }

    .ngk24-campaign-info {
        flex: 1 1 auto;

        width: 0;
        min-width: 0;

        overflow: hidden;
    }

    .ngk24-campaign-info h4 {
        font-size: 16px;

        line-height: 1.5;
    }

    .ngk24-campaign-info p {
        font-size: 12px;

        line-height: 1.7;
    }

    .ngk24-campaign-arrow {
        flex: 0 0 34px;

        width: 34px;
        height: 34px;

        min-width: 34px;
        min-height: 34px;

        font-size: 17px;
    }


    /* Popup */

    .shipping-popup-overlay,
    .discount-popup-overlay {
        padding: 12px;
    }

    .ngk24-popup {
        max-width: 100%;

        max-height: 92vh;

        padding: 26px 20px 22px;

        border-radius: 20px;
    }


    /* Rewards */

    .ngk24-rewards-header h2 {
        font-size: 21px;
    }

    .ngk24-reward-box {
        padding: 18px;

        border-radius: 16px;
    }

    .ngk24-reward-code {
        flex-direction: column;

        align-items: flex-start;
    }

    .ngk24-reward-code strong {
        font-size: 17px;
    }

    .ngk24-reward-title {
        align-items: flex-start;

        flex-direction: column;
    }

    .ngk24-reward-status {
        font-size: 11px;
    }

}


/* ==========================================================================
   MOBILE — SMALL
   ========================================================================== */

@media (max-width: 480px) {

    .ngk24-dashboard {
        padding-left: 8px;
        padding-right: 8px;
    }


    /* Campaign */

    .ngk24-campaign-grid {
        grid-template-columns: minmax(0, 1fr);

        gap: 10px;
    }

    .ngk24-campaign-item {
        padding: 13px;

        gap: 9px;

        border-radius: 15px;
    }

    .ngk24-campaign-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        min-width: 48px;
        min-height: 48px;

        border-radius: 13px;
    }

    .ngk24-campaign-icon svg {
        width: 24px;
        height: 24px;
    }

    .ngk24-campaign-info {
        flex: 1 1 auto;

        width: 0;

        min-width: 0;

        overflow: hidden;
    }

    .ngk24-campaign-status {
        margin-bottom: 4px;

        padding: 3px 8px;

        font-size: 10px;
    }

    .ngk24-campaign-info h4 {
        font-size: 15px;

        line-height: 1.45;
    }

    .ngk24-campaign-info p {
        font-size: 11px;

        line-height: 1.6;
    }

    .ngk24-campaign-arrow {
        flex: 0 0 30px;

        width: 30px;
        height: 30px;

        min-width: 30px;
        min-height: 30px;

        font-size: 15px;
    }


    /* Dashboard */

    .ngk24-card-title span {
        font-size: 17px;
    }

    .ngk24-card-body {
        padding: 18px;
    }

    .ngk24-order-btn {
        width: 100%;
    }


    /* Gift */

    .ngk24-gift-info h5 {
        font-size: 21px;
    }

    .ngk24-gift-chat img {
        width: 110px;
    }

    .ngk24-gift-image img {
        width: 135px;
    }


    /* Popup */

    .ngk24-popup {
        padding: 24px 16px 20px;
    }

    .ngk24-popup h3 {
        font-size: 20px;
    }

    .ngk24-popup > p {
        font-size: 13px;
    }


    /* Calculator */

    .ngk24-calculator-input {
        flex-direction: column;
    }

    .ngk24-calculator-input input,
    .ngk24-calculator-input button {
        width: 100%;
    }


    /* Rewards */

    .ngk24-reward-progress {
        transform: scale(.85);
    }

    .ngk24-reward-step:not(:last-child)::after {
        width: 28px;
    }

    .ngk24-reward-box {
        padding: 18px;

        border-radius: 16px;
    }

    .ngk24-reward-code strong {
        font-size: 17px;
    }

    .ngk24-copy-reward {
        width: 100%;

        min-width: 100%;
    }

}


/* ==========================================================================
   VERY SMALL PHONES
   ========================================================================== */

@media (max-width: 360px) {

    .ngk24-dashboard {
        padding-left: 6px;
        padding-right: 6px;
    }


    /* Campaign */

    .ngk24-campaign-item {
        padding: 11px;

        gap: 7px;
    }

    .ngk24-campaign-icon {
        flex: 0 0 44px;

        width: 44px;
        height: 44px;

        min-width: 44px;
        min-height: 44px;

        border-radius: 12px;
    }

    .ngk24-campaign-icon svg {
        width: 22px;
        height: 22px;
    }

    .ngk24-campaign-info h4 {
        font-size: 14px;
    }

    .ngk24-campaign-info p {
        font-size: 10px;
    }

    .ngk24-campaign-arrow {
        flex: 0 0 28px;

        width: 28px;
        height: 28px;

        min-width: 28px;
        min-height: 28px;

        font-size: 14px;
    }


    /* Popup */

    .ngk24-popup {
        padding: 22px 14px 18px;
    }

    .ngk24-popup h3 {
        font-size: 19px;
    }


    /* Rewards */

    .ngk24-reward-box {
        padding: 15px;
    }

}


/* ==========================================================================
   RTL
   ========================================================================== */

.ngk24-dashboard,
.ngk24-popup {
    direction: rtl;
}


/* ==========================================================================
   CAMPAIGN INTERNAL BOX SIZING
   ========================================================================== */

.ngk24-campaign-grid *,
.ngk24-campaign-grid *::before,
.ngk24-campaign-grid *::after {
    box-sizing: border-box;
}
```
