:root{
	--app-font-size:clamp(12px, 3vw, 14px);
	--shadow:0 0 10px rgb(105 157 253 / 15%);
}
/* Layout utilities css */
.row {
  margin-bottom: 15px;
}
.row > [class*="col-"] {
  margin-bottom: 15px;
}
/*.overflow{
	overflow:auto;
	position:relative;
}*/
.overflow-block{
	min-height: 50vh !important;
    max-height: 80vh !important;
    overflow: auto !important;
    padding-bottom: 200pt !important;	
	position:relative;
}
.text-limited-1-row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;	
}
.shadow--1{
	box-shadow:0 0 10px rgb(105 157 253 / 15%);
}
.img-preview{
	width: 52px;
    height: 52px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
	border:1px solid #efefef;
}
.img-preview img {
	width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.image-aspect-ratio{
	width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
/* Input css */
.default-input-field{
	border-color:var(--color-theme-02);
	transition:all ease .3s;
	color:var(--color-theme-03);	
}
.default-input-field::placeholder{
	color:var(--color-theme-02);
}
.default-input-field:focus{
	box-shadow:inset 0 0 10px rgb(139 217 225);	
	border-color:#5bb9c3;
	color:var(--color-theme-03);
}
.input-field{
	width: 100%;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1.5px solid #E2E8F0;
	background:#fff;
	font-size:14px;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	color:#2D3436;
}
.input-field:focus{
	border-color: var(--color-theme-02);
	box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.15);
}
.show-hide-password-icon{
	position:absolute;
	top:50%;
	right:15px;
	transform:translateY(-50%);
	cursor:pointer;
	color:var(--color-theme-03);
}
/* Custom radios */
.custom-radios-grid{
	font-size:14px;
	color:var(--gray-dark);
}
.custom-radios-container {
	display: block;
	position: relative;
	margin-bottom:0px;
	cursor: pointer;0
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.custom-radios-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.custom-radios-checkmark {
	position: relative;
	display:block;
	height:20px;
	width:20px;
	background-color: #eee;
	border-radius:30%;
	border:1px solid var(--color-theme);
}
.custom-radios-container:hover input ~ .custom-radios-checkmark {
	background-color: #ccc;
}
.custom-radios-container input:checked ~ .custom-radios-checkmark {
	background-color:var(--color-theme);
}
.custom-radios-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.custom-radios-container input:checked ~ .custom-radios-checkmark:after {
	display: block;
}
.custom-radios-container .custom-radios-checkmark:after {
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background:#fff;
	box-shadow:0 0 5px rgba(0,0,0,.15);
}
/* Button css */
.btn-rounded-corner{
	border-radius:35px !important;
}
.btn-outline{
	border:1px solid #eee;
}
.btn-app-theme{
	background:var(--color-theme-02);
	color:#fff !important;
	transition:all ease .3s;
}
.btn-app-theme:hover{
	color:#eee !important;
}
.btn-app-theme-02{
	background:var(--color-theme);
	color:#fff !important;
	transition:all ease .3s;
}
.btn-app-theme-02:hover{
	color:#eee !important;
}
.btn-previous{
	width:22px;
	height:22px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-size:12px;
	border:none;
	border-radius:50%;
	background:var(--color-theme-03);
}
.btn-previous:focus, .btn-previous:active{
	outline:none;
}
.default-quantity-grid{
	display:flex;
	position:relative;
}
.default-quantity-grid .btn-descrease{
	position:absolute;
	left:10px;
	top:50%;
	transform:translateY(-50%);
	font-size:16px;
	background:transparent;
}
.default-quantity-grid .btn-increase{
	position:absolute;
	right:10px;
	top:50%;
	transform:translateY(-50%);
	font-size:16px;
	background:transparent;
}
.default-quantity-grid .btn-descrease:focus,
.default-quantity-grid .btn-descrease:active,
.default-quantity-grid .btn-increase:focus,
.default-quantity-grid .btn-increase:active
{
	outline:none;
}
.btn-descrease, .btn-increase{
	display:flex;
	align-items:center;
	justify-content:center;
	background:#fff;
	border-radius:5px;
	font-weight:600;
	border:none;
	transition:all ease .3s;
}
.btn-descrease:hover, .btn-increase:hover{
	opacity:.35;
}
.btn-descrease:focus, .btn-increase:active{
	outline:none;
}
/* Text css */
.color-theme{
	color:var(--color-theme);
}
/* 01 - Login */
.main-wrapper{
	width:100%;
	max-width:500px;
	height:100%;
	min-height:100vh;
	margin:0 auto;
	/*background:#edeef7;*/
	position:relative;
	overflow:hidden;
}
.main-wrapper:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background:#edeef7;
	z-index:-1;
}
.login-wrapper{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:10px;
	height:100%;
	border-left:1px solid #e3e3e3;
	border-right:1px solid #e3e3e3;
}
.login-main-logo{
	width:100%;
	height:auto;
	max-width:150px;
	margin:0px auto 20px;
}
.welcome-title{
	margin-bottom:20px;
}
.welcome-title h3{
	margin:0;
	font-size:20pt;
	font-weight:bold;
}
.login-field-grid{
	width:100%;
	max-width:80%;
}
.or-divider{
	position:relative;
	padding:15px;
	width:100%;
	text-align:center;
	color:var(--color-theme);
}
.or-divider:before{
	content:'';
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
	width:40%;
	height:1px;
	border-top:1px solid var(--color-theme-02);
}
.or-divider:after{
	content:'';
	position:absolute;
	top:50%;
	right:0;
	transform:translateY(-50%);
	width:40%;
	height:1px;
	border-top:1px solid var(--color-theme-02);
}
.login-icon-grid{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:20px;
	margin:10pt auto;
}
.connect-login-icon{
	width:45px;
	height:45px;
	padding:10px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#fff;
	border-radius:50%;
	box-shadow:0 0 10px rgba(0,0,0,.15);
}
/* 02 - Main dashboard */
.app-dashboard-header{
	min-height:200px;
	background:#f7f7f7;
	position:relative;
}
.app-dashobaord-topGrid{
	width:100%;	
	font-size:14px;
	display:flex;
	align-items:center;
	gap:10px;
	padding:10px;
}
.app-dashboard-logo{
	width:36px;
	height:36px;
	padding:5px;
	background:#fff;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
}
.app-dashboard-logo:hover{
	background:rgba(255,255,255,.65);
	transform:rotateY(180deg);
}
.app-dashboard-logo img{
	width:100%;
	max-width:100%;
}
.app-dashboard-balance{
	display:inline-block;
	padding:10px;
	background:#fff;
	border-radius:10px;
	color:var(--color-theme-03);
}
.app-dashboard-balance span{
	font-weight:bold;
	color:var(--color-theme-05);
}
.app-dashboard-top-icon{
	width:36px;
	height:36px;
	padding:5px;
	background:#fff;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;	
	position:relative;
}
.redDotNotice{
	position:absolute;
	top:-2px;
	right:-2px;
	background:#d00;
	border-radius:10px;
	font-size:10px;
	color:#fff;
	padding:0 2px;
}
.app-dashboard-body{
	padding:10pt;
	padding-bottom:100pt;
}
.app-dashboard-search{
	position:relative;
	margin-bottom:15px;
}
.app-searchBar-icon{
	position:absolute;
	top:50%;
	left:10px;
	transform:translateY(-50%);
}
.app-dashboard-searchBar{
	padding-left:35px;
	border:none;
}
.app-dashboard-searchBar::placeholder{
	color:var(--color-theme-02);
}
.app-dashboard-shortCutIcon-grid{
	display: inline-block;
    position: relative;
    width: 100%;
	margin-bottom:15px;	
}
.app-dashboard-shortCutIcon-grid ul{
	margin:0;
	padding:0;
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
}
.app-dashboard-shortCutIcon-grid li{
	display:block;
	list-style:none;
	width:100%;
	padding:10px 0;
}
.app-dashboard-shortCutIcon-link{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:5px;
}
.app-dashboard-shortcut-icon{
	display:block;
	margin:0 auto;
	padding:6px;
	width:50px;
	height:50px;
	background:#f7f8ff;
	border-radius:50%;
	box-shadow:var(--shadow);
}
.app-dashboard-shortcut-icon img{
	width:100%;
	max-width:100%;
}
.app-dashboard-shortCut-title{
	font-size:clamp(12px, 3vw, 14px);
	font-weight:500;
	text-align:center;
	color:var(--color-theme-05);
	max-width:80%;
}
.app-dashboard-highlights{
	position:relative;
	margin-bottom:15px;
}
.app-row-title{
	font-size:14px;
	font-weight:600;
	color:var(--color-theme-03);
	margin-bottom:15px;
}

.app-bottom-navbard{
	z-index:1;
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
}
.app-bottom-navbard-inner{
	width:100%;
	max-width:500px;
	margin:0 auto;
	position:relative;
}
.app-bottom-navbard-ul{
	position: absolute;
    left: 0;
    bottom:20%;
    width: 100%;
    padding: 0 15px;
	margin:0;
	display:flex;
	font-size:clamp(12px, 3vw, 14px);
}
.app-bottom-navbard-ul li{
	display:flex;
	align-items:end;
	list-style:none;
	width:20%;
	font-weight:600;
	font-size:100%;
	color:var(--color-theme-02);
	text-align: center;
}
.app-bottom-navbard-ul li a{
	width:100%;
	display:block;
}
.app-bottom-navbarIcon{
	width:36px;
	height:auto;
	max-width:35%;
	display:flex;
	margin:0 auto 6px;
}
.app-bottom-navbarIcon img{
	width:100%;
	max-width:100%;
	transition:all .3s ease;
}
.app-bottom-navbarIcon:hover img{
	opacity:.65;
}
.app-bottom-navbarIcon.IconScan{
	background:#fff;
	border-radius:50%;
	padding: 10px;
    width: 100%;
    max-width: 65%;
}

#merchant-banner .item{
	border-radius:10px;
	overflow:hidden;
	position:relative;
	width:auto;
    height: auto;
    padding:0;
	margin:0;
}
#merchant-banner .owl-dots{
	margin:0px;
	position:absolute;
	left:50%;
	bottom:10px;
	transform:translateX(-50%);
}
#merchant-banner .owl-dots button:focus{
	outline:none;
}

