/* [1] BASE — Reset, Body, Fonts (line ~1) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
	padding-bottom: 0;
  	position: relative;
	font-family: 'Prompt';
}
/* [2] GUEST PAGE — Landing, Navbar, Hero, Services, FAQ, Footer (line ~12) */
.guest {
	background-image: url('https://storage.perfectcdn.com/23rmg9/p4d1tbmj09unkp0k.webp');
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.guest::before {
	content: '';
	position: absolute;
	width: 535px;
	height: 488px;
	border-radius: 568px;
	background: #5E6ECE;
	filter: blur(225px);
	opacity: 0.6;
	left: -180px;
	top: -100px;
}
.guest::after {
	content: '';
	position: absolute;
	width: 535px;
	height: 488px;
	border-radius: 568px;
	background: #5E6ECE;
	filter: blur(225px);
	opacity: 0.6;
	right: 0;
	top: 80px;
	z-index: -1;
}
h1,h2,h3,h4,h5,h6,p,span,button,input,a,div {
	font-family: 'Prompt';
}
.guest .navbar-default {
	margin-bottom: 0;
	background: transparent !important;
	border: none !important;
	position: absolute;
	left: 0;
	right: 0;
	top: 30px;
	z-index: 100;
	transition: top .35s ease, background .35s ease, box-shadow .35s ease;
}
/* Sticky scroll state (toggled by JS) */
.guest .navbar-default.navbar-scrolled {
	position: fixed;
	top: 0;
	background: rgba(255,255,255,.82) !important;
	-webkit-backdrop-filter: blur(18px) saturate(1.6);
	backdrop-filter: blur(18px) saturate(1.6);
	box-shadow: 0 2px 24px rgba(94,110,206,.12);
	animation: navSlideDown .3s ease;
}
@keyframes navSlideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}
.guest .navbar-center {
	border-radius: 48px !important;
	border: 1px solid rgba(222,228,242,.6);
	background: rgba(255,255,255,.85);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 32px rgba(152,184,255,.15), inset 0 1px 0 rgba(255,255,255,.6);
	margin-left: 80px;
	padding: 6px;
	transition: box-shadow .3s ease, background .3s ease;
}
.guest .navbar-center:hover {
	box-shadow: 0 6px 36px rgba(152,184,255,.22), inset 0 1px 0 rgba(255,255,255,.7);
}
.guest .navbar-center li a {
	background: transparent !important;
	color: #6b7084 !important;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	border-radius: 27px;
	padding: 9px 18px;
	transition: color .25s ease, background .25s ease, transform .2s ease;
}
.guest .navbar-center li a:hover {
	color: #5E6ECE !important;
	background: rgba(99,102,241,.06) !important;
}
.guest .navbar-center li.active a {
	border-radius: 27px;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%) !important;
	color: #FFF !important;
	min-width: 90px;
	min-height: 38px;
	box-shadow: 0 4px 16px rgba(99,102,241,.30);
	transform: scale(1);
	transition: transform .2s ease, box-shadow .2s ease;
}
.guest .navbar-center li.active a:hover {
	transform: scale(1.04);
	box-shadow: 0 6px 20px rgba(99,102,241,.38);
}
.guest .navbar-right .btn.btn-secondary {
	width: 128px;
	height: 50px;
	color: #FFF;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	border-radius: 25px;
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	border: none;
	box-shadow: 0 4px 16px rgba(99,102,241,.25);
	transition: transform .25s ease, box-shadow .25s ease;
}
.guest .navbar-right .btn.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(99,102,241,.35);
}
.guest .navbar-right .dropdown-toggle {
	height: 50px;
	padding: 0 20px;
	border-radius: 25px;
	background: rgba(255,255,255,.9) !important;
	border: 1px solid rgba(222,228,242,.7);
	color: #3d3f4a !important;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-right: 8px;
	transition: border-color .25s ease, box-shadow .25s ease;
}
.guest .navbar-right .dropdown-toggle:hover {
	border-color: #a5b4fc;
	box-shadow: 0 2px 12px rgba(99,102,241,.12);
}
/* Guest dropdown menu */
.guest .dropdown-menu {
	border: 1px solid rgba(222,228,242,.7);
	border-radius: 14px;
	background: rgba(255,255,255,.95);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 12px 40px rgba(94,110,206,.14);
	padding: 6px;
	margin-top: 8px;
	animation: guestDropIn .2s ease;
}
.guest .dropdown-menu > li > a {
	border-radius: 10px;
	padding: 10px 16px;
	font-size: 14px;
	color: #484B59;
	transition: background .2s ease, color .2s ease;
}
.guest .dropdown-menu > li > a:hover {
	background: rgba(99,102,241,.08);
	color: #5E6ECE;
}
.guest .dropdown-menu > li.active > a {
	background: linear-gradient(135deg, #6366f1, #a855f7);
	color: #fff;
}
@keyframes guestDropIn {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}
ul {
    padding: 0;
    margin: 0;
}
ul li {
    list-style: none;
}
#top_sec {
	position: relative;
	background-image: url('https://storage.perfectcdn.com/23rmg9/uzplf8hm6qc8aoz5.webp');
	background-size: 100% 100%;
	padding-top: 150px;
}
#top_sec::before {
	content: '';
	position: absolute;
	background-image: url('https://storage.perfectcdn.com/23rmg9/f7deq28o2s4c7muz.webp');
	background-repeat: no-repeat;
	background-position: top right;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}
#top_sec .row .top_row:first-child {
	padding-top: 50px;
}
.tag_title {
	display: flex;
	align-items: center;
}
.rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 10px;
	border-radius: 23px;
	background: #FFF;
	width: auto;
	height: 46px;
	padding: 6px;
}
.rating span {
	width: 63px;
	height: 34px;
	border-radius: 23px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	color: #FFF;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rating p {
	color: #080B1B;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}
.main-title {
	color: #080B1B;
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -1.2px;
	position: relative;
}
.txt {
	color: #484B59;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}
.curve_line {
	position: relative;
}
.curve_line::before {
	content: '';
	position: absolute;
	background-image: url('https://storage.perfectcdn.com/23rmg9/s380u33mi44211pk.webp');
	background-repeat: no-repeat;
	width: 416.76px;
	height: 50.656px;
	bottom: -15px;
	background-position: left center;
	left: -40px;
}
.frm_flex_input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}
.guest .frm_flex_input .form-control {
	width: 270px;
}
.form-group {
	position: relative;
}
.guest .form-control {
	border-radius: 30px;
	background: #FFF;
	min-height: 54px;
	border: none;
	box-shadow: none;
	color: #484B59;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-left: 38px;
}
.inpt-icon {
	position: absolute;
	top: 13px;
	left: 10px;
}
.checkbox_flex {
	margin-bottom: 20px;
}
label {
	color: #484B59;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.forgot-password {
	color: #484B59;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.btn.btn-primary {
	border-radius: 30px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	border: none;
	padding: 10px 14px;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 123px;
}
.deliver_txt {
	width: 422px;
	height: 68px;
	border-radius: 50px;
	background: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	padding: 18px;
    position: relative;
}
.time_txt {
	color: #484B59;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 93px;
	height: 26px;
	border-radius: 50px;
	background: #F8EEFF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}
.deliver_txt strong {
	margin-left: 7px;
	margin-right: 5px;
}
.deliver_txt span svg {
	transform: translateY(2px);
}
.row.deliver_row {
	position: relative;
}
.row.deliver_row::before {
	content: '';
	position: absolute;
	width: 359px;
	height: 1px;
	background: #E4E0F0;
	left: 0;
	top: 34px;
}
.row.deliver_row::after {
	content: '';
	position: absolute;
	width: 359px;
	height: 1px;
	background: #E4E0F0;
	right: 0;
	top: 34px;
}
#why_choose {
	padding: 80px 0;
}
#why_choose .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.blue-txt {
	width: 156px;
	height: 47px;
	border-radius: 14px;
	background: #F4F4F4;
	color: #5E6ECE;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
    margin-bottom: 15px;
}
.title {
	color: #080B1B;
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
#why_choose .title {
	font-size: 40px;
	padding-top: 10px;
	padding-bottom: 25px;
}
#why_choose .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}
.btn.btn-secondary {
	width: 187px;
	height: 54px;
	border-radius: 30px;
	background: #0D0425;
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#why_choose .btn.btn-secondary {
    margin-left: auto;
}
.step_card_wrapper {
	border-radius: 17px;
	background: #F4F4F4;
	padding: 20px;
}
.step_card_wrapper h4 {
	color: #080B1B;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 107.346%;
}
.step_card_wrapper p {
	color: #484B59;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 15px;
}
.step_flex_rise {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 39px;
	background: #F4F4F4;
	padding: 20px;
	margin-top: 20px;
	height: 80px;
}
.rise_txt {
	color: #100B24;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0;
}
.rise_txt span {
	color: #6343F3;
}
#our_service {
	padding: 80px 0;
}
.service_btn_flex {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
}
.btn.btn_service {
	border-radius: 31px;
	border: 1px solid #F2F2F2;
	background: #FFF;
	width: 148px;
	height: 50px;
	color: #484B59;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.service_btn_flex .btn.btn-primary {
	min-width: 148px;
}
.top_non_drop {
	position: relative;
	z-index: 9;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 28px;
	border: 1px solid #EBE7F6;
	background: #FFF;
	padding: 20px;
	width: max-content;
	margin: 50px auto;
}
.top_non_drop li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	border-radius: 19px;
	background: #F4F4F4;
	color: #080B1B;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 10px;
	margin-right: 10px;
}
#features_smm_panel .blue-txt {
	margin: 15px auto;
}
.row.features_row {
	margin-top: 20px;
}
.support_top_img {
	margin-top: 15px;
}
#features_smm_panel {
	position: relative;
}
#features_smm_panel::before {
	content: '';
	position: absolute;
	width: 535px;
	height: 488px;
	border-radius: 535px;
	opacity: 0.5;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	filter: blur(225px);
	z-index: -1;
	left: -250px;
}
#features_smm_panel::after {
	content: '';
	position: absolute;
	width: 406.274px;
	height: 366.326px;
	border-radius: 406.274px;
	opacity: 0.5;
	background: #C645F9;
	filter: blur(225px);
	z-index: -1;
	right: 0;
	bottom: -100px;
}
#our_social {
	padding: 80px 0;
}
#our_social .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#our_social .row .btn.btn-secondary {
	margin-left: auto;
}
#our_social .title {
	padding-top: 10px;
	padding-bottom: 25px;
}
#our_social .curve_line::before {
	left: -70px;
}
.step_socal_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
    margin-bottom: 30px;
}
.step_socal_wrapper li h6 {
	color: #080B1B;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 127.812%;
	padding-top: 15px;
}
.our_card_wapper {
	border-radius: 18px;
	background: rgba(244,244,250,.6);
	border: 1px solid rgba(222,228,242,.4);
	padding: 25px;
	transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
	margin-bottom: 20px;
}
.our_card_flex {
	display: flex;
	justify-content: space-between;
}
.our_title {
	color: #080B1B;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 121.183%;
	padding-top: 20px;
	padding-bottom: 30px;
}
.our_card_wapper .btn.btn-secondary {
	margin-left: unset;
	width: 100%;
	height: 48px;
}
.our_card_wapper:hover {
	background: #FFF;
	box-shadow: 0 16px 40px rgba(99,102,241,.10), 0 4px 12px rgba(0,0,0,.04);
	transform: translateY(-4px);
}
.our_card_wapper:hover .btn.btn-secondary {
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	border: none;
}
.our_card_wapper:hover .our_card_flex svg path {
	fill: #5E6ECE;
}
.card_prp {
	border-radius: 24px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	height: 238px;
	padding: 25px;
	margin-top: -20px;
}
.our_title_hero {
	color: #FFF;
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.card_prp .btn.btn-secondary {
	background: #fff;
	color: #1E1E1E;
	margin-top: 70px;
	margin-left: unset !important;
	height: 46px;
}
#how_its_work .blue-txt {
	margin: 15px auto;
}
.how_box {
	margin-top: 120px;
}
.how_box h2 {
	color: #080B1B;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	margin: 15px 0;
}
.how_box p {
	color: #484B59;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.how_box {
	position: relative;
}
.how_box_01 .numer_pos {
	position: absolute;
	right: 110px;
	top: -70px;
}
.how_box_02 .numer_pos {
	position: absolute;
	right: 40px;
	top: -70px;
}
.how_box_03 .numer_pos {
	position: absolute;
	right: -20px;
	top: -70px;
}
.row.snake_row {
	background-image: url('https://storage.perfectcdn.com/23rmg9/r3nqx47fpnng3ske.webp');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: top center;
}
.how_box_02 {
	margin-top: 300px;
}
.how_box_03 {
	margin-top: 350px;
}
#how_its_work {
	position: relative;
}
#how_its_work::before {
	content: '';
	position: absolute;
    top: 0;
	left: -350px;
	width: 535px;
	height: 488px;
	flex-shrink: 0;
	border-radius: 535px;
	opacity: 0.5;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	filter: blur(225px);
}
#cheap_sec {
	padding: 80px 0;
}
.black_box {
	border-radius: 31px;
	background: #111112;
	padding: 25px;
	position: relative;
	overflow: hidden;
	min-height: 578px;
}
.black_box h2 {
	color: #FFF;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.black_box p {
	color: #FEFCFF;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding-bottom: 40px;
}
.black_box .btn.btn-primary {
	width: 175px !important;
}
.black_box img {
	position: absolute;
	bottom: -107px;
	right: -100px;
}
.card_yellow_box {
	border-radius: 31px;
	background: #FFD25D;
	padding: 25px;
	margin-bottom: 20px;
    min-height: 277px;
}
.card_purple_box {
	border-radius: 31px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	padding: 25px;
    min-height: 277px;
}
.card_yellow_box .card_txts h4 {
	color: #080B1B;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top: -10px;
}
.card_yellow_box .card_txts p {
	color: #484B59;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.card_purple_box h4 {
	color: #fff;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top: -10px;
}
.card_purple_box p {
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
#overview_sec .blue-txt {
	margin: 15px auto;
}
#overview_sec {
	position: relative;
}
#overview_sec::before {
	content: '';
	position: absolute;
	width: 535px;
	height: 488px;
	flex-shrink: 0;
	border-radius: 535px;
	opacity: 0.5;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	filter: blur(225px);
	left: -250px;
	top: 50px;
}
#overview_sec::after {
	content: '';
	position: absolute;
	width: 406.274px;
	height: 366.326px;
	transform: rotate(-0.797deg);
	flex-shrink: 0;
	border-radius: 406.274px;
	opacity: 0.5;
	background: #C645F9;
	filter: blur(225px);
	right: 13px;
	bottom: 0;
	z-index: -1;
}
#customers_sec {
	padding: 80px 0;
}
#customers_sec .row {
	border-radius: 38px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	padding: 50px;
	position: relative;
	overflow: hidden;
}
#customers_sec .row::before {
	content: '';
	position: absolute;
	background-image: url('https://storage.perfectcdn.com/23rmg9/qeoc5fc9xplacfhp.webp');
	background-size: 100% auto;
    background-repeat: no-repeat;
	background-position: top right;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}
