:root {
    --primary-yellow: #f61b18;
    --primary-text: #FFFFFF;
    --secondary-text: #111111;
    --forground: #F5F5F5;
}

.new-ui-parent .cats-col {
    padding-bottom: 0.625rem;
}

.new-ui-parent {
    font-family: 'Outfit', sans-serif !important;
    height: 100%;
}

.new-ui-parent * {
    box-sizing: border-box;
}

.new-ui-parent svg {
    display: block;
    opacity: 50%;
}

.new-ui-parent .login-page {
    height: 60vh;
    background-size: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.new-ui-parent input {
    border: transparent !important;
    padding: 1.25rem 1.125rem !important;
    text-align: left !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
        min-height: 40px;
}

.new-ui-parent input[type=number]::-webkit-outer-spin-button,
.new-ui-parent input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.new-ui-parent input[type=number], 
.new-ui-parent input[type=date], 
.new-ui-parent input[type=datetime-locale]  {
  -moz-appearance: textfield;
      padding: 0.6rem 0.75rem;
      background: #eee !important;
}

.new-ui-parent .page-content.register {
    overflow: visible;
    height: 100%;
}

.new-ui-parent .button.bold-btn {
    width: 100% !important;
    padding: 0.625rem !important;
    margin: auto;
    border-radius: 50px !important;
  
    color: var(--primary-text) !important;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3125rem;
    text-align: center;
}

.new-ui-parent .rounded-container {
    background: var(--forground) !important;
    border-radius: 1.5rem 1.5rem 0px 0px;
    margin-top: -1.5rem !important;
    padding-bottom: 5rem;
    height: 100%;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
}

.new-ui-parent .rounded-container.zero-padding{
    padding-bottom: 0; 
}

.new-ui-parent .rounded-container-nm {
    background: var(--forground) !important;
    border-radius: 1.5rem 1.5rem 0px 0px;
    padding: 0.75rem 0.75rem 10rem;
    min-height: 100vh;
   /* margin-top: 1em;*/
}

.new-ui-parent .image-parent {
    position: relative;
    z-index: -1;
}

.new-ui-parent .login-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, rgba(245, 245, 245, 0.6) 70%, #F5F5F5 100%);
    pointer-events: none;
}

.new-ui-parent .image-parent.front {
    z-index: 1;
}

.register .rounded-container.zero-padding{
    padding-bottom: 40vh !important;
    overflow: auto;
}

.new-ui-parent  .image-parent .image-component {
    height: 100%;
    width: 100%;
    background-size: cover;
    display: block;
    overflow: hidden;
}

.new-ui-parent  .image-parent .image-component img {
    height: 100%;
    width: 100%;
    object-fit: cover !important;
    background-position: right;
    animation: scaleEffect 6s alternate infinite ease-in-out;
}

.new-ui-parent  .image-parent .image-component .image-text {
    position: absolute;
    font-size: 0.625rem;
    right: -12%;
    bottom: 25%;
    transform: rotate(-90deg);
    color: var(--primary-text)!important;
    opacity: 50%!important;
}

.new-ui-parent  .image-parent .label {
  /*  position: absolute;
    z-index: 10;
    right: 0;
    top: 10%;
    width: 130px;
    height: 60px;*/
 /*   background-image: url('../img/new_ui_images/label.png');*/
   /* background-position: center;
    background-repeat: no-repeat;*/
    /*background-color: var(--primary-yellow);*/
   /* border-radius: 15px 0 0 15px;
    box-shadow: 3px 3px 12px rgba(0,0,0,.1);*/
}

.new-ui-parent .version-number {
    position: absolute;
    font-size: 0.75rem!important;
    top: 0.3125rem;
    right: 0.3125rem;
    z-index: 10;
    color: var(--primary-text)!important;
}

.new-ui-parent .heading {
    color: var(--secondary-text)!important;
    font-size: 1.5rem!important;
    font-weight: 600;
    margin-bottom: 0.3125rem;
    margin-top: 0.5rem;
}

.new-ui-parent .form-container li.sub-heading {
    color: var(--secondary-text)!important;
    font-size: 1rem!important;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.75rem!important;
}

.new-ui-parent .form-container li {
    margin-bottom: 0.5rem !important;
}

.new-ui-parent .form-container li.input-container,
.new-ui-parent .input-container {
    display: flex;
    align-items: center;
    background: #FFFFFF !important;
    border-radius: 14px;
    width: 100% !important;
    border: 1.5px solid #E8E8E8 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.new-ui-parent .form-container li.input-container:focus-within,
.new-ui-parent .input-container:focus-within {
    border-color: #aaa !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.new-ui-parent .form-container li.input-container .icon,
.new-ui-parent .login-form .input-container .icon {
    width: 20px;
    height: 20px;
    stroke: #999;
    opacity: 1;
    margin-left: 1rem;
    flex-shrink: 0;
}

.new-ui-parent .form-container li.input-container a {
    padding: 0 0.625rem;
    color: #333333!important;
    text-decoration: underline;
    opacity: 50%;
    font-weight: 300;
    font-size: 0.75rem;
}

/* .new-ui-parent .new-button {
    padding: 10px 0 !important;
    font-size: 18px;
    border-radius: 50px !important;
    font-weight: 500 !important;
    border: unset !important;
  
    color: var(--primary-text) !important;
    margin-top: 5px;
} */

.new-ui-parent .separator {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    margin: 0.9375rem 0;
    opacity: 0.3;
    font-weight: 200;
    font-size: 0.75rem !important;
    line-height: 1.5rem;
    letter-spacing: 0%;
    text-align: center;
}

.new-ui-parent .separator hr {
    border-color: #000000!important;
    width: 100%;
    opacity: 0.3!important;
}

.new-ui-parent .account-btn {
    display: block;
    color: var(--secondary-text)!important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border: 2px solid rgba(0,0,0,0.15) !important;
    border-radius: 50px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

.new-ui-parent .account-btn:active {
    background: rgba(0,0,0,0.05) !important;
}

.new-ui-parent .login-logo-li {
    text-align: center;
    margin-bottom: 0 !important;
    padding-top: 0.5rem;
}

.new-ui-parent .login-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.new-ui-parent .login-actions {
    padding: 0 0.25rem;
}

.new-ui-parent .login-forgot-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: #888 !important;
    text-decoration: none;
}

.new-ui-parent .clear-btn {
    background: transparent !important;
    border: transparent !important;
    color: #000000 !important;
    margin-top: 0.9375rem;
}

.new-ui-parent.dark-bg {
    background-color: #111111 !important;
    padding-top: 0 !important;
}

/* ── Top bar ─────────────────────────────── */
.new-ui-parent .top-bar {
    color: #FFFFFF !important;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
    /* background: #111;
        box-shadow: 0 4px 16px rgb(242 237 237 / 35%); */
}

.new-ui-parent .top-bar tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.new-ui-parent .top-bar tr td {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.75rem;
    align-items: flex-start;
    color: rgba(255,255,255,0.55);
}

.new-ui-parent .top-bar tr td div {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.new-ui-parent .top-bar tr td span {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.new-ui-parent .top-bar tr td a {
    color: #fff ;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.875rem;
}

/* ── Home grid ───────────────────────────── */
.new-ui-parent .home-grid-header {
    width: 100%;
    padding: 0.25rem 0.25rem 0.5rem;
}

.new-ui-parent .home-grid-greeting {
    font-size: 1.375rem;
    font-weight: 700;
    /* color: #ffffff; */
    line-height: 1.3;
}

.new-ui-parent .home-grid-subtitle {
    font-size: 0.875rem;
    /* color: rgba(255,255,255,0.45); */
    margin-top: 0.125rem;
}

.new-ui-parent .home-grid {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0.75rem 0.75rem 6rem !important;
    /* min-height: 100vh; */
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    align-content: flex-start;
}

/* Featured (first) card — full width, taller */
.new-ui-parent .home-grid .card.featured {
    width: 100%;
    margin-bottom: 0;
}

.new-ui-parent .home-grid .card.featured > div {
    aspect-ratio: 16/9;
}

/* Non-featured cards — 2-column grid */
.new-ui-parent .home-grid .card:not(.featured) {
    width: calc(50% - 0.3125rem);
    margin-bottom: 0;
}

.new-ui-parent .home-grid .card:not(.featured) > div {
    aspect-ratio: 1/1;
}

/* ── Card base ───────────────────────────── */
.new-ui-parent .card {
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 0 !important;
    order: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.12) !important;
    flex-shrink: 0;
   
    background: #00000000 !important;
}
.cats-col .card{
     height: 150px !important;
}

.new-ui-parent .card > div {
    /* aspect-ratio: 2/1; */
    position: relative;
}

.new-ui-parent .card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
    image-rendering: high-quality;
    transition: transform 0.3s ease;
}

/* ── Card label overlay ──────────────────── */
.new-ui-parent .card .new-content {
    background: #000000a1;;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 0.8rem 0.875rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-sizing: border-box;
    letter-spacing: 0.01em;
}

/* Featured card gets bigger label */
.new-ui-parent .home-grid .card.featured .new-content {
    font-size: 1.25rem;
    padding: 2.5rem 1rem 0.875rem;
}

.new-ui-parent .card .new-content .pill {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: inline-block;
    color: #f61b18;
    padding: 0.35rem 0.75rem;
    border-radius: 55px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.new-ui-parent .new-flex-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* .new-ui-parent #order-id-Pre-order {
    order: 0;
    aspect-ratio: 3/2;
} */

.new-navigation-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.3125rem 0.625rem;
    background-color: #000;
}

/* Rewards page */
.new-ui-parent .navbar {
    height: fit-content;
    background: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 2;
    /* border-radius: 0 0 8px 8px; */
        padding-top: .5em;
}

.new-ui-parent .navbar .navbar-inner {
    background: black!important;
    padding-bottom: 0.9375rem;
}

.new-ui-parent .page-content {
    padding: 0!important;
    margin: 0;
    height: 100vh;
}

.new-ui-parent.no-positioning {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #000;
}

.new-ui-parent .navbar .title {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 0.625rem;
    margin: 0;
    box-sizing: border-box;
}

.new-ui-parent .navbar .title.between {
    justify-content: space-between;
}

.new-ui-parent .navbar .loyalty-title {
    display: flex;
    align-items: center;
}

.new-ui-parent .navbar .title .icon {
    stroke: #F5F5F5;
    opacity: 1;
    cursor: pointer!important;
    margin-left: -0.3125rem;
    height: 18px;
    width: 18px;
}

.new-ui-parent .navbar::after {
    display: none!important;
}

.new-ui-parent .navbar .title .icon.yellow {
    stroke: #f61b18;
}

.new-ui-parent .navbar .share {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem;
    margin: 0 0.625rem 1rem;
    border-radius: 10px;
}

.new-ui-parent .navbar .share .share-btn {
    width: fit-content;
    background: black !important;
    border: black;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
    padding: 0.125rem 1.125rem;
    color: white !important;
}

.new-ui-parent .navbar .share .share-container {
    display: flex;
    justify-content: space-between;
   /* color: #f61b18;*/
    font-weight: 500;
    font-size: 0.875rem;
}

.new-ui-parent .navbar .share .paragraph {
    font-size: 0.75rem;
    opacity: 1;
    line-height: 1.2;
   /* font-weight: lighter;*/
}

.new-ui-parent.tabs {
    padding: 0!important;
}

.new-ui-parent.tabs .punchcards{
    position: relative;
    top: 0;
    margin: 0 0 0.9375rem;
}

.new-ui-parent.no-positioning.tabs {
    position: relative;
    padding: 0;
    background-color: #f4f4f4;
    border-radius: 1rem 1rem 0 0;
    height: 100% !important;
    z-index: 1;
    overflow: hidden;
    margin-top: -0.9375rem;
}

.new-ui-parent.tabs .tab {
    background: black;
}

.new-ui-parent.tabs .new-content {
    position: relative;
    background: #F5F5F5;
    height: 100%!important;
    padding: 0.625rem;
    width: 100%;
    /* For the nav bar */
}

.new-ui-parent .new-content.extra-padding {
    padding: 1.25rem;
}

.new-ui-parent.tabs .info-page {
    border-radius: 1rem;
    overflow: hidden;
    background: #F5F5F5;
    height: 100%;
    padding: 0.625rem;
}

.new-ui-parent .rewards-body {
    padding: 1.25rem 0.875rem 6rem !important;
}

.new-ui-parent .punch-card-container {
    padding: 1.125rem;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    margin-bottom: 0.875rem;
    overflow: hidden;
}

.new-ui-parent .punchcard-earned-banner {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #f61b18 0%, #f5a800 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.875rem;
}

.new-ui-parent .punchcard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.875rem;
}