#app-dashboard-slider .owl-carousel .item {
	width:auto;
    height: auto;
    padding:0;
}
#app-dashboard-slider .owl-dots{
	margin:0px;
	position:absolute;
	left:50%;
	bottom:10px;
	transform:translateX(-50%);
}
#app-dashboard-slider .owl-dots button:focus{
	outline:none;
}
#app-dashboard-slider .owl-dots .owl-dot{
	transition:all ease .3s;
}
#app-dashboard-slider .owl-dots .owl-dot span{
	width:12px;
	height:12px;
	transition:all ease .3s;
}
.owl-theme .owl-dots .owl-dot:hover span{
	background:var(--color-theme-03);
}
.owl-theme .owl-dots .owl-dot.active span{
	background:var(--color-theme);
}
/* Wrapper card style */
.highlight-card {
    color: #fff;
    width:100%;            /* fixed card width */
	height:220px;
	background:#e3e4f1;
    box-sizing: border-box;
	border-radius: 15px;
	overflow:hidden;
	display:flex;
}
.highlight-card img{
	border-radius:15px;
}
/* Prevent image gap issue */
#highlights-slider .owl-item {
    margin-right: 12px !important;   /* spacing between cards */
}
/* Make right side visible */
#highlights-slider .owl-stage {
    padding-left: 0 !important;
    padding-right: 16px !important;
}
.vouchers-card{
    color: #fff;
    width:100%;
	height:calc(30vh - 50px);
	background:#e3e4f1;
    box-sizing: border-box;
	border-radius: 15px;
	overflow:hidden;
	display:flex;	
}
.app-dashboard-merchant-grid ul{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:10px;
	margin:0;
	padding:0;
}
.app-dashboard-merchant-grid li{
	display:block;
	list-style:none;
}
.app-dashboard-merchant-link{
	cursor:pointer;
	display:block;
	transition:all ease .3s;
	height:100%;
}
.app-dashboard-merchant-link:hover{
	opacity:.65;
}
.app-dashboard-merchant-card{
	background:#fff;
	border-radius:15px;
	overflow:hidden;
	height:100%;
}
.app-dashboard-merchant-card-top{
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#fff;
	padding:15pt;
}
.merchant-card-top-label{
	position:absolute;
	top:10px;
	right:0px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	width:100%;
	padding:0 5px;
}
.merchant-highlight-label{
	font-size:12px;
	font-weight:600;
	text-transform:uppercase;
	color:#fff;
	background:#d00;
	border-radius:15px;
	padding:5px 8px;
}
.merchant-rating-label{
	font-size:12px;
	font-weight:600;
	color:#000;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:5px;
	background:#fff;
	border-radius:15px;
	padding:5px 8px;
	margin-left:auto;
	box-shadow:0 0 5px rgba(0,0,0,.15);
}
.app-dashboard-merchant-logo img{
	max-width:100%;
	max-height:100px;
}
.app-dashboard-merchant-content{
	display:block;
	width:100%;
	height:100%;
	color:var(--color-theme);
	font-size:var(--app-font-size);
	padding:10pt;
	background:#f7f7f7;
}
.app-dashboard-merchant-name{
	font-weight:600;
	font-size:clamp(13px, 3vw, 15px);
	color:var(--color-theme-05);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:1; /* limit to 5 lines */
	overflow: hidden;
}
.app-dashboard-merchant-desc{
	font-size:12px;
	color: var(--color-theme-03);
	margin-bottom:5px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:1; /* limit to 5 lines */
	overflow: hidden;
}
.app-dashboard-merchant-location{
	font-size:12px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2; /* limit to 5 lines */
	overflow: hidden;
}
.overlay {
	width: 100%;
	height: 100%;
	background: transparent;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	inset: 0;
}
#slidingDiv {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100%;        /* default: hidden */
	transition: bottom .3s ease; /* smooth slide */
}
.sliding-div {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: bottom 0.5s ease-in-out;
	z-index:2;
}
.sliding-div-inner{
	width:100%;
	max-width:500px;
	height:100%;
	margin:0 auto;
	padding:15px;
	background:#fff;
	border-radius:15px 15px 0 0;
	box-shadow:0 -5px 10px rgba(0, 0, 0, .15);
}
.toggle-link {  
	cursor: pointer;
}
.toggle-link:hover {
	color: #0056b3;
}
.close-button {
	margin-top: 10px;
	padding: 5px 10px;
	background-color: #FF6347;
	color: white;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}
