 /* ================= RESET ================= */
 * {
     box-sizing: border-box;
 }

 body {
     margin: 0;
     font-family: 'Inter', 'Segoe UI', sans-serif;
     font-size: 13px;
 }

 .btn {
     margin: 0;
     padding: 0;
 }

 .btn:focus {
     outline: none !important;
     background: rgba(255, 255, 255, .35) !;
     box-shadow: 0 0 0 2px rgba(255, 255, 255, .3);
 }

 button:active,
 .btn:active {
     transform: scale(0.97);
 }

 .ui-logo-image {
     width: 100px;
 }

 ::placeholder {
     color: black;
 }

 button:focus {
     outline: none !important;
     transform: scale(0.9);


 }
.fa-arrow-left{
    cursor: pointer;
}
 .glass-card {
     background: linear-gradient(to left, rgb(255 255 255 / 31%), rgb(0 0 0));
    backdrop-filter: blur(18px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.432);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

}
.form-control:focus{
    border: none;
    box-shadow: none;
}





 .btn-grad {
     background-image: linear-gradient(135deg,
             #FF8008 0%,
             #FFC837 50%,
             #FF8008 100%);
     background-size: 200% auto;

     padding: 12px 36px;
     border-radius: 12px;
     border: none;

     color: #fff;
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 0.5px;
     text-transform: uppercase;

     cursor: pointer;
     transition: all 0.4s ease;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .btn-grad:hover {
     background-position: right center;
     transform: translateY(-2px);
     box-shadow: 0 14px 30px rgba(255, 160, 0, 0.45);
     color: #fff;
     text-decoration: none;
 }

 .btn-grad:active {
     transform: translateY(0);
     box-shadow: 0 8px 18px rgba(255, 160, 0, 0.35);
 }

 .btn-grad.sm {
     padding: 8px 22px;
     font-size: 12px;
     border-radius: 10px;
 }

 .btn-grad.block {
     width: 100%;
 }


 /* ================= LAYOUT ================= */
 .ui-wrapper {
     min-height: 100vh;
     background: #000000;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .ui-card {
     width: 420px;
     /* max-width: 420px; */
     padding: 45px 38px;
     background: #fdd12c;
     border-radius: 24px;
     text-align: center;
     backdrop-filter: blur(16px);
     box-shadow:
         rgba(0, 0, 0, .25) 0 14px 28px,
         rgba(0, 0, 0, .22) 0 10px 10px;
     max-height: 630px;
     overflow-y: auto;
     /* ✅ vertical scroll */
     overflow-x: hidden;
     /* prevent horizontal scroll */
     scroll-behavior: smooth;
     scrollbar-width: thin;
     scrollbar-color: rgb(255 255 255 / 6%) transparent;
 }

 .ui-card::-webkit-scrollbar {
     width: 6px;
 }

 .ui-card::-webkit-scrollbar-thumb {
     background: rgba(0, 0, 0, 0);
     border-radius: 10px;
 }

 .ui-card::-webkit-scrollbar-track {
     background: transparent;
 }



 /* ================= ICON ================= */
 .ui-icon {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     background: linear-gradient(135deg, #ffffff55, #ffffff22);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
     box-shadow:
         rgba(0, 0, 0, .25) 0 14px 28px,
         rgba(0, 0, 0, .22) 0 10px 10px;
 }

 .ui-icon i {
     font-size: 24px;
     color: #000;
 }

 /* ================= TEXT ================= */
 .ui-title {
     color: #000;
     font-weight: 600;
     margin-bottom: 6px;
 }

 .ui-subtitle {
     color: rgba(0, 0, 0, .8);
     font-size: 14px;
     margin-bottom: 28px;
 }

 .ui-text-white {
     color: #fff;
 }

 /* ================= INPUT ================= */
 .ui-floating {
     position: relative;
     margin-bottom: 16px;
 }

 .ui-input {
     width: 100%;
     height: 52px;
     border-radius: 30px;
     border: none;
     padding: 0 20px;
     background: rgb(0 0 0 / 0%);
     color: #000;
     font-size: 15px;
     box-shadow:
         rgba(0, 0, 0, .25) 0 14px 28px,
         rgba(0, 0, 0, .22) 0 10px 10px;
     margin-bottom: 15px;
     transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;

 }

 .ui-input:focus {
     outline: none;
     background: rgba(255, 255, 255, .35);
     box-shadow: 0 0 0 2px rgba(255, 255, 255, .3);
 }

 .ui-floating label {
     position: absolute;
     top: 25px;
     left: 20px;
     transform: translateY(-50%);
     color: rgba(0, 0, 0, 0.75);
     font-size: 14px;
     pointer-events: none;
     transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
     margin: 0;
 }

 .ui-floating input:focus+label,
 .ui-floating input:not(:placeholder-shown)+label {
     top: 0px;
     font-size: 12px;
     color: rgba(0, 0, 0, 0.9);
 }

 /* ================= BUTTON ================= */
 .ui-btn {
     width: 100%;
     height: 52px;
     border-radius: 30px;
     font-weight: 600;
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: .25s;
     transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;

 }

 .ui-btn:hover {
     transform: translateY(-2px);
     box-shadow:
         rgba(0, 0, 0, .2) 0 8px 16px,
         rgba(0, 0, 0, .15) 0 4px 6px;
 }

 .ui-btn:focus {
     outline: none;
     background: rgba(255, 255, 255, .35);
     box-shadow: 0 0 0 2px rgba(255, 255, 255, .3);
 }

 .ui-btn:disabled {
     opacity: .6;
     cursor: not-allowed;
 }


 .ui-btn-login,
 .ui-btn-otp {
     background: #fff;
     color: #000;
     margin-top: 6px;
     box-shadow:
         rgba(0, 0, 0, .25) 0 14px 28px,
         rgba(0, 0, 0, .22) 0 10px 10px;
 }

 .ui-select-arrow {
     position: absolute;
     right: 18px;
     top: 35%;
     transform: translateY(-50%);
     width: 10px;
     height: 10px;
     border-right: 2px solid #000;
     border-bottom: 2px solid #000;
     transform: translateY(-50%) rotate(45deg);
     pointer-events: none;
     transition: transform 0.2s ease;
 }

 .ui-select {
     position: relative;
     margin-bottom: 15px;
 }

 .ui-select-field {
     -webkit-appearance: none;
     /* Chrome, Safari */
     -moz-appearance: none;
     /* Firefox */
     appearance: none;
     /* Standard */

     background: transparent;
     padding-right: 40px;
     /* space for custom arrow */
 }

 /* =================PROFILE CRAETION SECTION ================= */



 .ui-skip-btn {
     position: absolute;
     top: 30px;
     right: 30px;
     background: none;
     border: none;
     font-size: 14px;
     font-weight: 600;
     color: #000;
     cursor: pointer;
     transition: opacity 0.2s ease;
     box-shadow: rgba(0, 0, 0, .25) 0 14px 28px, rgba(0, 0, 0, .22) 0 10px 10px;
     border-radius: 23px;
     padding: 6px 20px;
 }

 .ui-skip-btn:hover {
     opacity: 0.6;
 }

 .ui-skip-btn:focus {
     outline: none;
     background: rgba(255, 255, 255, .35);
     box-shadow: 0 0 0 2px rgba(255, 255, 255, .3);
 }

 /* Logo box */
 .ui-logo-box {
     text-align: center;
     margin-bottom: 18px;
 }

 .ui-logo-img {
     height: 181px;
     object-fit: contain;
 }

 /* Clickable profile box */
 .ui-profile-clickbox {
     background: black;
     border-radius: 22px;
     padding: 28px;
     text-align: center;
     cursor: pointer;
     box-shadow:
         rgba(0, 0, 0, 0.2) 0 12px 24px,
         rgba(0, 0, 0, 0.15) 0 6px 12px;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .ui-profile-clickbox:hover {
     transform: translateY(-3px);
     box-shadow:
         rgba(0, 0, 0, 0.25) 0 18px 30px,
         rgba(0, 0, 0, 0.18) 0 10px 18px;
 }

 .ui-profile-title {
     font-weight: 600;
     margin-bottom: 6px;
     color: white;
 }

 .ui-profile-subtitle {
     font-size: 14px;
     color: rgba(157, 157, 157, 0.7);
 }






 /* PROFILE PHOTO */
 .ui-profile-photo {
     display: flex;
     justify-content: center;
     margin-bottom: 20px;
 }

 .ui-photo-upload {
     width: 110px;
     height: 110px;
     border-radius: 50%;
     background: #fff;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 13px;
     font-weight: 600;
     box-shadow:
         rgba(0, 0, 0, .25) 0 10px 20px;
     transition: transform .2s ease;
 }

 .ui-photo-upload:hover {
     transform: scale(1.05);
 }

 .ui-photo-upload i {
     font-size: 20px;
     margin-bottom: 6px;
 }

 /* Textarea fix */
 .ui-textarea {
     height: 90px;
     padding-top: 14px;
     resize: none;
 }




 /* ==============navbar============== */

 .primary_color {
     color: black;
 }

 .primary_textcolor {
     color: #ffd12e !important;
 }

 .primary_bgcolor {
     background: linear-gradient(-135deg, #ffd12e 0%, #f9a825 100%);
 }


 .secondary_Textcolor {
     color: white;
 }

 .secondary_bgcolor {
     background-color: #000000;
 }

 .secondary_textcolor {
     color: #000000;
 }

 #navbar {
     position: sticky;
     top: 0;
     z-index: 999;
 }

 #simpleNavbar {
     position: sticky;
     z-index: 999;
     top: 0;
 }

 /* TOP NAV */
 .top-nav {
     /* background: #8b5a2b; */
     /* color: #fff; */
     padding: 14px 16px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 100px;
     padding-top: 60px;
 }

 .location {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 14px;
 }

 .top-icons {
     display: flex;
     gap: 10px;
 }

 .icon-btn {
     background: rgba(255, 255, 255, 0.25);
     border: 1px solid rgb(255 255 255 / 18%);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     color: #fff;
     width: 36px;
     height: 36px;
     border-radius: 100px;
     cursor: pointer;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     transition: all 0.25s ease;
 }

 .icon-btn:hover {
     background: rgba(255, 255, 255, 0.35);
     transform: translateY(-1px);
 }

 .icon-btn:active {
     transform: scale(0.95);
 }

 /* SEARCH */
 .searchBarDiv {
     border-radius: 0 0 35px 35px;
     /* padding: 12px 12px 13px; */

 }

 .search-wrapper {
     padding: 12px 12px 13px;
     display: flex;
     gap: 10px;
     border-radius: 0 0 35px 35px;
 }

 .search-box {
     flex: 1;
     /* background: #fff; */
     border-radius: 35px;
     display: flex;
     align-items: center;
     padding: 0 10px;
 }

 .search-box input {
     border: none;
     outline: none;
     flex: 1;
     padding: 12px;
     border-radius: 100px;
     background: transparent;
 }

 .search-logo {
     height: 42px;
     object-fit: contain;
     margin-right: 6px;
 }

 .search-box i {
     color: #999;
     font-size: 14px;
 }

 .user-btn {
     padding: 0;
     background-color: transparent;
 }

 .user-btn img {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     object-fit: cover;
 }


 /* CONTENT */
 .content {
     min-height: 60vh;
     margin-bottom: 100px;
 }

 /* BOTTOM NAV */
 .bottom-nav {
     position: fixed;
     bottom: 14px;
     left: 50%;
     transform: translateX(-50%);
     width: calc(100% - 24px);
     max-width: 457px;
     -webkit-backdrop-filter: blur(16px);
     display: flex;
     justify-content: space-between;
     padding: 10px 22px;
     z-index: 999;
     background: rgb(255 255 255 / 34%);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-radius: 18px;
     border: 1px solid rgb(255 255 255 / 19%);
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 }

 /* @media (max-width: 768px) {
     .bottom-nav {
    
    width:444px !important; }} */

 .bottom-nav a {
     text-decoration: none;
 }

 /* NAV ITEM */
 .nav-item {
     flex: 1;
     text-align: center;
     text-decoration: none;
     position: relative;
     transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
 }

 /* ICON */
 .nav-item i,
 .nav-item img {
     font-size: 25px;
     width: 45px;
     height: 45px;
     object-fit: cover;
     border-radius: 50%;
     transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
 }


 /* LABEL */
 .nav-item span {
     display: block;
     font-size: 11px;
     margin-bottom: 5px;
     transform: translateY(6px);
     transition: opacity 0.35s ease, transform 0.45s cubic-bezier(.22, 1, .36, 1);
     color: #000;
     text-decoration: none;
 }

 /* HOVER */
 .nav-item:hover i,
 .nav-item:hover img {
     transform: translateY(-6px) scale(1.12);
     background-color: #fdd12c;
     color: black;
     padding: 8px;
     border-radius: 50%;
     box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
 }


 .nav-item:hover span {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.09s;
 }

 /* ACTIVE */
 .nav-item.active i {
     transform: translateY(-8px) scale(1.2);
     background: #fdd12c;
     padding: 10px;
     border-radius: 50%;
     box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
 }

 .nav-item.active span {
       opacity: 1;
    transform: translateY(0);
    margin-top: 7px;
    font-size: 11px;
    font-weight: bold;
 }

 /* SOFT RIPPLE */
 .nav-item::before {
     content: "";
     position: absolute;
     inset: -6px;
     border-radius: 16px;

     opacity: 0;
     transition: opacity 0.10s ease;
 }

 .nav-item:hover::before {
     opacity: 1;
 }

 /* MOBILE FIX */


 /* MOBILE FIX */




 .modules {
     color: #fff;
     background: linear-gradient(to left, rgb(255 255 255 / 31%), rgb(0 0 0));
     border: 1px solid #cccccc7a;
     border-radius: 18px;
 }



 /* ================= DEAL STATUS TABS ================= */

 .deal-tabs {
     display: flex;
     background: #f1f3f500;
     /* border-radius: 14px; */
     padding: 6px;
     width: 100%;
     justify-content: space-evenly;
     border-bottom: 1px solid #73737363;
 }

 .deal-tab {
     background: transparent;
     padding: 8px 30px;
     font-size: 14px;
     font-weight: 600;
     color: #d3d3d3;
     border-radius: 10px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.25s ease;
     border: 1px solid #96969600;

 }

 .deal-tab .count {
     background: #dee2e6;
     color: #495057;
     font-size: 12px;
     padding: 2px 8px;
     border-radius: 20px;
 }

 .deal-tab:hover {
     background-color: #f9a825;
     color: black;
 }

 .deal-tab.active {
     background: linear-gradient(to left, rgb(255 255 255 / 31%), rgb(0 0 0));
     border: 1px solid #969696;
     color: #fdc02a;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
     outline: none;
     border-bottom: 1px solid #fdc02a;

 }

 .deal-tab.focus {
     outline: none;
 }

 .deal-tab.active .count {
     background: #fdc02a;
     color: #ffffff;

 }

 /* Mobile */
 @media (max-width: 576px) {
     .deal-tabs {
         width: 100%;
         justify-content: space-between;
         padding: 8px;
     }

     .deal-tab {
         flex: 1;
         justify-content: center;
     }
 }

 /* ================= DEAL CARD ================= */

 .deal-card {
       padding: 16px;
    margin-bottom: 16px;
    max-width: 100%;
    border: 1px solid #ccccccad !important;
 }

 .deal-card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
 }

 .deal-title {
     font-size: 15px;
     font-weight: 600;
     margin: 0;
     color: #ffffff;
 }

 .deal-status {
     font-size: 12px;
     font-weight: 600;
     padding: 4px 10px;
     border-radius: 20px;
 }

 .deal-status.closed {
     background: #ffffff;
     color: #0d6efd;
 }

 .deal-status.active {
     background: #e6f4ea;
     color: #198754;
 }

 .deal-status.failed {
     background: #fdecea;
     color: #dc3545;
 }
.deal-status.Future {
     background: #f7f7f7;
     color: #000000;
 }
 .deal-card-body {
     display: flex;
     justify-content: space-between;
     gap: 16px;
 }

 .deal-date span {
     font-size: 12px;
     color: #b5b5b5;
     display: block;
 }

 .deal-date strong {
     font-size: 14px;
     color: #ffffff;
 }

 /* Mobile */
 @media (max-width: 576px) {
     .deal-card {
         max-width: 100%;
     }
 }




 /* ================= RIGHT SIDE PANEL ================= */

 .deal-side-panel {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    height: 100vh;
    transition: right 0.3s ease;
    z-index: 999;
    padding: 16px;

 }

 .deal-side-panel.open {
     right: 0;
 }

 .panel-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid #dee2e6;
     padding-bottom: 10px;
     margin-bottom: 16px;
 }

 .panel-header h6 {
     margin: 0;
     font-weight: 600;
 }

 #closePanel {
     border: none;
     background: none;
     font-size: 22px;
     cursor: pointer;
     /* color: #f9a825; */
 }

 .panel-body {
     display: grid;
     gap: 16px;
 }

 .panel-item span {
     font-size: 15px;
 }

 .panel-item strong {
     display: block;
     font-size: 18px;
     color: #ffffff;
 }

 .deal-details-btn {
     padding: 8px 30px;
     color: #fdc02a;
     transition: all 0.25s ease;

 }


 /* Mobile */
 @media (max-width: 576px) {
     .deal-side-panel {
         width: 50%;
     }
 }