.new-ui-parent .punchcard-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #111 !important;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.new-ui-parent .punchcard-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f61b18;
    background: #f61b1838;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.new-ui-parent .punchcard-disc {
    text-align: left;
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 400;
    color: #555;
    margin-bottom: 0.5rem;
}

.new-ui-parent .punchcard-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin: 0 0 0.875rem;
    align-items: center;
}

.new-ui-parent .punchcard-progress-label {
    font-size: 0.8rem;
    color: #888;
    margin: 0.5rem 0 0.4rem;
    letter-spacing: 0.01em;
}

.new-ui-parent .punchcard-progress-label b {
    color: #888;
    font-weight: 700;
}

.new-ui-parent .punchcard-progress-track {
    height: 4px;
    background: rgba(0,0,0,0.07);
    border-radius: 4px;
    margin-bottom: 0.875rem;
    overflow: hidden;
}

.new-ui-parent .punchcard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f61b18 0%, #f5a800 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.new-ui-parent .punchcard-flex-container-inbetween {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.375rem;
    padding-top: 0.625rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.new-ui-parent .punchcard-heading {
    margin: 0 0 1rem;
    display: block;
    text-transform: uppercase;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.07em;
}

.new-ui-parent .punchcard-circles {
    background: #F2F3F7 !important;
    border: 1.5px solid #E8E9ED;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #bbb;
    transition: background 0.2s, border-color 0.2s;
}

.new-ui-parent .icon-flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0,0,0,.15);
    font-size: 1rem;
    font-weight: bold;
    margin-left: 0.25rem;
}

.new-ui-parent .icon-flex .icon-container img {
    width: 34px;
    height: 34px;
    opacity: 0.2;
    transition: opacity 0.2s, filter 0.2s;
}

.new-ui-parent .icon-flex .icon-container.earned img {
    opacity: 1;
    filter: drop-shadow(0 2px 6px rgba(249,181,25,0.5));
}

.new-ui-parent .icon-flex .icon-container i {
    font-size: 2.1875rem;
}

.new-ui-parent .punchcard-desc {
    font-size: 0.75rem;
    font-weight: 300;
    color: #888 !important;
    margin-bottom: 0.5rem;
}

.new-ui-parent .punchcard-circles.filled-circle {
    background: #f61b18 !important;
    border-color: #f61b18 !important;
    color: #000 !important;
    box-shadow: 0 2px 8px rgba(249,181,25,0.4);
}

.new-ui-parent .punchcard-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
    background: #F2F3F7;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.new-ui-parent .punchcard-expiry {
    font-size: 0.6875rem;
    color: #888;
    font-weight: 400;
}

.new-ui-parent .full-image {
    width: 100%;
}


/* Pre orders */
.new-ui-parent .calender-icon-pre-orders {
    position: relative;
    margin: 0;
    width: 38px;
    height: fit-content;
    flex-shrink: 0;
    box-shadow: 0px 4px 14px 0px #0000000D;
    background: #fff;
    border-radius: 3px;
}

.new-ui-parent  .calender-container-parent .calender-container {
    display: flex;
    gap: 0 0.5rem;
    padding-bottom: 1.875rem;
}

.new-ui-parent  .calender-container-parent .calender-icon-pre-orders::before {
    content: '';
    width: 1px;
    background: #000;
    display: block;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: .1;
    height: 42px;
}

.new-ui-parent .calender-container-parent .calender-container:last-child .calender-icon-pre-orders:before {
    display: none;

}

.new-ui-parent .calender-icon-pre-orders .day-name {
    font-size: 0.625rem;
    line-height: 1rem;
    font-weight: 900;
    color: #000;
    border-radius: 3px 3px 0 0;
    background: var(--primary-yellow);
}

.new-ui-parent .calender-icon-pre-orders .day {
    font-size: 1rem;
    font-weight: 600;
    line-height: 0.875rem;
    margin-top: 1px;
}

.new-ui-parent .calender-icon-pre-orders .month {
    font-weight: 400;
    font-size: 0.5625rem;
    line-height: 0.875rem;
}

.new-ui-parent .dotty-border {
    cursor: pointer;
    border: 2px dotted rgb(0, 0, 0) !important;
    border-radius: 0.5rem;
}

.new-ui-parent .calender-content {
    padding: 0.625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black !important;
    margin-bottom: .5em;
}

.new-ui-parent .calender-title {
    font-weight: 200;
    font-size: 0.75rem;
    line-height: 0.875rem;
    opacity: .56;
}

.new-ui-parent .calender-cut-off {
    font-weight: 400;
    font-size: 0.625rem;
    line-height: 0.875rem;
}

.new-ui-parent .calender-cut-off strong {
    font-weight: 600;
}

.new-ui-parent .calender-time-range {
    font-weight: 600;
    font-size: 1rem;
    line-height: 0.875rem;
    margin-bottom: 0.125rem;

}

.new-ui-parent .calender-content .icon {
    opacity: 20%;
}

.new-ui-parent .calender-ordered-container {
    background-color: var(--primary-text);
    box-shadow: 0px 4px 14px 0px #0000000D;
    border-radius: 7px;
    padding: 0.625rem;
    margin-bottom: 0.5rem;
}

.new-ui-parent .calender-ordered-container .calender-ordered-info {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 0.875rem;
    margin-bottom: 0.4375rem;
}

.new-ui-parent .calender-ordered-container .calender-ordered-info .icon {
    height: 15px;
    stroke-width: 1px;
    cursor: pointer;
}

.new-ui-parent .calender-ordered-container .calender-ordered-item img {
    width: 40px;
    border-radius: 3px;
}

.new-ui-parent .calender-ordered-container .calender-ordered-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 0.875rem;
    margin-bottom: 0.4375rem;
    padding-bottom: 0.4375rem;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}

.new-ui-parent .calender-ordered-container .calender-ordered-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none !important;
}

.new-ui-parent .menu-options {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: auto;
}

.new-ui-parent .navbar .title .menu-options .icon {
    fill: #F5F5F5;
    opacity: .2;
    transition: 500ms;
}

.new-ui-parent .navbar .title .menu-options .icon.active {
    opacity: 1;
    transition: 500ms;
}

.new-ui-parent .no-padding {
    padding: 0 !important;
    margin: 0 !important;
}

/* Menu */

.new-ui-parent .menu-nav-container {
    padding: 0 0.625rem;
}

.new-ui-parent .menu-search {
    margin-bottom: 0.625rem;
    position: relative;
}

.new-ui-parent .menu-search .search-icon {
    position: absolute!important;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: #F5F5F5;

    float: unset!important;
    margin: 0!important;
    opacity: .5!important;
}

.new-ui-parent .menu-search input {
    padding: 0.1875rem 2.1875rem 0.1875rem 0.8125rem !important;
    background-color: #eee!important;
    font-weight: 400!important;
    font-size: 0.875rem!important;
    line-height: 1.5rem!important;
    border-radius: 24px!important;
    color: #111!important;
    width: 100%!important;
}

.new-ui-parent .menu-search input::placeholder {
    color: #111111d9;
    opacity: .5;
}

.new-ui-parent .swiper {
    position: relative;
    margin-bottom: 0.625rem;
    overflow: hidden;
}

.new-ui-parent .swiper:after {
    content: '';
    width: 30px;
    height: 100%;
    /* background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); */
    display: block;
    position: absolute;
    top: 0;
    z-index: 2;
    right: 0;
}

.new-ui-parent .swiper-slide {
    width: fit-content;
}