.close-button:hover {
	background-color: #d32f2f;
}
.app-sliding-icon-grid{
	display: inline-block;
    position: relative;
    width: 100%;
	margin-bottom:15px;	
}
.app-sliding-icon-grid ul{
	margin:0;
	padding:0;
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
}
.app-sliding-icon-grid li{
	display:block;
	list-style:none;
	width:100%;
	padding:10px 0;
}
.app-sliding-icon-grid-link{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:5px;
}
.app-sliding-icon-grid-title{
	font-size:var(--app-font-size);
	text-align:center;
	color:var(--color-theme) !important;
	max-width:80%;
}
/* 03 - Register */
.scan-qrcode-icon{
	position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--color-theme-03);	
}
/* 04 - Merchant Details */
.app-inner-topbar{
	width:100%;
	min-height:36px;
	background:var(--color-theme);
	padding:.762rem 10pt;
	color:#fff;
	display:grid;
	align-items:center;	
	grid-template-columns: 1fr auto 1fr;
	gap:10px;
}
.btn-back-previous{
	width:26px;
	height:26px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-size:12px;
	border:none;
	border-radius:50%;
	background:rgba(0,0,0,.15);
}
.btn-back-previous:focus, .btn-back-previous:active{
	outline:none;
}
.app-inner-pageTitle{
	font-weight:600;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	text-transform:capitalize;
}
.app-inner-topbar-left{
	display:flex;
	justify-content:end;
}
.addFav {
	width:26px;
	height:26px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-size:12px;
	border:none;
	border-radius:50%;
	background:rgba(0,0,0,.15);
	cursor: pointer;
	color: #fff;          /* before click */
	transition: color 0.3s ease, transform 0.2s ease;
}
.addFav:focus, .addFav:active{
	outline:none;
}
/* active state (red) */
.addFav.active {
	color: red;
	background:rgba(255,255,255,1);
}
/* fade + pop animation */
.addFav.animate {
	transform: scale(1.4);
	opacity: 0.6;
}
.app-detail-header{
	width:100%;
	height:120px;
	background:#f7f7f7;
	z-index:0;
	flex-basis: auto;
	overflow-x: hidden;
    overflow-y: hidden;	
	box-sizing: border-box;
    display: flex;
	align-items: stretch;
	flex-direction: column;
    flex-shrink: 0;
	list-style: none;
    margin: 0px;
    min-height: 0px;
    min-width: 0px;
    padding: 0px;
    position: relative;
    text-decoration: none;
}
.app-detail-header img{
	width:100%;
	height:auto;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	position:absolute;
	z-index:-1;
}
.app-inner-wrapper{
	padding:0 15px;
}
.app-merhcnat-detail-box{
	width:100%;
	margin-top:-20px;
	margin-bottom:15px;
	position:relative;
	background:#fff;
	border-radius:15px;
	box-shadow:var(--shadow);
}
.app-merhcnat-detail-body{
	display:grid;
	grid-template-columns:.25fr 1fr;
	align-items:center;
	gap:10px;
	padding:15px;
	font-size:var(--app-font-size);
	color:var(--bs-gray);
}
.app-merchant-detail-logo{
	width:100%;
	height:100%;
	margin:0 auto;
	overflow:hidden;
	border-radius:10px;
	background:#fff;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	border:1px solid #efefef;
}
.app-merchant-detail-logo img{
	/*position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:auto;
	height:auto;
	max-width:100%;
	max-height:100%;*/
	width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.app-merchant-name{
	font-size:14px;
	font-weight:bold;
	color:var(--color-theme-03);
}
.merchant-rating{
	display:flex;
	align-items:center;
	gap:5px;
	color:var(--color-theme-03);
}
.app-merchant-detail-wrapper{
	padding:10px;
	padding-bottom:100px;
	font-size:var(--app-font-size);
	color:var(--bs-gray);
}
.app-merchant-detail-wrapper h4.app-merchant-detail-label{
	font-size:16px;
	color:var(--color-theme-05);
}
.bussines-time-start{
	color:green;
}
.bussines-time-close{
	color:#d00;
}
.app-merchant-services-grid ul{
	margin:10px 0;
	padding:0;
	display:grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap:10px;
}
.app-merchant-services-grid li{
	display:block;
	list-style:none;
	width:100%;
}
.app-merchant-services-card{
	padding:10px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:10px;
	background:#fff;
	border-radius:10px;
	box-shadow:var(--shadow);
	transition:all ease .3s;
}
.app-merchant-services-card:hover{
	opacity:.75;
	background:#fff;
}
.app-merchant-services-img{
	width:100%;
	height:100px;
	background:#efefef;
	border-radius:10px;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	border:1px solid #f5f5f5;
}
.app-merchant-services-img img{
	width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.app-merchant-services-content{
	width:100%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* limit to 5 lines */
	overflow: hidden;
}
.app-merchant-services-title{
	font-weight:bold;
	color:var(--color-theme);
	text-overflow: ellipsis;
    overflow: clip;
    white-space: nowrap;
	text-transform:capitalize;
}
#OurServicesModal .modal-title{
	color:var(--color-theme);
}
#OurServicesModal .modal-body{
	color:var(--color-theme-05);
	font-size:var(--app-font-size);
}
#OurServicesModal .modal-body > div{
	margin-bottom:15px;
}
.our-services-modal-img{
	width:100%;
	max-width:250px;
	height:auto;
	margin:0 auto;
	background:#efefef;
	border-radius:10px;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
	border:1px solid #f5f5f5;	
}
.our-services-modal-img img{
	width: 100%;
    max-width: 100%;
}
.large-text{
	font-size:large;
	font-weight:bold;
	color:var(--color-theme-05);
}
/* GALLERY GRID */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	max-width: 1000px;
	margin: 0 auto;
}
.gallery-item {
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	background: #ddd;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.gallery-item:hover img {
	transform: scale(1.05);
}
/* LIGHTBOX */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 9999;
}
.lightbox.active {
	opacity: 1;
	visibility: visible;
}
.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}
.lightbox-img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px;
	display: block;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: rgba(0,0,0,0.6);
	color: #fff;
	padding: 10px 14px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox-close {
	top: -40px;
	right: 0;
	transform: none;
	border-radius: 50%;
}
.lightbox-prev {
	left: -50px;
}
.lightbox-next {
	right: -50px;
}
.fade-in {
	animation: fadeIn 0.35s ease;
}
@keyframes fadeIn {
	from{ opacity: 0; transform: scale(0.97); }
	to{ opacity: 1; transform: scale(1); }
}
.app-inner-footer{
	width:100%;
	position:fixed;
	left:0;
	bottom:0;
	padding:0px 10px;
	margin:0;
	z-index:1;
}
.app-inner-footer-inner{
	width:100%;
	max-width:468px;
	background:#fff;
	border-radius:30px;
	box-shadow:var(--shadow);
	padding:10px;
	margin:0 auto 10px;
}
.app-inner-footer-inner ul{
	margin:0;
	padding:0;
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
}
.app-inner-footer-inner li{
	display:block;
	list-style:none;
}
.app-inner-footer-link{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:5px;
	font-size:var(--app-font-size);
	font-weight:600;
	color:var(--color-theme-05);
}
#FooterLinkModal .modal-body{
	font-size:var(--app-font-size);
	color:var(--color-theme-05);
}
#FooterLinkModal .modal-body > div{
	margin-bottom:15px;
}
.merchant-footer-icon{
	width:22px;
	height:22px;
}
.app-inner-footer-icon{
	width:22px;
	height:22px;
}
.app-inner-footer-icon img{
	width:100%;
	max-width:100%;
}

