.cart-button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 8px !important;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px !important;
    background: #F97000;
}

.cart-button:hover {
    background-color: #e06400;
}

.cart-button:focus {
    outline: 2px solid #007BFF; /* You can adjust this */
}

.cart-icon {
    display: flex;
    width: 16px;
    height: 16px;
    padding: 1px 1px 0 0;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

#issue-esim-btn {
    border-radius: var(--sds-size-radius-full);
    border: var(--sds-size-stroke-border) solid #28A745;
    background: #28A745;
    display: inline-flex;
    padding: var(--sds-size-space-300) var(--sds-size-space-400);
    justify-content: center;
    align-items: center;
    gap: var(--sds-size-space-200);
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.close-popup {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.popup-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.popup-content {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    color: #32302E;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 450px;
    flex-shrink: 0;
    border-right: 16px;
}

.popup-content h2 {
    color: rgba(12, 12, 13, 0.74);
    font-family: Inter;
    font-style: normal;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.48px;
}

.popup-content h3 {
    color: #000;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.esim-count-label {
    display: block;
    margin-bottom: 5px;
}

.popup-content input {
    color: var(--sds-color-text-default-default);
    /* Single Line/Body Base */
    font-family: var(--sds-typography-body-font-family);
    font-size: var(--sds-typography-body-size-medium);
    font-style: normal;
    font-weight: var(--sds-typography-body-font-weight-regular);
    line-height: 100%; /* 16px */
}

.error-message {
    color: rgba(199, 0, 54, 1);
    color: #C70036;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;

}

#order-success-popup .popup-content h2, #order-failed-popup .popup-content h2 {
    color: rgba(12, 12, 13, 0.74);
    text-align: center;
    font-family: Inter;
    font-style: normal;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.48px;
}

#order-success-popup .popup-content p, #order-failed-popup .popup-content p {
    color: #32302E;
    text-align: center;
    /* Body */
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ot {
    color: #000;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 220px;
}

#esim-count{
    color: var(--sds-color-text-default-default);
    /* Single Line/Body Base */
    font-family: var(--sds-typography-body-font-family);
    font-size: var(--sds-typography-body-size-medium);
    font-style: normal;
    font-weight: var(--sds-typography-body-font-weight-regular);
    line-height: 100%; /* 16px */
    flex: 1 0 0;
    display: flex;
    min-width: 240px;
    /*padding: var(--sds-size-space-300) var(--sds-size-space-400);*/
    align-items: center;
    align-self: stretch;
    border-radius: var(--sds-size-radius-200);
    background: #F4F2F0;
    padding: 16px 12px 16px 12px ;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 4px solid #ccc;
    border-top: 4px solid #2ecc71;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.h2-top {
    color: rgba(12, 12, 13, 0.74);
    font-family: Inter;
    font-size: var(--sds-typography-heading-size-base);
    font-style: normal;
    font-weight: var(--sds-typography-title-page-font-weight);
    line-height: 120%;
    letter-spacing: -0.48px;
    margin-bottom: 7px;
}