.new-ui-parent .swiper-slide .item.active {
    color: rgb(0, 0, 0);
    background-color: #fff;
}

.new-ui-parent .swiper-slide .item {
    color: rgb(255, 255, 255);
    border: thin solid rgb(255, 255, 255) !important;
    background: rgb(0, 0, 0);
    border-radius: 24px;
    padding: 0.0625rem 1.25rem;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.new-ui-parent .new-cat-title {
    font-weight: 400 !important;
    color: #000000d4;
    font-size: 0.75rem;
    margin: 0;
}

.new-ui-parent .new-list .item-container {
    background-color: var(--primary-text);
    border-radius: 14px;
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.08);
    display: flex;
    margin-bottom: 0.5rem;
    overflow: hidden;
    align-items: stretch;
}

.new-ui-parent .new-list .item-container .item-image {
    width: 110px;
    min-width: 110px;
    height: 80px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

/* In list view, price badge sits at bottom of the thumbnail image */
.new-ui-parent .new-list .item-container .item-image .item-price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.2rem 0.3rem;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.new-ui-parent .new-list .item-container .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: unset;
    border-radius: unset;
}

.new-ui-parent .new-list .item-container .item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    text-align: left;
    padding: 0.625rem 0.75rem;
}

.new-ui-parent .new-list .item-container .item-content .new-item-title {
    margin: 0;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2rem;
    flex: 1;
}
.new-item-title{
     display: -webkit-box;
  -webkit-line-clamp: 3;   /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* list item-price handled via .item-image .item-price above */

.new-ui-parent .new-list .item-container .item-add-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.new-ui-parent .new-list .item-container .item-add-btn svg {
    stroke: #fff;
    opacity: 1;
}

/* Grid Layout */

.new-ui-parent .new-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0.75rem;
}

.new-ui-parent .new-list {
    padding: 0.625rem;
}

.new-ui-parent .new-grid .new-cat-title-container,
.new-ui-parent .new-list .new-cat-title-container  {
    width: 100%;
    align-items: center;
    margin: 0!important;
}

.new-ui-parent .new-grid .new-cat-title-container .icon,
.new-ui-parent .new-list .new-cat-title-container .icon {
    font-size: 1.125rem;
    color: rgba(0,0,0,.4) !important;
    padding-left: .2rem;
}

.new-ui-parent .new-cat-title {
    font-weight: 700 !important;
    color: #111;
    font-size: 1rem;
    margin: 0.5rem 0 0.25rem;
    letter-spacing: 0.01em;
}

.new-ui-parent .new-grid .new-item-parent {
    width: calc(50% - 0.3125rem);
}

.new-ui-parent .new-grid .item-container {
    background-color: var(--primary-text);
    border-radius: 16px;
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.09);
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.new-ui-parent .new-grid .item-container:active {
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.08);
}

.new-ui-parent .new-grid .item-container .item-image {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.new-ui-parent .new-grid .item-container .watermark {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    position: absolute;
    left: 6px;
    top: 0;
    color: #75757561;
    opacity: 0.8;
    z-index: 1;
}

.new-ui-parent .new-grid .item-container .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: unset;
    border-radius: unset;
}

.new-ui-parent .new-grid .item-container .item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.5rem 0.5rem 0.6rem;
}

.new-ui-parent .new-grid .item-container .item-content .new-item-title {
    margin: 0;
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.1rem;
    flex: 1;
}

/* Price badge — now inside the image, bottom-left */
.new-ui-parent .new-grid .item-container .item-price {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 8px 0 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    font-weight: 600;
    font-size: 0.75rem;
    line-height: normal;
    text-align: center;
    padding: 0.25rem 0.5rem;
    color: #ffffff;
    z-index: 2;
}

/* "+" add button */
.new-ui-parent .new-grid .item-container .item-add-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.new-ui-parent .new-grid .item-container .item-add-btn svg {
    stroke: #fff;
    opacity: 1;
}

.new-ui-parent.checkout-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0.8125rem 0.625rem 0.5rem;
    border-radius: 20px 20px 0 0;
    background-color: #F5F5F5;
    box-shadow: 0px -6px 34px 0px #00000026;
    z-index: 20;
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
}

.new-ui-parent.checkout-button-container .checkout-button {
    box-shadow: 0px 1px 2px 0px var(--ColorsEffectsShadowsshadow-xs);
    /*background-color: var(--primary-yellow);*/
    border-radius: 28px;
    padding: 0.625rem 0.75rem;
    font-weight: 400;
    font-size: Font size/text-md;
    line-height: 1.3125rem;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    display: block;
}

/* Menu popup */
.new-ui-parent.menu-popup.popup {
    top: 10%;
    width: 100%;
    height: 90%;
    display: block;
    overflow: visible;
    border-radius: 24px 24px 0 0;
}

.new-ui-parent .popup-border {
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.new-ui-parent .popup-close-btn {
    cursor: pointer;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    left: unset;
    bottom: unset;
    transform: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    z-index: 10;
    padding: 0;
}

.new-ui-parent .popup-close-btn .fa {
    color: #fff !important;
    opacity: 1;
}

.new-ui-parent .popup-close-btn 

.new-ui-parent.popup-backdrop.backdrop-in {
    transition: 500ms;
    transition-delay: 300ms;
    backdrop-filter: blur(14px);
    background: rgba(0,0,0,.1) !important;
} 

.new-ui-parent.model-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0.875rem 1rem 1.25rem;
    border-radius: 0;
    background-color: #f4f0e4;
    box-shadow: 0px -1px 0px 0px rgba(0,0,0,0.08), 0px -8px 32px 0px rgba(0,0,0,0.1);
    z-index: 20;
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.new-ui-parent .new-nav-inner {
    max-width: 430px;
}

.new-ui-parent.model-button-container .model-button-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.3125rem;
}

.new-ui-parent.model-button-container .model-button-flex-container .icon {
    width: 30px;
    height: 30px;
    stroke: black;
    stroke-width: 1px;
    cursor: pointer;
}

.new-ui-parent.model-button-container .model-button {
    border-radius: 50px;
    padding: 0.875rem 0.75rem;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.3125rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 100%;
    display: block;
}

.new-ui-parent .stepper-parent {
    width: 100%;
    border-radius: 50px;
    background-color: rgba(0,0,0,0.06);
    border: 1.5px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    margin-bottom: 0.5rem;
    color: #222;
}
.stepper-parent .new-stepper{
    border: solid thin rgba(0,0,0,0.12) !important;
}

.new-ui-parent .stepper-parent.full,
.new-ui-parent .model-button.full {
    width: 100%;
}

.new-ui-parent .stepper-parent .new-stepper {
    width: 50%;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.7);
    border-radius: 50px;
    padding: 0.125rem 0.1875rem;
}

.new-ui-parent .stepper-parent .new-stepper.dropdown {
    width: fit-content;
    padding: 0.125rem 1.5rem 0.125rem 0.75rem;
    position: relative;
}

.new-ui-parent .stepper-parent .new-stepper.dropdown svg {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 16px;
    opacity: 1;
    stroke-width: 3px;
}

.new-ui-parent .stepper-parent .new-stepper .new-stepper-input {
    padding: 0 !important;
    border-radius: 0 !important;
    height: 100%;
    width: 100%;
    border: unset !important;
    font-weight: 600 !important;
    font-size: 1.375rem !important;
    text-align: center !important;
    text-transform: uppercase;
    color: black !important;
}

.new-ui-parent .stepper-parent .new-stepper button {
    background: transparent !important;
    border: transparent;
    padding: 0;
    width: fit-content;
    position: relative;
}

.new-ui-parent .model-image-container {
    position: relative;
    overflow: hidden;
    text-align: center;
    border: none !important;
    background: #d8d2c0;
    height: 260px;
    flex-shrink: 0;
}

/* Gradient overlay fading image into content */
.new-ui-parent .model-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, #f4f0e4 100%);
    pointer-events: none;
    z-index: 1;
}

.new-ui-parent .model-image-container .menu-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-ui-parent .model-container {
    border-radius: 0;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 120px;
    background: #f4f0e4;
    display: flex;
    flex-direction: column;
}

.new-ui-parent .model-image-container .watermark {
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 0.5rem;
    line-height: 1.5rem;
    text-align: center;
    position: absolute;
    right: 0;
    transform: rotate(-90deg) translate(50%, 180%);
    bottom: 0;
    color: #757575;
    opacity: 0.8;
    z-index: 1;
}

.new-ui-parent .stepper-parent .new-stepper button svg {
    stroke: black;
    opacity: 1;
}

.new-ui-parent .menu-model-options-title {
    margin: 0 0 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: normal;
    color: #111;
}

.new-ui-parent .menu-model-select-parent {
    position: relative;
    margin-bottom: 0.875rem;
}

.new-ui-parent .menu-model-select {
    border: 1.5px solid rgba(0,0,0,0.12) !important;
    background: rgba(255,255,255,0.6) !important;
    box-shadow: none;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5rem;
    color: #000 !important;
    cursor: pointer;
    border-radius: 10px !important;
    height: 34px;
}

.new-ui-parent .menu-model-select-parent svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    opacity: 1;
    stroke-width: 1px;
    pointer-events: none;
}

.new-ui-parent .menu-model-parent {
    padding: 1rem 1.125rem 5.5rem;
    background: #f4f0e4;
}

.new-ui-parent .menu-model-content {
    margin-bottom: 1.25rem !important;
}