.card_slider {
	border-radius: 18px;
	background: #F4F4F4;
	padding: 25px;
	margin-right: 20px;
}
.card_img_slider {
	display: flex;
	align-items: center;
}
.card_img_slider span {
	margin-left: auto;
}
.slider_title {
	color: #080B1B;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0;
}
.card_img_slider img {
	margin-right: 10px;
}
.card_txt_slider {
	color: #484B59;
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: normal;
	border-top: 1px solid #DCD7E9;
	padding-top: 20px;
	margin-top: 20px;
}
#customers_sec .row .title {
	color: #fff;
	padding-bottom: 80px;
}
#customers_sec .btn.btn-primary {
	width: 304px;
	height: 64px;
	border-radius: 18px;
	background: #FFF;
	color: #080B1B;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.4px;
	text-align: center;
	justify-content: center;
	margin-top: 40px !important;
	margin: auto;
}
.row.faq_row {
	padding-top: 50px;
}
.row.faq_row .nav-pills .nav-link {
	border-radius: 14px;
	background: linear-gradient(90deg, #F4F4F4 0%, rgba(244, 244, 244, 0.00) 100%);
	width: 100%;
	border: none;
	height: 87px;
	margin-bottom: 15px;
	color: #080B1B;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
    transition: 0.3s all linear;
    position: relative;
}
.row.faq_row .nav-pills .nav-link span {
	width: 53px;
	height: 53px;
	min-width: 53px;
	background: #FFF;
	filter: drop-shadow(0px 2px 0px rgba(126, 122, 147, 0.14));
	display: flex;
	border-radius: 50px;
	align-items: center;
	justify-content: center;
	color: #5E6ECE;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.row.faq_row .nav-pills .nav-link:hover {
	background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
	box-shadow: 0px 17px 33px 0px rgba(94, 110, 206, 0.22);
}
.row.faq_row .nav-pills .nav-link:hover span {
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	color: #fff;
}
.gray_box {
	border-radius: 15px;
	background: #F4F4F4;
	padding: 30px;
	min-height: 384px;
}
.gray_box h2 {
	color: #080B1B;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding-top: 30px;
}
.gray_box p {
	color: #484B59;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.6;
}
.row.faq_row .nav-pills {
	border-right: 4px solid #F8F6FF;
	padding-right: 20px;
}
.row.faq_row .nav-pills .nav-link:hover::before {
	content: '';
	position: absolute;
	width: 4px;
	height: 44px;
	background: #5E6ECE;
	right: -23px;
}
#faq_sec {
	padding-bottom: 80px;
}
#footer_wrapper {
	padding-top: 80px;
	background-color: #0a0318;
	background-image: url('https://storage.perfectcdn.com/23rmg9/2o90mb2gjy65fch3.webp');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: relative;
	overflow: hidden;
}
#footer_wrapper::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
	top: -100px;
	left: -150px;
	pointer-events: none;
}
#footer_wrapper::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(168,85,247,.08) 0%, transparent 70%);
	bottom: 60px;
	right: -100px;
	pointer-events: none;
}
.footer_title {
	color: #FFF;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.3px;
}
.txt_white {
	color: rgba(255,255,255,.78);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
}
.row.footer_top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(168,85,247,.10));
	border: 1px solid rgba(99,102,241,.15);
	padding: 32px 36px;
	margin-bottom: 50px;
	position: relative;
}
.row.footer_top .footer_title {
	margin-bottom: 4px;
}
.row.footer_top .txt_white {
	margin: 0;
}
.row.footer_top .btn.btn-primary {
	justify-content: center;
	width: auto;
	padding: 0 32px;
	height: 50px;
	margin-left: auto;
	border-radius: 25px;
	background: linear-gradient(135deg, #6366f1, #a855f7);
	border: none;
	box-shadow: 0 4px 20px rgba(99,102,241,.30);
	font-weight: 600;
	transition: transform .25s ease, box-shadow .25s ease;
}
.row.footer_top .btn.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(99,102,241,.40);
}
.footer_logo {
	color: #FFF;
	font-size: 26px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.3px;
}
.social_footer {
	display: flex;
	align-items: center;
	gap: 10px;
}
.fc_title {
	color: rgba(255,255,255,.55);
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}
.social_footer li a {
	width: 42px;
	height: 42px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.10);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: rgba(255,255,255,.7);
	font-size: 16px;
	text-decoration: none;
	transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.social_footer li a:hover {
	background: linear-gradient(135deg, #6366f1, #a855f7);
	border-color: transparent;
	color: #fff;
	transform: translateY(-2px);
}
.step_footer_service {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.step_footer_service ul {
	border-radius: 16px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.07);
	padding: 24px;
	min-width: 200px;
	flex: 1;
	margin-right: 0;
}
.step_footer_service ul h6 {
	color: #FFF;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.3px;
	border-bottom: none;
	padding-bottom: 14px;
	margin-bottom: 4px;
	position: relative;
}
.step_footer_service ul h6::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 28px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, #6366f1, #a855f7);
}
.step_footer_service ul li a {
	border-radius: 10px;
	background: transparent;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	padding: 8px 0;
	color: rgba(255,255,255,.55);
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
	text-decoration: none;
	transition: color .2s ease, padding-left .2s ease;
}
.step_footer_service ul li a:hover {
	color: #a5b4fc;
	padding-left: 6px;
}
.row.footer_row .txt_white {
	padding-bottom: 32px;
	line-height: 1.8;
}
.copy_wrapper_bg {
	background: rgba(255,255,255,.04);
	border-top: 1px solid rgba(255,255,255,.06);
	padding: 18px 90px;
	height: auto;
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.copy_wrapper_bg .txt_white {
	margin: 0;
	color: rgba(255,255,255,.40);
	font-size: 13px;
}
.copy_wrapper {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 20px;
}
.copy_wrapper li a {
	color: rgba(255,255,255,.40);
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	transition: color .2s ease;
}
.copy_wrapper li a:hover {
	color: #a5b4fc;
}
.copy_wrapper .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#signup_Sec {
	padding-top: 180px;
	padding-bottom: 80px;
}
.purple_txt {
	color: #5E6ECE;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 126%;
}
.purple_title {
	color: #5E6ECE;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 126%;
}
#signup_Sec .title {
	font-size: 52px;
	font-style: normal;
	font-weight: 700;
	position: relative;
	z-index: 9;
}
.signup_left_side .btn.btn-secondary {
	width: max-content;
	padding: 25px;
	height: 60px;
	margin-top: 20px;
}
.guest .well {
	border-radius: 25px;
	background: #FFF;
	box-shadow: none;
	border: none;
	padding: 25px;
}
.yellow_box {
	border-radius: 60px;
	border: 1.5px solid #FFF;
	background: #FFD25D;
	padding: 12px;
	width: 258px;
	height: 71px;
	display: inline-flex;
	align-items: center;
	color: #FFF;
	position: relative;
}
.yellow_box::before {
	content: '';
	position: absolute;
	width: 258.284px;
	height: 71.274px;
	transform: rotate(-9.078deg);
	border-radius: 60px;
	opacity: 0.36;
	background: #FFD25D;
	z-index: -1;
	left: 0;
}
.guest #signup_Sec .form-control {
	border-radius: 38px;
	border: 1px solid rgba(235, 231, 246, 0.49);
	background: #F4F4F4;
	color: #080B1B;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	padding-left: 53px;
}
#signup_Sec .inpt-icon {
	width: 35px;
	height: 35px;
	border-radius: 29px;
	background: #FFD25D;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 9px;
}
.guest .pull-right-middle {
	color: #080B1B;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 126%;
}
.guest .pull-right-middle a {
	color: #A38DFF;
}
#signup_Sec .form-inline .form-group {
	width: 100%;
	margin-top: 15px;
}
#signup_Sec .btn.btn-primary {
	justify-content: center;
	width: 100%;
	min-width: 100%;
	height: 53px;
}
.title-black {
	color: #080B1B;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
}
.signup_left_side {
	padding-top: 30px;
	position: relative;
}
.signup_left_side::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url('https://storage.perfectcdn.com/23rmg9/r3d1t5506q2d3inx.webp');
	background-repeat: no-repeat;
	background-position: bottom left;
	left: 0;
	bottom: -80px;
}
#service_wrapper {
	padding: 150px 0;
}
.bg_txt {
	border-radius: 52px;
	background: #5E6ECE;
	width: max-content;
	margin: auto;
	padding: 25px;
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	height: 60px;
	margin-top: 25px;
	display: flex;
	align-items: center;
}
.card_wrapper {
	border-radius: 20px;
	background: #FFF;
	padding: 28px;
	margin-bottom: 24px;
	position: relative;
	border: 1px solid rgba(222,228,242,.5);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card_wrapper::before {
	content: '';
	position: absolute;
	width: 189px;
	height: 189px;
	background: rgba(99,102,241,.12);
	filter: blur(80px);
	bottom: -20px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	opacity: 0;
	transition: opacity .35s ease;
}
.card_wrapper:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(99,102,241,.10), 0 4px 12px rgba(0,0,0,.04);
	border-color: rgba(99,102,241,.15);
}
.card_wrapper:hover::before {
	opacity: 1;
}
.row.service_card {
	padding-top: 50px;
}
.card_wrapper img {
	padding-top: 30px;
	padding-bottom: 25px;
	transition: transform .35s ease;
}
.card_wrapper:hover img {
	transform: scale(1.05);
}
.card_wrapper .card-title {
	color: #080B1B;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	padding-bottom: 10px;
	letter-spacing: -0.2px;
}
.card_wrapper .card-body {
	color: #6b7084;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}
#contact_us {
	padding: 150px 0;
}
#contact_us .card_wrapper img {
	padding-top: 0;
	padding-bottom: 8px;
	margin: auto;
}
#contact_us .card_wrapper::before {
	display: none;
}
#contact_us .card_wrapper {
	box-shadow: 0px 59px 100px 0px rgba(102, 105, 111, 0.31);
}
#forgot_password {
	padding: 150px 0;
}
#forgot_password .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.guest .forgot_pass .form-control {
	box-shadow: 0px 15px 25.9px 0px rgba(72, 75, 89, 0.16);
	padding-left: 15px;
}
.forgot_pass .btn.btn-primary {
	margin: auto;
	justify-content: center;
	width: 190px;
	height: 60px;
}
/* [3] SIDEBAR — Base Layout (line ~1284) */
.sidebar {
	position: fixed;
	width: 230px;
	border-radius: 20px;
	background: #FFF;
	padding: 20px;
	height: calc(100% - 30px);
	z-index: 9999;
	left: 0;
	top: 15px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	scrollbar-width: thin;
}
.sidebar-nav {
	padding: 0;
	list-style: none;
	margin: 28px 0;
}
.sidebar-nav li .dropdown-item {
	padding-bottom: 0;
}
.sidebar-nav li a {
	display: flex;
	align-content: center;
	align-items: center;
	padding: 12px;
	text-decoration: none !important;
	color: #484B59;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}
.btn_dropdown_black {
	border-radius: 21.5px;
	background: #200E32 !important;
	height: 43px;
	display: flex;
	align-items: center;
	color: #fff !important;
}
.sidebar-nav li.active a, .sidebar-nav li.active a:hover, .sidebar-nav li a:hover, .sidebar-nav li a:focus {
	/* border-radius: 21.5px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%); */
	color: #fff;
	padding-bottom: 12px;
	border-radius: 21.5px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	box-shadow: 0 4px 7.2px 0 rgba(255, 255, 255, 0.53) inset;
}
.sidebar-nav li.active a .menu-icon img, .sidebar-nav li.active a:hover .menu-icon img, .sidebar-nav li a:hover .menu-icon img, .sidebar-nav li a:focus .menu-icon img {
	filter: drop-shadow(0px 100px 0 #fff);
	transform: translateY(-100px);
}
.menu-icon {
	margin-right: 10px;
	overflow: hidden;
}
.sidebar-nav li {
	width: 100%;
}
.sidebar-nav li .dropdown {
	width: 100%;
}
.sidebar-nav li .dropdown .btn.dropdown-toggle {
	width: 100%;
	display: flex;
	background: transparent;
	color: #484B59;
	box-shadow: none;
}
.sidebar-ftr {
	border-radius: 15px;
	background: #5E6ECE;
	padding: 20px;
	height: 145px;
	text-align: center;
	margin-top: 100px;
}
.sidebar-ftr h4 {
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 126%;
	width: 80%;
	margin: auto;
}
.sidebar-ftr .btn.btn-secondary {
	justify-content: center;
	height: 37px;
	background: #fff;
	color: #080B1B;
	margin-top: 15px;
	width: 100%;
}
.inner-warp {
	padding-left: 230px;
}
/* [4] DASHBOARD — Welcome Box, Balance, Account Info (line ~1389) */
.left_welcome_box {
	border-radius: 12px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	padding: 20px;
	position: relative;
	/* width: 398px; */
}
.welcome_title {
	color: #FFF;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	margin-bottom: 10px;
}
.welcome_txt {
	color: #FFF;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 126%;
}
.left_welcome_box .btn.btn-primary {
	width: 119px;
	min-height: 38px;
	border-radius: 36px;
	background: #FFF;
	color: #080B1B;
}
.left_welcome_box img {
	position: absolute;
	right: 18px;
	bottom: 15px;
}
.right_welcome_box {
	border-radius: 12px;
	background: #0E0426;
	padding: 20px;
	min-height: 175px;
	/* width: 398px; */
}
.step_account_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.step_account_box li {
	width: 32%;
	height: 96px;
	border-radius: 5px;
	background: #FFF;
	padding: 10px;
}
.account_content h6 {
	color: #484B59;
	font-size: 8px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	margin: 0;
}
.account_content p {
	color: #080B1B;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	margin: 0;
}
.account_content {
	padding-top: 22px;
}
.blnce_box {
	border-radius: 12px;
	border: 1px solid #EBE7F6;
	background: #FFF;
	padding: 20px;
	min-height: 176px;
}
.blnce_funds {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.blnce_funds .btn.btn-primary {
	min-width: 90px;
	min-height: 22px;
	background: #0E0426;
}
.blnce_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
}
.blnce_bottom h4 {
	color: #5E6ECE;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	margin: 0;
}
.blnce_bottom p {
	color: #080B1B;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
/* [5] SERVICE CATEGORIES — Title, List, Tabs, Forms (line ~1499) */
.ser-cat-title {
	position: relative;
	color: #FFF;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.20;
	margin-bottom: 10px;
	padding-left: 0;
	border-left: 2px solid #A38DFF;
}
.ser-cat-title-txt {
	background-color: #fff;
	position: relative;
	z-index: 1;
	padding-right: 10px;
	color: #000;
	padding-left: 10px;
	font-size: 20px;
	font-weight: 500;
}
.ser-cat-title::after {
	content: '';
	background-color: rgba(7, 29, 64, 0.10);
	height: 1px;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
}
.ser-cat-list {
	list-style: none;
	padding: 0;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
.ser-cat-title-txt {
	position: relative;
	z-index: 1;
	padding-right: 10px;
}
.row.ser-cat-row {
	padding-top: 30px;
	padding-bottom: 20px;
}
.auth .well {
	border-radius: 24px;
	border: 1px solid #EEE;
	background: rgba(255, 255, 255, 0.64);
	backdrop-filter: blur(150px);
	padding: 20px;
	box-shadow: none;
}
.custom-tabs.nav-tabs li .nav-link {
	border-radius: 14px;
	background: #F5F3FF;
	color: #64748B;
	padding: 15px;
	font-size: 12px;
	font-weight: 500;
	border: 1.5px solid #E9E5F5 !important;
	transition: all .2s cubic-bezier(.4,0,.2,1);
}
.custom-tabs.nav-tabs li .nav-link:hover {
	border-color: #C7D2FE !important;
	color: #7C3AED;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(124,58,237,.1);
}
.custom-tabs.nav-tabs li .nav-link.active {
	background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
	color: #fff;
	border-color: transparent !important;
	box-shadow: 0 4px 14px rgba(124,58,237,.3);
}
.custom-tabs.nav-tabs {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	border: 0;
}
.auth .form-control {
	border-radius: 36px;
	border: 1px solid #EBE7F6 !important;
	background: #FFF !important;
	color: #1A234A;
	padding: 11px 20px;
	min-height: 50px;
	box-shadow: none !important;
	outline: none !important;
}
.well .btn.btn-primary {
	width: 100%;
	justify-content: center;
	gap: 5px;
	height: 50px;
}
.service_description_box {
	border-radius: 10px;
	border: 1px solid #EBE7F6;
	background: #F4F4F4;
	padding: 12px;
}
.service_description_box h6 {
	color: #080B1B;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.service_description_box p {
	color: #484B59;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
/* [6] AUTH DECORATIVE — Blurred Backgrounds (line ~1625) */
.auth::after {
	content: '';
	width: 344px;
	height: 344px;
	border-radius: 344px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	filter: blur(225px);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
    z-index: -1;
    right: 5%;
}
.dark-mode.auth::before,
.dark-mode.auth::after {
  display: none;
}
.auth::before {
	content: '';
	width: 344px;
	height: 344px;
	border-radius: 172px;
	background: #C645F9;
	filter: blur(225px);
	position: absolute;
	top: calc(50% + 200px);
	transform: translateY(-50%);
	z-index: -1;
	left: 30%;
}
.auth .form-control {
	border-radius: 36px;
	border: 1px solid #EEE !important;
	background: #FFF !important;
}
.auth .form-control::placeholder {
	color: rgba(72, 75, 89, 0.50);
}
.auth textarea.form-control {
	resize: none;
}
/* [7] SERVICE LIST & FILTER — Search, Filter Bar (line ~1668) */
.ser-cat-wrap {
	display: flex;
	align-items: center;
	align-content: center;
	margin-bottom: 20px;
	position: relative;
	flex-wrap: nowrap;
	overflow: hidden;
}
.ser-cat-wrap .ser-cat-title {
	color: #080B1B;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	margin-right: 5px;
	white-space: nowrap;
	border: 0;
	position: relative;
	padding-left: 4px;
	margin-bottom: 0;
}
.ser-cat-line {
	background: rgba(7, 29, 64, 0.10);
	display: flex;
	margin-left: auto;
	height: 1px;
	flex: 0 0 100%;
}
.ser-cat-wrap .ser-cat-title::after {
	display: none;
}
.ser-cat-wrap .ser-cat-title::before {
	content: '';
	width: 2px;
	height: 14px;
	border-radius: 12px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.ser-cat-list li a {
	margin-right: 5px;
	display: flex;
}
.ser-cat-list li:last-child a {
	margin-right: 0;
}
.ser-filter {
	width: 218px;
	border-radius: 30px !important;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%) !important;
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	min-height: 50px !important;
}
.ser-filter-ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	align-content: center;
}
.ser-filter-ul .search {
	flex: 0 0 calc(100% - 218px);
	max-width: calc(100% - 218px);
	margin-left: 12px;
}
.search .form-group {
	margin-bottom: 0;
}
.ser-filter-ul .search .btn.btn-default {
	padding: 0;
	border: 0;
	position: absolute;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 21px;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}
.ser-filter-ul .search .form-control {
	border-radius: 30px;
	border: 1px solid #EBE7F6 !important;
	background: #FFF !important;
}
.ser-filter-ul .search .form-control::placeholder {
	color: #080B1B;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
}
/* [8] TABLES — Services, Orders, API Table (line ~1764) */
.table thead tr th {
	background: #0E0426;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	padding: 12px;
	border: 0;
}
.table thead tr th:first-child {
	border-radius: 30px 0 0 30px;
}
.table thead tr th:last-child {
	border-radius: 0 30px 30px 0;
}
.cat-name td {
	border: 0 !important;
	border-radius: 30px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2 !important;
	padding: 12px !important;
}
.table {
	border-collapse: separate;
	border-spacing: 0 10px;
}
.table tr:not(.cat-name) td {
	border-top: 1px solid #EBE7F6;
	background-color: #FFF;
	border-bottom: 1px solid #EBE7F6;
	padding: 12px !important;
	color: #080B1B;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}
.table tr:not(.cat-name) td:first-child {
	border-radius: 30px 0 0 30px;
  	border-left: 1px solid #EBE7F6;
}
.table tr:not(.cat-name) td:last-child {
	border-radius: 0 30px 30px 0;
  	border-right: 1px solid #EBE7F6;
}
.table > thead > tr > th,
.table > tbody > tr > th, 
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
	vertical-align: middle;
}
.service-description .btn.btn-primary {
	justify-content: center;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	min-height: 30px;
}
.service-name {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}
.btn-wrap {
	display: flex;
	align-items: center;
	align-content: center;
}
.directorder {
	width: 30px;
	height: 30px;
	border-radius: 31px;
	background-color: #0E0426;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin-left: 4px;
}
.modal-backdrop.fade.in {
	display: none;
}
.service-description .modal.in {
	background-color: rgba(0,0,0,30%);
	z-index: 9999999;
}
.add-cat-row {
	padding-bottom: 40px;
}
.add-cat-row .ser-cat-list li a {
	border-radius: 17px;
	background: #FFF;
	box-shadow: 0px 4px 4px 0px rgba(123, 118, 150, 0.17);
	display: flex;
	width: 58px;
	height: 59px;
	align-items: center;
	justify-content: center;
}
.add_form_row .btn.btn-primary {
	width: 100%;
	justify-content: center;
	gap: 5px;
}
.gradient_box {
	width: 60px;
	height: 28px;
	border-radius: 14px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.api-table tbody tr td {
	border-radius: 0 !important;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(150px);
	border-right: none !important;
	border-bottom: 1px solid #EBE7F6;
	border-right: 1px solid #EBE7F6;
	border-left: none !important;
	border-top: none !important;
}
.api-table tbody tr td:first-child {
	border-left: 1px solid #EBE7F6 !important;
	border-radius: 0 0 0 20px !important;
}
.api-table tbody tr td:last-child {
	border-right: 1px solid #EBE7F6 !important;
	border-radius: 0 0 20px 0 !important;
}
.api-table {
	border-collapse: collapse;
}
.api-table thead tr th {
	border-radius: 0 !important;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	backdrop-filter: blur(150px);
	padding: 15px;
}
.api-table thead tr th:first-child {
	border-radius: 20px 0 0 !important;
}
.api-table thead tr th:last-child {
	border-radius: 0 20px 0 0 !important;
}
.api-table tr:not(.cat-name) td {
	padding: 30px !important;
}
/* [9] TICKETS (line ~1919) */
.ticket_rows .media {
	border-radius: 36px;
	border: 1px solid #EEE;
	background: #FFF;
	width: 152px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-right: 5px;
	margin-top: 0;
	text-decoration: none;
	cursor: pointer;
}
.ticket_rows .cat-name {
	color: #484B59;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 126%;
}
.ticket_rows .media:hover {
	border-radius: 25px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	border: none;
}
.ticket_rows .media:hover .cat-name {
	color: #FFF;
}
.ticket_rows .media:hover svg path{
	fill: #FFF;
}
.ticket .well .btn.btn-primary {
	width: 100%;
	justify-content: center;
}
.table tr:not(.cat-name) td a {
	color: #080B1B;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
/* [10] SIDEBAR TOGGLE & MISC (line ~1963) */
.sidebar-logo {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* .pinner {
	border-radius: 10px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	width: 40px;
	height: 40px;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
} */
.top-left-ul .pinner {
	display: none;
}
.toggle .top-left-ul .pinner {
	display: flex;
}
.wrapper.toggle .inner-warp {
	padding-left: 0;
}
.wrapper.toggle .sidebar {
	left: -280px;
}
.top-left-ul .pinner {
	background: transparent;
	color: #000 !important;
}
.top-left-ul .pinner svg path {
	fill: #000;
}
.sm_title {
	color: #080B1B;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
}
.wrapper.toggle .inner-wrap, .wrapper.toggle .sidebar, .wrapper .inner-wrap, .wrapper .sidebar {
	transition: 0.3s ease-in-out;
}
.media-heading {
	min-width: 121px;
	height: 42px;
	border-radius: 25px;
	border: 1px solid #EBE7F6;
	background: #FFF;
	color: #080B1B;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	margin-left: auto;
	padding: 12px;
}
.ticket .custom-tabs.nav-tabs li .nav-link {
	width: 120px;
}
#vote #tab-vote {
	text-align: left;
}
#btn-vote {
	margin-top: 15px;
}
#support-list span {
	padding-left: 15px;
}
#support-list img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 8px;
  transition: transform .35s ease, filter .35s ease;
}
#support-list img:hover {
  transform: scale(1.05) rotate(8deg);
  filter: drop-shadow(0 0 16px rgba(198,69,249,.55))
          drop-shadow(0 0 32px rgba(94,110,206,.35))
  			brightness(1.2);
}
#vote-static .vote-wrapper.refferal-box{
  border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(16,16,34,.08);padding:16px;
}
.custom-tabs.nav-tabs li.active .nav-link {
	background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
	color: #fff;
	border-color: transparent !important;
	box-shadow: 0 4px 14px rgba(124,58,237,.3);
}
.accordion_item .card-body:last-child {
	margin-bottom: 0;
}
.social-cate-title {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: space-between;
	margin-bottom: 0;
}
.row.social-cate-row {
	margin-top: 20px;
}
.social-cate-title-txt {
	font-size: 22px;
	font-weight: 700;
}
.social-cate-btn {
	font-size: 13px;
	border-radius: 21.5px;
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	color: #fff;
	padding: 5px;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 80px;
	height: 32px;
	gap: 4px;
}
.social-cate-list {
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	margin-top: 13px;
}
.social-cate-list li {
	flex: 0 0 19%;
	max-width: 19%;
	margin-right: 9px;
	margin-bottom: 9px;
}
/* .social-cate {
	display: flex;
	align-items: center;
	align-content: center;
	background: #F4F4F4;
	padding: 5px;
	border-radius: 5px;
	color: #080B1B;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none !important;
	box-shadow: 0 0 2px 0px rgba(0,0,0,50%);
} */
.social-cate {
	display: flex;
	align-items: center;
	align-content: center;
	background: #FBFBFB;
	padding: 8px;
	border-radius: 28px;
	color: #080B1B;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none !important;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12);
}
.social-cate-list-txt {
	margin-left: 5px;
}
.social-cate.active, .social-cate:hover {
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	color: #fff;
}
.social-cate-list:not(.active) {
	display: none;
}
.neworder-tabs .navtabs-txt, 
.neworder-tabs .tab-txt {
	display: none;
}
.neworder-tabs.custom-tabs.nav-tabs li .nav-link {
	font-size: 22px;
	width: 80px;
}
@media (max-width: 1199px) {
	.guest .navbar-center {
	margin-left: 32px;
}
.guest .frm_flex_input .form-control {
	width: 224px;
}
.row.deliver_row::after {
	width: 265px;
	height: 1px;
}
.row.deliver_row::before {
	width: 265px;
}
.top_non_drop li {
	font-size: 16px;
}
.curve_line::before {
	display: none;
}
.txt br {
	display: none;
}
.step_footer_service ul {
	min-width: auto;
	width: 100%;
}
.guest .navbar-center {
	margin-left: 8px;
}
.inner-warp {
	padding-left: 0;
}
.nav-order-wrapper li a {
	font-size: 12px;
	padding: 15px 10px;
}
}
@media (max-width: 991px) {
.guest .navbar-center {
	margin-left: 0;
	padding: 4px;
	width: auto;
	max-width: 50%;
}
.guest .navbar-center li.active a {
	background: linear-gradient(135deg, #6366f1, #a855f7) !important;
	color: #FFF !important;
	min-width: 70px;
	min-height: 28px;
	box-shadow: 0 3px 12px rgba(99,102,241,.25);
}
.guest .navbar-right .dropdown-toggle {
	height: 38px;
	padding: 0 14px;
	font-size: 12px;
}
.guest .navbar-right .btn.btn-secondary {
	height: 38px;
	padding: 0 16px;
	font-size: 12px;
	width: auto;
}
.guest .navbar-center li a {
	font-size: 12px;
	padding: 7px 12px;
}
.main-title {
	font-size: 40px;
}
.tag_title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
#top_sec .row .col-sm-6 {
	width: 100%;
}
.guest .frm_flex_input .form-control {
	width: 100%;
}
.frm_flex_input {
	display: flex;
	justify-content: flex-start;
	gap: 8px;
}
#top_sec .row .col-sm-6:last-child img {
	margin: auto;
}
.top_non_drop {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 7px;
}
.top_non_drop li {
	margin-right: 0;
	width: 200px;
	font-size: 14px;
    justify-content: flex-start;
}
.step_socal_wrapper li h6 {
	font-size: 16px;
}
.our_title {
	font-size: 16px;
}
.our_card_wapper {
	padding: 20px;
}
.card_prp .btn.btn-secondary {
	margin-top: 0;
}
.ser-cat-list {
	display: flex;
	overflow: scroll;
	justify-content: center;
	gap: 8px;
}
.neworder_row .col-sm-5 {
	width: 100%;
}
.modal-body {
	white-space: collapse;
}
.left_welcome_box {
	margin-bottom: 15px;
}
.right_welcome_box {
	margin-bottom: 15px;
}
.neworder_row .col-sm-2 {
	width: 100%;
}
.service_under_box ul li p {
	font-size: 12px;
}
.table-responsive {
	border: none;
}
.pull-right.search {
	width: 100%;
	margin-top: 10px;
}
.wapper_box_alert {
	flex-wrap: wrap;
	padding: 15px !important;
	border-radius: 15px !important;
}
.child_row {
	padding-top: 0 !important;
}
.wapper_box_alert ul {
	display: flex;
    align-items: center;
    justify-content: start !important;
    gap: 5px !important;
    flex-wrap: wrap;
    width: 100%;
}
.title-p {
	margin-bottom: 10px !important;
}
.wapper_box_alert ul li {
	width: 100% !important;
}
}
@media (max-width: 767px) {
	#top_sec {
	padding-top: 80px;
}
.row.deliver_row::before {
	display: none;
}
.row.deliver_row::after {
	display: none;
}
#why_choose {
	padding: 50px 0;
}
.step_card_wrapper {
	margin-bottom: 20px;
}
.rise_txt {
	font-size: 16px;
}
.col-sm-12 {
	width: 100%;
}
#our_service {
	padding: 50px 0;
}
.step_socal_wrapper {
	display: flex;
	flex-wrap: wrap;
}
#our_social .row .col-sm-3 {
	width: 50%;
}
.card_prp {
	height: auto;
	padding: 25px;
	margin-top: 0;
}
.row.snake_row {
	background-image: unset;
}
.numer_pos {
	display: none;
}
.how_box_02 {
	margin-top: 20px;
}
.how_box_03 {
	margin-top: 20px;
}
.card_yellow_box {
	margin-top: 20px;
}
#cheap_sec {
	padding: 50px 0;
}
.card_slider {
	padding: 15px;
}
#customers_sec .row {
	padding: 20px;
}
#customers_sec .row .title {
	padding-bottom: 30px;
}
.social_footer {
	margin-bottom: 20px;
}
.step_footer_service ul:last-child {
	margin-right: 0;
}
.how_box {
	margin-top: 30px;
}
#our_social {
	padding: 50px 0;
}
.signup_left_side::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url('https://storage.perfectcdn.com/23rmg9/r3d1t5506q2d3inx.webp');
	background-repeat: no-repeat;
	background-position: bottom left;
	left: 0;
	bottom: -80px;
	z-index: -1;
}
.signup_left_side::before {
	z-index: -1;
}
.signup_left_side .btn.btn-secondary {
	width: max-content;
	padding: 25px;
	height: 60px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.signup_left_side::before {
	display: none;
}
.bg_txt {
	width: 100%;
	font-size: 16px;
}
#service_wrapper {
	padding-top: 100px;
	padding-bottom: 30px;
}
.nav-order-wrapper li a {
	font-size: 12px;
	padding: 12px 10px;
	margin-bottom: 8px;
}
.add-cat-row .ser-cat-list {
	overflow: unset;
	flex-wrap: wrap;
}
.ticket_rows {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}
.ticket_rows {
	display: flex;
	align-items: center;
	justify-content: unset;
}
.ticket_rows .media {
	width: 114px;
	height: 48px;
}
}
@media (max-width: 575px) {
	.main-title {
	font-size: 35px;
}
.frm_flex_input {
	display: block;
}
#top_sec .row .top_row:first-child {
	padding-top: 100px;
}
.deliver_txt {
	width: 100%;
	height: 50px;
	padding: 15px;
}
.top_non_drop {
	margin: 20px auto;
}
.top_non_drop li {
	width: 100%;
}
#why_choose {
	padding: 20px 0;
}
#why_choose .title {
	font-size: 30px;
	padding-top: 10px;
	padding-bottom: 0;
}
.btn.btn-secondary {
	width: 187px;
	height: 48px;
	font-size: 14px;
}
.step_flex_rise {
	margin-top: 0;
}
#our_service {
	padding: 20px 0;
}
.title {
	font-size: 30px;
}
.row.features_row img {
	margin-bottom: 10px;
}
#our_social .title {
	padding-bottom: 0;
}
.step_socal_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
#our_social .row .col-sm-3 {
	width: 100%;
}
.our_title_hero {
	font-size: 24px;
}
.card_prp {
	padding: 20px;
}
#our_social {
	padding: 20px 0;
}
#cheap_sec {
	padding: 20px 0;
}
.black_box h2 {
	font-size: 24px;
}
.black_box p {
	padding-bottom: 10px;
}
.card_purple_box {
	padding: 20px;
}
.card_yellow_box {
	padding: 20px;
}
#customers_sec {
	padding: 20px 0;
}
#customers_sec .row .title {
	padding-bottom: 0;
}
.card_slider {
	margin-right: 0;
}
#customers_sec .btn.btn-primary {
	width: 100%;
	height: 50px;
	font-size: 16px;
}
.row.faq_row {
	padding-top: 0;
}
.row.faq_row .nav-pills .nav-link {
	width: 100%;
	height: 60px;
	font-size: 16px;
	padding: 15px;
	text-align: left;
}
.row.faq_row .nav-pills .nav-link span {
	width: 45px;
	height: 45px;
	min-width: 45px;
	font-size: 14px;
}
.gray_box h2 {
	padding-top: 0;
}
.gray_box {
	padding: 20px;
	min-height: 384px;
}
#faq_sec {
	padding-bottom: 30px;
}
.txt_white br {
	display: none;
}
.row.footer_row .txt_white {
	padding-bottom: 20px;
}
.step_footer_service ul {
	min-width: auto;
	width: 100%;
	padding: 15px;
}
.step_footer_service ul h6 {
	font-size: 16px;
}
.copy_wrapper_bg {
	padding: 14px 16px;
	height: auto;
	margin-top: 40px;
	flex-direction: column;
	gap: 6px;
	text-align: center;
}
.copy_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.row.footer_top {
	padding: 20px 16px;
	margin-bottom: 20px;
	flex-direction: column;
	text-align: center;
	gap: 12px;
}
.row.footer_top .col-sm-4 {
	text-align: center !important;
}
.row.footer_top .btn.btn-primary {
	margin-left: 0;
	width: 100%;
}
#signup_Sec {
	padding-top: 50px;
	padding-bottom: 0;
}
#signup_Sec .title {
	font-size: 35px;
	line-height: 1.6;
}
.yellow_box {
	width: 254px;
	height: 53px;
}
br {
	display: none;
}
.guest .well {
	padding: 20px;
}
#signup_Sec .btn.btn-primary {
	height: 45px;
}
.bg_txt {
	width: 100%;
	padding: 15px;
	font-size: 14px;
	height: 52px;
	margin-top: 20px;
}
.row.service_card {
	padding-top: 20px;
}
.card_wrapper {
	padding: 15px;
}
.card_wrapper img {
	padding-top: 10px;
	padding-bottom: 15px;
}
.card_wrapper .card-title {
	font-size: 22px;
}
#top_sec {
	padding-top: 0;
}
#contact_us {
	padding-top: 100px;
	padding-bottom: 30px;
}
#forgot_password {
	padding: 100px 0;
}
.guest .form-control {
	min-height: 50px;
}
#footer_wrapper {
	padding-top: 30px;
}
.row.footer_top {
	padding: 24px 20px;
	flex-direction: column;
	text-align: center;
	gap: 16px;
}
.row.footer_top .col-sm-4 {
	text-align: center !important;
}
.row.footer_top .btn.btn-primary {
	margin-left: 0;
}
.footer_title {
	font-size: 24px;
}
.step_footer_service {
	flex-direction: column;
	gap: 12px;
}
.copy_wrapper_bg {
	padding: 16px 20px;
	flex-direction: column;
	height: auto;
	gap: 8px;
	text-align: center;
}
.copy_wrapper {
	justify-content: center;
}
.social_footer {
	justify-content: center;
}
.fc_title {
	text-align: center;
}
.guest .navbar-center {
	margin-left: 0;
	padding: 4px;
	width: 100%;
	max-width: 100%;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.guest #navbar {
	background: rgba(255,255,255,.97);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	box-shadow: 0 12px 40px rgba(94,110,206,.12);
	border-radius: 18px;
	margin: 4px;
	padding: 8px;
}
.guest .navbar-center li a {
	padding: 8px 12px;
	font-size: 13px;
}
.guest .navbar-right {
	display: flex;
	margin-left: 0;
	gap: 8px;
	flex-wrap: wrap;
	padding: 8px 0;
	align-items: center;
}
.guest .navbar-right .btn.btn-secondary {
	width: calc(100% - 16px);
	margin: 0 8px;
	height: 44px;
	font-size: 14px;
	border-radius: 12px;
	justify-content: center;
	box-sizing: border-box;
}
.guest .navbar-right .dropdown-toggle {
	height: 40px;
	padding: 0 14px;
	font-size: 13px;
	border-radius: 12px;
}
.guest .navbar-right > li {
	width: 100%;
}
.guest .navbar-right > li.dropdown {
	width: auto;
}
.forgot_pass .btn.btn-primary {
	height: 48px;
}
.guest .navbar-center li.active a {
	padding: 8px 16px;
}
.guest .navbar-default {
	top: 12px;
}
/* Disable sticky on mobile — avoids content overlap */
.guest .navbar-default.navbar-scrolled {
	position: absolute;
	top: 12px;
	animation: none;
}
/* Mobile dropdown */
.guest .dropdown-menu {
	position: static !important;
	float: none;
	width: 100%;
	border-radius: 12px;
	margin-top: 4px;
	box-shadow: none;
	border: 1px solid rgba(222,228,242,.5);
}
.top-bar .row {
	display: block;
}
.top-right-ul .btn.btn-primary {
	min-height: 44px;
	min-width: 108px;
}
.inner_wrapper_box {
	padding: 15px 4px;
	margin: 0 16px;
}
.left_welcome_box .btn.btn-primary {
	width: 117px;
	font-size: 12px;
}
.blnce_bottom h4 {
	font-size: 22px;
}
.well .btn.btn-primary {
	height: 44px;
	min-height: 44px;
}
.service_box {
	padding: 15px;
}
.ser-cat-list li img {
	max-width: 39px;
}
.auth::before {
	left: 0;
}
.custom-tabs.nav-tabs li .nav-link {
	width: 119px;
	min-height: 42px;
	height: 42px;
}
.row.ser-cat-row {
	padding-bottom: 10px;
}
.ser-cat-title-txt {
	background-color: transparent;
}
.ser-cat-title::after {
	display: none;
}
.ser-filter-ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}
.ser-filter {
	width: 100px;
	font-size: 12px;
	min-height: 44px !important;
}
.ser-filter-ul .search {
	flex: unset;
	max-width: unset;
	margin-left: 0;
	margin-top: 10px;
	width: 100%;
}
.add-cat-row {
	padding-bottom: 20px;
}
.sm_title {
	font-size: 22px;
}
.ticket_rows .media {
	width: 92px;
	height: 44px;
}
.ticket_rows .cat-name {
	font-size: 12px;
}
.btn.btn-primary {
	min-height: 44px;
}
.frm-box {
	padding: 20px;
}
.api-table-wrap {
	display: block;
}
.api-table-left {
	flex: unset;
	max-width: unset;
}
.api-table-right {
	display: flex;
	align-items: center;
	align-content: center;
	flex: unset;
	max-width: unset;
	justify-content: start;
	white-space: nowrap;
	overflow-x: unset;
}
.api-table-list {
	overflow-x: unset; 
 	scrollbar-width: unset;
	margin-left: 0 !important;
	flex-wrap: wrap;
}
.affiliate-row {
	padding: 12px;
}
.affiliate-box {
	margin-bottom: 10px;
}
.affiliate-status-title {
	width: 91%;
}
.affiliate-status {
	margin-bottom: 10px;
}
.account .col-md-12 .row {
	display: block;
}
}
.guest .intro-box-row {
	padding-top: 150px;
}
.auth .container {
	width: 100%;
}
.child_row {
	padding-top: 30px;
}
.accordion_item .btn-primary.collapsed::after {
	background-image: url("https://storage.perfectcdn.com/23rmg9/45luudfdy3dsgljb.svg");
	filter: drop-shadow(0px 100px 0 #5E6ECE) !important;
	transform: translateY(-100px);
}
.accordion_item .btn-primary:hover::after {
	filter: drop-shadow(0px 100px 0 #fff) !important;
}
.accordion_item .btn-primary::after {
	content: "";
	position: relative;
	display: inline-block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M11.1667 20.3333C6.10405 20.3333 2 16.2292 2 11.1667C2 6.10405 6.10405 2 11.1667 2C16.2292 2 20.3333 6.10405 20.3333 11.1667C20.3333 16.2292 16.2292 20.3333 11.1667 20.3333ZM11.1667 18.5C15.2168 18.5 18.5 15.2168 18.5 11.1667C18.5 7.11658 15.2168 3.83333 11.1667 3.83333C7.11658 3.83333 3.83333 7.11658 3.83333 11.1667C3.83333 15.2168 7.11658 18.5 11.1667 18.5Z' fill='white'/%3E%3Crect x='7.16602' y='10.1667' width='8' height='2' fill='white'/%3E%3C/svg%3E");
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-size: contain;
	filter: drop-shadow(0px 100px 0 #5E6ECE);
	transform: translateY(-100px);
}
.accordion_item .btn-primary {
	overflow: hidden;
	border-radius: 40px;
	background: #FFF;
	box-shadow: 0px 12px 87.1px 0px rgba(123, 118, 150, 0.16);
	color: #080B1B;
	margin-bottom: 10px;
}
.accordion_item .btn-primary:hover {
	background: linear-gradient(180deg, #5E6ECE 0%, #C645F9 100%);
	box-shadow: 0px 12px 87.1px 0px rgba(123, 118, 150, 0.16);
	color: #fff;
}
.faq_child {
	border-radius: 24px;
	background: #0E0426;
	padding: 15px;
}
.accordion_item .card-body {
	border-radius: 16px;
	background: #FFF;
	box-shadow: 0px 12px 87.1px 0px rgba(123, 118, 150, 0.16);
	padding: 15px;
	margin-top: 0;
	margin-bottom: 10px;
	color: #484B59;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 126%;
}
.refferal-box {
	border-radius: 24px;
	border: 1px solid #EEE;
	background: rgba(255, 255, 255, 0.64);
	backdrop-filter: blur(150px);
	padding: 2px 10px 0;
	box-shadow: none;
	display: block;
	margin-bottom: 15px;
	position: relative;
}
.refferal-box h6 {
	text-align: center;
	color: #080B1B;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 10px;
	margin-bottom: 0;
}
.refferal-box img {
	max-width: 100%;
}
.refferal-box.selected {
	border-color: #7963d9;
	overflow: hidden;
}
.dash-box-step {
	display: flex;
	align-items: center;
	align-content: center;
	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
	margin-bottom: 5px;
}
.dash-box-step-num {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 25px;
	height: 25px;
	background-color: #636cd0;
	border-radius: 5px;
	color: #fff;
	margin-right: 5px;
}
.dash-box-step-content {
	margin: 0;
}
.note-title {
	margin: 15px auto;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}
.note-txt {
	color: #fff;
	margin-bottom: 5px;
	font-size: 14px;
}
.verified-btn-wrap {
	display: flex;
	align-items: center;
	align-content: center;
	margin: 12px 0 0 0;
	justify-content: space-between;
}
.verified-btn-wrap .btn {
	flex: 0 0 49%;
	max-width: 49%;
	justify-content: center;
}
.left_welcome_box.verified-box {
	margin-bottom: 15px;
}
/* new order page  */

@media (max-width:550px) {
.dash-box-step-num {
	display: none;
}
  .social-cate-list-txt {
	display: none;
}
.social-cate-list li {
	flex: 0 0 auto;
	max-width: unset;
	margin: 0 4px 9px;
}
  .social-cate {
	justify-content: center;
}
  .top-right-ul .btn.btn-primary {
	font-size: 0;
	width: 45px;
	min-width: 45px;
}
  .top-right-ul .dropdown-currencies a {
	width: 70px !important;
}
}

/* =========================================================
   NEW ORDER — Stat Cards (Balance / Orders / Tier)
   ========================================================= */
.no-stat-row{margin-bottom:20px}
.no-stat{
  display:flex;align-items:center;gap:16px;
  background:var(--card,#fff);border:1.5px solid var(--border,#E9E5F5);
  border-radius:var(--radius-sm,14px);padding:18px 20px;
  transition:all .25s;
}
.no-stat:hover{
  border-color:rgba(99,102,241,.2);
  box-shadow:0 4px 16px rgba(99,102,241,.08);
}
.no-stat-ico{
  width:56px;height:56px;min-width:56px;
  border-radius:14px;
  background:linear-gradient(135deg,#eef2ff,#e0e7ff);
  display:flex;align-items:center;justify-content:center;
}
.no-stat-ico svg{width:28px;height:28px}
.no-stat-body{display:flex;flex-direction:column;gap:2px;min-width:0}
.no-stat-label{font-size:12px;font-weight:600;color:var(--ink2,#64748B);text-transform:uppercase;letter-spacing:.3px}
.no-stat-value{font-size:20px;font-weight:800;color:var(--ink,#1E293B);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.no-stat-tier{font-size:16px;font-weight:700;color:#7C3AED}

/* Dark mode */
.dark-mode .no-stat{
  background:rgba(255,255,255,.04);border-color:rgba(99,102,241,.12);
}
.dark-mode .no-stat:hover{
  border-color:rgba(99,102,241,.25);box-shadow:0 4px 16px rgba(99,102,241,.12);
}
.dark-mode .no-stat-ico{background:rgba(99,102,241,.12)}
.dark-mode .no-stat-label{color:rgba(255,255,255,.45)}
.dark-mode .no-stat-value{color:#fff}
.dark-mode .no-stat-tier{color:#C084FC}

/* Mobile */
@media(max-width:767px){
  .no-stat{padding:14px 16px;gap:12px}
  .no-stat-ico{width:44px;height:44px;min-width:44px;border-radius:12px}
  .no-stat-ico svg{width:22px;height:22px}
  .no-stat-value{font-size:16px}
}

/* =========================================================
   NEW ORDER PAGE STYLES — Modern Redesign v2
   ========================================================= */

/* Theme Variables — Premium Purple */
:root{
  --pri:#7C3AED;
  --pri2:#A855F7;
  --pri-soft:#F5F3FF;
  --ink:#1E293B;
  --ink2:#64748B;
  --bg:#FAF8FF;
  --card:#FFFFFF;
  --border:#E9E5F5;
  --elev:0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --elev-md:0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --elev-lg:0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --radius:16px;
  --radius-sm:12px;
  --radius-xs:8px;
  --transition:.2s cubic-bezier(.4,0,.2,1);
}

/* Utilities & Resets */
.gizli{ display:none!important; opacity:0!important; overflow:hidden!important; }

button,.social-cate,.nav-link{ min-height:44px; }
.well,.social-cate{ will-change:transform; }

/* Global Layout */
.auth{ background:var(--bg); }
.inner_wrapper_box{ background:transparent; box-shadow:none; border:none; padding:0; }
.section,.well,.step_new_bx,.step_new_bx2,.service_box_Wraps{ margin-bottom:20px; }
#neworder,#service-details{ margin-top:24px; }

/* Form Controls */
.auth .form-control{
  border-radius:var(--radius-sm);
  background:var(--card)!important;
  border:1.5px solid var(--border)!important;
  padding:12px 16px;
  font-size:14px;
  transition:border-color var(--transition),box-shadow var(--transition);
}
.auth .form-control:focus{
  border-color:var(--pri)!important;
  box-shadow:0 0 0 3px rgba(99,102,241,.12)!important;
  outline:0;
}

/* Mass order textarea */
#mass-links,textarea[name="MassOrderForm[orders]"]{
  position:relative!important; z-index:5!important; pointer-events:auto!important; background:var(--card)!important;
}
#pills-massorder .well::before,#pills-massorder .well::after,
#pills-massorder .card::before,#pills-massorder .card::after{
  display:none!important; pointer-events:none!important;
}

/* Buttons */
.mo-btn{
  border-radius:var(--radius-sm); padding:10px 16px; border:0; cursor:pointer; font-weight:600;
  background:var(--pri-soft); color:var(--ink); min-height:44px;
  transition:all var(--transition);
}
.mo-btn:hover{ background:#DDD6FE; }
.mo-btn:active{ transform:translateY(1px); }
.mo-btn[disabled]{ opacity:.5; cursor:not-allowed; }
.mo-btn--grad{
  background:#F5F3FF; color:#7C3AED;
  border:1.5px solid #DDD6FE;
  border-radius:10px;
  font-size:14px;
  box-shadow:none;
}
.mo-btn--grad:hover{
  background:#EDE9FE; border-color:#C4B5FD;
  box-shadow:0 2px 8px rgba(124,58,237,.12);
  transform:translateY(-1px);
}
.mo-btn--danger{ background:#FEF2F2; color:#DC2626; }

.btn-primary{
  background:linear-gradient(135deg,var(--pri),var(--pri2)); border:0; color:#FFF; border-radius:var(--radius-sm);
  box-shadow:0 4px 14px rgba(99,102,241,.25);
  transition:all var(--transition);
}
.btn-primary:hover{ box-shadow:0 6px 20px rgba(99,102,241,.35); transform:translateY(-1px); }
.btn-primary:disabled{ filter:grayscale(.3) brightness(.9); cursor:not-allowed; }

/* Mass Order – Easy Use */
.mo-easy__rows{ display:flex; flex-direction:column; gap:10px; }
.mo-row{ display:grid; grid-template-columns:1fr 2fr 1fr auto; gap:10px; }
.mo-row-remove{ padding:0 12px; min-height:44px; }

.mo-inp{
  height:44px; border-radius:var(--radius-sm); background:var(--card);
  border:1.5px solid var(--border)!important; padding:10px 14px; font-size:14px;
  transition:border-color var(--transition),box-shadow var(--transition);
}
.mo-inp:focus{
  border-color:var(--pri)!important;
  box-shadow:0 0 0 3px rgba(99,102,241,.12)!important; outline:0;
}

.mo-row .mo-row-remove{
  background:#FEF2F2; color:#DC2626; border:1.5px solid #FECACA;
  border-radius:10px;
  opacity:1; pointer-events:auto;
  transition:all var(--transition);
}
.mo-row .mo-row-remove:hover{
  background:#FEE2E2; border-color:#F87171;
}

@media(max-width:768px){
  .mo-row{ grid-template-columns:1fr 1fr; }
  .mo-row .mo-row-remove{ grid-column:1/-1; opacity:1; pointer-events:auto; }
}

/* Tabs / Navs */
.neworder-tabs.custom-tabs.nav-tabs li .nav-link{
  font-size:13px; width:44px; height:44px; border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--border)!important; background:var(--card);
  transition:all var(--transition);
}
.neworder-tabs .navtabs-txt,.neworder-tabs .tab-txt{ display:none; }
.neworder-tabs.custom-tabs.nav-tabs li.active .nav-link{
  min-width:140px; border:none!important; width:auto; height:44px;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:0 18px!important;
  background:linear-gradient(135deg,var(--pri),var(--pri2)); color:#FFF;
  box-shadow:0 4px 14px rgba(99,102,241,.3);
}
.neworder-tabs.custom-tabs.nav-tabs li.active .navtabs-txt{ display:inline; }
.neworder-tabs.custom-tabs.nav-tabs li.active .nav-link .navtabs-icon{
  display:inline-flex; filter:brightness(0) invert(1);
}
.neworder-tabs .nav-link{ background:var(--card); border:1.5px solid var(--border)!important; }
/* Hide tooltip on active tab only — inactive tabs need tooltip since they show icon only */
.neworder-tabs li.active [data-tip]::after,
.neworder-tabs li.active [data-tip]::before{ display:none!important; }
.neworder-tabs li .nav-link:hover{
  transform:translateY(-2px); box-shadow:var(--elev-md);
  border-color:#C7D2FE!important;
}

/* Social Categories */
.social-cate-list{
  display:grid; grid-template-columns:repeat(6,1fr); gap:10px; padding:0; margin:0; list-style:none;
}
.social-cate-list li{ flex:unset!important; max-width:unset!important; width:auto!important; min-width:0; }
.social-cate{
  display:flex; align-items:center; gap:10px; border:1.5px solid var(--border); background:var(--card);
  border-radius:var(--radius-sm); padding:10px 14px;
  box-shadow:var(--elev); transition:all var(--transition);
}
.social-cate:hover{ border-color:#C7D2FE; box-shadow:var(--elev-md); transform:translateY(-2px); }
.social-cate:active{ transform:translateY(0); box-shadow:var(--elev); }
.social-cate[aria-current="true"],.social-cate.is-active{
  border-color:transparent; background:linear-gradient(135deg,var(--pri),var(--pri2)); color:#FFF;
  box-shadow:0 4px 14px rgba(99,102,241,.3);
}
.social-cate-list-icon{ width:28px; height:28px; display:grid; place-items:center; border-radius:50%; }
.social-cate[aria-current="true"] .social-cate-list-icon{ background:rgba(255,255,255,.2); }
.social-cate-list-icon img{ width:24px; height:24px; object-fit:contain; }
.social-cate-list-txt{ font-size:13px; font-weight:500; white-space:nowrap; }

@media(max-width:1199px){ .social-cate-list{ grid-template-columns:repeat(4,1fr); } }
@media(max-width:767px){ .social-cate-list{ grid-template-columns:repeat(5,1fr); } }

/* Social Category Title & Toggle */
.social-cate-title{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.social-cate-title-txt{ font-size:16px; font-weight:700; color:var(--ink); }
.social-cate-btn{
  display:inline-flex; align-items:center; gap:6px; padding:8px 14px;
  border-radius:999px; background:var(--pri-soft); color:var(--pri);
  font-size:13px; font-weight:600; cursor:pointer; border:none;
  transition:all var(--transition);
}
.social-cate-btn:hover{ background:#DDD6FE; }
.social-cate-btn svg{ width:16px; height:16px; }
.social-cate-list:not(.active){ display:none; }

.wel_title{ display:flex; align-items:center; gap:5px; color:var(--ink); font-size:16px; font-weight:600; line-height:120%; margin:0; }

/* Service Description Box */
.service_box_Wraps{
  border-radius:var(--radius); background:linear-gradient(135deg,var(--pri),var(--pri2));
  box-shadow:0 8px 24px rgba(99,102,241,.2); padding:20px; position:relative; overflow:hidden;
}
.service_box_Wraps::before{
  content:''; position:absolute; top:-50%; right:-50%; width:100%; height:100%;
  background:radial-gradient(circle,rgba(255,255,255,.1) 0%,transparent 70%);
  pointer-events:none;
}
.serv_ttx{ color:#FFF; font-size:15px; font-weight:500; position:relative; }
.exm_link{
  border-radius:var(--radius-sm); background:rgba(255,255,255,.95); padding:10px 14px; margin-bottom:0;
  backdrop-filter:blur(8px); position:relative;
}
.exm_link .ex_link{
  border-radius:var(--radius-xs); background:linear-gradient(135deg,var(--pri),var(--pri2));
  box-shadow:0 2px 6px rgba(99,102,241,.2); color:#FFF; padding:6px 12px; font-size:13px; font-weight:600;
  display:inline-flex; align-items:center;
}

.c_title{ color:var(--ink); font-size:20px; font-weight:700; }
.wel_title,.c_title{ margin-bottom:16px; }

/* Badges / Chips */
.badge,.chip{ display:inline-flex; align-items:center; gap:6px; padding:6px 12px; border-radius:999px; font-size:12px; font-weight:600; }
.chip--ok{ background:#ECFDF5; color:#059669; }
.chip--err{ background:#FEF2F2; color:#DC2626; }

/* Tables */
.table th{ font-size:12px; letter-spacing:.3px; text-transform:uppercase; color:var(--ink2); background:#FAFBFC; }
.table td{ vertical-align:middle; }

/* Responsive */
@media(max-width:767px){
  .inner_wrapper_box{ margin:0; }
  .top-left-ul{ margin-bottom:8px; }
  .social-cate{ justify-content:center; }
  .social-cate-title,.social-cate .social-cate-title,.social-cate .social-cate-list-txt,
  .social-cate-title .tab-txt,.neworder-tabs .tab-txt,.neworder-tabs .navtabs-txt{ display:none; }
}
@media(max-width:575px){
  .inner_wrapper_box{ margin:0; }
  .top-left-ul{ margin-bottom:8px; }
}

/* Utility patches */
.mo-easy__actions{ margin-top:8px; display:flex; gap:10px; }

/* Service Details Cards */
#svc-details .svc-col{ padding:6px }
#svc-details .svc-card{
  background:var(--card); border:1.5px solid var(--border); border-radius:var(--radius-sm);
  padding:14px; transition:all var(--transition);
}
#svc-details .svc-card:hover{ box-shadow:var(--elev-md); }
#svc-details .svc-head{ display:flex; align-items:center; gap:8px; white-space:nowrap; overflow:hidden }
#svc-details .svc-ico{ width:22px; height:22px; flex:0 0 auto; display:block }
#svc-details .svc-title{ font-weight:600; font-size:12px; line-height:1; color:var(--ink2); text-transform:uppercase; letter-spacing:.3px; min-width:0; overflow:hidden; text-overflow:ellipsis }
#svc-details .svc-val{ margin:8px 0 0; font-weight:600; font-size:14px; color:var(--ink); }

/* Service Cards v2 */
.svcViewToggle{ display:inline-flex; gap:0; margin:6px 0 10px; border:1.5px solid var(--border); border-radius:8px; overflow:hidden; background:var(--card) }
.svcToggleBtn{ appearance:none; border:0; background:transparent; padding:6px 8px; cursor:pointer; color:var(--ink2); transition:all var(--transition); display:inline-flex; align-items:center; justify-content:center; line-height:1 }
.svcToggleBtn svg{ display:block }
.svcToggleBtn+.svcToggleBtn{ border-left:1.5px solid var(--border) }
.svcToggleBtn[aria-selected="true"]{ background:var(--pri-soft); color:var(--pri) }
.svcVCards{ display:flex; flex-direction:column; gap:10px; margin-top:8px }
.svcVCard{ display:flex; justify-content:space-between; gap:12px; width:100%; padding:14px 16px; background:var(--card); border:1.5px solid var(--border); border-radius:var(--radius-sm); cursor:pointer; transition:all var(--transition) }
.svcVCard:hover{ box-shadow:var(--elev-md); transform:translateY(-1px) }
.svcVCard.is-selected{ border-color:#818CF8; box-shadow:0 0 0 3px rgba(129,140,248,.2); background:linear-gradient(180deg,#EEF2FF,#FFFFFF) }
.svcVCard__left{ flex:1 1 auto; min-width:0; display:flex; flex-direction:column; align-items:flex-start; text-align:left }
.svcVCard__title{ font-weight:700; font-size:14px; line-height:1.5; margin-bottom:6px; white-space:normal }
.svcVCard__title .svcVCard__id{ display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:12px; color:var(--pri); background:var(--pri-soft); border:1px solid #C7D2FE; border-radius:var(--radius-xs); padding:2px 8px; margin-right:8px }
.svcVCard__row2{ display:flex; align-items:center; gap:16px; color:var(--ink2); font-size:12px; flex-wrap:wrap }
.svcVBadge{ display:inline-flex; align-items:center; gap:6px }
.svcVPrice{ flex:0 0 auto; display:flex; flex-direction:column; align-items:flex-end; min-width:120px }
.svcVPrice .row{ display:flex; align-items:center; gap:8px }
.svcVPrice .main{ font-weight:800; font-size:13px; background:var(--pri-soft); border:1px solid #C7D2FE; border-radius:var(--radius-xs); padding:8px 12px; white-space:nowrap }
.svcVPrice .per{ font-size:11px; color:var(--ink2); margin-top:2px; text-align:right; width:100% }
.svcCartBtn{ appearance:none; border:1.5px solid var(--border); background:var(--card); border-radius:var(--radius-xs); padding:8px; line-height:1; cursor:pointer; transition:all var(--transition) }
.svcCartBtn:hover{ box-shadow:var(--elev); border-color:#C7D2FE }
.svcNativeWrap{ display:block }
.svc-mode-card .svcNativeWrap{ display:none!important }
.svc-mode-list #service-cards{ display:none!important }

/* Quick Order Modal */
.svcModalBackdrop{ position:fixed; inset:0; background:rgba(15,23,42,.5); display:none; align-items:center; justify-content:center; z-index:9999; backdrop-filter:blur(4px) }
.svcModal{ background:var(--card); border-radius:var(--radius); box-shadow:0 25px 50px -12px rgba(0,0,0,.25); width:min(560px,92vw); padding:24px }
.svcModal h3{ margin:0 0 16px; font-size:18px; font-weight:700; color:var(--ink) }
.svcFormRow{ display:flex; flex-direction:column; margin:12px 0 }
.svcFormRow label{ font-size:12px; color:var(--ink2); margin-bottom:6px; font-weight:600; text-transform:uppercase; letter-spacing:.3px }
.svcFormRow input{ width:100%; border:1.5px solid var(--border); border-radius:var(--radius-sm); padding:12px 14px; font-size:14px; transition:border-color var(--transition) }
.svcFormRow input:focus{ border-color:var(--pri); outline:none; box-shadow:0 0 0 3px rgba(99,102,241,.12) }
.svcModalFooter{ display:flex; justify-content:flex-end; gap:10px; margin-top:18px }
.svcBtn{ appearance:none; border:0; border-radius:var(--radius-sm); padding:12px 18px; cursor:pointer; font-weight:600; transition:all var(--transition) }
.svcBtn.secondary{ background:#F1F5F9; color:var(--ink) }
.svcBtn.secondary:hover{ background:#E2E8F0 }
.svcBtn.primary{ background:linear-gradient(135deg,var(--pri),var(--pri2)); color:#fff; box-shadow:0 4px 14px rgba(99,102,241,.25) }
.svcBtn.primary:hover{ box-shadow:0 6px 20px rgba(99,102,241,.35); transform:translateY(-1px) }
.svcHint{ font-size:11px; color:var(--ink2); margin-top:4px }
.svcHidden{ display:none!important }
@media(max-width:575px){ .svcVCard__title{ font-size:13px } }

/* Card mode hides native fields */
.svc-mode-card .svcNativeFields{ display:none!important }
.svc-mode-card .svcNativeInput{ display:none!important }
.svc-mode-card #order-form #fields,
.svc-mode-card #order-form #fields ~ *{ display:none!important }
/* =========================================================
   Platform Subbar — Modern chip filter
   ========================================================= */
#platform-subbar, .platform-subbar {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  padding: 10px 14px; margin: 10px 0 14px;
  background: rgba(124,58,237,.04);
  border: 1px solid rgba(124,58,237,.1);
  border-radius: 16px;
  transition: background .3s, border-color .3s;
}

.pf-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid #E9E5F5;
  background: #fff; color: #64748B;
  font-weight: 600; font-size: 13px;
  cursor: pointer; white-space: nowrap; user-select: none;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.pf-chip:hover {
  transform: translateY(-1px);
  border-color: #C7D2FE;
  box-shadow: 0 4px 12px rgba(124,58,237,.12);
  color: #7C3AED;
}
.pf-chip[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
}
.pf-chip .chip-icon { display: inline-flex; line-height: 0; }
.pf-chip svg, .pf-chip i[data-lucide] { width: 16px; height: 16px; }
.pf-chip i { width: 16px; height: 16px; display: inline-block; }
.pf-chip .chip-text { white-space: nowrap; }

.pf-hidden { display: none !important; }
.pf-spacer { flex: 0 0 8px; }
.pf-anchor { margin-top: -6px; }
.pf-opt-muted { color: #9aa0a6; }

@media (max-width: 767px) {
  #platform-subbar, .platform-subbar { gap: 6px; padding: 8px 10px; }
  .pf-chip { padding: 7px 12px; font-size: 12px; }
  .pf-chip svg, .pf-chip i[data-lucide], .pf-chip i { width: 14px; height: 14px; }
}
/* ปุ่มที่ถูกเลือก */
.brand-category.active-social{
  position: relative;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 3px 12px rgba(124,58,237,.30);
}
.brand-category.active-social .social-cate-list-txt{
  color:#fff; font-weight:700;
}

/* เอฟเฟกต์ตอนแสดงไอคอนติ๊ก */
@keyframes checkPop {
  0%   { transform: scale(0.3); opacity: 0; }
  70%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}

.brand-category .social-check {
  position: absolute;
  top: 6px; right: 8px;
  width: 16px; height: 16px;
  pointer-events: none;
  color: #fff;
  animation: checkPop 0.35s ease-out;
}

  /* ===== Social Button Ripple + Pulse (Strong) ===== */
.brand-category{
  position: relative;
  overflow: hidden;              /* ตัดคลื่นตามทรงปุ่ม */
  isolation: isolate;            /* กัน z-index ซ้อนจากข้างนอก */
  border-radius: 14px;           /* ให้เหมาะกับทรง pill ของคุณ */
}

/* ให้เนื้อหาข้างในอยู่หน้าคลื่น */
.brand-category > *{ position:relative; z-index: 2; }

/* วง ripple */
.ripple-circle{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: scale(0);
  /* โทนสีเข้มขึ้น + gradient หลายชั้น */
  background: radial-gradient(circle at center,
    rgba(106,90,249,.55) 0%,
    rgba(106,90,249,.40) 35%,
    rgba(106,90,249,.22) 60%,
    rgba(106,90,249,0) 75%);
  animation: btn-ripple-strong 900ms cubic-bezier(.2,.6,.2,1) forwards;
}

@keyframes btn-ripple-strong{
  60% { transform: scale(8); opacity: .95; }
  100%{ transform: scale(10); opacity: 0;  }
}

/* pulse ring one-shot (ชัดขึ้น) */
.brand-category.pulse-once::after{
  content:'';
  position:absolute; inset:-3px;      /* ใหญ่กว่า pill นิดนึง */
  border-radius: 16px;
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(106,90,249,.55);
  animation: btn-pulse-ring 950ms ease-out forwards;
}

@keyframes btn-pulse-ring{
  0%   { box-shadow: 0 0 0 0   rgba(106,90,249,.55); opacity: .85; transform: scale(.96); }
  100% { box-shadow: 0 0 0 16px rgba(106,90,249,0);  opacity: 0;    transform: scale(1.06); }
}

/* เคารพระบบลด motion */
@media (prefers-reduced-motion: reduce){
  .ripple-circle{ animation: none; }
  .brand-category.pulse-once::after{ animation: none; }
}

/* (เผื่อบางธีมครอบด้วย <li> ที่ overflow:hidden) ให้แสดงคลื่นได้ */
.social-cate-list > li{ overflow: visible; }

/* =========================================================
   TOP BAR — Modern Redesign
   ========================================================= */

/* Container — Floating rounded bar */
.top-bar{
  padding:10px 20px;
  background:var(--card, #fff);
  border:1.5px solid var(--border, #E2E8F0);
  margin:12px 16px 0;
  border-radius:18px;
  position:relative;
  z-index:100;
  box-shadow:0 2px 12px rgba(0,0,0,.04);
}
.top-bar .row{
  display:flex !important;
  align-items:center;
}

/* Left side */
.top-left-ul{
  padding:0; margin:0;
  list-style:none;
  display:flex;
  align-items:center;
  gap:12px;
}
.top-left-ul .pinner{
  display:none;
  width:38px; height:38px;
  align-items:center; justify-content:center;
  border-radius:12px;
  background:transparent;
  border:1.5px solid var(--border, #E2E8F0);
  transition:all var(--transition, .2s);
  color:var(--ink, #1E293B);
}
.top-left-ul .pinner:hover{
  background:var(--pri-soft, #EEF2FF);
  border-color:var(--pri, #6366F1);
}
.top-left-ul .pinner svg path{ fill:var(--ink, #1E293B); }
.toggle .top-left-ul .pinner{ display:inline-flex; }

.wel_title{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
  font-size:15px;
  font-weight:600;
  color:var(--ink, #1E293B);
  letter-spacing:-.2px;
}
.wel_title img{ width:24px; height:24px; }

/* Right side */
.top-right-ul{
  list-style:none;
  padding:0; margin:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
}

/* Icon button base */
.top-right-ul li a,
.top-right-ul .lang-dd button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:38px !important; height:38px !important;
  min-width:38px !important;
  padding:0 !important;
  border-radius:12px !important;
  border:1.5px solid var(--border, #E2E8F0) !important;
  background:var(--card, #fff) !important;
  box-shadow:none !important;
  color:var(--ink, #1E293B) !important;
  text-decoration:none !important;
  transition:all var(--transition, .2s) !important;
  margin-left:0 !important;
  cursor:pointer;
}
.top-right-ul li a:hover,
.top-right-ul .lang-dd button:hover{
  background:var(--pri-soft, #EEF2FF) !important;
  border-color:var(--pri, #6366F1) !important;
  transform:translateY(-1px);
  box-shadow:var(--elev, 0 1px 3px rgba(0,0,0,.06)) !important;
}
.top-right-ul li a svg{ width:20px; height:20px; }

/* Points pill wrapper — kill the parent border & background */
.top-right-ul .media-heading{
  margin:0; padding:0;
  border:none !important;
  background:transparent !important;
  min-width:auto !important;
  height:auto !important;
  font-size:0;
  display:flex; align-items:center;
  box-shadow:none !important;
}
html.dark-mode .top-right-ul .media-heading{
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
}
.top-right-ul .head-stats{
  display:inline-flex !important;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  border-radius:12px;
  background:var(--pri-soft, #EEF2FF);
  color:var(--pri, #6366F1) !important;
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  white-space:nowrap;
  border:none !important;
  outline:none !important;
  max-width:none;
  overflow:visible;
  text-overflow:initial;
  min-width:auto;
  height:38px;
  cursor:pointer;
  transition:all var(--transition, .2s);
}
.top-right-ul .head-stats:hover{
  background:#E0E7FF;
  box-shadow:0 2px 8px rgba(99,102,241,.15);
}

/* Balance pill */
.top-right-ul .dropdown-currencies a,
.top-right-ul .dropdown-currencies > a.balance-pill{
  width:auto !important;
  height:38px !important;
  padding:0 14px !important;
  border-radius:12px !important;
  font-size:13px !important;
  font-weight:700 !important;
  gap:6px;
  max-width:180px !important;
  line-height:1 !important;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.balance-pill .ico{ display:inline-flex; width:18px; height:18px; }
.balance-pill .amt{
  font-variant-numeric:tabular-nums;
  font-weight:700;
  max-width:120px;
  overflow:hidden;
  text-overflow:ellipsis;
  display:inline-block;
  vertical-align:middle;
}

/* Ensure currencies parent allows overflow + z-index for dropdown */
.top-right-ul .dropdown-currencies{
  position:relative;
  z-index:99998;
}
.top-right-ul .dropdown-currencies.open .dropdown-menu{
  display:block !important;
}

/* Icon badge */
.icon-badge{
  position:absolute;
  top:-3px; right:-3px;
  min-width:18px; height:18px;
  padding:0 5px;
  background:linear-gradient(135deg, #EF4444, #DC2626);
  color:#fff;
  font:700 10px/18px system-ui, -apple-system, sans-serif;
  text-align:center;
  border-radius:999px;
  border:2px solid var(--card, #fff);
  pointer-events:none;
  display:none;
}
.icon-badge::after{ content:attr(data-count); }
.icon-badge[data-count="0"]{ display:none; }
.icon-badge:not([data-count="0"]){ display:inline-block; }

/* Ticket icon link */
.top-right-ul .top-icon a.icon-link{
  position:relative;
}

/* Logout */
.top-right-ul .btn-logout-icon,
.top-right-ul .btn.btn-primary.btn-logout-icon{
  background:var(--card, #fff) !important;
  border:1.5px solid var(--border, #E2E8F0) !important;
  border-radius:12px !important;
  width:38px !important; height:38px !important;
  padding:0 !important;
  box-shadow:none !important;
  min-width:38px !important;
}
.top-right-ul .btn-logout-icon:hover,
.top-right-ul .btn.btn-primary.btn-logout-icon:hover{
  background:#FEF2F2 !important;
  border-color:#EF4444 !important;
  box-shadow:0 2px 8px rgba(239,68,68,.15) !important;
  transform:translateY(-1px);
}
.top-right-ul .btn.btn-primary.btn-logout-icon svg{
  width:20px; height:20px; display:block;
}
.top-right-ul .btn-logout-icon::after{ display:none !important; }

/* RTL */
.rtl-navbar .icon-badge{ right:auto; left:-3px; }

/* ---- Points Modal ---- */
:root{--g1:#5E6ECE;--g2:#C645F9;--ring:0 10px 24px rgba(198,69,249,.22);}
.pointsV2{border:0;border-radius:18px;overflow:hidden;background:linear-gradient(180deg,#ffffff, #faf8ff);}
.pm-header{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;background:linear-gradient(90deg,var(--g1),var(--g2));color:#fff}
.pm-title{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.3px}
.pm-icon{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:999px;background:rgba(255,255,255,.15);backdrop-filter:blur(4px)}
.pm-pill{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem .85rem;border-radius:999px;background:rgba(255,255,255,.18);font-weight:700}
.pm-sub{padding:14px 18px;background:#fff}
.pm-level-now{display:flex;align-items:center;gap:.6rem;font-weight:600}
.pm-level-now .pm-rate{padding:.2rem .55rem;border-radius:999px;background:linear-gradient(90deg,#f3f0ff,#fdf6ff);border:1px solid rgba(0,0,0,.05);font-weight:700}
.pm-next{margin-top:10px}
.pm-next-text{font-size:13px;opacity:.8;margin-bottom:6px}
.pm-bar{height:8px;border-radius:999px;background:#e9e5f0;overflow:hidden}
.pm-bar-fill{height:100%;border-radius:999px;background:linear-gradient(90deg,var(--g1),var(--g2));transition:width .4s ease}
.pm-bar-label{font-size:12px;margin-top:4px;color:#999}
.pm-body{padding:8px 18px 12px;display:flex;flex-direction:column;gap:14px}
.pm-sect-title{font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.6px;color:#999;margin-bottom:6px}
.pm-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid rgba(0,0,0,.06);gap:12px}
.pm-row:last-child{border-bottom:0}
.pm-lbl{display:flex;align-items:center;gap:8px;font-weight:600;white-space:nowrap}
.pm-lbl-icon{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:999px}
.pm-val{font-weight:800;font-variant-numeric:tabular-nums;white-space:nowrap}
.pm-footer{padding:10px 18px 14px;display:flex;gap:10px}
.pm-footer .btn{flex:1;border-radius:12px;font-weight:700;padding:10px 0;text-align:center;transition:all .2s}
.pm-btn-pri{background:linear-gradient(90deg,var(--g1),var(--g2));color:#fff;border:0;box-shadow:var(--ring)}
.pm-btn-pri:hover{filter:brightness(1.08);color:#fff}
.pm-btn-sec{background:#fff;color:var(--g1);border:1.5px solid var(--g1)}
.pm-btn-sec:hover{background:#f3f0ff}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Confetti */
.conf-dot{position:fixed;width:6px;height:6px;border-radius:50%;pointer-events:none;
  animation:conf .9s cubic-bezier(.2,.6,.3,1) forwards;}
@keyframes conf{to{transform:translate(var(--tx),var(--ty)) rotate(720deg);opacity:0}}

/* ---- Mobile ---- */
@media(max-width:768px){
  .top-bar{ padding:8px 12px; margin:8px 8px 0; border-radius:14px; }
  .top-bar .row{ flex-wrap:nowrap; }
  .top-left-ul{ gap:8px; margin-bottom:0; }
  .wel_title{ font-size:13px; }
  .wel_title img{ width:20px; height:20px; }
  .top-right-ul{ gap:5px; flex-wrap:nowrap; }
  .top-right-ul .media-heading{ display:none !important; }
  .top-right-ul li a,
  .top-right-ul .lang-dd button{
    width:34px !important; height:34px !important;
    min-width:34px !important;
    border-radius:10px !important;
  }
  .top-right-ul .head-stats{
    height:34px; padding:4px 10px; font-size:12px;
  }
  .top-right-ul .dropdown-currencies a,
  .top-right-ul .dropdown-currencies > a.balance-pill{
    height:34px !important;
    padding:0 10px !important;
    border-radius:10px !important;
    font-size:12px !important;
    max-width:120px !important;
  }
  .top-right-ul .btn-logout-icon,
  .top-right-ul .btn.btn-primary.btn-logout-icon{
    width:34px !important; height:34px !important;
    min-width:34px !important;
    border-radius:10px !important;
  }
}
@media(max-width:575px){
  .top-left-ul{ margin-bottom:0; }
  .wel_title{ display:none; }
}

/* =========================================================
   SIDEBAR — Light Theme (Default)
   ========================================================= */
.sidebar {
  background: #fff !important;
  border: 1px solid #E9E5F5 !important;
  box-shadow: 2px 0 20px rgba(0,0,0,.04);
  scrollbar-width: thin;
  scrollbar-color: rgba(124,58,237,.15) transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(124,58,237,.2); border-radius: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }

.sidebar .sidebar-logo .logo { color: #1E293B; }
.sidebar .sidebar-logo .logo .logo-default { display: inline-block; }
.sidebar .sidebar-logo .logo .logo-white { display: none; }
.sidebar .pinner svg path { fill: #64748B !important; transition: fill .2s; }
.sidebar .pinner:hover svg path { fill: #1E293B !important; }

.sidebar-nav { margin-top: 8px; }

.sidebar-nav li a {
  color: #64748B !important;
  transition: all .25s cubic-bezier(.4,0,.2,1) !important;
  border: 1px solid transparent;
  border-radius: 14px;
}
.sidebar-nav li a .navbar-icon,
.sidebar-nav li a .menu-icon i { color: #94A3B8 !important; transition: color .25s !important; }
.sidebar-nav li a .menu-txt { color: inherit; }
.sidebar-nav li a .menu-icon img {
  opacity: .6;
  transform: none !important;
}
.sidebar-nav li a .menu-icon svg {
  opacity: .55;
  color: #94A3B8;
  transition: all .25s;
  flex-shrink: 0;
}

.sidebar-nav li.active a,
.sidebar-nav li.active a:hover,
.sidebar-nav li a:hover,
.sidebar-nav li a:focus {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%) !important;
  border: 1px solid transparent !important;
  border-radius: 14px !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(124,58,237,.25) !important;
}
.sidebar-nav li.active a .navbar-icon,
.sidebar-nav li.active a:hover .navbar-icon,
.sidebar-nav li a:hover .navbar-icon,
.sidebar-nav li a:focus .navbar-icon { color: #fff !important; }
.sidebar-nav li.active a .menu-icon img,
.sidebar-nav li.active a:hover .menu-icon img,
.sidebar-nav li a:hover .menu-icon img,
.sidebar-nav li a:focus .menu-icon img {
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
  transform: none !important;
}
.sidebar-nav li.active a .menu-icon svg,
.sidebar-nav li.active a:hover .menu-icon svg,
.sidebar-nav li a:hover .menu-icon svg,
.sidebar-nav li a:focus .menu-icon svg {
  color: #fff !important;
  opacity: 1 !important;
}

.sidebar-nav li .dropdown .btn.dropdown-toggle {
  color: #64748B !important;
  background: transparent !important;
}
.sidebar-nav li .dropdown .btn.dropdown-toggle svg path { fill: #94A3B8 !important; }
.btn_dropdown_black {
  background: #F5F3FF !important;
  border: 1px solid #E9E5F5 !important;
  border-radius: 14px !important;
  color: #7C3AED !important;
}
.btn_dropdown_black:hover {
  background: #EDE9FE !important;
  border-color: #DDD6FE !important;
  color: #6D28D9 !important;
}

.sidebar-nav li .dropdown .dropdown-menu {
  background: #fff !important;
  border: 1px solid #E9E5F5 !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.1) !important;
  padding: 6px !important;
}
.sidebar-nav li .dropdown-menu .dropdown-item {
  color: #64748B !important;
  border-radius: 10px !important;
  padding: 8px 10px !important;
  transition: all .2s !important;
}
.sidebar-nav li .dropdown-menu .dropdown-item:hover,
.sidebar-nav li .dropdown-menu .dropdown-item:focus {
  background: #F5F3FF !important;
  color: #7C3AED !important;
}
.sidebar-nav li .dropdown-menu .dropdown-item .menu-icon img {
  opacity: .6;
  transform: none !important;
}
.sidebar-nav li .dropdown-menu .dropdown-item:hover .menu-icon img { opacity: 1; }

.sidebar-ftr {
  background: #F5F3FF !important;
  border: 1px solid #E9E5F5 !important;
  border-radius: 14px !important;
}
.sidebar-ftr h4 { color: #1E293B !important; }
.sidebar-ftr .btn.btn-secondary {
  background: #7C3AED !important;
  color: #fff !important;
  border: none !important;
}
.sidebar-ftr .btn.btn-secondary:hover {
  background: #6D28D9 !important;
}

/* =========================================================
   SIDEBAR — Dark Mode Override
   ========================================================= */
.dark-mode .sidebar {
  background: linear-gradient(180deg, #1A0A3E 0%, #110827 50%, #0B0520 100%) !important;
  border: 1px solid rgba(124,58,237,.1) !important;
  box-shadow: 4px 0 30px rgba(11,5,32,.25);
  scrollbar-color: rgba(124,58,237,.25) transparent;
}
.dark-mode .sidebar::-webkit-scrollbar-thumb { background: rgba(124,58,237,.3); }

.dark-mode .sidebar .sidebar-logo .logo { color: #fff; }
.dark-mode .sidebar .sidebar-logo .logo .logo-default { display: none; }
.dark-mode .sidebar .sidebar-logo .logo .logo-white { display: inline-block; filter: drop-shadow(0 0 12px rgba(168,85,247,.35)); }
.dark-mode .sidebar .pinner svg path { fill: rgba(255,255,255,.5) !important; }
.dark-mode .sidebar .pinner:hover svg path { fill: rgba(255,255,255,.85) !important; }

.dark-mode .sidebar-nav li a {
  color: rgba(255,255,255,.6) !important;
  border: 1px solid transparent;
}
.dark-mode .sidebar-nav li a .navbar-icon,
.dark-mode .sidebar-nav li a .menu-icon i { color: rgba(255,255,255,.45) !important; }
.dark-mode .sidebar-nav li a .menu-icon img {
  filter: brightness(0) invert(1);
  opacity: .55;
}
.dark-mode .sidebar-nav li a .menu-icon svg {
  color: rgba(255,255,255,.5);
  opacity: .7;
}

.dark-mode .sidebar-nav li.active a,
.dark-mode .sidebar-nav li.active a:hover,
.dark-mode .sidebar-nav li a:hover,
.dark-mode .sidebar-nav li a:focus {
  background: rgba(124,58,237,.15) !important;
  border: 1px solid rgba(124,58,237,.25) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(124,58,237,.1), inset 0 0 12px rgba(124,58,237,.08) !important;
}
.dark-mode .sidebar-nav li.active a .navbar-icon,
.dark-mode .sidebar-nav li a:hover .navbar-icon,
.dark-mode .sidebar-nav li a:focus .navbar-icon { color: #C084FC !important; }
.dark-mode .sidebar-nav li.active a .menu-icon img,
.dark-mode .sidebar-nav li a:hover .menu-icon img,
.dark-mode .sidebar-nav li a:focus .menu-icon img {
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}
.dark-mode .sidebar-nav li.active a .menu-icon svg,
.dark-mode .sidebar-nav li a:hover .menu-icon svg,
.dark-mode .sidebar-nav li a:focus .menu-icon svg {
  color: #C084FC !important;
  opacity: 1 !important;
}

.dark-mode .sidebar-nav li .dropdown .btn.dropdown-toggle { color: rgba(255,255,255,.6) !important; }
.dark-mode .sidebar-nav li .dropdown .btn.dropdown-toggle svg path { fill: rgba(255,255,255,.4) !important; }
.dark-mode .btn_dropdown_black {
  background: rgba(124,58,237,.12) !important;
  border: 1px solid rgba(124,58,237,.2) !important;
  color: rgba(255,255,255,.7) !important;
}
.dark-mode .btn_dropdown_black:hover {
  background: rgba(124,58,237,.2) !important;
  border-color: rgba(124,58,237,.35) !important;
  color: #fff !important;
}

.dark-mode .sidebar-nav li .dropdown .dropdown-menu {
  background: #1A0A3E !important;
  border: 1px solid rgba(124,58,237,.2) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.3) !important;
}
.dark-mode .sidebar-nav li .dropdown-menu .dropdown-item { color: rgba(255,255,255,.65) !important; }
.dark-mode .sidebar-nav li .dropdown-menu .dropdown-item:hover,
.dark-mode .sidebar-nav li .dropdown-menu .dropdown-item:focus {
  background: rgba(124,58,237,.15) !important;
  color: #fff !important;
}
.dark-mode .sidebar-nav li .dropdown-menu .dropdown-item .menu-icon img {
  filter: brightness(0) invert(1);
  opacity: .6;
}

.dark-mode .sidebar-ftr {
  background: rgba(124,58,237,.12) !important;
  border: 1px solid rgba(124,58,237,.2) !important;
}
.dark-mode .sidebar-ftr h4 { color: #fff !important; }
.dark-mode .sidebar-ftr .btn.btn-secondary {
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.15) !important;
}
.dark-mode .sidebar-ftr .btn.btn-secondary:hover {
  background: rgba(255,255,255,.2) !important;
}

/* =========================================================
   TOP BAR — Premium Purple Update
   ========================================================= */

.top-bar {
  background: #FAFAFE !important;
  border: 1.5px solid #E9E5F5 !important;
}

/* Points pill - purple tint (borderless) */
.top-right-ul .head-stats {
  background: #F5F3FF !important;
  color: #7C3AED !important;
  border: none !important;
  outline: none !important;
}
.top-right-ul .head-stats:hover {
  background: #EDE9FE !important;
  box-shadow: 0 2px 8px rgba(124,58,237,.15) !important;
}

/* Icon buttons - purple accent on hover */
.top-right-ul li a:hover,
.top-right-ul .lang-dd button:hover {
  background: #F5F3FF !important;
  border-color: #7C3AED !important;
}

/* Logout - keep red */
.top-right-ul .btn-logout-icon:hover,
.top-right-ul .btn.btn-primary.btn-logout-icon:hover {
  background: #FEF2F2 !important;
  border-color: #EF4444 !important;
}

/* Balance pill */
.top-right-ul .dropdown-currencies > a.balance-pill {
  border: 1.5px solid #E9E5F5 !important;
}
.top-right-ul .dropdown-currencies > a.balance-pill:hover {
  border-color: #7C3AED !important;
  background: #F5F3FF !important;
}

/* =========================================================
   GLOBAL — Premium Purple Content Area
   ========================================================= */

.inner_wrapper_box {
  border-radius: 0 !important;
  padding: 25px 16px !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Override gradient buttons with purple premium */
.top-right-ul .btn.btn-primary:not(.btn-logout-icon) {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%) !important;
  box-shadow: 0 4px 12px rgba(124,58,237,.25) !important;
}
.top-right-ul .btn.btn-primary:not(.btn-logout-icon):hover {
  box-shadow: 0 6px 20px rgba(124,58,237,.35) !important;
}

/* Wrapper toggle (collapsed sidebar) */
.wrapper.toggle .sidebar {
  left: -280px !important;
}

/* ---- Mobile sidebar ---- */
@media (max-width: 768px) {
  .sidebar {
    left: -280px;
  }
  /* JS adds .toggle on load → keep sidebar hidden */
  .wrapper.toggle .sidebar {
    left: -280px !important;
  }
  /* Clicking pinner removes .toggle → show sidebar */
  .wrapper:not(.toggle) .sidebar {
    left: 0 !important;
    z-index: 99999;
  }
}

/* Mobile sidebar backdrop overlay */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,5,36,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  animation: sidebarFadeIn .2s ease;
}
@keyframes sidebarFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 768px) {
  .wrapper:not(.toggle) .sidebar-backdrop {
    display: block;
  }
}

/* =========================================================
   NEW ORDER PAGE — Premium Purple Redesign v2 (Dramatic)
   ========================================================= */

/* --- Page background — Deep purple ambient --- */
.dark-mode .inner-warp {
  background: linear-gradient(160deg, #0F0524 0%, #170935 30%, #1A0B3D 60%, #12072B 100%) !important;
  min-height: 100vh;
}

/* --- Inner wrapper box — transparent (no outer frame) --- */
.dark-mode .inner_wrapper_box {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* --- Top bar override on dark bg --- */
.dark-mode .top-bar {
  background: rgba(15,5,36,.6) !important;
  border: 1.5px solid rgba(124,58,237,.15) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.dark-mode .wel_title { color: rgba(255,255,255,.85) !important; }
.dark-mode .top-left-ul .pinner svg path { fill: rgba(255,255,255,.6) !important; }

/* Top bar icons on dark bg */
.dark-mode .top-right-ul li a,
.dark-mode .top-right-ul .lang-dd button {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(124,58,237,.2) !important;
  color: rgba(255,255,255,.8) !important;
}
.dark-mode .top-right-ul li a:hover,
.dark-mode .top-right-ul .lang-dd button:hover {
  background: rgba(124,58,237,.15) !important;
  border-color: rgba(124,58,237,.4) !important;
  color: #fff !important;
}
.dark-mode .top-right-ul li a svg path,
.dark-mode .top-right-ul li a svg circle,
.dark-mode .top-right-ul li a svg line {
  stroke: rgba(255,255,255,.7);
}
.dark-mode .top-right-ul .head-stats {
  background: rgba(124,58,237,.12) !important;
  color: #C084FC !important;
  border: none !important;
  outline: none !important;
}
.dark-mode .top-right-ul .head-stats:hover {
  background: rgba(124,58,237,.2) !important;
}
.dark-mode .top-right-ul .dropdown-currencies > a.balance-pill,
.dark-mode .top-right-ul .dropdown-currencies a {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(124,58,237,.2) !important;
  color: rgba(255,255,255,.85) !important;
}
.dark-mode .top-right-ul .dropdown-currencies > a.balance-pill:hover {
  background: rgba(124,58,237,.15) !important;
  border-color: rgba(124,58,237,.4) !important;
}

/* --- Cards (.well) — Dark glass cards --- */
.dark-mode .well {
  background: rgba(26,10,62,.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(124,58,237,.18) !important;
  border-radius: 20px !important;
  box-shadow:
    0 4px 30px rgba(0,0,0,.2),
    0 0 60px rgba(124,58,237,.06),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.dark-mode .well:hover {
  border-color: rgba(124,58,237,.3) !important;
  box-shadow:
    0 8px 40px rgba(0,0,0,.25),
    0 0 80px rgba(124,58,237,.1),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* --- Section titles — white on dark --- */
.dark-mode .c_title {
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -.2px;
}
/* c_title ::before accent bar removed — user didn't want it */

/* --- Social Category Grid — Dark glass pills --- */
.dark-mode .social-cate-title-txt {
  font-weight: 800;
  color: rgba(255,255,255,.9) !important;
}
.dark-mode .social-cate-btn {
  background: rgba(124,58,237,.15) !important;
  color: #C084FC !important;
  border: 1px solid rgba(124,58,237,.25) !important;
  font-weight: 600;
}
.dark-mode .social-cate-btn:hover {
  background: rgba(124,58,237,.25) !important;
}
.dark-mode .social-cate-btn svg path {
  fill: #C084FC !important;
}

.dark-mode .social-cate {
  background: rgba(255,255,255,.06) !important;
  border: 1.5px solid rgba(124,58,237,.15) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  color: rgba(255,255,255,.8) !important;
}
.dark-mode .social-cate .social-cate-list-txt {
  color: rgba(255,255,255,.75) !important;
}
.dark-mode .social-cate:hover {
  border-color: rgba(124,58,237,.4) !important;
  box-shadow: 0 6px 24px rgba(124,58,237,.2);
  transform: translateY(-3px);
  background: rgba(124,58,237,.1) !important;
}
.dark-mode .social-cate:hover .social-cate-list-txt {
  color: #fff !important;
}

.dark-mode .social-cate.active-social,
.dark-mode .social-cate[aria-current="true"],
.dark-mode .social-cate.is-active {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 24px rgba(124,58,237,.4);
  color: #fff !important;
}
.dark-mode .social-cate.active-social .social-cate-list-txt,
.dark-mode .social-cate[aria-current="true"] .social-cate-list-txt,
.dark-mode .social-cate.is-active .social-cate-list-txt {
  color: #fff !important;
  font-weight: 700;
}

/* --- Tabs — Dark glass with purple glow --- */
.dark-mode .neworder-tabs.custom-tabs.nav-tabs {
  gap: 6px;
  border: none !important;
  background: rgba(124,58,237,.06);
  border-radius: 16px;
  padding: 5px;
}
.dark-mode .neworder-tabs.custom-tabs.nav-tabs li .nav-link {
  border-color: rgba(124,58,237,.15) !important;
  background: rgba(255,255,255,.05) !important;
  color: rgba(255,255,255,.6) !important;
}
.dark-mode .neworder-tabs.custom-tabs.nav-tabs li .nav-link:hover {
  border-color: rgba(124,58,237,.35) !important;
  background: rgba(124,58,237,.1) !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.15);
  transform: translateY(-2px);
}
.dark-mode .neworder-tabs.custom-tabs.nav-tabs li.active .nav-link {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%) !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
  color: #fff !important;
}

/* --- Form Elements — Dark glass input --- */
.dark-mode .form-control {
  border-color: rgba(124,58,237,.15) !important;
  background: rgba(255,255,255,.05) !important;
  color: rgba(255,255,255,.9) !important;
}
.dark-mode .form-control::placeholder {
  color: rgba(255,255,255,.35) !important;
}
.dark-mode .form-control:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 4px rgba(124,58,237,.15) !important;
  background: rgba(255,255,255,.08) !important;
}
.dark-mode .form-group label,
.dark-mode .control-label {
  font-weight: 600;
  color: rgba(255,255,255,.65) !important;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 8px;
}

/* Select dropdown text */
.dark-mode select.form-control {
  color: rgba(255,255,255,.85) !important;
}
.dark-mode select.form-control option {
  background: #1A0A3E;
  color: #fff;
}

/* Search input */
.dark-mode #template-input {
  background: rgba(255,255,255,.06) !important;
  border: 1.5px solid rgba(124,58,237,.15) !important;
  color: rgba(255,255,255,.85) !important;
}
.dark-mode #template-input::placeholder {
  color: rgba(255,255,255,.35) !important;
}

/* --- Submit Button — Premium styling (both modes) --- */
.button-row .btn.btn-primary {
  background: linear-gradient(135deg, #7C3AED 0%, #9333EA 50%, #A855F7 100%) !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 16px 24px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: .3px;
  box-shadow: 0 6px 30px rgba(124,58,237,.25);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.button-row .btn.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s;
}
.dark-mode .button-row .btn.btn-primary {
  box-shadow: 0 6px 30px rgba(124,58,237,.4), 0 0 60px rgba(124,58,237,.15);
}
.button-row .btn.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(124,58,237,.35) !important;
  transform: translateY(-2px);
}
.dark-mode .button-row .btn.btn-primary:hover::before { left: 100%; }
.dark-mode .button-row .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(124,58,237,.3) !important;
}

/* --- Service Description Box — Premium gradient on dark --- */
.dark-mode .service_box_Wraps {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 40%, #9333EA 100%) !important;
  box-shadow: 0 10px 40px rgba(124,58,237,.3), 0 0 60px rgba(124,58,237,.1);
  border-radius: 18px;
  padding: 22px;
}
.dark-mode .service_box_Wraps::before {
  background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,.15) 0%, transparent 60%);
}
.dark-mode .exm_link {
  border-radius: 14px;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
.dark-mode .exm_link .ex_link {
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
}
.dark-mode .exm_link span[data-id] {
  color: rgba(255,255,255,.75);
}

/* --- Service Details Cards — Dark glass --- */
.dark-mode #svc-details .svc-card {
  background: rgba(255,255,255,.05) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(124,58,237,.12);
  border-radius: 14px;
  transition: all .25s;
}
.dark-mode #svc-details .svc-card:hover {
  border-color: rgba(124,58,237,.3);
  box-shadow: 0 6px 24px rgba(124,58,237,.15);
  transform: translateY(-2px);
}
.dark-mode #svc-details .svc-title {
  color: rgba(255,255,255,.5) !important;
}
.dark-mode #svc-details .svc-val {
  color: #fff !important;
  font-weight: 700;
}
/* Ensure injected Bootstrap classes are visible in dark mode */
.dark-mode #svc-details .svc-val .text-success,
.dark-mode .service_description_box .text-success,
.dark-mode .service_box_Wraps .text-success {
  color: #34D399 !important;
}
.dark-mode #svc-details .svc-val .text-danger,
.dark-mode .service_description_box .text-danger,
.dark-mode .service_box_Wraps .text-danger {
  color: #F87171 !important;
}
.dark-mode #svc-details .svc-val .text-warning,
.dark-mode .service_description_box .text-warning {
  color: #FBBF24 !important;
}
.dark-mode #svc-details .svc-val .text-info,
.dark-mode .service_description_box .text-info {
  color: #67E8F9 !important;
}
.dark-mode #svc-details .svc-val .text-primary,
.dark-mode .service_description_box .text-primary {
  color: #C084FC !important;
}
.dark-mode #svc-details .svc-val .text-muted,
.dark-mode .service_description_box .text-muted {
  color: rgba(255,255,255,.5) !important;
}
/* Buttons injected by panel (btn-success, btn-primary, etc.) */
.dark-mode #svc-details .svc-val .btn,
.dark-mode #svc-details .svc-val [class*="btn-"] {
  background: rgba(124,58,237,.15) !important;
  border: 1.5px solid rgba(124,58,237,.3) !important;
  color: #C084FC !important;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 13px;
}
.dark-mode #svc-details .svc-val .btn-success,
.dark-mode #svc-details .svc-val [class*="btn-success"] {
  background: rgba(52,211,153,.12) !important;
  border-color: rgba(52,211,153,.3) !important;
  color: #34D399 !important;
}
.dark-mode #svc-details .svc-val .btn-danger,
.dark-mode #svc-details .svc-val [class*="btn-danger"] {
  background: rgba(248,113,113,.12) !important;
  border-color: rgba(248,113,113,.3) !important;
  color: #F87171 !important;
}
/* Font Awesome icons in svc-val */
.dark-mode #svc-details .svc-val .fa,
.dark-mode #svc-details .svc-val .fas,
.dark-mode #svc-details .svc-val .far {
  color: inherit !important;
}
/* General spans in svc-val that might have inline colors */
.dark-mode #svc-details .svc-val span {
  color: inherit;
}
/* NUCLEAR: Override ANY inline color styles in service detail values */
.dark-mode #svc-details .svc-val[style],
.dark-mode #svc-details .svc-val *[style],
.dark-mode #svc-details .svc-val [style*="color"],
.dark-mode #svc-details .svc-val span[style],
.dark-mode #svc-details .svc-val b[style],
.dark-mode #svc-details .svc-val strong[style],
.dark-mode #svc-details .svc-val a[style] {
  color: inherit !important;
}
/* Bootstrap labels/badges inside service details */
.dark-mode #svc-details .svc-val .label,
.dark-mode #svc-details .svc-val .badge,
.dark-mode #svc-details .label,
.dark-mode #svc-details .badge,
.dark-mode .service_description_box .label,
.dark-mode .service_description_box .badge {
  background: rgba(124,58,237,.2) !important;
  color: #C084FC !important;
  border: 1px solid rgba(124,58,237,.3) !important;
}
.dark-mode #svc-details .svc-val .label-success,
.dark-mode #svc-details .svc-val .badge-success,
.dark-mode .service_description_box .label-success {
  background: rgba(52,211,153,.15) !important;
  color: #34D399 !important;
  border-color: rgba(52,211,153,.3) !important;
}
.dark-mode #svc-details .svc-val .label-danger,
.dark-mode #svc-details .svc-val .badge-danger,
.dark-mode .service_description_box .label-danger {
  background: rgba(248,113,113,.15) !important;
  color: #F87171 !important;
  border-color: rgba(248,113,113,.3) !important;
}
.dark-mode #svc-details .svc-val .label-warning,
.dark-mode #svc-details .svc-val .badge-warning {
  background: rgba(251,191,36,.15) !important;
  color: #FBBF24 !important;
  border-color: rgba(251,191,36,.3) !important;
}
.dark-mode #svc-details .svc-val .label-info,
.dark-mode #svc-details .svc-val .badge-info {
  background: rgba(103,232,249,.15) !important;
  color: #67E8F9 !important;
  border-color: rgba(103,232,249,.3) !important;
}
/* ANY element inside svc-val — force visible in dark mode */
.dark-mode #svc-details .svc-val,
.dark-mode #svc-details .svc-val * {
  color: #fff !important;
}
.dark-mode #svc-details .svc-val .text-success,
.dark-mode #svc-details .svc-val .text-success * { color: #34D399 !important; }
.dark-mode #svc-details .svc-val .text-danger,
.dark-mode #svc-details .svc-val .text-danger * { color: #F87171 !important; }
.dark-mode #svc-details .svc-val .text-warning,
.dark-mode #svc-details .svc-val .text-warning * { color: #FBBF24 !important; }
.dark-mode #svc-details .svc-val .text-info,
.dark-mode #svc-details .svc-val .text-info * { color: #67E8F9 !important; }

/* --- Service Card View — Dark glass --- */
.dark-mode .svcVCard {
  border: 1.5px solid rgba(124,58,237,.12) !important;
  border-radius: 14px;
  background: rgba(255,255,255,.05) !important;
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
}
.dark-mode .svcVCard:hover {
  border-color: rgba(124,58,237,.3) !important;
  box-shadow: 0 6px 24px rgba(124,58,237,.15);
}
.dark-mode .svcVCard.is-selected {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
  background: rgba(124,58,237,.1) !important;
}
.dark-mode .svcVCard__title {
  color: rgba(255,255,255,.9);
}
.dark-mode .svcVCard__title .svcVCard__id {
  color: #C084FC;
  background: rgba(124,58,237,.15);
  border-color: rgba(124,58,237,.25);
}
.dark-mode .svcVCard__row2 {
  color: rgba(255,255,255,.5);
}
.dark-mode .svcVPrice .main {
  background: rgba(124,58,237,.12);
  border-color: rgba(124,58,237,.2);
  color: #C084FC;
}

/* --- View Toggle Buttons --- */
.dark-mode .svcViewToggle {
  border: 1.5px solid rgba(124,58,237,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.dark-mode .svcToggleBtn {
  color: rgba(255,255,255,.5) !important;
}
.dark-mode .svcToggleBtn + .svcToggleBtn {
  border-left-color: rgba(124,58,237,.15) !important;
}
.dark-mode .svcToggleBtn[aria-selected="true"] {
  background: rgba(124,58,237,.15) !important;
  color: #C084FC !important;
}

/* --- Charge field — Glow --- */
.dark-mode #charge {
  background: rgba(124,58,237,.08) !important;
  border: 1.5px solid rgba(124,58,237,.2) !important;
  font-weight: 700;
  font-size: 16px;
  color: #C084FC !important;
}

/* --- Platform subbar --- */
.dark-mode #platform-subbar, .dark-mode .platform-subbar {
  background: rgba(124,58,237,.06);
  border-color: rgba(124,58,237,.15);
  border-radius: 16px;
}
.dark-mode .pf-chip {
  border-color: rgba(124,58,237,.15) !important;
  background: rgba(255,255,255,.05) !important;
  color: rgba(255,255,255,.7) !important;
}
.dark-mode .pf-chip:hover {
  border-color: rgba(124,58,237,.35) !important;
  background: rgba(255,255,255,.08) !important;
  color: #C084FC !important;
  box-shadow: 0 4px 12px rgba(124,58,237,.2);
}
.dark-mode .pf-chip[aria-pressed="true"] {
  background: linear-gradient(135deg, #7C3AED, #A855F7) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.35);
  color: #fff !important;
}

/* --- Quick Order Modal --- */
.dark-mode .svcModalBackdrop {
  background: rgba(8,3,18,.7) !important;
}
.dark-mode .svcModal {
  background: #1A0A3E !important;
  border-radius: 20px;
  border: 1.5px solid rgba(124,58,237,.2);
  box-shadow: 0 25px 80px rgba(0,0,0,.4);
  color: #fff;
}
.dark-mode .svcModal h3 { color: #fff; }
.dark-mode .svcFormRow label { color: rgba(255,255,255,.5); }
.dark-mode .svcFormRow input {
  background: rgba(255,255,255,.06);
  border-color: rgba(124,58,237,.2);
  color: #fff;
}
.dark-mode .svcBtn.primary {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}

/* --- Service Description Box (expanded) --- */
.dark-mode .service_description_box {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(124,58,237,.12);
  color: rgba(255,255,255,.75);
}
.dark-mode .service_description_box h6 { color: rgba(255,255,255,.9); }
.dark-mode .service_description_box p { color: rgba(255,255,255,.65); }

/* --- Alerts on dark bg --- */
.dark-mode .alert-success {
  background: rgba(16,185,129,.1) !important;
  border: 1.5px solid rgba(16,185,129,.3) !important;
  border-radius: 14px !important;
  color: #6EE7B7;
}
.dark-mode .alert-danger {
  background: rgba(239,68,68,.1) !important;
  border: 1.5px solid rgba(239,68,68,.3) !important;
  border-radius: 14px !important;
  color: #FCA5A5;
}
/* Alert-warning → soft purple (replace ugly Bootstrap yellow) */
.alert-warning {
  background: #F5F3FF !important;
  border: 1.5px solid #DDD6FE !important;
  border-radius: 14px !important;
  color: #5B21B6 !important;
  font-size: 14px;
  font-weight: 500;
}
.alert-warning a {
  color: #7C3AED !important;
  font-weight: 600;
  text-decoration: underline;
}
.alert-warning a:hover {
  color: #6D28D9 !important;
}
.dark-mode .alert-warning {
  background: rgba(124,58,237,.1) !important;
  border: 1.5px solid rgba(124,58,237,.25) !important;
  border-radius: 14px !important;
  color: #C4B5FD !important;
}
.dark-mode .alert-warning a {
  color: #C084FC !important;
}

/* --- Mass order area on dark bg --- */
.dark-mode #mass-links,
.dark-mode textarea[name="MassOrderForm[orders]"] {
  background: rgba(255,255,255,.05) !important;
  color: rgba(255,255,255,.85) !important;
  border-color: rgba(124,58,237,.15) !important;
}
.dark-mode .mo-easy {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(124,58,237,.15) !important;
}
.dark-mode .mo-inp {
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(124,58,237,.15) !important;
  color: rgba(255,255,255,.85) !important;
}
.dark-mode .mo-easy__head {
  color: rgba(255,255,255,.8) !important;
}
.dark-mode .form-text.text-muted {
  color: rgba(255,255,255,.4) !important;
}
.dark-mode .form-text code {
  background: rgba(124,58,237,.1);
  color: #C084FC;
  padding: 2px 6px;
  border-radius: 4px;
}

/* --- Checkbox/terms --- */
.dark-mode .terms { color: rgba(255,255,255,.6) !important; }
.dark-mode .terms a { color: #A855F7 !important; }

/* --- Decorative ambient glow --- */
.dark-mode .neworder_wrapper::before {
  content: '';
  position: fixed;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.dark-mode .neworder_wrapper::after {
  content: '';
  position: fixed;
  bottom: -150px;
  left: 100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.dark-mode .neworder_wrapper {
  position: relative;
}
.dark-mode .neworder_wrapper > .row {
  position: relative;
  z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .well {
    border-radius: 16px !important;
    padding: 16px !important;
  }
  .c_title { font-size: 16px; }
  .button-row .btn.btn-primary {
    padding: 14px 20px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
  }
  #svc-details .svc-card { border-radius: 12px; }
  .social-cate {
    border-radius: 12px !important;
    padding: 8px 12px;
  }
  .neworder-tabs.custom-tabs.nav-tabs {
    border-radius: 14px;
    padding: 4px;
  }
}

/* =========================================================
   THEME TOGGLE BUTTON
   ========================================================= */
.mode {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s;
}
.mode:hover { transform: scale(1.15); }
.mode .mode-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Icon visibility driven by dark-mode class (set in <head> before paint) */
.mode .nightmode-icon { display: none; }
.mode .daymode-icon   { display: inline-flex; }
html.dark-mode .mode .nightmode-icon { display: inline-flex; }
html.dark-mode .mode .daymode-icon   { display: none; }

/* Dark mode body/html background */
.dark-mode {
  background: #0B0520 !important;
}
.dark-mode.auth {
  background: #0B0520 !important;
}

/* =========================================================
   SMOOTH THEME TRANSITION — Overlay crossfade approach
   An opaque overlay matching the current theme covers the page,
   the theme toggles behind it, then the overlay fades out.
   This prevents flash without any per-element transition cost.
   ========================================================= */
.theme-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  opacity: 1;
  transition: opacity .15s ease-out;
}

/* =========================================================
   MODERN SELECT DROPDOWN
   ========================================================= */

/* --- Native select styling --- */
select.form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237C3AED' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 14 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 40px !important;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
  border: 1.5px solid #E2E8F0 !important;
  border-style: solid !important;
  outline: none !important;
}
select.form-control:hover {
  border-color: #C7D2FE !important;
  box-shadow: 0 2px 8px rgba(124,58,237,.08) !important;
}
select.form-control:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12) !important;
  outline: none !important;
}
select.form-control option {
  padding: 10px 14px;
  font-size: 14px;
  background: #fff;
  color: #1E293B;
}
select.form-control option:checked {
  background: #F5F3FF;
  color: #7C3AED;
}
select.form-control optgroup {
  font-weight: 700;
  font-size: 13px;
  color: #7C3AED;
  background: #F5F3FF;
}

/* --- Panel custom select plugin overrides --- */
/* Target common custom select wrappers generated by SMM panel */
.form-group .ss-main,
.form-group [class*="select-container"],
.form-group [class*="select-opener"],
.form-group [class*="custom-select"] {
  border: 1.5px solid #E2E8F0 !important;
  border-style: solid !important;
  border-radius: 14px !important;
  outline: none !important;
  background: #fff !important;
  min-height: 44px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.form-group .ss-main:hover,
.form-group [class*="select-container"]:hover,
.form-group [class*="select-opener"]:hover,
.form-group [class*="custom-select"]:hover {
  border-color: #C7D2FE !important;
}
.form-group .ss-main:focus,
.form-group .ss-main.ss-open,
.form-group [class*="select-container"]:focus,
.form-group [class*="custom-select"]:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12) !important;
  outline: none !important;
}

/* Custom select dropdown panel */
.ss-content,
[class*="select-panel"],
.form-group .dropdown-menu {
  border-radius: 14px !important;
  border: 1.5px solid #E9E5F5 !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.05) !important;
  padding: 6px !important;
  overflow: hidden;
  max-height: 320px !important;
  overflow-y: auto !important;
}
.ss-content .ss-list .ss-option,
[class*="select-option"] {
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-weight: 500;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.ss-content .ss-list .ss-option:hover,
[class*="select-option"]:hover {
  background: #F5F3FF !important;
  color: #7C3AED !important;
}
.ss-content .ss-list .ss-option.ss-selected,
[class*="select-option"].selected,
[class*="select-option"][aria-selected="true"] {
  background: #EDE9FE !important;
  color: #7C3AED !important;
  font-weight: 600;
}

/* Custom select search input */
.ss-content .ss-search input,
[class*="select-search"] input {
  border-radius: 10px !important;
  border: 1.5px solid #E2E8F0 !important;
  padding: 8px 12px !important;
  font-size: 14px;
  outline: none !important;
}
.ss-content .ss-search input:focus,
[class*="select-search"] input:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12) !important;
}

/* Force solid borders globally on form controls (prevent dashed/dotted) */
.form-control,
.form-control:focus,
.form-control:active {
  border-style: solid !important;
  outline: none !important;
}

/* =========================================================
   NUCLEAR: Kill vvvvv chevron pattern from external select plugin
   ========================================================= */

/* === Kill border-image on EVERYTHING inside form groups === */
.form-group,
.form-group *,
.form-group *::before,
.form-group *::after,
.svcNativeWrap,
.svcNativeWrap *,
.svcNativeWrap *::before,
.svcNativeWrap *::after,
[data-select],
[data-select] ~ *,
[data-select] + *,
[data-select] ~ * *,
[data-select] + * * {
  border-image: none !important;
  border-image-source: none !important;
  border-image-slice: unset !important;
  border-image-width: unset !important;
  border-image-outset: unset !important;
  border-image-repeat: unset !important;
}

/* Kill dashed/dotted borders — only on the native select itself */
.form-group select,
.form-group select.form-control {
  border-style: solid !important;
}

/* === Specific ID overrides for category & service selects === */
#orderform-category,
#orderform-service {
  border-image: none !important;
  border-image-source: none !important;
  border-style: solid !important;
  border-radius: 14px !important;
}
/* Sibling wrappers — only kill border-image, don't force border-style */
#orderform-category + *,
#orderform-category ~ *:not(label):not(.help-block):not(.form-group),
#orderform-service + *,
#orderform-service ~ *:not(label):not(.help-block):not(.form-group):not(.svcViewToggle):not(.svcVCards):not(#service-cards):not(#svc-details):not(#fields) {
  border-image: none !important;
  border-image-source: none !important;
}
/* Style the category select wrapper — NO border here (Select2 .select2-selection handles it) */
#orderform-category + div,
#orderform-category ~ div:not(.form-group):not(.svcViewToggle):not(.svcVCards):not(#service-cards):not(#svc-details):not(#fields) {
  border: none !important;
  border-radius: 14px !important;
  background: transparent !important;
  min-height: 44px;
  overflow: visible;
}
/* Style the service select wrapper — NO border here (Select2 .select2-selection handles it) */
.svcNativeWrap > div:not(select),
#orderform-service + div {
  border: none !important;
  border-radius: 14px !important;
  background: transparent !important;
  min-height: 44px;
  overflow: visible;
}
/* Deep children of generated wrappers — kill ALL patterns */
#orderform-category + div *,
#orderform-category ~ div:not(.form-group) *,
#orderform-service + div *,
.svcNativeWrap > div * {
  border-image: none !important;
  border-image-source: none !important;
}
/* Dark mode: ID-specific select wrappers — no border/bg here, Select2 handles it */
html.dark-mode #orderform-category + div,
html.dark-mode #orderform-category ~ div:not(.form-group):not(.svcViewToggle):not(.svcVCards):not(#service-cards):not(#svc-details):not(#fields) {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.85) !important;
}
html.dark-mode .svcNativeWrap > div:not(select),
html.dark-mode #orderform-service + div {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.85) !important;
}
html.dark-mode #orderform-category + div *,
html.dark-mode #orderform-service + div *,
html.dark-mode .svcNativeWrap > div * {
  color: rgba(255,255,255,.85) !important;
  border-image: none !important;
  border-image-source: none !important;
}

/* Style generated select wrapper — no border here, Select2 .select2-selection handles it */
.form-group select[data-select] + div,
.form-group select[data-select] ~ div:not(.form-group):not(.input-group):not(.alert):not(.help-block):not(.svcViewToggle):not(.svcVCards):not(#service-cards):not(#svc-details):not(#fields):not(.form-row),
.svcNativeWrap > div:not(.svcViewToggle) {
  border: none !important;
  border-radius: 14px !important;
  background: transparent !important;
  min-height: 44px;
  cursor: pointer;
  overflow: visible;
}

/* Dark mode: generated select wrappers — no border here */
html.dark-mode .form-group select[data-select] + div,
html.dark-mode .form-group select[data-select] ~ div:not(.form-group):not(.input-group):not(.alert):not(.help-block):not(.svcViewToggle):not(.svcVCards):not(#service-cards):not(#svc-details):not(#fields):not(.form-row),
html.dark-mode .svcNativeWrap > div:not(.svcViewToggle) {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,.85) !important;
}

/* Dark mode: ALL children of generated select wrappers */
html.dark-mode .form-group select[data-select] + div *,
html.dark-mode .form-group select[data-select] ~ div *,
html.dark-mode .svcNativeWrap > div * {
  border-image: none !important;
  border-image-source: none !important;
  color: inherit;
}

/* --- Dark mode select --- */
.dark-mode select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C084FC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 14 18 9'/%3E%3C/svg%3E") !important;
  color: rgba(255,255,255,.85) !important;
  border-color: rgba(124,58,237,.3) !important;
}
.dark-mode select.form-control:hover {
  border-color: rgba(124,58,237,.4) !important;
  box-shadow: 0 2px 8px rgba(124,58,237,.15) !important;
}
.dark-mode select.form-control:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.15) !important;
}
.dark-mode select.form-control option {
  background: #1A0A3E;
  color: #fff;
}
.dark-mode select.form-control option:checked {
  background: rgba(124,58,237,.3);
  color: #C084FC;
}
.dark-mode select.form-control optgroup {
  background: #110827;
  color: #C084FC;
}

/* Dark mode custom select plugin */
.dark-mode .ss-main,
.dark-mode [class*="select-container"],
.dark-mode [class*="select-opener"],
.dark-mode [class*="custom-select"] {
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(124,58,237,.3) !important;
  color: rgba(255,255,255,.85) !important;
}
.dark-mode .ss-main:hover,
.dark-mode [class*="select-container"]:hover {
  border-color: rgba(124,58,237,.5) !important;
}
.dark-mode .ss-content,
.dark-mode [class*="select-panel"] {
  background: #1A0A3E !important;
  border-color: rgba(124,58,237,.25) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.4) !important;
}
.dark-mode .ss-content .ss-list .ss-option,
.dark-mode [class*="select-option"] {
  color: rgba(255,255,255,.85) !important;
}
.dark-mode .ss-content .ss-list .ss-option:hover,
.dark-mode [class*="select-option"]:hover {
  background: rgba(124,58,237,.15) !important;
  color: #C084FC !important;
}
.dark-mode .ss-content .ss-list .ss-option.ss-selected,
.dark-mode [class*="select-option"].selected {
  background: rgba(124,58,237,.25) !important;
  color: #C084FC !important;
}
.dark-mode .ss-content .ss-search input,
.dark-mode [class*="select-search"] input {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(124,58,237,.3) !important;
  color: #fff !important;
}

/* =========================================================
   TOP BAR ICONS — currentColor System
   ========================================================= */

/* Light mode icon color */
.top-right-ul li a svg,
.top-right-ul .lang-dd button svg {
  color: #7C3AED !important;
  width: 20px !important;
  height: 20px !important;
  transition: color .2s ease;
}
.top-right-ul li a:hover svg,
.top-right-ul .lang-dd button:hover svg {
  color: #6D28D9 !important;
}

/* Logout icon - red accent */
.top-right-ul .btn-logout-icon svg,
.top-right-ul .btn.btn-primary.btn-logout-icon svg {
  color: #EF4444 !important;
}
.top-right-ul .btn-logout-icon:hover svg,
.top-right-ul .btn.btn-primary.btn-logout-icon:hover svg {
  color: #DC2626 !important;
}

/* Dark mode icon colors */
.dark-mode .top-right-ul li a svg,
.dark-mode .top-right-ul .lang-dd button svg {
  color: rgba(255,255,255,.65) !important;
}
.dark-mode .top-right-ul li a:hover svg,
.dark-mode .top-right-ul .lang-dd button:hover svg {
  color: #C084FC !important;
}
.dark-mode .top-right-ul .btn-logout-icon svg,
.dark-mode .top-right-ul .btn.btn-primary.btn-logout-icon svg {
  color: #FCA5A5 !important;
}
.dark-mode .top-right-ul .btn-logout-icon:hover svg,
.dark-mode .top-right-ul .btn.btn-primary.btn-logout-icon:hover svg {
  color: #EF4444 !important;
}

/* =========================================================
   DARK MODE TOP BAR — Enhanced Design
   ========================================================= */

/* Points pill - dark glass (borderless) */
html.dark-mode .top-right-ul .head-stats {
  background: rgba(124,58,237,.15) !important;
  color: #C084FC !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
html.dark-mode .top-right-ul .head-stats:hover {
  background: rgba(124,58,237,.25) !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.2) !important;
}

/* Balance pill - dark glass — force ALL text inside visible */
html.dark-mode .top-right-ul .dropdown-currencies > a,
html.dark-mode .top-right-ul .dropdown-currencies > a.balance-pill,
html.dark-mode .top-right-ul .dropdown-currencies > a *,
html.dark-mode .top-right-ul .dropdown-currencies > a .amt,
html.dark-mode .top-right-ul .dropdown-currencies > a .caret,
html.dark-mode .top-right-ul .dropdown-currencies > a .ico {
  color: rgba(255,255,255,.85) !important;
}
html.dark-mode .top-right-ul .dropdown-currencies > a,
html.dark-mode .top-right-ul .dropdown-currencies > a.balance-pill {
  background: rgba(255,255,255,.08) !important;
  border: 1.5px solid rgba(124,58,237,.2) !important;
}
html.dark-mode .top-right-ul .dropdown-currencies > a:hover,
html.dark-mode .top-right-ul .dropdown-currencies > a.balance-pill:hover {
  background: rgba(124,58,237,.15) !important;
  border-color: rgba(124,58,237,.4) !important;
}

/* Dark mode icon buttons */
html.dark-mode .top-right-ul li a,
html.dark-mode .top-right-ul .lang-dd button {
  background: rgba(255,255,255,.06) !important;
  border: 1.5px solid rgba(124,58,237,.18) !important;
  color: rgba(255,255,255,.8) !important;
}
html.dark-mode .top-right-ul li a:hover,
html.dark-mode .top-right-ul .lang-dd button:hover {
  background: rgba(124,58,237,.15) !important;
  border-color: rgba(124,58,237,.4) !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.15) !important;
}

/* Logout button - dark with red accent */
html.dark-mode .top-right-ul .btn-logout-icon,
html.dark-mode .top-right-ul .btn.btn-primary.btn-logout-icon {
  background: rgba(239,68,68,.08) !important;
  border: 1.5px solid rgba(239,68,68,.2) !important;
}
html.dark-mode .top-right-ul .btn-logout-icon:hover,
html.dark-mode .top-right-ul .btn.btn-primary.btn-logout-icon:hover {
  background: rgba(239,68,68,.15) !important;
  border-color: rgba(239,68,68,.4) !important;
  box-shadow: 0 4px 16px rgba(239,68,68,.15) !important;
}

/* =========================================================
   CURRENCY DROPDOWN — Premium Bold Design
   ========================================================= */

.top-right-ul .dropdown-currencies {
  position: relative;
}
.top-right-ul .dropdown-currencies .dropdown-menu {
  min-width: 120px !important;
  padding: 6px !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(124,58,237,.12) !important;
  background: #fff !important;
  box-shadow:
    0 20px 60px -15px rgba(124,58,237,.18),
    0 8px 24px -6px rgba(0,0,0,.08) !important;
  margin-top: 14px !important;
  overflow: visible !important;
  animation: currReveal .2s cubic-bezier(.22,1,.36,1);
  left: 50% !important;
  transform: translateX(-50%) !important;
}
@keyframes currReveal {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px) scale(.97); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* Arrow pointer */
.top-right-ul .dropdown-currencies .dropdown-menu::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1.5px solid rgba(124,58,237,.12);
  border-top: 1.5px solid rgba(124,58,237,.12);
  pointer-events: none;
}

/* Remove ::before (no accent bar) */
.top-right-ul .dropdown-currencies .dropdown-menu::before {
  display: none !important;
}

.top-right-ul .dropdown-currencies #currencies-list li {
  margin-bottom: 2px !important;
}
.top-right-ul .dropdown-currencies #currencies-list li:last-child {
  margin-bottom: 0 !important;
}

.top-right-ul .dropdown-currencies #currencies-list li a {
  border: none !important;
  padding: 10px 16px !important;
  height: auto !important;
  width: 100% !important;
  border-radius: 12px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  letter-spacing: .3px !important;
  justify-content: center !important;
  transition: all .15s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  line-height: 1.2 !important;
  background: transparent !important;
}
.top-right-ul .dropdown-currencies #currencies-list li a:hover {
  background: #F5F3FF !important;
  color: #6D28D9 !important;
}
/* Active currency — bold purple pill */
.top-right-ul .dropdown-currencies #currencies-list li a.active,
.top-right-ul .dropdown-currencies #currencies-list li.active a {
  color: #fff !important;
  background: linear-gradient(135deg, #7C3AED, #9333EA) !important;
  box-shadow: 0 2px 8px rgba(124,58,237,.3) !important;
}

/* ---- Dark mode currency dropdown ---- */
html.dark-mode .top-right-ul .dropdown-currencies .dropdown-menu {
  background: rgba(18,8,42,.92) !important;
  border-color: rgba(124,58,237,.25) !important;
  box-shadow:
    0 20px 60px -15px rgba(0,0,0,.6),
    0 0 0 1px rgba(124,58,237,.08) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
html.dark-mode .top-right-ul .dropdown-currencies .dropdown-menu::after {
  background: rgba(18,8,42,.92);
  border-color: rgba(124,58,237,.25);
}
html.dark-mode .top-right-ul .dropdown-currencies #currencies-list li a {
  color: rgba(255,255,255,.7) !important;
}
html.dark-mode .top-right-ul .dropdown-currencies #currencies-list li a:hover {
  background: rgba(124,58,237,.15) !important;
  color: #E9D5FF !important;
}
html.dark-mode .top-right-ul .dropdown-currencies #currencies-list li a.active,
html.dark-mode .top-right-ul .dropdown-currencies #currencies-list li.active a {
  color: #fff !important;
  background: linear-gradient(135deg, #7C3AED, #9333EA) !important;
  box-shadow: 0 2px 12px rgba(124,58,237,.4) !important;
}

/* =========================================================
   NATIVE SELECT — Enhanced Dropdown
   ========================================================= */

select.form-control option {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
select.form-control optgroup {
  font-weight: 700;
  font-size: 14px;
  padding: 6px 0;
}

/* Theme toggle icon - keep original colors */
.top-right-ul li a.mode svg {
  color: inherit !important;
}

/* =========================================================
   CUSTOM TOOLTIPS — Replace ugly browser tooltips
   ========================================================= */

/* Override Bootstrap tooltip styling */
.tooltip {
  font-family: 'Prompt', sans-serif !important;
}
.tooltip .tooltip-inner {
  background: #1E1B4B !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.15) !important;
  max-width: 200px;
  text-align: center;
}
.tooltip .tooltip-arrow::before,
.tooltip .arrow::before {
  border-top-color: #1E1B4B !important;
}
.tooltip.bottom .tooltip-arrow::before,
.tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip.bottom .arrow::before {
  border-bottom-color: #1E1B4B !important;
}

/* CSS-only tooltip for elements with data-tip attribute */
[data-tip] {
  position: relative;
}
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(.9);
  background: #1E1B4B;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Prompt', sans-serif;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
[data-tip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) scale(.9);
  border: 5px solid transparent;
  border-top-color: #1E1B4B;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  z-index: 9999;
}
[data-tip]:hover::after,
[data-tip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Top bar tooltips — show BELOW (since bar is at top of page) */
.top-right-ul [data-tip] {
  overflow: visible !important;
}
.top-right-ul [data-tip]::after {
  bottom: auto !important;
  top: calc(100% + 8px) !important;
  z-index: 999999 !important;
}
.top-right-ul [data-tip]::before {
  bottom: auto !important;
  top: calc(100% + 3px) !important;
  border-top-color: transparent !important;
  border-bottom-color: #1E1B4B !important;
  z-index: 999999 !important;
}
.top-right-ul [data-tip]:hover::after,
.top-right-ul [data-tip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
/* Ensure top-bar and parents don't clip tooltips */
.top-bar,
.top-bar .row,
.top-bar .col-sm-6,
.top-right-ul,
.top-right-ul li,
.top-right-ul .lang-dd,
.top-right-ul .dropdown-currencies,
.top-right-ul .media-heading {
  overflow: visible !important;
}

/* Neworder tabs - remove native title tooltip (use text labels instead) */
.neworder-tabs .nav-link {
  position: relative;
}

/* =========================================================
   LANGUAGE DROPDOWN — Premium Bold Design
   ========================================================= */

/* Language dropdown container */
.lang-dd {
  position: relative !important;
  display: inline-block;
  z-index: 99999;
}

/* Dropdown panel — RIGHT-ALIGNED to prevent overflow */
/* --- Language dropdown panel --- */
.top-right-ul .lang-dd [data-lang-menu] {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #fff !important;
  border: 1px solid rgba(124,58,237,.1) !important;
  border-radius: 14px !important;
  padding: 8px !important;
  min-width: 170px !important;
  box-shadow: 0 12px 40px -8px rgba(124,58,237,.15), 0 4px 12px rgba(0,0,0,.06) !important;
  z-index: 999999 !important;
  list-style: none !important;
  margin: 0 !important;
  animation: langPop .18s cubic-bezier(.22,1,.36,1) !important;
}
@keyframes langPop {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px) scale(.97); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
/* Kill all pseudo decorations */
.top-right-ul .lang-dd [data-lang-menu]::before,
.top-right-ul .lang-dd [data-lang-menu]::after {
  display: none !important;
}
.top-right-ul .lang-dd [data-lang-menu]:not([hidden]) {
  display: block !important;
}
/* List items */
.top-right-ul .lang-dd [data-lang-menu] li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  list-style: none !important;
}
.top-right-ul .lang-dd [data-lang-menu] li + li {
  margin-top: 2px !important;
}

/* --- Language link items --- */
.top-right-ul .lang-dd .lang-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 20px !important;
  border-radius: 10px !important;
  color: #475569 !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all .15s ease !important;
  line-height: 1 !important;
  position: relative !important;
  background: transparent !important;
  white-space: nowrap !important;
  letter-spacing: .2px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
/* Kill radio circles from panel CSS */
.top-right-ul .lang-dd .lang-link::before {
  display: none !important;
  content: none !important;
}
/* Hide checkmark SVG by default */
.top-right-ul .lang-dd .lang-link > svg {
  display: none !important;
}
/* Show checkmark for active */
.top-right-ul .lang-dd .lang-link.lang-active > svg {
  display: inline-block !important;
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0 !important;
  color: #7C3AED !important;
}
/* Hover */
.top-right-ul .lang-dd .lang-link:hover {
  background: #F5F3FF !important;
  color: #6D28D9 !important;
  text-decoration: none !important;
}
/* Active — highlighted */
.top-right-ul .lang-dd .lang-link.lang-active {
  color: #7C3AED !important;
  font-weight: 700 !important;
  background: #F5F3FF !important;
}
/* Empty state */
.top-right-ul .lang-dd [data-lang-menu]:empty::after {
  content: 'No other languages';
  display: block;
  padding: 12px 16px;
  color: #94A3B8;
  font-size: 12px;
  text-align: center;
}

/* ---- Dark mode language dropdown ---- */
html.dark-mode .top-right-ul .lang-dd [data-lang-menu] {
  background: #1E1035 !important;
  border: 1px solid rgba(124,58,237,.2) !important;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,.5), 0 4px 12px rgba(0,0,0,.3) !important;
}
html.dark-mode .top-right-ul .lang-dd .lang-link {
  color: rgba(255,255,255,.7) !important;
}
html.dark-mode .top-right-ul .lang-dd .lang-link:hover {
  background: rgba(124,58,237,.12) !important;
  color: #E9D5FF !important;
}
html.dark-mode .top-right-ul .lang-dd .lang-link.lang-active {
  color: #C084FC !important;
  background: rgba(124,58,237,.15) !important;
}
html.dark-mode .top-right-ul .lang-dd .lang-link.lang-active > svg {
  color: #C084FC !important;
}
html.dark-mode .top-right-ul .lang-dd [data-lang-menu]:empty::after {
  color: rgba(255,255,255,.3) !important;
}

/* =========================================================
   ABSOLUTE LAST RESORT — Final overrides at bottom of file
   These override EVERYTHING above, including panel's own CSS
   ========================================================= */

/* 1) Kill ALL border-image patterns on entire neworder page */
.neworder_wrapper *,
.neworder_wrapper *::before,
.neworder_wrapper *::after {
  border-image: none !important;
  border-image-source: none !important;
}

/* 2) Dark mode: force ALL text inside currency pill visible */
html.dark-mode .dropdown-currencies,
html.dark-mode .dropdown-currencies *,
html.dark-mode .dropdown-currencies a,
html.dark-mode .dropdown-currencies .balance-pill,
html.dark-mode .dropdown-currencies .balance-pill *,
html.dark-mode .dropdown-currencies .amt,
html.dark-mode .dropdown-currencies .caret {
  color: rgba(255,255,255,.85) !important;
}

/* 3) Dark mode: force ALL service detail values visible */
html.dark-mode #svc-details p,
html.dark-mode #svc-details .svc-val,
html.dark-mode #svc-details .svc-val *,
html.dark-mode #svc-details .svc-val span,
html.dark-mode #svc-details .svc-val a,
html.dark-mode #svc-details .svc-val b,
html.dark-mode #svc-details .svc-val strong,
html.dark-mode #svc-details .svc-val i,
html.dark-mode #svc-details .svc-val em {
  color: #fff !important;
}
/* Re-apply semantic colors AFTER the white override */
html.dark-mode #svc-details .text-success,
html.dark-mode #svc-details .text-success *,
html.dark-mode #svc-details .label-success { color: #34D399 !important; }
html.dark-mode #svc-details .text-danger,
html.dark-mode #svc-details .text-danger *,
html.dark-mode #svc-details .label-danger { color: #F87171 !important; }
html.dark-mode #svc-details .text-warning,
html.dark-mode #svc-details .text-warning *,
html.dark-mode #svc-details .label-warning { color: #FBBF24 !important; }
/* Buttons in svc-val — make them stand out */
html.dark-mode #svc-details .svc-val .btn,
html.dark-mode #svc-details .svc-val [class*="btn-"],
html.dark-mode #svc-details .svc-val .label,
html.dark-mode #svc-details .svc-val .badge {
  background: rgba(124,58,237,.18) !important;
  border: 1.5px solid rgba(124,58,237,.3) !important;
  color: #C084FC !important;
  border-radius: 8px;
  padding: 3px 10px;
}

/* 4) Dark mode: general form inputs, wells, descriptions */
html.dark-mode .well,
html.dark-mode .inner_wrapper_box {
  color: rgba(255,255,255,.85);
}
html.dark-mode .form-group label,
html.dark-mode .control-label {
  color: rgba(255,255,255,.7) !important;
}
html.dark-mode .form-control {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(124,58,237,.2) !important;
  color: rgba(255,255,255,.85) !important;
}
html.dark-mode .form-control:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.15) !important;
}
html.dark-mode .form-control::placeholder {
  color: rgba(255,255,255,.35) !important;
}

/* 5) Dark mode: service description box */
html.dark-mode .service_description_box,
html.dark-mode .service_description_box *,
html.dark-mode .service_box_Wraps,
html.dark-mode .service_box_Wraps * {
  color: rgba(255,255,255,.8) !important;
}
html.dark-mode .service_description_box .text-success { color: #34D399 !important; }
html.dark-mode .service_description_box .text-danger { color: #F87171 !important; }
html.dark-mode .service_description_box .text-warning { color: #FBBF24 !important; }
html.dark-mode .service_description_box a { color: #C084FC !important; }

/* =========================================================
   ORDERS PAGE — Premium Purple Theme
   ========================================================= */

/* Filter tabs */
.nav-order-wrapper{
  display:flex;flex-wrap:wrap;gap:6px;padding:0;margin:0 0 16px;
  list-style:none;border:0;align-items:center;
}
.nav-order-wrapper .pull-right.search,
.nav-order-wrapper li.search{
  margin-left:auto;
  flex:0 0 auto;
  float:none !important;
}
.nav-order-wrapper .pull-right.search .input-group,
.nav-order-wrapper li.search .input-group{
  display:flex;gap:0;align-items:center;
}
.nav-order-wrapper .pull-right.search .input-group .form-control,
.nav-order-wrapper li.search .input-group .form-control{
  border-radius:12px 0 0 12px !important;border-right:0 !important;
  height:38px !important;min-height:38px !important;font-size:13px;
  border:1.5px solid #E9E5F5 !important;
  width:180px;
}
.nav-order-wrapper .pull-right.search .input-group .input-group-btn,
.nav-order-wrapper li.search .input-group .input-group-btn{
  display:flex;
}
.nav-order-wrapper .pull-right.search .input-group .btn,
.nav-order-wrapper li.search .input-group .btn{
  border-radius:0 12px 12px 0 !important;height:38px !important;width:38px;
  background:#F5F3FF;border:1.5px solid #E9E5F5;border-left:0;
  color:#6366f1;display:flex;align-items:center;justify-content:center;
  padding:0;
}
.nav-order-wrapper li a{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 16px;border-radius:12px;
  font-size:13px;font-weight:600;color:#64748b;
  background:#fff;border:1.5px solid #E9E5F5;
  text-decoration:none;transition:all .2s;
  white-space:nowrap;
}
.nav-order-wrapper li a:hover{
  border-color:#C7D2FE;color:#6366f1;
  box-shadow:0 2px 8px rgba(99,102,241,.08);
  transform:translateY(-1px);
}
.nav-order-wrapper li.active a{
  background:linear-gradient(135deg,#6366f1,#818cf8);
  color:#fff;border-color:transparent;
  box-shadow:0 4px 14px rgba(99,102,241,.25);
}
.nav-order-wrapper li.active a svg *[stroke]{stroke:#fff}
.nav-order-wrapper li.active a svg *[fill]:not([fill="none"]){fill:#fff}

/* Search in orders */
.orders .search .form-control{
  border-radius:12px !important;border:1.5px solid #E9E5F5 !important;
  height:40px;font-size:13px;
}
.orders .search .btn.btn-default{
  border-radius:10px;background:#F5F3FF;border:1.5px solid #E9E5F5;
  color:#6366f1;height:40px;width:40px;
}

/* Table override inside .orders */
.orders .table{
  border-collapse:separate;border-spacing:0 8px;
}
.orders .table thead tr th{
  background:#f8f9fc !important;color:#64748b !important;
  font-size:11.5px !important;font-weight:600 !important;
  text-transform:uppercase;letter-spacing:.05em;
  border:0 !important;border-bottom:2px solid #E9E5F5 !important;
  padding:10px 14px !important;
  border-radius:0 !important;
}
.orders .table thead tr th:first-child{border-top-left-radius:14px !important}
.orders .table thead tr th:last-child{border-top-right-radius:14px !important}

.orders .table tbody tr:not(.cat-name){
  background:#fff;
  border-radius:14px;
  box-shadow:0 1px 4px rgba(0,0,0,.04);
  transition:all .2s;
}
.orders .table tbody tr:not(.cat-name):hover{
  box-shadow:0 4px 16px rgba(99,102,241,.08);
  transform:translateY(-1px);
}
.orders .table tbody tr:not(.cat-name) td{
  border-top:1px solid #f0eef5 !important;
  border-bottom:1px solid #f0eef5 !important;
  padding:12px 14px !important;
  font-size:13px;color:#1e293b;
  background:transparent !important;
  vertical-align:middle;
}
.orders .table tbody tr:not(.cat-name) td:first-child{
  border-left:1px solid #f0eef5 !important;
  border-radius:14px 0 0 14px !important;
}
.orders .table tbody tr:not(.cat-name) td:last-child{
  border-right:1px solid #f0eef5 !important;
  border-radius:0 14px 14px 0 !important;
}

/* Order ID badge */
.orders .table td:first-child{
  font-weight:700;color:#6366f1;
}

/* Service column — limit width so other columns remain visible */
.orders .table .details-cell,
.orders .table .service-name{
  max-width:350px;
  overflow:hidden;text-overflow:ellipsis;
}
.orders .table .details-cell .svc-name{
  display:inline;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  max-width:280px;
}
.orders .table .details-cell .link-line{
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  max-width:320px;font-size:12px;
}
.orders .table .details-cell .order-link-ext{
  color:#6366f1;font-size:12px;word-break:break-all;
}

/* Checkbox column narrow */
.orders .table .chk-col{width:36px;text-align:center}

/* Date column compact */
.orders .table .date-cell{white-space:nowrap;font-size:12px;color:#64748b}
.orders .table .date-wrap .date-d{font-weight:600;color:#1e293b}
.orders .table .date-wrap .date-t{font-size:11px;color:#94a3b8}

/* Number columns compact */
.orders .table .num-col{text-align:right;white-space:nowrap;font-size:13px;font-variant-numeric:tabular-nums}

/* Status column */
.orders .table .status-cell{white-space:nowrap}

/* Actions */
.orders .table .actions-col{white-space:nowrap}
.orders .icon-pill{
  display:inline-flex;align-items:center;justify-content:center;
  width:30px;height:30px;border-radius:8px;
  border:1px solid #E9E5F5;background:#fff;
  color:#6366f1;font-size:12px;
  transition:all .2s;text-decoration:none;
}
.orders .icon-pill:hover{
  background:#F5F3FF;border-color:#C7D2FE;
  box-shadow:0 2px 8px rgba(99,102,241,.1);
}
.orders .icon-pill--cancel{color:#ef4444}
.orders .icon-pill--cancel:hover{background:#FEF2F2;border-color:#FECACA}

/* Status badges */
.orders .order_status_flex{display:flex;align-items:center}
.orders .order_status_flex > div{
  display:inline-flex;align-items:center;gap:4px;
  padding:4px 10px;border-radius:999px;
  font-size:11px;font-weight:700;white-space:nowrap;
}
.orders .order_status_primary{background:#EEF2FF;color:#4338ca}
.orders .order_status_pending{background:#FFF7ED;color:#c2410c}
.orders .order_status_success{background:#ECFDF5;color:#047857}
.orders .order_status_danger{background:#FEF2F2;color:#dc2626}
.orders .order_status_warning{background:#FFFBEB;color:#b45309}

/* Progress bar */
.orders .oc-progress{display:flex;align-items:center;gap:6px;margin-top:4px}
.orders .oc-progress-bar{flex:1;height:4px;border-radius:4px;background:#E9E5F5;overflow:hidden}
.orders .oc-progress-fill{height:100%;border-radius:4px;background:linear-gradient(90deg,#6366f1,#818cf8)}
.orders .oc-progress-text{font-size:10px;font-weight:700;color:#6366f1;min-width:28px}

/* Pagination */
.orders-pagination{display:flex;gap:4px;justify-content:center;margin:24px 0;flex-wrap:wrap}
.orders-pagination li{list-style:none}
.orders-pagination li a,
.orders-pagination li span{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:36px;height:36px;padding:0 10px;border-radius:10px;
  font-size:13px;font-weight:600;color:#1e293b;background:#fff;
  border:1px solid #E9E5F5;text-decoration:none;transition:all .2s;
}
.orders-pagination li a:hover{border-color:rgba(99,102,241,.3);color:#6366f1}
.orders-pagination li.active a{
  background:linear-gradient(135deg,#6366f1,#818cf8);color:#fff;
  border-color:transparent;box-shadow:0 4px 12px rgba(99,102,241,.25);
}

/* Empty state */
.orders-empty{text-align:center;padding:48px 20px}
.orders-empty-ill svg{width:100px;height:100px;margin-bottom:16px}
.orders-empty-ill .ill-paper{fill:#eef2ff;stroke:#c7d2fe;stroke-width:1.5}
.orders-empty-ill .ill-line{fill:#c7d2fe}
.orders-empty-ill .ill-badge{fill:#6366f1}
.orders-empty-title{font-size:18px;font-weight:800;color:#1e293b;margin-bottom:4px}
.orders-empty-sub{font-size:14px;color:#64748b;margin-bottom:20px}
.orders-empty-actions{display:flex;gap:8px;justify-content:center}

/* Toast */
.orders-toast{
  position:fixed;bottom:20px;left:50%;transform:translateX(-50%) translateY(20px);
  background:#1e293b;color:#fff;padding:10px 20px;border-radius:12px;
  font-size:13px;font-weight:600;opacity:0;transition:all .3s;pointer-events:none;z-index:9999;
}
.orders-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* Dark mode orders additions */
.dark-mode .orders .order_status_primary{background:rgba(99,102,241,.12);color:#a5b4fc}
.dark-mode .orders .order_status_pending{background:rgba(251,146,60,.12);color:#fdba74}
.dark-mode .orders .order_status_success{background:rgba(16,185,129,.12);color:#6ee7b7}
.dark-mode .orders .order_status_danger{background:rgba(239,68,68,.12);color:#fca5a5}
.dark-mode .orders .order_status_warning{background:rgba(245,158,11,.12);color:#fcd34d}
.dark-mode .orders .icon-pill{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.1);color:#a5b4fc}
.dark-mode .orders .icon-pill:hover{background:rgba(99,102,241,.12);border-color:rgba(99,102,241,.3)}
.dark-mode .orders .icon-pill--cancel{color:#fca5a5}
.dark-mode .orders .oc-progress-bar{background:rgba(255,255,255,.1)}
.dark-mode .orders .oc-progress-text{color:#a5b4fc}
.dark-mode .orders .date-wrap .date-d{color:#fff}
.dark-mode .orders .date-wrap .date-t{color:rgba(255,255,255,.4)}
.dark-mode .orders .details-cell .order-link-ext{color:#a5b4fc}
.dark-mode .orders-pagination li a{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7)}
.dark-mode .orders-pagination li a:hover{border-color:rgba(99,102,241,.3);color:#a5b4fc}
.dark-mode .orders-pagination li.active a{background:linear-gradient(135deg,#6366f1,#818cf8);color:#fff;border-color:transparent}
.dark-mode .orders-toast{background:rgba(99,102,241,.9)}

/* Status badges */
.orders .badge,
.orders .label{
  display:inline-flex;align-items:center;
  padding:4px 10px;border-radius:999px;
  font-size:11px;font-weight:700;
  border:none;
}

/* Dark mode orders */
.dark-mode .nav-order-wrapper li a{
  background:rgba(255,255,255,.04);border-color:rgba(99,102,241,.12);
  color:rgba(255,255,255,.6);
}
.dark-mode .nav-order-wrapper li a:hover{
  background:rgba(99,102,241,.08);border-color:rgba(99,102,241,.25);
  color:#a5b4fc;
}
.dark-mode .nav-order-wrapper li.active a{
  background:linear-gradient(135deg,#6366f1,#818cf8);
  color:#fff;border-color:transparent;
}
.dark-mode .orders .table thead tr th{
  background:rgba(99,102,241,.06) !important;
  color:rgba(165,180,252,.6) !important;
  border-bottom-color:rgba(99,102,241,.12) !important;
}
.dark-mode .orders .table tbody tr:not(.cat-name){
  background:rgba(26,10,62,.45);
  box-shadow:0 1px 4px rgba(0,0,0,.2);
}
.dark-mode .orders .table tbody tr:not(.cat-name):hover{
  box-shadow:0 6px 20px rgba(0,0,0,.3);
}
.dark-mode .orders .table tbody tr:not(.cat-name) td{
  border-color:rgba(255,255,255,.06) !important;
  color:rgba(255,255,255,.85);
}
.dark-mode .orders .table td:first-child{color:#a5b4fc}
.dark-mode .orders .search .form-control{
  background:rgba(255,255,255,.06) !important;
  border-color:rgba(255,255,255,.12) !important;
  color:#fff !important;
}
.dark-mode .orders .search .btn.btn-default{
  background:rgba(255,255,255,.06) !important;
  border-color:rgba(255,255,255,.12) !important;
  color:#a5b4fc !important;
}

/* Mobile */
@media(max-width:767px){
  .nav-order-wrapper{gap:4px}
  .nav-order-wrapper li a{padding:6px 10px;font-size:11px;border-radius:10px}
}

/* =========================================================
   SELECT2 — Premium Purple Theme Override
   The panel uses Select2 via data-select="true" attributes
   ========================================================= */

/* --- Container (the closed select input) --- */
.select2-container .select2-selection,
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  border: 1.5px solid #E2E8F0 !important;
  border-style: solid !important;
  border-image: none !important;
  border-image-source: none !important;
  border-radius: 14px !important;
  background: #fff !important;
  min-height: 46px !important;
  padding: 0 14px !important;
  display: flex !important;
  align-items: center !important;
  outline: none !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04) !important;
  transition: border-color .2s, box-shadow .25s ease !important;
}
.select2-container .select2-selection:hover {
  border-color: #C7D2FE !important;
  box-shadow: 0 2px 8px rgba(124,58,237,.1) !important;
}
.select2-container--focus .select2-selection,
.select2-container--open .select2-selection {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12), 0 2px 8px rgba(124,58,237,.08) !important;
}

/* Arrow — modern chevron */
.select2-container .select2-selection__arrow {
  height: 100% !important;
  right: 14px !important;
  display: flex !important;
  align-items: center !important;
  transition: transform .25s ease !important;
}
.select2-container .select2-selection__arrow b {
  border-color: #94A3B8 transparent transparent transparent !important;
  border-width: 5px 4px 0 4px !important;
  transition: border-color .2s !important;
}
.select2-container:hover .select2-selection__arrow b {
  border-color: #7C3AED transparent transparent transparent !important;
}
.select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent #7C3AED transparent !important;
  border-width: 0 4px 5px 4px !important;
}

/* Selected text */
.select2-container .select2-selection__rendered {
  color: #1E293B !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding-left: 0 !important;
  line-height: 1.4 !important;
}

/* Placeholder */
.select2-container .select2-selection__placeholder {
  color: #94A3B8 !important;
}

/* --- Dropdown (the opened panel) --- */
.select2-dropdown {
  border: 1px solid rgba(124,58,237,.12) !important;
  border-style: solid !important;
  border-image: none !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow:
    0 20px 48px rgba(124,58,237,.08),
    0 8px 20px rgba(0,0,0,.06),
    0 2px 6px rgba(0,0,0,.04) !important;
  overflow: hidden !important;
  padding: 4px !important;
  margin-top: 6px !important;
  animation: s2DropIn .2s ease-out !important;
}
@keyframes s2DropIn {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Search input inside dropdown */
.select2-search--dropdown {
  padding: 6px 6px 8px !important;
  position: relative !important;
}
.select2-search--dropdown .select2-search__field {
  border: 1.5px solid #E2E8F0 !important;
  border-style: solid !important;
  border-image: none !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  outline: none !important;
  background: #F8FAFC !important;
  transition: border-color .2s, box-shadow .2s, background .2s !important;
  width: 100% !important;
}
.select2-search--dropdown .select2-search__field:focus {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.1) !important;
  background: #fff !important;
}

/* --- Custom scrollbar --- */
.select2-results__options {
  padding: 2px 0 !important;
  max-height: 320px !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(124,58,237,.2) transparent !important;
}
.select2-results__options::-webkit-scrollbar {
  width: 6px !important;
}
.select2-results__options::-webkit-scrollbar-track {
  background: transparent !important;
}
.select2-results__options::-webkit-scrollbar-thumb {
  background: rgba(124,58,237,.18) !important;
  border-radius: 10px !important;
}
.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: rgba(124,58,237,.35) !important;
}

/* --- Individual option --- */
.select2-results__option {
  border-radius: 10px !important;
  padding: 8px 12px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  transition: all .15s ease !important;
  margin-bottom: 1px !important;
  line-height: 1.45 !important;
  position: relative !important;
  border-left: none !important;
}
/* Nested options inside optgroups — kill Select2's default extra indent */
.select2-results__option .select2-results__option {
  padding-left: 12px !important;
  margin-left: 0 !important;
}
.select2-results__option--highlighted,
.select2-results__option:hover,
.select2-results__option[aria-selected="true"]:hover {
  background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%) !important;
  color: #6D28D9 !important;
}
.select2-results__option[aria-selected="true"],
.select2-results__option--selected {
  background: #EDE9FE !important;
  color: #6D28D9 !important;
  font-weight: 600 !important;
}

/* Option group header */
.select2-results__group {
  font-weight: 700 !important;
  font-size: 11px !important;
  color: #7C3AED !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
  padding: 12px 14px 6px !important;
  margin-top: 4px !important;
  border-bottom: 1px solid #F1F0F9 !important;
}

/* Loading / no-results message */
.select2-results__message {
  color: #94A3B8 !important;
  font-size: 13px !important;
  text-align: center !important;
  padding: 16px 12px !important;
}

/* Kill border-image on ALL Select2 elements */
.select2-container *,
.select2-container *::before,
.select2-container *::after,
.select2-dropdown *,
.select2-dropdown *::before,
.select2-dropdown *::after {
  border-image: none !important;
  border-image-source: none !important;
}

/* =========================================================
   SELECT2 — Dark Mode
   ========================================================= */

/* Container */
html.dark-mode .select2-container .select2-selection,
html.dark-mode .select2-container .select2-selection--single,
html.dark-mode .select2-container .select2-selection--multiple {
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(124,58,237,.25) !important;
  color: rgba(255,255,255,.85) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.15) !important;
}
html.dark-mode .select2-container .select2-selection:hover {
  border-color: rgba(124,58,237,.45) !important;
  box-shadow: 0 2px 10px rgba(124,58,237,.15) !important;
}
html.dark-mode .select2-container--focus .select2-selection,
html.dark-mode .select2-container--open .select2-selection {
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.18), 0 2px 8px rgba(124,58,237,.1) !important;
}

/* Arrow */
html.dark-mode .select2-container .select2-selection__arrow b {
  border-color: rgba(255,255,255,.35) transparent transparent transparent !important;
}
html.dark-mode .select2-container:hover .select2-selection__arrow b {
  border-color: #C084FC transparent transparent transparent !important;
}
html.dark-mode .select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent #C084FC transparent !important;
}

/* Selected text */
html.dark-mode .select2-container .select2-selection__rendered {
  color: rgba(255,255,255,.88) !important;
}
html.dark-mode .select2-container .select2-selection__placeholder {
  color: rgba(255,255,255,.35) !important;
}

/* Dropdown */
html.dark-mode .select2-dropdown {
  background: #1A0A3E !important;
  border-color: rgba(124,58,237,.2) !important;
  box-shadow:
    0 20px 48px rgba(0,0,0,.45),
    0 8px 20px rgba(0,0,0,.25),
    0 0 0 1px rgba(124,58,237,.12) !important;
}

/* Search input */
html.dark-mode .select2-search--dropdown .select2-search__field {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(124,58,237,.2) !important;
  color: #fff !important;
}
html.dark-mode .select2-search--dropdown .select2-search__field:focus {
  border-color: #7C3AED !important;
  background: rgba(255,255,255,.08) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12) !important;
}
html.dark-mode .select2-search--dropdown .select2-search__field::placeholder {
  color: rgba(255,255,255,.35) !important;
}

/* Custom scrollbar — dark */
html.dark-mode .select2-results__options {
  scrollbar-color: rgba(192,132,252,.25) transparent !important;
}
html.dark-mode .select2-results__options::-webkit-scrollbar-thumb {
  background: rgba(192,132,252,.2) !important;
}
html.dark-mode .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: rgba(192,132,252,.4) !important;
}

/* Options */
html.dark-mode .select2-results__option {
  color: rgba(255,255,255,.82) !important;
  border-left: none !important;
}
html.dark-mode .select2-results__option--highlighted,
html.dark-mode .select2-results__option:hover,
html.dark-mode .select2-results__option[aria-selected="true"]:hover {
  background: linear-gradient(135deg, rgba(124,58,237,.12) 0%, rgba(124,58,237,.18) 100%) !important;
  color: #D8B4FE !important;
}
html.dark-mode .select2-results__option[aria-selected="true"],
html.dark-mode .select2-results__option--selected {
  background: rgba(124,58,237,.22) !important;
  color: #D8B4FE !important;
}

/* Group header */
html.dark-mode .select2-results__group {
  color: #C084FC !important;
  border-bottom-color: rgba(124,58,237,.15) !important;
}

/* Loading/message */
html.dark-mode .select2-results__message {
  color: rgba(255,255,255,.4) !important;
}

/* Kill border-image in dark mode too */
html.dark-mode .select2-container *,
html.dark-mode .select2-dropdown * {
  border-image: none !important;
  border-image-source: none !important;
}

/* =========================================================
   SELECT2 — Enhanced Option Formatting (templateResult)
   ========================================================= */

/* --- Service option row --- */
.s2r-opt {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.s2r-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
}

/* --- Badge chips (UPDATED / NEW) --- */
.s2r-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
}

.s2r-upd {
  background: #EDE9FE;
  color: #7C3AED;
  border: 1px solid #DDD6FE;
}

.s2r-new {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

/* --- Price chip (right side) --- */
.s2r-price {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  color: #7C3AED;
  background: rgba(124, 58, 237, .06);
  padding: 2px 10px;
  border-radius: 8px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.2px;
}

/* --- Category option with icon --- */
.s2r-cat {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.s2r-ico {
  flex: 0 0 auto;
  width: 22px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.s2r-ico img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  border-radius: 4px;
}

.s2r-ico span {
  font-size: 14px;
}

.s2r-cat-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- Sticky group headers --- */
.select2-results__group {
  position: sticky !important;
  top: 0 !important;
  z-index: 1 !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  background: rgba(255, 255, 255, .95) !important;
  border-bottom: 1px solid rgba(124, 58, 237, .08) !important;
  font-weight: 700 !important;
}

/* ---- Dark Mode ---- */
html.dark-mode .s2r-upd {
  background: rgba(124, 58, 237, .15);
  color: #C084FC;
  border-color: rgba(124, 58, 237, .3);
}

html.dark-mode .s2r-new {
  background: rgba(16, 185, 129, .12);
  color: #34D399;
  border-color: rgba(16, 185, 129, .25);
}

html.dark-mode .s2r-price {
  color: #C084FC;
  background: rgba(124, 58, 237, .1);
}

html.dark-mode .select2-results__group {
  background: rgba(30, 30, 40, .95) !important;
  border-bottom-color: rgba(124, 58, 237, .15) !important;
}