/* Modal dialog sizing */
#addDealModal .modal-dialog {
    max-height: 600px;
}

/* Update this section in your style.css */
#addDealModal .modal-content {
    max-height: 90vh; /* Use viewport height for better responsiveness */
    overflow: visible; /* CRITICAL: Must be visible for absolute dropdowns to show */
    display: flex;
    flex-direction: column;
}

#addDealModal .modal-body {
    max-height: 60vh; 
    overflow-y: auto; /* Keep the scroll here */
    overflow-x: visible; /* Allow the dropdown to pop out horizontally if needed */
    position: relative;
    padding-bottom: 20px; /* Space for the last input */
}
#addDealModal .modal-body::-webkit-scrollbar {
    display: none;
}


.custom-dropdown {
    position: relative;
    padding: 12px;
    cursor: pointer;
}

.dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: white; /* Pure white or solid color helps click detection */
    border-radius: 12px;
    max-height: 0;
    overflow-y: auto; /* Allow scrolling inside the menu if many options */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 99999; /* Ensure it is above the modal footer */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown-menu-custom.show {
        display: block;
    max-height: 250px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* Re-enable clicks */
}


.modal-body::-webkit-scrollbar {
    display: none;                /* Chrome / Safari */
}
.dropdown-menu-custom label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #000000;
}