.new-ui-parent .menu-model-content .menu-model-heading {
    margin: 0 0 0.375rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.75rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.new-ui-parent .menu-model-content .menu-model-heading .menu-model-price {
    background: rgba(0,0,0,0.08);
    color: #111;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
    padding: 0.375rem 0.75rem;
    height: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1.5px solid rgba(0,0,0,0.1);
}

.new-ui-parent .menu-model-content .menu-model-disc {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: rgba(0,0,0,0.45);
    margin: 0 !important;
}

.new-ui-parent .menu-popup .menu-model-radio-parent {
    display: flex !important;
    align-items: center !important;
    gap: 0.625rem !important;
    padding: 0.625rem 0.75rem !important;
    border-radius: 10px !important;
    margin-bottom: 0.375rem !important;
    background: rgba(0,0,0,0.05) !important;
    cursor: pointer !important;
    transition: background 0.15s ease !important;
    border: 1.5px solid transparent !important;
}

.new-ui-parent .menu-popup .menu-model-radio-parent:active {
    background: rgba(0,0,0,0.09) !important;
}

/* Hide native input */
.new-ui-parent .menu-popup .menu-model-radio-parent input[type="checkbox"],
.new-ui-parent .menu-popup .menu-model-radio-parent input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* Custom checkbox icon */
.new-ui-parent .menu-popup .menu-model-radio-parent .icon-checkbox {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border-radius: 6px !important;
    background: rgba(255,255,255,0.75) !important;
    border: 1.5px solid rgba(0,0,0,0.18) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s ease, border-color 0.15s ease !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.new-ui-parent .menu-popup .menu-model-radio-parent .icon-checkbox::after {
    content: '' !important;
    display: block !important;
    width: 5px !important;
    height: 9px !important;
    border: 2px solid #fff !important;
    border-top: none !important;
    border-left: none !important;
    transform: rotate(45deg) translateY(-1px) !important;
    opacity: 0 !important;
    transition: opacity 0.15s ease !important;
    background-image: none !important;
    background: transparent !important;
    left: unset !important;
    top: unset !important;
}

.new-ui-parent .menu-popup .menu-model-radio-parent input[type="checkbox"]:checked ~ .icon-checkbox {
    background: #111 !important;
    border-color: #111 !important;
}

.new-ui-parent .menu-popup .menu-model-radio-parent input[type="checkbox"]:checked ~ .icon-checkbox::after {
    opacity: 1 !important;
}

/* Checked row highlight */
.new-ui-parent .menu-popup .menu-model-radio-parent:has(input:checked) {
    background: rgba(0,0,0,0.09) !important;
    border-color: rgba(0,0,0,0.2) !important;
}

/* Radio title layout */
.new-ui-parent .menu-popup .menu-model-radio-parent .radio-title {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 1 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #111 !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.01em !important;
}

.new-ui-parent .menu-popup .menu-model-radio-parent .radio-title span {
    font-weight: 600 !important;
    color: #555 !important;
    margin-left: auto !important;
    padding-left: 0.75rem !important;
    white-space: nowrap !important;
}

.new-ui-parent .menu-model-remove-parent {
    width: fit-content;
    margin: 0 auto;
}

.new-ui-parent .menu-model-remove-btn {
    border-radius: 5px;
    border: unset;
    padding: 0.25rem 1rem;
    background: #ef5e5e !important;
    color: #fff !important;
    font-weight: 800;
}

/* Checkout */

.new-ui-parent .checkout-header {
    font-weight: 700;
    font-size: 0.6875rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.4);
}

.new-ui-parent .checkout-item-parent {
    background-color: #fff;
    border-radius: 14px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.new-ui-parent .checkout-item-parent .checkout-item:last-of-type {
    border-bottom: unset;
    margin-bottom: 0;
    padding-bottom: 0;
    color:black !important;
}

.new-ui-parent .checkout-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.new-ui-parent .checkout-item-image {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.new-ui-parent .checkout-item-title {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2rem;
    flex: 1;
    color: #111 !important;
}

.new-ui-parent .checkout-item-price {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: right;
    margin-left: auto;
    color: #111;
    white-space: nowrap;
}

.new-ui-parent .checkout-item-delete-btn {
    stroke: rgba(0,0,0,0.25);
    opacity: 1;
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
    flex-shrink: 0;
}

/* Coupon */
.new-ui-parent .checkout-voucher-input-parent {
    margin: 0 0 0.875rem;
    border-radius: 12px;
    background: #fff;
    display: flex;
    padding: 0.25rem 0.25rem 0.25rem 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    align-items: center;
}

.new-ui-parent .checkout-voucher-input {
    padding: 0.375rem 0 !important;
    height: 36px !important;
    font-weight: 400 !important;
    font-size: 0.875rem !important;
    line-height: 1.5rem;
    color: #000 !important;
    flex: 1;
}

.new-ui-parent .checkout-voucher-button {
    border-radius: 10px;
    border: unset;
    background-color: #111 !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.8125rem;
    text-align: center;
    width: fit-content;
    height: fit-content;
    padding: 0.625rem 1rem;
    text-transform: uppercase !important;
    letter-spacing: 0.03em;
}

/* Total row */
.new-ui-parent .checkout-voucher-total,
.new-ui-parent .checkout-voucher-amount {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    color: black !important;
}

.new-ui-parent .checkout-voucher-amount {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(0,0,0,0.55);
}

.new-ui-parent .checkout-voucher-total td,
.new-ui-parent .checkout-voucher-amount td {
    border: unset !important;
    padding: 0.25rem 0 !important;
    text-transform: uppercase;
}

.new-ui-parent .checkout-voucher-total td:last-child,
.new-ui-parent .checkout-voucher-amount td:last-child {
    text-align: right;
}

.new-ui-parent .checkout-voucher-total {
    font-size: 1rem;
    font-weight: 800;
    padding-top: 0.375rem;
    border-top: 1.5px solid rgba(0,0,0,0.08);
}

.new-ui-parent .checkout-line {
    border: unset !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
    margin: 0.5rem 0 0.875rem;
}

/* Notes */
.new-ui-parent .checkout-voucher-note-text-area {
    border-radius: 12px !important;
    background: #fff !important;
    padding: 0.75rem !important;
    min-height: 80px;
    max-height: 80px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5rem;
    text-align: left !important;
    color: #000 !important;
    transition: max-height 400ms;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1.5px solid transparent !important;
}

.new-ui-parent .checkout-voucher-note-text-area:focus {
    max-height: 150px;
    border-color: rgba(0,0,0,0.12) !important;
}

/* Secondary action buttons */
.new-ui-parent .payment-button {
    border-radius: 50px;
    padding: 0.625rem 1.25rem;
    background-color: #111 !important;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1rem;
    text-align: center;
    text-transform: uppercase !important;
    letter-spacing: 0.03em;
    color: #fff !important;
    border: unset;
    width: 100%;
    display: block;
}

/* Payment method radio */
.new-ui-parent #checkboxOveride .icon-radio {
    border-radius: 50%;
    background-color: #E8E8E8 !important;
    border-color: #E8E8E8 !important;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.checkout-voucher-note-parent{
    margin-top: 1rem;
}
.new-ui-parent #checkboxOveride input[type="radio"]:checked ~ .icon-radio {
    background-color: #111 !important;
    border-color: #111 !important;
}

.new-ui-parent #checkboxOveride .icon-radio::after {
    background-image: url(../img/check.svg);
    width: 100% !important;
    height: 100% !important;
    left: 0;
    top: 0;
    margin: 0;
    border-radius: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #11111100 !important;
}

.new-ui-parent #checkboxOveride .item-title {
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.new-ui-parent .checkbox-heading {
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.4);
    margin: 0 0 0.5rem;
    line-height: 1.5rem;
}

.new-ui-parent #checkboxOveride {
    margin-bottom: 0;
}

.new-ui-parent #checkboxOveride:last-of-type {
    margin-bottom: 0;
}

.new-ui-parent #checkboxOveride .item-inner,
.new-ui-parent #checkboxOveride .item-content {
    padding: 0.625rem 0 !important;
    min-height: unset !important;
    /* border-bottom: 1px solid rgba(0,0,0,0.06) !important; */
}

.new-ui-parent #checkboxOveride:last-of-type .item-inner,
.new-ui-parent #checkboxOveride:last-of-type .item-content {
    border-bottom: unset !important;
}

.new-ui-parent .checkbox-container {
    padding: 0 0.875rem;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.new-ui-parent .payment-icons {
    display: flex;
    gap: 0.375rem;
    align-items: center;
}

.new-ui-parent .payment-icons img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

/* Merchants page */
.new-ui-parent .merchant-hero {
    height: 20vh;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
}

.new-ui-parent .merchant-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(245,245,245,0.8) 80%, #F5F5F5 100%);
}

.new-ui-parent .merchant-sheet {
    margin-top: 0;
    padding: 0 0 5rem !important;
    min-height: 100vh;
    background: #F2F3F7;
}

.new-ui-parent .merchant-hero {
    background: #000;
    padding: 1.25rem 1rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.new-ui-parent .merchant-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(249,181,25,0.12);
    border-radius: 50%;
    pointer-events: none;
}

.new-ui-parent .merchant-hero::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: rgba(249,181,25,0.07);
    border-radius: 50%;
    pointer-events: none;
}

.new-ui-parent .merchant-hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.25rem;
}

.new-ui-parent .merchant-hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.new-ui-parent .merchant-hero-title span {
    color: #f61b18;
}

.new-ui-parent .merchant-body {
    background: #F2F3F7;
    border-radius: 1.25rem 1.25rem 0 0;
    margin-top: -2rem;
    padding: 1.25rem 0.875rem 2rem;
    position: relative;
    z-index: 1;
}

.new-ui-parent .merchant-select-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 1rem;
}

.new-ui-parent .merchant-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.new-ui-parent .merchant-card {
    width: calc(50% - 0.4375rem);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.new-ui-parent .merchant-card:active {
    transform: scale(0.97);
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.new-ui-parent .merchant-card-logo {
    width: 100%;
    /* aspect-ratio: 1/1; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #fde8f0 0%, #fce4ec 100%); */
    overflow: hidden;
}

.new-ui-parent .merchant-card-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.new-ui-parent .merchant-card-name {
    padding: 0.75rem 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #111;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.new-ui-parent .merchant-card-arrow {
    display: flex;
    justify-content: center;
    padding: 0 0.75rem 0.625rem;
}

/* Order history */
.new-ui-parent .oh-body {
    padding: 1.25rem 0.875rem 6rem !important;
    background: #F2F3F7 !important;
}

.new-ui-parent .oh-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.new-ui-parent .order-history-container {
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    background: #fff;
    overflow: hidden;
    color: #111 !important;
}

.new-ui-parent .order-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.new-ui-parent .order-history-date {
    font-weight: 800;
    font-size: 0.9375rem;
    color: #111;
}

.new-ui-parent .order-history-order-id {
    font-weight: 700;
    font-size: 0.75rem;
    color: #f61b18;
    background: #f61b1838;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Status tracker */
.new-ui-parent .order-history-status-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #F9FAFB;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.new-ui-parent .order-history-status {
    font-weight: 500;
    font-size: 0.625rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(0,0,0,0.25);
    transition: color 0.2s;
    text-align: center;
}

.new-ui-parent .oh-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    transition: background 0.2s, box-shadow 0.2s;
    margin-bottom: 0.125rem;
}

.new-ui-parent .order-history-status.active {
    color: #111;
    font-weight: 700;
    padding: 0;
}

.new-ui-parent .order-history-status.active .oh-status-dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(249,181,25,0.25);
}