@media (max-width:500px){
	.app-merhcnat-detail-body{
		grid-template-columns:.5fr 1.5fr;
	}
	.lightbox-prev {
		left: 10px;
	}
	.lightbox-next {
		right: 10px;
	}
	.lightbox-close {
		top: 10px;
		right: 10px;
	}
}
.review-summary {
	margin-bottom:15px;
	padding-bottom:15px;
	border-bottom: 1px solid #e0e1e5;
	font-size:var(--app-font-size);
}
.summary-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom:10px;
}
.summary-header h2 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom:0;
}
.info-icon {
	width: 18px;
	height: 18px;
	color:#5f6368;
	cursor: help;
	position: relative;
}
.info-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.info-tooltip {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	background:#1a1a1a;
	color: white;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.5;
	width: 280px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.info-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color:#1a1a1a;
}
.info-icon:hover .info-tooltip {
	opacity: 1;
	transform: translateX(-50%) translateY(-12px);
}
.rating-overview {
	display: flex;
	gap: 40px;
	align-items: center;
	margin-bottom:15px;
}
.rating-score {
	text-align: center;
}
.score-number {
	font-size:30pt;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #f4b400 0%, #e37400 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.stars {
	display: flex;
	gap: 4px;
	margin-bottom: 8px;
}
.star {
	width: 20px;
	height: 20px;
	fill:#f4b400;
	color:#f4b400;
}
.star.empty {
	fill: #dadce0;
	color: #dadce0;
}
.review-count {
	color:#5f6368;
	font-size: 14px;
	font-weight: 500;
}
.rating-bars {
	flex: 1;
}
.rating-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom:5px;
}
.rating-row:last-child {
	margin-bottom: 0;
}
.rating-label {
	font-size: 13px;
	color:#5f6368;
	min-width: 12px;
	font-weight: 500;
}
.bar-container {
	flex: 1;
	height: 8px;
	background:#dadce0;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}
.bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #f4b400 0%, #e37400 100%);
	border-radius: 4px;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fillBar 1s ease-out;
}
@keyframes fillBar {
	from { width: 0; }
}
.write-review-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: white;
	border: 2px solid #e8eaed;
	border-radius: 24px;
	font-weight: 600;
	color:#1a1a1a;
	cursor: pointer;
	transition: all 0.2s ease;
}
.write-review-btn:hover {
	background:#f8f9fa;
	border-color:#5f6368;
	transform: translateY(-1px);
}
.write-review-btn:active {
	transform: translateY(0);
}
/* Reviews Section */
.reviews-section{
	font-size:var(--app-font-size);
}
.reviews-section h2 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom:10px;
}
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom:15px;
}
.filter-btn {
	padding: 8px 16px;
	background: white;
	border: 1px solid #e8eaed;
	border-radius: 20px;
	font-weight: 500;
	color:#1a1a1a;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.filter-btn:hover {
	background:#f8f9fa;
	border-color:#5f6368;
}
.filter-btn.active {
	background:#e8f0fe;
	border-color: #1a73e8;
	color: #1a73e8;
}
.filter-btn .count {
	font-size: 13px;
	opacity: 0.7;
}
.sort-section {
	display: flex;
	flex-wrap:wrap;
	flex-direction:column;
	gap: 10px;
	padding-top:20px;
	margin-bottom:20px;
	border-top: 1px solid #e0e1e5;
}
.sort-label {
	font-size: 14px;
	color:#5f6368;
	font-weight: 500;
}
.sort-options {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.sort-btn {
	padding: 8px 16px;
	background: white;
	border: 1px solid #e8eaed;
	border-radius: 20px;
	font-weight: 500;
	color: #5f6368;
	cursor: pointer;
	transition: all 0.2s ease;
}
.sort-btn:hover {
	background:#f8f9fa;
}
.sort-btn.active {
	background:#1a1a1a;
	color: white;
	border-color:#1a1a1a;
}
/* Review Card */
.review-card {
	width:100%;
	display:inline-block;
	padding: 20px;
	margin-bottom:10px;
	animation: fadeIn 0.5s ease;
	background:#fff;
	border-radius:10px;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.review-card + .review-card:nth-child(even){
    background: #f6f6fd;
    border: 1px solid #e3e4ed;
    box-sizing:border-box;
}
.review-header {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}
.reviewer-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 18px;
	flex-shrink: 0;
}
.review-info {
	flex: 1;
}
.reviewer-name {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 4px;
}
.reviewer-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color:#5f6368;
	margin-bottom: 8px;
}
.meta-badge {
	background:#fff;
	padding: 2px 8px;
	border-radius: 4px;
	border:1px solid #ebebeb;
	font-weight: 500;
}
.review-rating {
	display: flex;
	gap: 4px;
	margin-bottom: 8px;
}
.review-rating .star {
	width: 16px;
	height: 16px;
}
.review-date {
	font-size: 13px;
	color: #5f6368;
}
.review-content {
	margin-bottom: 12px;
	line-height: 1.7;
	color:#1a1a1a;
}
.more-text{
	display:none; 
}
.more-link{
	color:#007bff;
	cursor:pointer;
	text-decoration:none;
	font-weight:bold;
}
.menu-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-left: auto;
}
.menu-btn:hover {
	background:#f8f9fa;
}
.review-rating-grid{
	background:#f5f5f5;
	padding:0 10px;
	border-radius:10px;
	border:1px solid #eee;
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.star-rating {
	direction: rtl;
	display: inline-block;
	padding:10px;
	cursor: default;
}
.star-rating input[type=radio] {
	display: none;
}
.star-rating label {
	margin-bottom:0;
	color: #bbb;
	font-size:14px;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type=radio]:checked ~ label {
	color: #f2b600;
}
.review-message-grid{
	width:100%;
	padding:10px;
	border:1px solid #eee;
	border-radius:10px;
}
.review-message-grid textarea{
	border:0;
	width:100%;
	height:100px;
}
.review-message-grid textarea:focus, .review-message-grid textarea:active{
	outline:none;
}
@media (max-width:500px){
	.reviewer-meta{
		flex-direction:column;
		align-items:start;
	}
}
/* 05 - Wallet */
.app-inner-page-top{
	padding:10pt 0;
	display:grid;
	grid-template-columns:auto 1fr;
	align-items:center;
}
.app-inner-page-title{
	font-size:20px;
	margin-bottom:0;
}
.app-inner-page-body{
	padding:10pt 0;
}
.app-wallet-transaction-grid{
	min-height:50vh;
	max-height:80vh;
	overflow:auto;
	padding-bottom:100pt;
}
.app-wallet-transaction-grid ul{
	margin:0;
	padding:0;
}
.app-wallet-transaction-grid li{
	display:block;
	list-style:none;	
	border-radius:10px;
	background:#fcfcfc;
	margin-bottom:10px;
}
.app-wallet-transaction-grid li:nth-child(even){
	background:#fff;
}
.icon-wallet-topup{
	width:100%;
	max-width:20px;
}
.app-wallet-transaction-card{
	width:100%;
	padding:10px;
	display:grid;
	grid-template-columns:auto 1fr;
	gap:20px;
	font-size:var(--app-font-size);
	box-shadow:var(--shadow);
}
.app-wallet-transaction-card > div > div{
	margin-bottom:3px;
}
.app-wallet-transaction-amount{
	display:flex;
	justify-content:end;
	align-self:start;
}
.app-wallet-transaction-amount span{
	padding:5px 10px;
	background:#d7d7d7;
	color:#000;
	border-radius:10px;
}
.app-wallet-transaction-amount span.transaction-in{
	background:#abffd1;
	color:#007b37;
}
.app-wallet-transaction-amount span.transaction-out{
	background:#ffd4d4;
	color:#e92a2a;
}
.app-wallet-transaction-title{
	font-weight:600;
	color:var(--color-theme-05);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1; /* limit to 5 lines */
	overflow: hidden;
}
.app-wallet-transaction-desc{
	color:var(--color-theme);
	font-weight:bold;
}
.app-wallet-transaction-date-time{
	color:var(--gray);
	font-size:80%;
}
@media(max-width:500px){
	.app-wallet-transaction-title{
		font-size:14px;
	}	
}
/* 06 - Wallet Topup */
/* Input Field Styling */
.amount-input {
	width: 100%;
	padding: 12px 15px;
	font-size: 18px;
	border:1px solid transparent; /* Bright Cyan Border */
	border-radius: 12px;
	outline: none;
	box-sizing: border-box; /* Ensures padding doesn't increase width */
	margin-bottom: 25px;
	color: #333;
	transition:all ease .3s;	
}
.amount-input:focus {
	border-color: #2bbccf;
	box-shadow:inset 0 0 15px #a0e3ef;
}
.amount-grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
	gap: 15px; /* Space between buttons */
}
.topup-amount-btn {
	background-color:#f7f7f7; /* Muted Teal Background */
	border: none;
	border-radius: 10px;
	padding: 10px 0;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	cursor: pointer;
	/*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); */
	transition: transform 0.1s, box-shadow 0.1s, background-color .3s;
}
.topup-amount-btn.selected, .topup-amount-btn:focus{
	border:none !important;
	outline:2px solid var(--color-theme-05);
	background-color:var(--color-theme-02);
	color:var(--color-theme-03);
}
.topup-amount-btn:active {
	transform: translateY(2px); /* Button presses down */
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
.topup-amount-btn:hover {
	background-color:#ccc;
}
.action-row {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}
.action-btn {
	flex: 1; /* Makes them share width equally */
	padding: 15px;
	font-size: 16px;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
	transition: opacity 0.2s;
	color: #fff; /* White text for these */
}
.action-btn:hover {
	opacity: 0.9;
}
.action-btn:active {
	transform: translateY(2px);
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
.btn-clear {
	background-color: #e57373; /* Soft Red */
}
.btn-submit {
	background-color: #26a69a; /* Stronger Teal/Green */
}
.payment-gateway{
	text-align:center;
	margin:auto;
	margin-top:20pt;
	display: inline-block;
}
.payment-gateway img{
	width:100%;
	max-width:100px;
	display:block;
	margin:10px auto 0;
}
.top-up-message-modal .modal-content{
	border-radius:15px;
	margin:0 auto;
	max-width:80%;
}
.icon-check-cancel{
	max-width:60px;
	margin:0 auto;
}
@media(max-width:414px){
	.action-row{
		flex-direction:column;
	}
	.action-btn{
		padding:10px 15px;
		font-size:14px;
	}
}
/* 07 - Booking History */
.app-booking-history-list{
	max-height:85vh;
	overflow:auto;
}
.app-booking-history-list ul{
	margin:0;
	padding:0;
}
.app-booking-history-list li{
	display:block;
	list-style:none;
	margin-bottom:10px;
}
.app-booking-history-card{
	width:100%;
	padding:10px;
	background:#fff;
	border-radius:10px;
	display:grid;
	grid-template-columns:auto 1fr;
	align-items:end;
}
.app-booking-img-preview{
	width:52px;
	height:52px;
	position:relative;
	overflow:hidden;
	background:#fff;
	border-radius:10px;
}
.app-booking-img-preview img{
	width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;	
}
.app-booking-history-left{
	display:flex;
	gap:10px;
}
.app-booking-history-content{
	font-size:var(--app-font-size);
}
.app-booking-history-content h4{
	font-size:16px;
}
.app-booking-history-detail{
	color:var(--color-theme-03);
}
.app-booking-label{
	background:var(--color-theme-03);
	color:#fff;
	padding:0px 6px;
	line-height:2;
	border-radius:5px;
	text-transform: uppercase;
    font-size: 80%;
    font-weight: bold;
}
.app-booking-history-right{
	text-align:end;
}
/* 08 - Booking */
.app-booking-wrapper{
	font-size:var(--app-font-size);
	color:var(--color-theme-03);
}
.app-booking-wrapper > div{
	margin-bottom:15px;
	font-size:var(--app-font-size);
}
.app-booking-merchant-name{
	color:var(--color-theme);
	font-size:14pt !important;
	font-weight:600;
	margin-bottom:10px !important;
}
.app-booking-merchant-profile{
	width:100%;
	height:auto;
	max-height:250px;
	position:relative;
	overflow:hidden;
	border-radius:10px;
	background:#fff;
	display: flex;
    align-items: center;
    justify-content: center;
}
.app-booking-merchant-profile img{
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;	
}
.picker-box{
	padding:0;
	margin:0 auto;
}
.picker-box h4{
	font-size:16px;
	font-weight:600;
}
input[type="date"],
input[type="time"]{
	padding:8px 10px;
	border-radius:6px;
	border:1px solid #ddd;
	font-size:14px;
	width:100%;
	box-sizing:border-box;
}
.result{
	margin-top:15px;
	font-size:14px;
	color:#333;
	padding:10px;
	background:#f8f8f8;
	border-radius:6px;
	display:none;
}
.booking-card{
	width:100%;
	padding:10pt;
	border-radius:15px;
	background:#fff;
	text-align:center;
	font-size:var(--app-font-size);
}
.booking-card-icon{
	width:60px;
	height:60px;
	display:block;
	margin:0 auto 15px;
}
.booking-card-icon img{
	width:100%;
	max-width:100%;
}
.merchant-booking-name{
	font-weight:bold;
	font-size:20px;
	color:var(--color-theme-03);
}
.booking-card-divider{
	position:relative;
	z-index:1;
	color:var(--color-theme);
}
.booking-card-divider:before{
	content:'';
	position:absolute;
	top:50%;
	left:15%;
	width:35%;
	height:1px;
	background:linear-gradient(45deg, #ffffff, var(--color-theme));
}
.booking-card-divider:after{
	content:'';
	position:absolute;
	top:50%;
	right:15%;
	width:35%;
	height:1px;
	background:linear-gradient(45deg, var(--color-theme), #ffffff);
	z-index:-1;
}
.pax-value-input{
	width:100%;
	height:40px;
	padding:0.375rem 0.75rem;
	background:#fff;
	border:1px solid var(--color-theme-02);
	border-radius:5px;
    transition: all ease .3s;
	text-align:center;
	color:var(--color-theme);
	display:flex;
	align-items:center;
	justify-content:center;
}
/* 09 - Rewards */
.lite-search-bar-grid{
	position:relative;
}
.lite-search-bar-grid input{
	padding:10px;
	padding-left:45px;
	padding-right:25px;
	border:none;
	border-radius:35px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size:14px;
	height:40px;
}
.app-search-icon{
	position:absolute;
	top:50%;
	left:15px;
	transform:translateY(-50%);
}
.rewards-list-grid{
	margin:15px 0;
}
.rewards-list-grid ul{
	margin:0;
	padding:0;
}
.rewards-list-grid li{
	display:block;
	list-style:none;
	border-radius:10px;
	background:#fff;
	margin-bottom:10px;
}
.rewards-list-card{
	width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
	cursor:pointer;
}
.rewards-list-card-left{
    display: flex;
	align-items:center;
    gap: 10px;	
}
.rewards-list-img{
    width: 52px;
    height: 52px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;	
}
.rewards-list-img img{
	width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;	
}
.rewards-list-detail{
	font-size:var(--app-font-size);
}
.rewards-list-merchant-name{
	font-weight:bold;
	font-size:16px;
	margin-bottom:0px;
}
.type-badge{
	display:inline-block;
	background:var(--color-theme);
	border-radius:6px;
	padding:3px 8px;
	margin-top:5px;
	color:#fff;
	font-size:80%;
}
.type-badge.unique-voucher{
	background:var(--bs-teal);
}
.type-badge.normal-voucher{
	background:var(--gray);
}
.rewards-list-card-right{
	text-align:end;
	font-size:var(--app-font-size);
}
.redeem-expiry-date, .redeem-quantity{
	background:#efefef;
	border-radius:35px;
	padding:10px 25px;
	color:var(--color-theme-03);
	font-size:20px;
	font-weight:600;
	display: inline-block;
	min-width:200px;
}

@media(max-width:768px){
	.rewards-list-grid{
		margin:0;
	}
}
/* 09 - Rewards Details */
.app-reward-details-card{
	background:#fff;
	border-radius:10px;
	padding:10pt 10pt 30pt;
	margin-top:20px;
	box-shadow:var(--shadow);
	position:relative;
	font-size:var(--app-font-size);
}
.app-reward-details-card-title{
	font-weight:700;
	font-size:16px;
	color:var(--color-theme);
	text-transform:capitalize;
	margin:0 auto;
	margin-bottom:5px;
	display:block;
	max-width:80%;
}
.reward-details-by{
	font-style:italic;
	color:var(--color-theme-02);
}
.app-reward-details-card-img{
	width:100px;
	height:100px;
	border-radius:50%;
	border:1px solid #eee;
	margin:-50px auto 15px;
	background:#f1f1f1;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
}
.divider-line{
	position:relative;
	z-index:1;
	color:#21afbf;
	font-size:20px;
}
.divider-line span{
	position:relative;
}
.divider-line:before{
	content:'';
	position:absolute;
	top:50%;
	left:15%;
	width:35%;
	height:1px;
	background:linear-gradient(45deg, #ffffff, var(--color-theme-02));
}
.divider-line:after{
	content:'';
	position:absolute;
	top:50%;
	right:15%;
	width:35%;
	height:1px;
	background:linear-gradient(45deg, var(--color-theme-02), #ffffff);
	z-index:-1;
}
.qr-preview{
	display:flex;
	align-items:center;
	justify-content:center;
	width:200px;
	height:200px;
	max-width:80%;
	height:80%;
	background:#fff;
	border-radius:15px;
	border:1px solid #eee;
	margin:10px auto;
	padding:15px;
	box-shadow:var(--shadow);
}
.app-reward-details-card-footer{
	margin-top:15pt;
}
.btn-claim-rewards{
	border-radius:35px;
	padding:15px;
	max-width:80%;
}
.app-reward-details-terms-conditions{
	font-size:var(--app-font-size);
	color:var(--bs-secondary);
}
.app-scan-merchant-profile{
	width:100px;
	height:100px;
	border-radius:50%;
	border:1px solid #eee;
	margin:-50px auto 15px;
	background:#f1f1f1;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
}
/* 010 - Coupon Details */
.app-coupon-detail-card{
	padding:15px;
	background:#fff;
	border-radius:10px;
	box-shadow:var(--shadow);
	font-size:var(--app-font-size);
}
/* 011 - Event */
.app-events-list-grid{
	margin:15px 0;
}
.app-events-list-grid ul{
	margin:0;
	padding:0;
}
.app-events-list-grid li{
	display:block;
	list-style:none;
	border-radius: 10px;
    background: #fff;
    margin-bottom: 10px;
}
.app-events-card{
	min-height:60px;
	width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
	gap:15px;
    align-items: start;
    cursor: pointer;
	font-size:var(--app-font-size);
}
.app-events-card-title{
	font-size:16px;
	font-weight:bold;
	color:var(--color-theme);
}
.app-events-card-title-2{
	font-size:14px;
}
.app-events-card-title-3{
	color:var(--gray);
}
.event-label{
	border:1px solid #eee;
	border-radius: 10px;
    padding: 2px 5px;
    display: inline-block;
    color: #676767;
	font-size:12px;
}
.event-ticket{
	width:15px;
}
.app-ticket-list-grid{
	margin:15px 0;	
}
.app-ticket-list-grid ul{
	margin:0;
	padding:0;
}
.app-ticket-list-grid li{
	display:block;
	list-style:none;
	border-radius: 10px;
    background: #fff;
    margin-bottom: 10px;
}
.app-ticket-card{
	min-height:60px;
	width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto auto;
	gap:15px;
    align-items: end;
    cursor: pointer;
	font-size:var(--app-font-size);
}
.app-ticket-card-title{
	font-size:16px;
	font-weight:bold;
	color:var(--color-theme);
}
.app-ticket-card-title-2{
	font-size:80%;
	color:var(--gray);
}
.app-ticket-card-title-3{
	color:var(--gray);
	background:#f1f5f9;
	border-radius:6px;
	padding:2px 10px;
	display:inline-block;
	margin-top: 5px;
    font-weight: 500;
    font-size: 12px;
}
.app-ticket-card-quantity{
	display:flex;
	align-items:end;
	justify-content:end;
}
/* 012 - Event Detail */
.app-events-wrapper{
	width:100%;
	font-size:var(--app-font-size);
	color: var(--color-theme-03);
	margin-bottom:15pt;
}
.app-events-title{
	font-weight:600;
	color:var(--color-theme);
	text-transform:capitalize;
}
.app-events-merchant{
	font-weight:500;
	text-transform:capitalize;
	margin-bottom:15px;
}
.app-events-merchant-logo{
    width: 100%;
    height: auto;
    max-height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom:15px;
}
.app-events-merchant-logo img{
	width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
}
.app-events-desc{
	margin-bottom:15px;
	padding:15px;
	background:#fff;
	border-radius:10px;
}
.app-event-date-box{
	padding:15px 20px;
	background:#fff8f2;
	border-radius:10px;
	border:1px solid #ddd;	
}
.app-event-set-date{
	font-size:16pt;
	font-weight:bold;
	color:var(--color-theme-03);
}
.app-price-ticket-box{
	padding:15px;
	background:#fff8f2;
	border-radius:10px;
	border:1px solid #ddd;
	font-size:14px;
}
.app-price-ticket-box span{
	font-weight:bold;
	font-size:18pt;
	color:var(--color-theme);
	margin-left:6px;
}
.app-confirmation-label{
	margin:25px auto;
	padding:10px 15px;
	background:#efefef;
	font-weight:600;
	border-radius:35px;
	display: block;
    width: fit-content;
	text-transform:uppercase;
}
/* 013 - Ticket Detail */
.app-ticket-detail-wrapper{
	width:100%;
	min-height:360px;
	background:#fff;
	border-radius:22px;
	box-shadow:var(--shadow);
	margin-bottom:15px;
	overflow:hidden;
}
.app-ticket-detail-header {
	background: linear-gradient(135deg, #FF8C42 0%, #E67A32 100%);
	padding:25px 25px 35px;
	position: relative;
	overflow: hidden;
	color:#fff;
}
.app-ticket-detail-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
	radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
	radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
	pointer-events: none;
}
.app-ticket-detail-header::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 20px;
	background: 
	radial-gradient(circle at 10px 0, transparent 10px, #fff 10px, #fff 20px, transparent 20px),
	radial-gradient(circle at 10px 0, transparent 10px, #fff 10px, #fff 20px, transparent 20px);
	background-size: 20px 20px;
	background-position: 0 0, 10px 0;
	background-repeat: repeat-x;
}
.app-ticket-id-section{
	display:flex;
	gap:10px;
	align-items:start;
	color:#fff;
	font-weight:600;
	text-transform:capitalize;
}
.app-ticket-event-icon{
	width:52px;
	height:52px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex:none;
	padding: 10px;
    background: rgba(255, 255, 255, .35);
    border-radius: 50%;
}
.app-ticket-event-icon img{
	width:100%;
	max-width:100%;
	filter:invert(1);
}
.app-ticket-detail-by{
	font-size:80%;
	color:#ffe5d3;
	margin-top:5px;
}
.app-ticket-detail-body {
    padding:15px 28px 25px;
}
.app-ticket-detail-QR{
	width:100%;
	max-width:165px;
	margin:0 auto 15pt;
}
.app-ticket-detail-grid{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 28px;
}
.app-ticket-detail-box{
	width:100%;
	padding:10px;
	border-radius:10px;
	border:1px solid #ebebeb;
	background:linear-gradient(135deg, #FAFAFA 0%, #F8F8F8 100%);
	display:flex;
	gap:10px;
	align-items:center;
}
.app-ticket-detail-icon{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background:var(--color-theme-02);
    color: white;
    flex-shrink: 0;
}
.app-ticket-detail-icon img{
	width:100%;
	max-width:65%;
}
.app-ticket-detail-content{
	font-size:var(--app-font-size);
	color:var(--color-theme-03);
}
.app-ticket-detail-content label{
	color: #999;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 80%;
}
.app-ticket-usage-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.1);
	font-size:var(--app-font-size);
}
.app-ticket-usage-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom:10px;
}
.app-ticket-usage-item:last-child {
	margin-bottom: 0;
}
.app-ticket-usage-label {
	font-weight: 500;
}
.app-ticket-usage-value {
	font-size: 14px;
	font-weight: 700;
}
.app-ticket-usage-value.app-ticket-highlight {
	color: #0EA5E9;
	font-size: 16px;
}
.app-ticket-usage-dash {
	font-weight: 400;
}
.app-ticket-detail-instructions{
	text-align: center;
	padding: 24px 20px;
	background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(255, 184, 140, 0.05) 100%);
	border-radius: 18px;
	border:1px solid #f1dfd6;
	margin-bottom: 24px;
}
.app-ticket-detail-instructions h5{
	font-size: 14px;
	color: var(--color-theme-03);
	margin-bottom:0px;
	font-weight: 500;
	line-height:2;
}
.app-ticket-detail-instructions h3{
	font-size: 18px;
	font-weight: 700;
	color: var(--color-theme);
	margin-bottom:0;
}
/* 014 - Setting */
.app-setting-profile-card{
	background:#fff;
    margin:0px;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
	font-size:var(--app-font-size);
}
.app-setting-profile-avatar-box{
	margin: -50px auto 10px auto;
	display:block;
	position:relative;
	width: 80px;
    height: 80px;
}
.app-setting-profile-avatar{
    width: 80px;
    height: 80px;
	margin:0 auto;
    background-color: #A0E3EB;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow:hidden;
	position:relative;
}
.app-setting-profile-upload{
	width:25px;
	height:25px;
	background:#fff;
	border-radius:50%;
	border:1px solid #eee;
	box-shadow:var(--shadow);
	position:absolute;
	right:-5px;
	bottom:10px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.app-setting-profile-username{
	font-size:16px;
	font-weight:600;
	color:var(--color-theme);
	text-transform:capitalize;
}
.app-setting-profile-email{
	color:var(--color-theme-02);
}
.app-setting-profile-referral-box {
    background-color: #FFF4E6;
    border: 1px dashed var(--color-theme);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.2s;
	display:block;
}
.app-setting-profile-referral-label{
	font-size:80%;
    color: var(--color-theme);
    text-transform: uppercase;
    font-weight: bold;
}
.app-setting-profile-referral-code{
    font-weight: 600;
    color: var(--color-theme-03);
    display: flex;
    justify-content: center;
    align-items: center;
    gap:5px;
}
.app-setting-section-title {
	padding: 20px 20px 10px 20px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--gray);
	text-transform: uppercase;
}
.app-setting-settings-list {
	background:#fff;
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow);
}
.app-setting-list-item {
	display: flex;
	align-items: center;
	padding: 16px;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
	transition: background 0.2s;
}
.app-setting-list-item:last-child {
	border-bottom: none;
}
.app-setting-list-item:active {
	background-color: #f9f9f9;
}
.app-setting-icon-box {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	font-size: 1rem;
}
.app-setting-icon-orange { background: #FFF4E6; color: var(--color-theme); }
.app-setting-icon-teal { background: #E0F7FA; color: var(--color-theme-02); }
.app-setting-icon-red { background: #FEE2E2; color: #EF4444; }
.app-setting-item-text {
	flex-grow: 1;
	font-size:14px;
	font-weight: 500;
	color: var(--color-theme-03);
}
.app-setting-arrow {
	color: #ccc;
	font-size: 0.8rem;
}
.language-preview{
	display:flex;
	flex-direction:column;
	gap:10px;
}
.language-item{
	padding:10px;
	border:1px solid #eee;
	border-radius:10px;
	background:#f9f9f9;
	text-align:center;
	position:relative;
	opacity:.5;
	cursor:pointer;
	transition:all ease .3s;
}
.language-item:hover{
	opacity:1;
}
.language-item.active{
	opacity:1;
	background:var(--color-theme-02);
}
.app-lang-switch-check{
	position:absolute;
	top:50%;
	right:20px;
	transform:translateY(-50%);
}
/* 015 - Setting Profile */
.app-setting-profile-body{
	padding:15pt 0;
	font-size:var(--app-font-size);
}
.app-setting-action-container{
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.btn-update {
	width: 100%;
	background: var(--color-theme);
	color: white;
	border: none;
	padding: 16px;
	border-radius:12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
	transition: transform 0.2s;
}
.btn-update:active {
	transform: scale(0.98);
}
.btn-delete {
	width: 100%;
	background: transparent;
	color:#d00;
	border: 1px solid transparent;
	padding: 12px;
	border-radius:12px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
}
.btn-delete:hover {
	background: rgba(255, 118, 117, 0.1);
}
.phone-input-wrapper{
	display:flex;
	border:1px solid #ddd;
	border-radius:10px;
	background:#fff;
}
.select-wrapper{
	position:relative;
}
.country-select{
	width:100%;
	padding:10px 25px 10px 12px;
	border:none;
	border-right: 1px solid #ddd;
	border-radius:0px;
	background:transparent;
	font-size:14px;
	outline:none;
	appearance:none;        /* Remove default arrow */
	-webkit-appearance:none;
	-moz-appearance:none;
	transition:0.2s;
}
.country-select:hover {

}
.country-select:focus {
	border-radius:10px 0px 0px 10px;
	background:transparent;
	box-shadow:0 0 0 3px rgba(16,161,172,0.15);
}
.select-wrapper::after{
	content:"";
	position:absolute;
	top:50%;
	right:10px;
	width:12px;
	height:12px;
	pointer-events:none;
	background:url("data:image/svg+xml;utf8,<svg fill='%2310a1ac' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5'/></svg>") center/12px no-repeat;
	transform:translateY(-50%);
	opacity:0.8;
}
.phone-input{
	flex:1;
	padding:10px 12px;
	border:none;
	border-radius:0px 10px 10px 0;
	font-size:14px;
	outline:none;
	transition:0.2s;
	background:transparent;
}
.phone-input:focus, .phone-input:active{
	background:transparent;
	border-radius:0px;
	box-shadow:0 0 0 3px rgba(16,161,172,0.15);
}
/* 015 - Setting Change Password */
.app-setting-change-password{
	width:100px;
    height:100px;
    margin: 0 auto;
	padding:15px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}
.app-setting-change-password-body{
	font-size:var(--app-font-size);
}
.app-setting-change-password-terms ul{
	margin:0;
	padding:0;
}
.app-setting-change-password-terms li{
	list-style:disc;
	margin-bottom:5px;
	margin-left:20px;
	color:#888;
}
/* 016 - Promotion */
.app-promotions-list-grid{
	margin:0px 0;
}
.app-promotions-list-grid ul{
	margin:0;
	padding:0;
}
.app-promotions-list-grid li{
	display:block;
	list-style:none;
	padding:15px 10px;
	margin-bottom:10pt;
	background:#fff;
	border-radius:10px;
}
.app-promotions-list-card{
	display:flex;
	gap:20px;
	align-items:center;
	transition:all ease .3s;
}

.app-promotions-img{
	width: 52px;
    height: 52px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
	border: 1px solid #efefef;
    box-sizing: content-box;
	flex-shrink: 0;
}
.app-promotions-img img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.app-promotions-detail{
	font-size:var(--app-font-size);
	color:#000;
}
.app-promotions-title{
	font-weight: bold;
    font-size: 16px;
	text-transform:uppercase;
    margin-bottom: 0px;
}
.app-promotions-content{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
}
/* 017 - Promotion Detail */
.app-promotion-detail-card{
	background: #fff;
    border-radius: 10px;
    padding: 10pt 10pt 10pt;
    margin-top: 20px;
    box-shadow: var(--shadow);
    position: relative;
    font-size: var(--app-font-size);	
}
.app-promotion-detail-card-img{
	width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: -50px auto 15px;
    background: #f1f1f1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;	
}
.app-promotion-detail-card-title{
	font-weight: 700;
    font-size: 16px;
	text-align:center;
    color: var(--color-theme);
    text-transform: capitalize;
    margin: 0 auto;
    margin-bottom: 5px;
    display: block;
    max-width: 80%;
}
.app-promotion-detail-card p, .app-promotion-detail-card-cotnent p{
	font-size: var(--app-font-size);
	text-align: justify;	
}
.app-promotion-purchase-voucher{
	background: #fff;
    border-radius: 10px;
    padding: 10pt 10pt 10pt;
    box-shadow: var(--shadow);
    position: relative;
    font-size: var(--app-font-size);	
}
.app-promotion-purchase-voucher h5{
	font-size:16px;
	text-transform:capitalize;
	color:var(--color-theme);
}
.app-promotion-purchase-grid{
	margin-top:10pt;
}
.app-promotion-purchase-grid ul{
	margin:0;
	padding:0;
}
.app-promotion-purchase-grid li{
	display:block;
	list-style:none;
	margin-bottom:10pt;
	padding:10px;
	background:#f8f8f8;
	border-radius:10px;
}
.app-promotion-purchase-grid li:nth-child(even){
	background:#f9f9f9;
}
.app-promotion-purchase-card{
	display: flex;
    gap:15px;
    align-items: start;
    transition: all ease .3s;	
}
.app-promotion-purchase-card-img{
	width:65px;
    height:65px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #efefef;
    box-sizing: content-box;
    flex-shrink: 0;	
}
.app-promotion-purchase-card-img img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.app-promotion-purchase-card-content{
	font-size: var(--app-font-size);
    color: #000;
	flex:auto;
}
.app-promotion-purchase-card-title{
	font-size:14pt;
	font-weight:600;
	text-transform:capitalize;
	color:var(--color-theme-03);
}
.app-promotion-purchase-card-desc{
	color:var(--color-theme);
	margin-bottom:6px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:1;
	overflow: hidden;
}
.app-promotion-purchase-card-location{
	font-size:12px;
	color:var(--gray);
}
.app-promotion-purchase-modal-img{
	width:125px;
    height:125px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #efefef;
    box-sizing: content-box;
    flex-shrink: 0;	
	margin:0 auto 10pt;	
}
.app-promotion-purchase-modal-img img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.app-promotion-purchase-modal-title{
	text-align:center;
	font-size:16pt;
	font-weight:bold;
	text-transform:capitalize;
	color:var(--color-theme-03);
	margin-bottom:10px;
}
.app-promotion-purchase-modal-desc{
	color:var(--color-theme);
	margin-bottom:10px;
	text-align:center;
}
.app-promotion-purchase-modal-tnc{
	font-size:var(--app-font-size);
	color:#888;
	margin-bottom:15px;
}
.app-promotion-purchase-modal-tnc p{
	font-size:var(--app-font-size);
	margin-bottom:0;
}
.app-confirm-purchase-box{
	padding: 15px 20px;
	margin-bottom:10px;
    background: #fff8f2;
    border-radius: 10px;
	border:1px solid #f9e6d6;	
}
.app-confirm-purchase-box b{
	color:var(--color-theme);
	font-weight:bold;
}
/* 018 - Community */
.app-community-list-grid{
	margin:0px 0;
}
.app-community-list-grid ul{
	margin:0;
	padding:0;
}
.app-community-list-grid li{
	display:block;
	list-style:none;
	padding:15px 10px;
	margin-bottom:10pt;
	background:#fff;
	border-radius:10px;
}
.app-community-list-card{
	display:flex;
	gap:20px;
	align-items:center;
	transition:all ease .3s;
}
.app-community-img{
	width: 52px;
    height: 52px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
	border: 1px solid #efefef;
    box-sizing: content-box;
	flex-shrink: 0;
}
.app-community-img img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.app-community-detail{
	font-size:var(--app-font-size);
	color:#000;
}
.app-community-title{
	font-weight: bold;
    font-size: 16px;
	text-transform:uppercase;
    margin-bottom: 0px;
}
.app-community-content{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
}
/* 019 - Categories */
.app-categories-list-grid{
	margin:0px 0;
}
.app-categories-list-grid ul{
	margin:0;
	padding:0;
}
.app-categories-list-grid li{
	display:block;
	list-style:none;
	padding:15px 10px;
	margin-bottom:10pt;
	background:#fff;
	border-radius:10px;
}
.app-categories-list-card{
	display:flex;
	gap:20px;
	align-items:center;
	transition:all ease .3s;
}
.app-categories-img{
	width: 52px;
    height: 52px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
	border: 1px solid #efefef;
    box-sizing: content-box;
	flex-shrink: 0;
}
.app-categories-img img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.app-categories-detail{
	font-size:var(--app-font-size);
	color:#000;
}
.app-categories-title{
	font-weight: bold;
    font-size: 16px;
	text-transform:uppercase;
    margin-bottom: 0px;
}
.app-categories-content{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
}