.dropdown-menu-custom input {
    accent-color: #4da3ff;
}
.form-group {
    transition: margin-bottom 0.45s cubic-bezier(.4,0,.2,1);
}

.form-group.has-open-dropdown {
    margin-bottom: 200px;
}




.gift-logo {
      width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff00;
    padding: 3px;
}


.sharebtn:focus{
 background: transparent !important;
    box-shadow: none !important;
}
 .sharebtn{
    font-size: 20px;
 }  


/* simple modal overlay for Gift Card edit */
.gift-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gift-modal-content {
    max-width: 450px;
    width: 100%;
    position: relative;
    margin: 10px;
}

.gift-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}
.gift-edit-btn:focus{
 background: transparent !important;
    box-shadow: none !important;
}

/* ===== GIFT EDIT MODAL TRANSITION ===== */

.gift-modal-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.gift-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.gift-modal-content {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(.22,1,.36,1),
        opacity 0.35s ease;
}

.gift-modal-overlay.active .gift-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* Modal dialog sizing */
#editGiftModal .modal-dialog,
#editGiftModal .gift-modal-content {
    max-height: 600px ;
}

/* Modal content glass + height control */
#editGiftModal .gift-modal-content {
    overflow: hidden; max-height: calc(600px - 120px); /* header + footer */
    overflow-y: auto;

    /* hide scrollbar */
    scrollbar-width: none;
}