.new-ui-parent .order-history-status.final-active {
    color: #22c55e;
    font-weight: 700;
}

.new-ui-parent .order-history-status.final-active .oh-status-dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.new-ui-parent .order-history-status .scheduled-time {
    font-weight: 700;
    font-size: 0.6875rem;
    color: #111;
    line-height: 1;
}

.new-ui-parent .oh-cancelled-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff0f0 0%, #ffe4e4 100%);
    border: 1.5px solid #e8b4b4;
    color: #b91c1c;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 4px rgba(185, 28, 28, 0.08);
}

.new-ui-parent .oh-cancelled-icon {
    width: 18px;
    height: 18px;
    stroke: #b91c1c;
    flex-shrink: 0;
}

.new-ui-parent .arrow-container {
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
}

.new-ui-parent .arrow {
    stroke-width: 1.5px;
    stroke: rgba(0,0,0,0.15);
    height: 14px;
    width: 14px;
}

/* Order meta */
.new-ui-parent .oh-meta {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.new-ui-parent .oh-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
}

.new-ui-parent .oh-meta-label {
    color: #888;
    font-weight: 400;
}

.new-ui-parent .oh-meta-value {
    font-weight: 600;
    color: #111;
}

/* Items */
.new-ui-parent .oh-items-section {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.new-ui-parent .oh-items-heading {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #888;
    margin-bottom: 0.625rem;
}

.new-ui-parent .oh-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.3125rem 0;
    font-size: 0.875rem;
}

.new-ui-parent .oh-item-name {
    color: #111;
    font-weight: 500;
    flex: 1;
    padding-right: 0.5rem;
}

.new-ui-parent .oh-item-additions {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-top: 0.2rem;
}

.new-ui-parent .oh-item-additions small {
    font-size: 0.6875rem;
    color: #888;
    font-weight: 400;
}

.new-ui-parent .oh-item-price {
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    font-size: 0.875rem;
}

/* Total */
.new-ui-parent .oh-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
}

.new-ui-parent .oh-total-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.new-ui-parent .oh-total-amount {
    font-size: 1.125rem;
    font-weight: 900;
    color: #111;
}

.new-ui-parent .new-content.order-history-page {
    padding-top: 1.25rem;
}
/* Help & Support / FAQ */

.new-ui-parent .faq-body {
    padding: 1.25rem 0.875rem 6rem !important;
    background: #F2F3F7 !important;
}

.new-ui-parent .faq-search-wrap {
    position: relative;
    margin-bottom: 1.25rem;
}

.new-ui-parent .faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: rgba(0,0,0,0.35);
    pointer-events: none;
}

.new-ui-parent .faq-search-input,
.new-ui-parent .help-search {
    width: 100%;
    border-radius: 14px !important;
    height: 46px !important;
    padding: 0 1rem 0 2.75rem !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    background: #fff !important;
    border: 1.5px solid #E8E9ED !important;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    line-height: normal;
}

.new-ui-parent .faq-search-input::placeholder,
.new-ui-parent .help-search::placeholder {
    color: rgba(0,0,0,0.3);
    font-weight: 400;
}

.new-ui-parent .faq-list,
.new-ui-parent .accordion-list {
    margin: 0 !important;
}

.new-ui-parent .faq-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-ui-parent .faq-item,
.new-ui-parent #faq .accordion-item {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    border-radius: 16px !important;
    background: #fff !important;
    border-bottom: none !important;
    overflow: hidden;
    color: #111 !important;
    margin-bottom: 0.625rem;
}

.new-ui-parent #faq .item-inner.item-inner-faqs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem !important;
    color: #111 !important;
    position: relative;
}

.new-ui-parent #faq .item-inner.item-inner-faqs .item-title- {
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.3;
    flex: 1;
    padding-right: 0.75rem;
}

.new-ui-parent #faq .accordion-item:not(.media-item) > .item-link .item-inner::before {
    display: none;
}

.new-ui-parent .faq-answer,
.new-ui-parent #faq .accordion-item-content {
    background: #F9FAFB;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.new-ui-parent #faq .accordion-item-content p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #555;
    padding: 0.875rem 1rem;
    margin: 0 !important;
}

.new-ui-parent .faq-chevron-wrap {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F2F3F7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.2s;
}

.new-ui-parent #faq .chevron-closed,
.new-ui-parent #faq .chevron-open {
    width: 15px;
    height: 15px;
    stroke: #111;
    stroke-width: 2px;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.new-ui-parent #faq .accordion-item .chevron-closed { display: block; }
.new-ui-parent #faq .accordion-item .chevron-open   { display: none; }
.new-ui-parent #faq .accordion-item-opened .chevron-closed { display: none; }
.new-ui-parent #faq .accordion-item-opened .chevron-open   { display: block; }

.new-ui-parent #faq .accordion-item-opened .faq-chevron-wrap {
    background: rgba(249,181,25,0.15);
}
.new-ui-parent #faq .accordion-item-opened .chevron-open {
    stroke: #F9B519;
    opacity: 1;
}

.new-ui-parent .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    opacity: 30%;
}

}

/* Feedback */

.new-ui-parent .feedback-page-wrap {
    background: #F2F3F7;
    padding: 0 !important;
    min-height: 100vh;
}

.new-ui-parent .feedback-hero {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.new-ui-parent .feedback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-ui-parent .feedback-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.new-ui-parent .feedback-body {
    background: #F2F3F7;
    border-radius: 1.25rem 1.25rem 0 0;
    margin-top: -1.25rem;
    padding: 1.25rem 0.875rem 6rem;
    position: relative;
    z-index: 1;
    height: 80vh;
    overflow: auto;
}

.new-ui-parent .feedback-heading {
    margin: 0 0 0.25rem;
    font-weight: 800 !important;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #fff !important;
    text-transform: unset !important;
}

.new-ui-parent .feedback-disc {
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 1.2;
    color: rgba(255,255,255,0.75);
}

.new-ui-parent .ul-container {
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-radius: 16px;
    margin: 0 0 0.75rem;
}

.new-ui-parent.tabs .new-content.big-bottom {
    margin-bottom: 86px !important;
    height: fit-content !important;
}

.new-ui-parent .rating-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #F2F3F7;
    border-radius: 50px;
    padding: 0.375rem 0.625rem;
}

.new-ui-parent .rating-container .star {
    stroke: #ccc;
    fill: #ccc;
    opacity: 1;
    width: 20px;
    height: 20px;
}

.new-ui-parent .rating-container .star.fill {
    stroke: var(--primary-yellow);
    fill: var(--primary-yellow);
}

.new-ui-parent .rating-text {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 0.875rem;
}

.new-ui-parent .rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.new-ui-parent .rating-header .main-color {
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.2;
    color: #111 !important;
}

.new-ui-parent .rating-header strong {
    font-size: 0.875rem;
    /* color: #f61b18; */
    background: rgba(249,181,25,0.12);
    padding: 0.125rem 0.5rem;
    border-radius: 20px;
}

.new-ui-parent .rating-context-container {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.625rem 0;
}

.new-ui-parent .rating-context-text {
    font-weight: 500;
    font-size: 0.625rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.new-ui-parent .rating-input {
    background: #F2F3F7 !important;
    border: 1.5px solid #E8E9ED !important;
    border-radius: 12px !important;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: left !important;
    padding: 0.75rem !important;
    width: 100%;
    box-sizing: border-box;
    color: #111;
}

.new-ui-parent .rating-input::placeholder {
    color: rgba(0,0,0,0.3);
}

.new-ui-parent .rating-drop-down-container {
    position: relative;
}

.new-ui-parent .rating-input.input-focused ~ .drop-down-arrow {
    transform: rotate(180deg) translateY(50%);
}

.new-ui-parent .drop-down-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: #000;
    stroke-width: 2px;
    opacity: .3;
}

/* Transactions */
.new-ui-parent .txn-body {
    padding: 1.25rem 0.875rem 6rem !important;
    background: #F2F3F7 !important;
}

.new-ui-parent .txn-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 4rem 1rem;
    color: rgba(0,0,0,0.3);
    font-size: 0.875rem;
}

.new-ui-parent .txn-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.new-ui-parent .txn-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #fff;
    border-radius: 16px;
    padding: 0.875rem 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid transparent;
    transition: transform 0.15s;
}

.new-ui-parent .txn-row:active {
    transform: scale(0.98);
}

.new-ui-parent .txn-row.txn-credit {
    border-left-color: #22c55e;
}

.new-ui-parent .txn-row.txn-debit {
    border-left-color: #ef4444;
}

.new-ui-parent .txn-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.new-ui-parent .txn-credit .txn-icon-wrap {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
}

.new-ui-parent .txn-debit .txn-icon-wrap {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

.new-ui-parent .txn-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.new-ui-parent .txn-ref {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-ui-parent .txn-date {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #aaa;
}

.new-ui-parent .txn-amount {
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
}

.new-ui-parent .txn-credit .txn-amount {
    color: #22c55e;
}

.new-ui-parent .txn-debit .txn-amount {
    color: #ef4444;
}

.new-ui-parent .free-token-items-container {
    background: #fff;
    padding: 0.625rem;
    border-radius: 7px;
    box-shadow: 0px 4px 14px 0px #0000000D;
    margin-bottom: 0.625rem;
}

.new-ui-parent .free-token-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-ui-parent .free-token-title {
    font-weight: 800;
    font-size: 1rem;
    line-height: 0.875rem;
    margin: 0;
}

.new-ui-parent .free-token-cycle {
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 0.875rem;
}

.new-ui-parent .free-token-disc {
    font-weight: 200;
    font-size: 0.75rem;
    line-height: 0.875rem;
    font-style: italic;
    color: rgba(0,0,0,.6);
    margin-bottom: 0.5rem !important;
}

.new-ui-parent .free-token-count-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6.8px;
}

.new-ui-parent .free-token-count {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: rgba(1, 1, 1, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
}

.new-ui-parent .free-token-count.marked {
    color: #000;
    /*background-color: var(--primary-yellow);*/
}


.new-ui-parent .progress-text {
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 0.875rem;
}

.new-ui-parent .progress  {
    width: 100%;
    background: rgb(230, 230, 230);
    border-radius: 20px;
    height: 23px;
    position: relative;
}

.new-ui-parent .progress  .progress-bar {
    width: 70%;
    position: absolute;
    right: 0;
    top: 0;
    background: rgb(249, 181, 25);
    border-radius: 20px;
    padding: 0 0.9375rem;
    min-width: fit-content;
}

.free-token-no-items-text {
    font-weight: 200 !important;
    font-size: 1rem;
    line-height: 1.125rem;
    text-align: center;
}

/* About page */
.new-ui-parent.about-page {
    background-color: #000 !important;
    background-image: url('../img/new_ui_images/signup_page.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    position: relative;
}

/* Strong bottom-up gradient so the sheet blends into the image */
.new-ui-parent.about-page::after {
    content: '';
    position: fixed;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none;
}

/* Lighter top vignette */
.new-ui-parent.about-page::before {
    content: '';
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%); */
    pointer-events: none;
}

/* Back button — gold circle over the image */
.new-ui-parent.about-page .about-back {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9B519;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Bottom sheet */
.new-ui-parent.about-page .about-sheet {
  position: relative;
    z-index: 1;
    background: #f4f0e4;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    /* border-radius: 28px 28px 0 0; */
    padding: 0rem 1.25rem 3rem;
    margin-top: auto;
    height: 90vh;
}

.new-ui-parent.about-page .about-sheet-handle {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin: 0 auto 1.25rem;
}

.new-ui-parent.about-page .about-sheet-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.875rem;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-ui-parent.about-page .about-sheet-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-ui-parent.about-page .about-sheet-title {
    font-size: 1.375rem;
    font-weight: 800;
    /* color: #fff; */
    margin: 0 0 0.875rem;
    letter-spacing: -0.01em;
}

.new-ui-parent .about-content {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.65;
  color: #111 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    text-align: left;
}

.new-ui-parent .policy-content {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.65;
  color: #111 !important;
    margin: 0 !important;
    /* padding: 0 !important; */
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    text-align: left;
    overflow: auto;
    height: 100vh;
}

/* QR Code page */
.new-ui-parent .qr-page-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 56px);
    padding: 1.5rem 1.25rem 5rem;
    background: #F2F3F7;
}

.new-ui-parent .qr-hint {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #888;
    text-align: center;
    margin: 0 0 1.5rem;
    max-width: 220px;
    line-height: 1.5;
}

.new-ui-parent .qr-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    padding: 1.75rem 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
}

.new-ui-parent .qr-user-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.01em;
}

.new-ui-parent .qr-image-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 0.75rem;
    border: 1.5px solid #E8E9ED;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.new-ui-parent .qr-image-wrap img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    image-rendering: pixelated;
}

.new-ui-parent .qr-scanner-label {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.new-ui-parent .qr-expiry {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: #888;
}

.new-ui-parent .qr-expiry strong {
    color: #111;
    font-weight: 700;
}

.new-ui-parent .qr-refresh-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: #111;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
}

.new-ui-parent .qr-refresh-btn:active {
    opacity: 0.8;
    transform: scale(0.97);
}

/* iVeri Payment Popup */
.iveri-payment-popup .iveri-popup-page {
    background: #F2F3F7;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iveri-popup-navbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #111;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.iveri-popup-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #f61b18;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}

.iveri-popup-close:active {
    background: rgba(255,255,255,0.2);
}

.iveri-popup-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.iveri-popup-logos {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.iveri-popup-logos img {
    height: 20px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.iveri-popup-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.iveri-iframe-wrap {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Top-up Wallet page */
.topup-page-wrap {
    background: #F2F3F7;
    min-height: 100vh;
}

.topup-hero {
    background: #111;
    padding: 1.5rem 1.25rem 2.75rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.topup-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: rgba(249,181,25,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.topup-balance-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.topup-balance-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.topup-balance-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.topup-balance-amount {
    font-size: 1.625rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.topup-balance-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    margin: 0 1.25rem;
    flex-shrink: 0;
}

.topup-body {
    background: #F2F3F7;
    border-radius: 1.25rem 1.25rem 0 0;
    margin-top: -1.25rem;
    padding: 1.25rem 1rem 6rem;
    position: relative;
    z-index: 1;
}

.topup-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 1.125rem;
    margin-bottom: 0.875rem;
}

.topup-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.875rem;
}

.topup-amount-pills {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
}

.topup-pill {
    flex: 1;
    text-align: center;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 50px;
    padding: 0.6rem 0;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    user-select: none;
}

.topup-pill:active {
    background: #f61b18;
    color: #000;
    transform: scale(0.96);
}

.topup-pill.active {
    background: #f61b18;
    color: #000;
}

.topup-own-amount {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.topup-own-label {
    font-size: 1rem;
    font-weight: 600;
    color: #111 !important;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    cursor: pointer;
}

.topup-own-label .fa {
    color: #f61b18;
}

.topup-own-input {
    flex: 1;
    border: 1.5px solid #E8E9ED !important;
    border-radius: 10px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111;
    background: #F2F3F7 !important;
    text-align: right;
}

.topup-card-logos {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.topup-card-logos img {
    height: 28px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.topup-card-inputs {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.topup-select {
    flex: 1;
    background: #F2F3F7 !important;
    border: 1.5px solid #E8E9ED !important;
    border-radius: 10px !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #111;
    min-width: 0;
}

.topup-cvv-input {
    width: 72px;
    flex-shrink: 0;
    background: #F2F3F7 !important;
    border: 1.5px solid #E8E9ED !important;
    border-radius: 10px !important;
    padding: 0.5rem 0.625rem !important;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111;
    text-align: center;
}

.topup-remove-btn {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    background: #E53935;
    border-radius: 50px;
    padding: 0.5rem 0.875rem;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.topup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.topup-btn-primary {
    width: 100%;
    background: #E53935;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
}

.topup-btn-primary:active {
    opacity: 0.85;
    transform: scale(0.98);
}

.topup-btn-secondary {
    width: 100%;
    background: #111;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
}

.topup-btn-secondary:active {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Nav */
.new-ui-parent.nav {
    height: fit-content;
    width: 100%;
    position: fixed;
    z-index: 99999;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 430px;
   background: #fff !important;
    /* border-top: 1px solid rgba(255,255,255,0.08); */
        box-shadow: 0 -8px 24px rgb(247 241 241 / 50%);
}

.new-ui-parent.nav .lower-nav {
    height: 56px;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: -1;
    margin: 0 auto;
}

/* .new-ui-parent.nav .lower-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: #111;
    box-shadow: 0px -6px 34px 0px rgba(0, 0, 0, 0.26);
    z-index: -1;
}

.new-ui-parent.nav .lower-nav::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: #111;
    box-shadow: 0px -6px 34px 0px rgba(0, 0, 0, 0.26);
    z-index: -1;
} */

.new-ui-parent.nav .background-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    right: 0;
    margin: 0 auto;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transform: translateY(10px);
}

@media (max-width: 360px) {
    .new-ui-parent.nav .background-img {
        transform: translateY(0);
    }
}

.new-ui-parent.nav .icon-btn {
    font-weight: 200;
    font-size: 0.625rem;
    line-height: 1.0625rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: all;
    color: #111 !important;
    width: 20%;
}

.new-ui-parent.nav .icon-btn.active {
    color: #c13b31 !important;
}

.new-ui-parent.nav .icon {
    opacity: 1;
}

.new-ui-parent.nav .big-btn {
    pointer-events: all;
    font-weight: 600;
    font-size: 0.5625rem;
    line-height: 1.0625rem;
    text-align: center;
    text-transform: uppercase;
    /* background: #febc10; */
    height: 54px;
    width: 54px;
    border-radius: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -0.5rem;
    box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.45);
}

.new-ui-parent.nav .nav-group {
    display: flex;
    gap: 1.75rem;
}

/* Reg */

.new-ui-parent #reg-form .reg-form {
    padding: 1rem 0.9375rem;

}

.new-ui-parent #reg-form .reg-form .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    margin-bottom: 1rem;
}

.new-ui-parent #reg-form .reg-form .header .reg-heading {
    font-weight: 400!important;
    font-size: 1.25rem;
    line-height: 1.0625rem;
    margin: 0;
}

.new-ui-parent #reg-form .reg-form .sub-text {
    font-weight: 200;
    font-size: 0.75rem;
    line-height: 1.5rem;
    color: #000;
}

.new-ui-parent #reg-form .reg-form .header .reg-dropdown-container {
    width: 45%;
    position: relative;
}

.new-ui-parent #reg-form .reg-form .header .reg-dropdown-container .reg-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: #000;
    stroke-width: 1px;
    opacity: 1;
    pointer-events: none;
}

.new-ui-parent #reg-form .reg-form .header .reg-dropdown {
    border: unset;
    width: 100% !important;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.5rem;
    color: #000 !important;
    padding-right: 1.5625rem;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    height: 28px;
}

.new-ui-parent #reg-form .reg-form .header .reg-dropdown.input-focused ~ .reg-icon {
    transform: rotate(180deg) translateY(50%);
}

.new-ui-parent #reg-form .reg-form .reg-personal-details {
    margin-bottom: 1rem;
}