/* 
#editGiftModal .modal-body::-webkit-scrollbar {
    display: none;
} */
.launch-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.launch-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.launch-modal-overlay.fade-out {
    opacity: 0;
}


/* Modal content */
.launch-modal-content {
    max-width: 500px;
    width: 100%;
    position: relative;
    margin: 10px;

  transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(.22,1,.36,1),
        opacity 0.35s ease;

}

.launch-modal-overlay.active .launch-modal-content {
     transform: translateY(0) scale(1);
    opacity: 1;
}

/* Close button */
.launch-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Button focus reset */
.launch-edit-btn:focus {
    background: transparent !important;
    box-shadow: none !important;
}

/* Modal dialog sizing */
#editLaunchModal .launch-modal-content {
    max-height: 600px;
    overflow: hidden;
    overflow-y: auto;

    /* hide scrollbar for Firefox */
    scrollbar-width: none;
}

/* Optional: hide scrollbar for Webkit browsers */
#editLaunchModal .launch-modal-content::-webkit-scrollbar {
    display: none;
}



/* ===== CARD upgarde.html ===== */

/*  */
.upg-card {
    padding: 32px 26px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.upg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,.45);
}

.upg-featured {
    position: relative;
    border-radius: 20px;

    background:
       linear-gradient(#ffc71866, #0d0d14) padding-box, linear-gradient(135deg, #FF8008 0%, #FFC837 50%, #FF8008 100%) border-box;

    border: 2px solid transparent;
}

/* BADGE */
.upg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background:linear-gradient(135deg,
             #FF8008 0%,
             #FFC837 50%,
             #FF8008 100%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;color: black;
}

/* TEXT */
.upg-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.upg-price {
    font-size: 2.3rem;
    font-weight: 600;
    margin: 12px 0;
}

.upg-price span {
    font-size: .9rem;
    color: #bbb;
}

.upg-sub {
    font-size: .95rem;
    color: #aaa;
}

/* FEATURES */
.upg-features {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.upg-features li {
    margin-bottom: 10px;
    font-size: .95rem;
}

.upg-features i {
    color: #00e676;
    margin-right: 8px;
}

.upg-disabled {
    color: #777;
}

.upg-disabled i {
    color: #ff5252;
}



 /* ==============CustomerInteraction.html============== */
  .scroll-body-card {
        max-height: 320px;
        /* adjust as needed */
        overflow-y: auto;
    }

    /* Hide scrollbar – Chrome, Edge, Safari */
    .scroll-body-card::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    /* Hide scrollbar – Firefox */
    .scroll-body-card {
        scrollbar-width: none;
    }

    /* Hide scrollbar – IE / old Edge */
    .scroll-body-card {
        -ms-overflow-style: none;
    }




 /* ==============user-rofile.html============== */

 .profile-page {
     padding: 0;
     color: #fff;
 }

 .glass {
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(12px);
     border-radius: 18px;
     border: 1px solid rgb(255 255 255 / 19%);
     margin-bottom: 10px;
 }

 .profile-hero {
     text-align: center;
     padding: 35px;
     position: relative;

     /* glass gradient */
     background: black;
     backdrop-filter: blur(18px);
     -webkit-backdrop-filter: blur(18px);

     border-radius: 22px;
     /* border: 1px solid rgba(255, 255, 255, 0.25); */
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     padding-bottom: 95px;
 }

 /* 
        .profile-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 22px;
            background: linear-gradient(120deg,
                    rgba(255, 255, 255, 0.4),
                    transparent 60%);
            pointer-events: none;
        } */

 .edit-profile-top {
     /* position: absolute;
            top: 16px;
            right: 16px;
            font-size: 13px; */
            font-size: 15px;
     cursor: pointer;
     padding: 8px;
     border-radius: 50%;
     transition: background 0.2s ease, transform 0.2s ease;
 }

 .edit-profile-top:hover {
     background: rgba(0, 0, 0, 0.08);
     transform: scale(1.5);
 }

 /* Freeze background when modal is open */
 .sdk-edit-modal,
 .bank-modal {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
     z-index: 1000;
 }

 .sdk-no-scroll {
     overflow: hidden;
 }


 .sdk-edit-modal {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.655);
     display: flex;
     align-items: flex-end;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.25s ease;
     z-index: 999;
 }

 .sdk-edit-modal.is-visible {
     opacity: 1;
     pointer-events: auto;
 }

 .sdk-edit-modal__content {
     max-width: 500px;
     width: 100%;
     padding: 20px;
     margin: 0 auto;
     border-radius: 22px 22px 0 0;
     transform: translateY(100%);
     transition: transform 0.3s ease;
 }

 .sdk-edit-modal.is-visible .sdk-edit-modal__content {
     transform: translateY(0);
 }

 .sdk-edit-modal__header {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .sdk-edit-modal__close {
     cursor: pointer;
     font-size: 18px;
 }

 .sdk-edit-modal__body label {
     display: block;
     margin-top: 14px;
     font-size: 13px;
     opacity: 0.7;
 }

 .sdk-edit-modal__body input {
     width: 100%;
     padding: 10px 12px;
     margin-top: 6px;
     border-radius: 12px;
     border: none;
     outline: none;
 }

 .sdk-edit-modal__footer {
     display: flex;
     gap: 10px;
     margin-top: 22px;
 }

 .profile-avatar {
     position: relative;
     width: 100px;
     margin: auto;
 }

 .profile-avatar img {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     object-fit: cover;
 }

 .premium-badge {
     position: absolute;
     bottom: 0;
     right: 0;
     /* background: gold; */
     border-radius: 50%;
     padding: 4px;

 }

 .profile-actions {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 12px;
 }

 .glass-btn {
     background: rgba(255, 255, 255, 0.15);
     border: none;
     padding: 8px 16px;
     color: #fff;
     border-radius: 14px;
 }

 .coloredDiv {
     padding: 25px;
     background: linear-gradient(135deg,
             rgba(255, 255, 255, 0.35),
             rgba(255, 255, 255, 0.08));
     position: relative;
     top: -56px;
     border-radius: 40px;
 }


 .profile-strip {
     display: flex;
     overflow-x: auto;
     gap: 10px;
     margin: 16px 0;
 }

 .strip-item {
     background: rgba(255, 255, 255, 0.12);
     padding: 10px 14px;
     border-radius: 14px;
     white-space: nowrap;
 }

 .chip-group {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
 }

 .chip {
     padding: 6px 14px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.15);
 }



 .premium-btn {
     background: gold;
     color: #000;
     border: none;
     padding: 10px;
     border-radius: 14px;
     width: 100%;
 }

 /* 
        .qr-section {
            text-align: center;
        }

        .qr-img {
            width: 120px;
            margin-bottom: 10px;
        } */

 .toggle-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .back-icon {
     position: absolute;
     left: 16px;
     top: 22px;
     font-size: 18px;
     color: #ffffff;
     cursor: pointer;
     z-index: 1;
 }

 .icon-actions {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin: 12px 0;
 }

 .icon-actions .glass-btn {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .profile-stats {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-top: 10px;
     font-size: 14px;
 }

 .profile-stats div {
     text-align: center;
 }

 .profile-stats span {
     display: block;
     font-size: 13px;
     opacity: 0.7;
 }

 .profile-progress {
     margin-top: 14px;
 }

 .progress-bar {
     width: 20%;
     height: 8px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 10px;
     overflow: hidden;
     margin: 0 auto;
     margin-top: 15px;
 }

 .progress-fill {
     height: 100%;
     width: 0;
     background: linear-gradient(90deg, #ffd700, #ffb300);
     border-radius: 10px;
     font-size: 9px;
     font-weight: 600;
     color: #000;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     padding-right: 6px;
     transition: width 1.4s ease-in-out;
 }



 /* TAB-STYLE SECTION HEADER */
 .section-tab {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: rgba(255, 255, 255, 0.10);
     padding: 14px 16px;
     border-radius: 14px;
     /* margin-bottom: 14px; */
     cursor: pointer;
     backdrop-filter: blur(12px);
     border-radius: 18px;
     border: 1px solid rgb(255 255 255 / 19%);
 }

 .section-tab-left {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .section-tab-icon {
     width: 34px;
     height: 34px;
     /* border-radius: 10px; */
     /* background: rgba(255, 255, 255, 0.18); */
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 15px;
     /* color: #ffd700; */
 }

 .section-tab-title {
     font-size: 15px;
     font-weight: 600;
 }

 .section-tab-arrow {
     opacity: 0.6;
 }

 p i {
     width: 20px;
     margin-right: 8px;
     color: #ccc;
 }



 /* COLLAPSIBLE CONTENT */
 .profile-card .section-content {
     overflow: hidden;
     height: 0;
     opacity: 0;
     transition: height 0.35s ease, opacity 0.25s ease;
     padding: 0 18px;
     /* keep padding constant */
 }

 .profile-card.active .section-content {
     opacity: 1;
     margin-top: 11px;
 }


 /* ROTATE ARROW */
 .profile-card.active .section-tab-arrow {
     transform: rotate(90deg);
     transition: transform 0.3s ease;
 }

 .section-tab-arrow {
     transition: transform 0.3s ease;
 }






 .upgrade-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px;
     margin-bottom: 12px;
 }

 .upgrade-card {
     background: rgba(255, 255, 255, 0.10);
     border-radius: 14px;
     padding: 14px;
     cursor: pointer;
     position: relative;
     border: 1px solid transparent;
     transition: all 0.25s ease;
 }

 .upgrade-card h6 {
     font-weight: 600;
     margin-bottom: 6px;
 }

 .upgrade-card .price {
     font-weight: 700;
     color: gold;
     margin-bottom: 8px;
 }

 .upgrade-card ul {
     padding-left: 0;
     list-style: none;
     font-size: 13px;
     opacity: 0.85;
 }

 .upgrade-card.active {
     border-color: gold;
     background: linear-gradient(135deg, #ffd70066, #000);
     box-shadow: 0 0 0 1px gold;
 }

 .upgrade-card .badge {
     position: absolute;
     top: -8px;
     right: -8px;
     background: gold;
     color: #000;
     font-size: 10px;
     padding: 4px 6px;
     border-radius: 10px;
     font-weight: 600;
 }

 /* Mobile */
 @media (max-width: 576px) {
     .upgrade-cards {
         grid-template-columns: 1fr;
     }
 }


 .bank-card {
     /* background: rgba(255,255,255,0.12); */
     border-radius: 14px;
     padding: 14px;
 }

 .bank-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 10px;
 }

 .bank-header i {
     font-size: 22px;
 }

 .bank-header small {
     display: block;
     font-size: 12px;
     opacity: 0.7;
 }

 .bank-status {
     margin-left: auto;
     font-size: 11px;
     color: #00ff9c;
 }

 .bank-body p {
     font-size: 13px;
     margin-bottom: 4px;
 }

 .bank-actions {
     display: flex;
     justify-content: flex-end;
     gap: 8px;
     margin-top: 8px;
 }

 .glass-btn.sm {
     padding: 6px 10px;
     border-radius: 10px;
 }

 .glass-btn.danger {
     background: rgba(255, 80, 80, 0.25);
 }

 .privacy-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .privacy-text small {
     display: block;
     font-size: 12px;
     opacity: 0.7;
 }

 /* Toggle switch */
 .switch {
     position: relative;
     width: 44px;
     height: 24px;
 }

 .switch input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .slider {
     position: absolute;
     inset: 0;
     background: rgba(255, 255, 255, 0.3);
     border-radius: 34px;
     transition: 0.3s;
 }

 .slider::before {
     content: "";
     position: absolute;
     height: 18px;
     width: 18px;
     left: 3px;
     bottom: 3px;
     background: #fff;
     border-radius: 50%;
     transition: 0.3s;
 }

 input:checked+.slider {
     background: #ffb300;
 }

 input:checked+.slider::before {
     transform: translateX(20px);
 }

 .privacy-hint {
     font-size: 13px;
     opacity: 0.8;
     margin-top: 8px;
 }


 /* Modal overlay */
 /* Modal overlay */
 .bank-modal {
     position: fixed;
     inset: 0;
     background: rgb(0 0 0 / 78%);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.25s ease, visibility 0.25s ease;
     z-index: 999;
 }

 /* Active state */
 .bank-modal.active {
     opacity: 1;
     visibility: visible;
 }

 /* Modal box animation */
 .bank-modal-content {
     width: 320px;
     padding: 20px;
     border-radius: 16px;
     transform: scale(0.92);
     transition: transform 0.25s ease;
 }

 /* Scale in */
 .bank-modal.active .bank-modal-content {
     transform: scale(1);
 }

 /* Inputs */
 .bank-modal-content input {
     width: 100%;
     padding: 10px;
     margin-top: 10px;
     border-radius: 10px;
     border: none;
     outline: none;
 }

 /* Buttons */
 .modal-actions {
     display: flex;
     gap: 10px;
     margin-top: 15px;
 }

 /* QR MODAL BACKDROP */
 .sdk-qr-modal {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1200;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.25s ease;
 }

 .sdk-qr-modal.is-visible {
     opacity: 1;
     pointer-events: auto;
 }

 /* MODAL CARD */
 .sdk-qr-modal__content {
     width: 320px;
     max-width: 90%;
     padding: 18px;
     border-radius: 18px;
     text-align: center;
     transform: scale(0.92);
     transition: transform 0.25s ease;
 }

 .sdk-qr-modal.is-visible .sdk-qr-modal__content {
     transform: scale(1);
 }

 /* HEADER */
 .sdk-qr-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .sdk-qr-close {
     cursor: pointer;
     font-size: 18px;
 }

 /* BODY */
 .sdk-qr-body {
     margin: 18px 0;
 }

 .sdk-qr-body img {
     width: 220px;
     height: 220px;
     object-fit: contain;
     border-radius: 12px;
     background: #fff;
     padding: 10px;
 }

 .sdk-qr-body p {
     margin-top: 10px;
     font-size: 14px;
     opacity: 0.7;
 }

 /* FOOTER */
 .sdk-qr-footer {
     margin-top: 10px;
 }


 /* ========footer============== */
.footer-app-links img {
    display: block;
    max-width: 160px;
}
 .app-footer {
     background: linear-gradient(135deg, #4f4f4f, #111);
     color: #fff;
     padding: 50px 0 60px;
     /* border-radius: 30px 30px 0 0; */
 }


 .footer-text {
     font-size: 14px;
     opacity: 0.8;
     line-height: 1.6;
 }

 .footer-subtitle {
     font-size: 15px;
     font-weight: 700;
     margin-bottom: 12px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 8px;
 }

 .footer-links a {
     color: #ccc;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #ff7a18;

 }

 /* SOCIAL ICONS */
 .footer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     margin-right: 10px;
     border-radius: 50%;
     background-image: linear-gradient(135deg,
             #FF8008 0%,
             #FFC837 50%,
             #FF8008 100%);
     color: #000000;
     font-size: 14px;
     text-decoration: none;

     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .footer-social a:hover {
     transform: translateY(-4px);
     box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
 }

 .footer-bottom {
     font-size: 13px;
     opacity: 0.6;
     padding-top: 15px;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 /* MOBILE */
 @media (max-width: 768px) {
     .app-footer {
         text-align: center;
     }

     .footer-social a {
         margin: 0 6px;
     }
 }



/* ===== settings.html ===== */
    .settings-section {
        border-radius: 18px;
        margin-bottom: 15px;
        position: relative;
        color: #fff;
        background: linear-gradient(to left, rgb(255 255 255 / 31%), rgb(0 0 0));
        border: 1px solid #cccccc7a;    backdrop-filter: blur(12px);
    }

    .section-title {
        font-size: 13px;
        padding: 10px 15px;
        color: #888;
        font-weight: 600;
    }

    .settings-item {
        display: flex;
        align-items: center;
        padding: 14px 15px;
        font-size: 14px;
        /* border-top: 1px solid #f2f2f2; */
        cursor: pointer;
    }

    .settings-item:first-child {
        border-top: none;
    }

    .settings-item:hover {
        background: rgba(255, 255, 255, 0.25);
        /* border: 1px solid rgb(255 255 255 / 18%); */
        backdrop-filter: blur(10px); border-radius: 18px;
    }

    .settings-icon {
        width: 35px;
        text-align: center;
       
    }

    .settings-item.danger {
        color: #dc3545;
    }

    /* .settings-item.premium {
        color: #fdd12c;
    } */

    /* Toggle Switch */
    .switch {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 22px;
    }

    .switch input {
        display: none;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        background-color: #ccc;
        border-radius: 22px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 3px;
        background: white;
        border-radius: 50%;
        transition: 0.3s;
    }

    input:checked+.slider {
 background: linear-gradient(-135deg, #ffd12e 0%, #f9a825 100%);
    }

    input:checked+.slider:before {
        transform: translateX(18px);
    }

    .coupon-card {
    background: #2a2a2a;
    border-radius: 12px;
}
.action-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 20px;
}

.action-icon i {
    color: #ffffff;
}

.action-icon small {
    font-size: 11px;
    color: #ccc;
}

.action-icon:hover {
    background: #3a3a3a;
}

.action-icon.whatsapp i {
    color: #25D366;
}
.support-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 22px;
}

.support-icon i {
    color: #fff;
}

.support-icon small {
    font-size: 12px;
    color: #ccc;
}

.support-icon:hover {
    background: #3a3a3a;
}

/* Brand Colors */
.support-icon.whatsapp i {
    color: #25D366;
}

.support-icon.email i {
    color: #4da3ff;
}.faq-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-item:hover {
    background: #333;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-question i {
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 13px;
    color: #aaa;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    margin-top: 8px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.input-group-append{
position: absolute;
    right: 15px;
    top: 11px;
}


    /* notification */
    .notification-item {
        transition: 0.3s ease;
    }

    .notification-item:hover {
        transform: translateY(-3px);
    }

    .notify-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;    font-size: 20px;
         background: linear-gradient(-135deg, #ffd12e 0%, #f9a825 100%);
    }
/* 
    .notify-icon.expire {
        background: #ffd12e;
    } */
/* 
    .notify-icon.update {
        background: #e6f7ff;
    }

    .notify-icon.reminder {
        background: #fff4cc;
    }
  .notify-icon.confirm {
        background: #e7ffe5;
    } */
    .payment-option {
        font-size: 15px;
    }
.card-box {
     border-radius: 18px;
     display: flex;
     overflow: hidden;
     position: relative;
     color: #fff;
     background: linear-gradient(to left, rgb(255 255 255 / 31%), rgb(0 0 0));
     border: 1px solid #cccccc7a;

 }