.new-ui-parent #reg-form .reg-form .reg-personal-details .reg-details-heading {
    font-weight: 300;
    font-size: 0.75rem;
    line-height: 1.5rem;
    letter-spacing: 0%;
    color: #000;
    margin: 0 0 0.3125rem;
}
.new-ui-parent #reg-form .reg-form .reg-personal-details .reg-details-heading span {
    color: rgb(208, 0, 0);
}

.new-ui-parent #reg-form .reg-form .reg-personal-details .reg-details-input-fields {
    padding: 0 0.75rem !important;
    height: 36px;
    font-weight: 300 !important;
    font-size: 1rem !important;
    line-height: 1.5rem;
    letter-spacing: 0%;
    color: rgba(51, 51, 51, 0.5) !important;
}

.new-ui-parent #reg-form .reg-form .reg-personal-details .reg-details-input-fields.error {
    outline: rgb(247, 176, 176);
    outline-style: solid;
}

.new-ui-parent #reg-form .reg-form .reg-personal-details .reg-details-input-field-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.new-ui-parent #reg-form .reg-form .reg-personal-details .input-container .icon {
    stroke: rgb(0, 0, 0);
    margin-right: 10px;
}

.new-ui-parent #reg-form .reg-form .terms-and-conditions {
    font-weight: 300;
    font-size: 0.75rem;
    line-height: 1rem;
    text-align: center;
    color: #000;
    margin-bottom: 1rem;
}

.new-ui-parent #reg-form .cta-alternative {
    font-weight: 300;
    font-size: 0.75rem;
    line-height: 1rem;
    text-align: center;
    cursor: pointer;
    color: #000;
    margin-bottom: 1rem;
}

.new-ui-parent #reg-form  .reg-form-btn {
    margin-bottom: 8px;
}

.new-ui-parent .scale-image {
    animation-delay: 10s!important;
    animation: scaleEffect 6s ease-in-out infinite alternate;
}

@keyframes scaleEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* ============================================================
   Function Menu Item page
   ============================================================ */

.fmi-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f4f5f7;
}

/* Hero */
.fmi-hero {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8c000;
    flex-shrink: 0;
}

.fmi-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}

.fmi-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    z-index: 2;
}

.fmi-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(4px);
    color: #fff;
    cursor: pointer;
}

.fmi-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fmi-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fmi-hero-title {
    position: absolute;
    bottom: 1.1rem;
    left: 1.25rem;
    right: 1.25rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 2;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Body */
.fmi-body {
    flex: 1;
    padding: 5.25rem 1rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}
.device-android .fmi-body {
    flex: 1;
    padding: 5.25rem 1rem 5rem !important;
}

/* Notice */
.fmi-notice {
    /* display: flex; */
    align-items: center;
    gap: 0.5rem;
    background: #fffbe6;
    border: 1px solid #f0d55a;
    border-radius: 10px;
    padding: 0.6rem 0.875rem;
    font-size: 0.8125rem;
    color: #7a5c00;
}

.fmi-notice svg {
    flex-shrink: 0;
    stroke: #c49000;
}

/* Card */
.fmi-card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* Field */
.fmi-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fmi-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fmi-required {
    color: #e53935;
}

.fmi-input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 9px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9375rem;
    color: #111;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    /* padding: 1.6rem 0.75rem; */
    padding: 0.6rem 0.75rem !important;
    background: #eee !important;
}

.fmi-input:focus {
    border-color: #f61b18;
    background: #fff;
}

.fmi-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.fmi-textarea {
    min-height: 90px;
    resize: vertical;
}

/* Section title */
.fmi-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    padding: 0.25rem 0.25rem 0;
}

/* Generic accordion-card (Requirements / Options) */
.accordion-card {
       background: #fff;
    border-radius: 14px;
    /* overflow: hidden; */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    /* margin-bottom: 0.5rem; */
    /* height: 200px; */
    height: fit-content;
}

.accordion-card .list {
    margin: 0;
}

.accordion-card .list::before,
.accordion-card .list::after {
    display: none;
}

.accordion-card .accordion-item {
    border: none;
}

.accordion-card .accordion-trigger {
    min-height: 50px;
    background: #f8f8f8;
    border-bottom: 1.5px solid #f0f0f0;
}

.accordion-card .accordion-trigger .item-inner {
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-card .accordion-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111;
}

.accordion-card .choice-row {
    border-bottom: 1px solid #f5f5f5;
}

.accordion-card .choice-row:last-child {
    border-bottom: none;
}

.accordion-card .choice-row .item-title {
    font-size: 0.9rem;
    color: #333;
        text-align: left;
    padding-left: 8px;
}

.accordion-card .qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Accordion card */
.fmi-accordion-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.fmi-accordion-trigger {
    min-height: 48px !important;
}

.fmi-accordion-label {
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: #111 !important;
}

.fmi-choice-row {
    padding: 0.5rem 1rem;
}

/* Qty inline */
.fmi-qty-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fmi-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    color: #666;
}

.fmi-qty-input {
    width: 52px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.2rem 0.4rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Book button */
.fmi-book-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-yellow, #f61b18);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(246,27,24,0.3);
    margin-top: 0.5rem;
}

/* ---- function-order action buttons ---- */
.fo-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.fo-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 0.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.fo-btn-cancel {
    background: #fff0f0;
    color: #b91c1c;
    border: 1.5px solid #e8b4b4;
}

.fo-btn-cancel svg {
    stroke: #b91c1c;
}

.fo-btn-update {
    background: var(--primary-yellow, #f61b18);
    color: #fff;
    box-shadow: 0 4px 14px rgba(246,27,24,0.25);
}

.fo-btn-update svg {
    stroke: #fff;
}

/* ════════════════════════════════════════════
   Homepage redesign — canteen app 2026
════════════════════════════════════════════ */

.new-ui-parent.dark-bg {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Top bar */
.new-ui-parent.dark-bg .hp-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.125rem 0.75rem;
    flex-shrink: 0;
    background: #111;
}

.new-ui-parent.dark-bg .hp-date {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.new-ui-parent.dark-bg .hp-greeting {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.new-ui-parent.about-page::before, .new-ui-parent.about-page, .new-ui-parent.dark-bg, .new-ui-parent.no-positioning{
    background: #f4f0e4 !important;
    background-color: #f4f0e4 !important;
}

.new-ui-parent.dark-bg .hp-notif-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.3rem;
    cursor: pointer;
}

.new-ui-parent.dark-bg .hp-notif-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    opacity: 1;
}

.new-ui-parent.dark-bg .hp-notif-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    /* border: 1.5px solid #111; */
}

/* Scrollable body */
.new-ui-parent.dark-bg .hp-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    padding: 0 1rem;
}

/* Hero card */
.new-ui-parent.dark-bg .hp-hero {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 1.25rem;
    background: #222;
}

.new-ui-parent.dark-bg .hp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: hp-hero-sway 8s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes hp-hero-sway {
    0%   { transform: scale(1.06) translateX(0); }
    25%  { transform: scale(1.06) translateX(-3%); }
    75%  { transform: scale(1.06) translateX(3%); }
    100% { transform: scale(1.06) translateX(0); }
}

.new-ui-parent.dark-bg .hp-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.78) 100%);
    padding: 0.875rem;
}

.new-ui-parent.dark-bg .hp-hero-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-ui-parent.dark-bg .hp-badge-open {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.04em;
}

.new-ui-parent.dark-bg .hp-open-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.new-ui-parent.dark-bg .hp-badge-pickup {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

.new-ui-parent.dark-bg .hp-hero-bottom-row {
    display: flex;
    flex-direction: column;
}

.new-ui-parent.dark-bg .hp-hero-sub {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 0.3rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.new-ui-parent.dark-bg .hp-hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.875rem;
    line-height: 1.15;
}

.new-ui-parent.dark-bg .hp-hero-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.new-ui-parent.dark-bg .hp-hero-cta a.hp-btn-order {
    margin-left: auto;
}

.new-ui-parent.dark-bg .hp-btn-order {
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
        width: auto !important;
    font-size: x-small !important;
}

.new-ui-parent.dark-bg .hp-link-preorder {
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 400;
    opacity: 0.85;
    text-decoration: none;
    white-space: nowrap;
}

/* Section layout */
.new-ui-parent.dark-bg .hp-section {
    margin-bottom: 1.25rem;
}

.new-ui-parent.dark-bg .hp-section-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
}

.new-ui-parent.dark-bg .hp-section-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    /* color: rgba(28, 28, 28, 0.45) !important; */
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.new-ui-parent.dark-bg .hp-section-see {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
    text-decoration: none;
}

/* Wallet cards */
.new-ui-parent.dark-bg .hp-wallets {
    display: flex;
    gap: 0.75rem;
}

.new-ui-parent.dark-bg .hp-wallet {
    flex: 1;
    background: #1c1c1e;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    min-width: 0;
    border: 1.5px solid rgba(255,255,255,0.06);
}

.new-ui-parent.dark-bg .hp-wallet.hp-wallet-sub {
    border: 1.5px solid rgba(34,197,94,0.35);
    box-shadow: 0 0 18px rgba(34,197,94,0.1);
}

.new-ui-parent.dark-bg .hp-wt-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.new-ui-parent.dark-bg .hp-wt-icon {
    width: 11px !important;
    height: 11px !important;
    stroke: rgba(255,255,255,0.4) !important;
    opacity: 1 !important;
    display: inline-block !important;
    vertical-align: middle;
}

.new-ui-parent.dark-bg .hp-wt-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.new-ui-parent.dark-bg .hp-wt-sub {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

/* Service cards */
.new-ui-parent.dark-bg .hp-services {
    display: flex;
    gap: 0.75rem;
}

.new-ui-parent.dark-bg .hp-svc-card {
    flex: 1;
    background: #1c1c1e;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    min-width: 0;
    border: 1.5px solid rgba(255,255,255,0.06);
}

.new-ui-parent.dark-bg .hp-svc-icon {
    width: 22px !important;
    height: 22px !important;
    stroke: rgba(255,255,255,0.65) !important;
    flex-shrink: 0;
    opacity: 1 !important;
}

.new-ui-parent.dark-bg .hp-svc-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.new-ui-parent.dark-bg .hp-svc-sub {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
}

/* Category list — hp-services style */
.new-ui-parent.dark-bg .hp-cat-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.new-ui-parent.dark-bg .hp-cat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    background: #1c1c1e;
    border-radius: 1rem;
    padding: 0.6rem 0.85rem 0.6rem 0.6rem;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.06);
    min-width: 0;
    padding: 0px;
    height: 80px;
}
#coupon_number{
    margin-right: 8px !important;
    padding: 5px !important;
}
.new-ui-parent.dark-bg .hp-cat-img {
    width: 120px;
    height: 80px;
    border-radius: 0.6rem 0rem 0px 0.6rem;
    object-fit: cover;

    flex-shrink: 0;
}

.new-ui-parent.dark-bg .hp-cat-name {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-ui-parent.dark-bg .hp-cat-arrow {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,0.3);
    flex-shrink: 0;
    opacity: 1 !important;
    display: block;
}

/* ════════════════════════════════════════════
   Merchant picker — canteen app 2026
════════════════════════════════════════════ */

/* Top bar */
.new-ui-parent .mc-topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #111;
    position: sticky;
    top: 0;
    z-index: 10;
}

.new-ui-parent .mc-back-btn {
    /* background: rgba(255,255,255,0.1); */
    border: none;
    border-radius: 50%;
    /* width: 38px;
    height: 38px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.new-ui-parent .mc-back-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    opacity: 1;
}

.new-ui-parent .mc-topbar-eyebrow {
    font-size: 0.6rem;
    font-weight: 600;
    /* color: rgba(255,255,255,0.4); */
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.new-ui-parent .mc-topbar-title {
    font-size: 0.9375rem;
    font-weight: 700;
    /* color: #fff; */
    line-height: 1.2;
}

.new-ui-parent .mc-topbar-logo {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.new-ui-parent .mc-topbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Body */
.new-ui-parent .mc-body {
    background: #f2f3f7;
    min-height: 100vh;
    padding: 0 !important;
}

/* Greeting */
.new-ui-parent .mc-greeting {
    background: #111;
    padding: 0.5rem 1rem 2rem;
}

.new-ui-parent .mc-greeting-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.3rem;
}

.new-ui-parent .mc-greeting-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.new-ui-parent .mc-greeting-main span {
    color: #f97316;
}

/* Section label */
.new-ui-parent .mc-section-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0;
    padding: 1rem 1rem 0.5rem;
}

/* Merchant list */
.new-ui-parent .mc-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 0 0.875rem;
}

/* Individual merchant card */
.new-ui-parent .mc-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #fff;
    border-radius: 1.125rem;
    padding: 0.1rem 0.1rem 0.1rem 0.1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    overflow: hidden;
}

.new-ui-parent .mc-item:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Logo / initial avatar */
.new-ui-parent .mc-logo {
        width: 82px;
    height: 82px;
    /* border-radius: 14px; */
    /* background: #f0f0f0; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-right: solid thin #ddd !important;
    padding-right: 2px;
}

.new-ui-parent .mc-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-ui-parent .mc-logo-initial {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
    text-transform: uppercase;
}

/* Info block */
.new-ui-parent .mc-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.new-ui-parent .mc-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Open / closed status */
.new-ui-parent .mc-status {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 500;
}

.new-ui-parent .mc-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.new-ui-parent .mc-open {
    color: #16a34a;
}

.new-ui-parent .mc-open .mc-status-dot {
    background: #22c55e;
}

.new-ui-parent .mc-closed {
    color: #9ca3af;
}

.new-ui-parent .mc-closed .mc-status-dot {
    background: #d1d5db;
}

/* Feature chips */
.new-ui-parent .mc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.new-ui-parent .mc-chip {
    font-size: 0.575rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.new-ui-parent .mc-chip-primary {
    background: #fff7ed;
    color: #ea580c;
}

.new-ui-parent .mc-chip-secondary {
    background: #f0fdf4;
    color: #16a34a;
}

.new-ui-parent .mc-chip-type {
    background: #f1f5f9;
    color: #64748b;
    text-transform: capitalize;
}

/* Arrow */
.new-ui-parent .mc-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border-radius: 50%;
}

.new-ui-parent .mc-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #888;
    opacity: 1;
}

/* ════════════════════════════════════════════
   Side panel / drawer — canteen app 2026
════════════════════════════════════════════ */

.sp-panel {
    background: #f4f0e4 !important;
    color: #000 !important;
    width: 82vw !important;
    max-width: 320px !important;
}

.sp-page {
    background: #f4f0e4 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ── User header ── */
.sp-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 3rem 1.25rem 1.25rem;
    background: linear-gradient(160deg, #e8e3d5 0%, #f4f0e4 100%);
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.sp-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0,0,0,0.15);
    background: #ddd8c8;
}

.sp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-user-info {
    flex: 1;
    min-width: 0;
}

.sp-user-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.sp-user-site {
    font-size: 0.6875rem;
    color: rgba(0,0,0,0.45);
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-edit-icon {
    flex-shrink: 0;
    opacity: 0.35;
}

.sp-edit-icon svg {
    width: 16px;
    height: 16px;
    stroke: #000;
    opacity: 1;
}

/* ── Scrollable nav area ── */
.sp-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1rem !important;
    /* background: #f4f0e4 !important; */
}

/* Section labels */
.sp-section-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 1rem 1.25rem 0.35rem;
}

/* Nav item */
.sp-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
    padding: 0.75rem 1.25rem !important;
    color: rgba(0,0,0,0.85) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.15s ease;
    position: relative;
    min-height: unset !important;
}

.sp-item:active {
    background: rgba(0,0,0,0.06) !important;
}

.sp-item::after {
    display: none !important;
}

/* Icon bubble */
.sp-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(0,0,0,0.65);
}

.sp-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    opacity: 1;
}

/* Label text */
.sp-label {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0,0,0,0.85);
    line-height: 1;
}

/* Unread / count badge */
.sp-badge {
    background: #f97316;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.35rem;
    flex-shrink: 0;
}

/* Chevron arrow */
.sp-chevron {
    width: 14px !important;
    height: 14px !important;
    color: rgba(0,0,0,0.25) !important;
    flex-shrink: 0;
    opacity: 1 !important;
}

.sp-chevron svg {
    stroke: currentColor;
    fill: none;
}

/* Logout item */
.sp-logout {
    margin: 0.75rem 1.25rem 0 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 12px !important;
    background: rgba(239,68,68,0.1) !important;
}

.sp-logout .sp-icon {
    background: rgba(239,68,68,0.15);
}

.sp-logout .sp-icon svg {
    stroke: #f87171;
}

.sp-logout .sp-label {
    color: #f87171;
}

.sp-logout:active {
    background: rgba(239,68,68,0.18) !important;
}

/* Footer */
.sp-footer {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.sp-footer-logo {
    width: 60px;
    /* opacity: 0.5; */
    display: block;
    margin: 0 auto 0.4rem;
}

.sp-footer-text {
    font-size: 0.6rem;
   color: rgb(0 0 0);
    letter-spacing: 0.04em;
}

.sp-version {
    font-size: 0.575rem;
    color: rgba(0,0,0,0.25);
    margin-top: 0.25rem;
}

/* ════════════════════════════════════════════
   Primary Categories Page
════════════════════════════════════════════ */

.pcat-page {
    background: #f4f0e4 !important;
}

/* Navbar */
.pcat-navbar {
    background: #f4f0e4 !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
}

.pcat-back {
    color: #000 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pcat-back svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    fill: none;
}

.pcat-title {
    color: #000 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

.pcat-logo {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.1);
}

.pcat-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page content */
.pcat-content {
    background: #f4f0e4 !important;
    padding: 0 !important;
}

/* Heading */
.pcat-heading {
    padding: 20px 16px 12px;
}

.pcat-heading-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pcat-heading-sub {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.4);
    margin: 0;
    font-weight: 500;
}

/* Grid */
.pcat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 4px 16px 32px;
}

/* Card */
.pcat-card {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 14px rgba(0,0,0,0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.pcat-card:active {
    transform: scale(0.96);
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

/* Image area */
.pcat-img {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #ddd8c8;
}

/* Gradient overlay */
.pcat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pcat-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.pcat-limit {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.pcat-limit-type {
    font-weight: 400;
    opacity: 0.75;
}

/* Loyalty subnavbar */
.ly-subnavbar {
    background: #f4f0e4 !important;
    height: auto !important;
    padding: 8px 16px 10px !important;
}

.ly-subnavbar .subnavbar-inner {
    padding: 0 !important;
    height: auto !important;
}


/* ════════════════════════════════════════════
   Point history table
════════════════════════════════════════════ */

/* Container */
.loyalty-info .data-table {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 0;
    padding: 0 !important;
}

/* Reset Framework7 padding-top on table */
.loyalty-info .point-history {
    width: 100%;
    border-collapse: collapse;
    padding-top: 0 !important;
}

/* Header row */
.loyalty-info .point-history tr:first-child th,
.loyalty-info .point-history thead th {
    background: #f4f0e4;
    padding: 10px 14px !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.4) !important;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    white-space: nowrap;
}

/* Data rows */
.loyalty-info .point-history td {
    padding: 11px 14px !important;
    font-size: 0.85rem !important;
    color: #222 !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
    vertical-align: middle;
}

/* Alternating rows */
.loyalty-info .point-history tr:nth-child(even) td {
    background: rgba(0,0,0,0.015);
}

/* Description cell */
.loyalty-info .point-history td.label-cell {
    text-align: left !important;
    font-weight: 500;
    color: #333 !important;
    padding-right: 8px !important;
}

/* Points cell */
.loyalty-info .point-history td.numeric-cell {
    text-align: right !important;
    white-space: nowrap;
}

.loyalty-info .point-history td.numeric-cell b {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    color: #111;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

/* Empty state */
.loyalty-info .point-history td[colspan] {
    text-align: center !important;
    padding: 28px 14px !important;
    color: rgba(0,0,0,0.35) !important;
    font-size: 0.85rem !important;
    font-style: italic;
}
