	*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	}

	html,body{
	overflow-x:hidden;
	scroll-behavior:smooth;
	}

	body{
	font-family:'Inter',sans-serif;
	background:#f4f7fb;
	color:#0f172a;
	}

	/* HEADER */

	.header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:82px;
	background:rgba(255,255,255,.96);
	backdrop-filter:blur(16px);
	border-bottom:1px solid #e2e8f0;
	z-index:99999;
	}

	.header_container{
	max-width:1750px;
	margin:auto;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:0 24px;
	}

	.logo{
	font-size:25px;
	font-weight:900;
	letter-spacing:-1px;
	color:#ff7a00;
text-decoration:none;
display:flex;
align-items:center;
	}

	.logo span{
	color:#0f172a;
	}

	.header_right{
	display:flex;
	align-items:center;
	gap:12px;
	}

	.header_btn{
	height:50px;
	padding:0 22px;
	border:none;
	border-radius:14px;
	font-size:14px;
	font-weight:800;
	cursor:pointer;
	transition:.3s;
	}

	.search_open_btn{
	background:#f8fafc;
	border:2px solid #e2e8f0;
	color:#0f172a;
	}

	.search_open_btn:hover{
	border-color:#ff7a00;
	background:#fff7ed;
	color:#ff7a00;
	}

	.login_btn{
	background:#eef2f7;
	color:#0f172a;
	}

	.add_btn{
	background:#ff7a00;
	color:#fff;
	box-shadow:0 12px 30px rgba(255,122,0,.25);
	}

	/* MOBILE HEADER */

	.mobile_header{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:72px;
	background:rgba(255,255,255,.98);
	backdrop-filter:blur(18px);
	border-bottom:1px solid #e2e8f0;
	z-index:999999;
	padding:0 14px;
	align-items:center;
	justify-content:space-between;
	}

	.mobile_logo{
	font-size:22px;
	font-weight:900;
	color:#ff7a00;
	}

	.mobile_logo span{
	color:#0f172a;
	}

	.mobile_icon_group{
	display:flex;
	align-items:center;
	gap:10px;
	}

	.mobile_icon_btn{
	width:44px;
	height:44px;
	border-radius:14px;
	background:#f1f5f9;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
	cursor:pointer;
	}

	/* MAIN */

.main{
max-width:1750px;
margin:auto;
padding:35px 24px 35px;
}

	.listings{
	display:flex;
	flex-direction:column;
	gap:22px;
	}

	/* LIST ITEM */

	.list_item{
	background:#fff;
	border-radius:30px;
	padding:18px;
	display:flex;
	gap:22px;
	border:1px solid #e2e8f0;
	transition:.3s;
	}

	.list_item:hover{
	transform:translateY(-3px);
	box-shadow:0 25px 60px rgba(15,23,42,.08);
	}

	.list_image{
	width:360px;
	min-width:360px;
	height:250px;
	border-radius:24px;
	overflow:hidden;
	position:relative;
	}

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

	.badge{
	position:absolute;
	top:18px;
	left:18px;
	padding:10px 16px;
	background:#ff7a00;
	color:#fff;
	border-radius:50px;
	font-size:12px;
	font-weight:800;
	}

	.list_content{
	flex:1;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	}

	.list_top{
	display:flex;
	justify-content:space-between;
	gap:20px;
	}

	.list_title{
	font-size:30px;
	font-weight:900;
	line-height:1.3;
	margin-bottom:14px;
	}

	.location{
	font-size:15px;
	font-weight:600;
	color:#64748b;
	margin-bottom:18px;
	}

	.features{
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	}

	.feature{
	padding:11px 15px;
	background:#f1f5f9;
	border-radius:12px;
	font-size:13px;
	font-weight:700;
	color:#475569;
	}

	.price_box{
	text-align:right;
	min-width:220px;
	}

	.price{
	font-size:40px;
	font-weight:900;
	color:#ff7a00;
	}

	.date{
	margin-top:10px;
	font-size:13px;
	font-weight:600;
	color:#64748b;
	}

	.list_bottom{
	margin-top:24px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:15px;
	flex-wrap:wrap;
	}

	.company{
	display:flex;
	align-items:center;
	gap:14px;
	}

	.company img{
	width:52px;
	height:52px;
	border-radius:50%;
	object-fit:cover;
	}

	.company strong{
	display:block;
	font-size:15px;
	}

	.company span{
	font-size:13px;
	color:#64748b;
	}

	.actions{
	display:flex;
	gap:12px;
	}

	.action_btn{
	height:50px;
	padding:0 22px;
	border:none;
	border-radius:14px;
	font-size:14px;
	font-weight:800;
	cursor:pointer;
	}

	.fav_btn{
	background:#eef2f7;
	}

	.detail_btn{
	background:#ff7a00;
	color:#fff;
	}

	/* FOOTER */

	.footer_bottom_only{
	padding:30px 20px;
	text-align:center;
	font-size:13px;
	font-weight:600;
	color:#64748b;
	border-top:1px solid #e2e8f0;
	background:#fff;
	margin-top:40px;
	}

	/* MOBILE NAV */

	.mobile_nav{
	display:none;
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	height:74px;
	background:rgba(255,255,255,.98);
	backdrop-filter:blur(18px);
	border-top:1px solid #e2e8f0;
	z-index:999999;
	justify-content:space-around;
	align-items:center;
	}

	.mobile_item{
	display:flex;
	flex-direction:column;
	align-items:center;
	font-size:11px;
	font-weight:700;
	color:#475569;
	gap:4px;
	}

	/* POPUP */

	.popup_overlay{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(15,23,42,.65);
	backdrop-filter:blur(5px);
	z-index:9999999;
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	visibility:hidden;
	transition:.3s;
	padding:20px;
	}

	.popup_overlay.active{
	opacity:1;
	visibility:visible;
	}

	.popup_box{
	width:100%;
	max-width:620px;
	background:#fff;
	border-radius:30px;
	padding:28px;
	transform:translateY(50px);
	transition:.35s;
	max-height:92vh;
	overflow:auto;
	}

	.popup_overlay.active .popup_box{
	transform:translateY(0);
	}

	.popup_top{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:24px;
	}

	.popup_top h3{
	font-size:28px;
	font-weight:900;
	}

	.popup_close{
	width:46px;
	height:46px;
	border-radius:14px;
	background:#f1f5f9;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	font-size:18px;
	}

	.popup_content{
	display:flex;
	flex-direction:column;
	gap:18px;
	}

	.popup_group{
	display:flex;
	flex-direction:column;
	gap:10px;
	}

	.popup_group label{
	font-size:13px;
	font-weight:800;
	color:#475569;
	}

	.popup_group input,
	.popup_group select{
	width:100%;
	height:62px;
	border-radius:18px;
	border:1px solid #dbe3ec;
	padding:0 18px;
	font-size:15px;
	outline:none;
	}

	.popup_btn{
	width:100%;
	height:62px;
	border:none;
	border-radius:18px;
	background:#ff7a00;
	color:#fff;
	font-size:16px;
	font-weight:900;
	cursor:pointer;
	}

	/* MOBILE */

	@media(max-width:768px){

	.header{
	display:none;
	}

	.mobile_header{
	display:flex;
	}

	.main{
	padding:90px 10px 100px;
	}

	.list_item{
	padding:10px;
	border-radius:18px;
	gap:12px;
	align-items:flex-start;
	}

	.list_image{
	width:125px;
	min-width:125px;
	height:105px;
	border-radius:14px;
	}

	.list_content{
	width:100%;
	}

	.list_title{
	font-size:16px;
	line-height:1.4;
	margin-bottom:8px;
	}

	.location{
	font-size:12px;
	margin-bottom:10px;
	}

	.features{
	gap:6px;
	}

	.feature{
	padding:7px 10px;
	font-size:11px;
	}

	.list_top{
	flex-direction:column;
	gap:12px;
	}

	.price_box{
	text-align:left;
	min-width:100%;
	}

	.price{
	font-size:24px;
	}

	.date{
	font-size:11px;
	}

	.list_bottom{
	margin-top:14px;
	flex-direction:column;
	align-items:flex-start;
	gap:12px;
	}

	.company img{
	width:38px;
	height:38px;
	}

	.company strong{
	font-size:13px;
	}

	.company span{
	font-size:11px;
	}

	.actions{
	width:100%;
	display:flex;
	}

	.action_btn{
	height:52px;
	font-size:19px;
	}

	.mobile_nav{
	display:flex;
	}

	.footer_bottom_only{
	padding-bottom:95px;
	font-size:11px;
	}

	.popup_overlay{
	align-items:flex-end;
	padding:0;
	}

	.popup_box{
	border-radius:28px 28px 0 0;
	max-width:100%;
	}

	}

.hero_desktop{
width:100%;
height:620px;
position:relative;
overflow:hidden;
margin-top:82px;
background:
linear-gradient(to right, rgba(2,6,23,.88), rgba(15,23,42,.56)),
url('../img/banner1.png');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.hero_overlay{
width:100%;
padding:0 70px;
}

.hero_content{
max-width:820px;
}

.hero_badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 20px;
border-radius:50px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.15);
color:#fff;
font-size:13px;
font-weight:800;
margin-bottom:24px;
}

.hero_title{
font-size:76px;
line-height:1;
font-weight:900;
letter-spacing:-4px;
color:#fff;
margin-bottom:26px;
max-width:900px;
text-shadow:0 10px 30px rgba(0,0,0,.25);
}

.hero_text{
font-size:18px;
line-height:1.8;
color:rgba(255,255,255,.82);
max-width:700px;
margin-bottom:34px;
}

.hero_actions{
display:flex;
align-items:center;
gap:16px;
flex-wrap:wrap;
}

.hero_btn{
height:62px;
padding:0 30px;
border:none;
border-radius:18px;
font-size:15px;
font-weight:900;
cursor:pointer;
transition:.3s;
}

.hero_btn_primary{
background:#ff7a00;
color:#fff;
box-shadow:0 18px 40px rgba(255,122,0,.35);
}

.hero_btn_primary:hover{
transform:translateY(-2px);
}

.hero_btn_secondary{
background:rgba(255,255,255,.12);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.18);
color:#fff;
}

.hero_stats{
display:flex;
gap:40px;
margin-top:45px;
flex-wrap:wrap;
}

.hero_stat strong{
display:block;
font-size:34px;
font-weight:900;
color:#fff;
margin-bottom:6px;
}

.hero_stat span{
font-size:14px;
font-weight:600;
color:rgba(255,255,255,.7);
}

/* MOBILE */

@media(max-width:768px){

.hero_desktop{
display:none;
}

}



/* SIDEBAR */

.sidebar{
width:310px;
min-width:310px;
background:#fff;
border:1px solid #e2e8f0;
border-radius:28px;
padding:22px;
position:relative;
transition:.25s;
z-index:50;
}

.sidebar.fixed{
position:fixed;
top:100px;
left:max(24px, calc((100vw - 1750px) / 2 + 24px));
width:310px;
z-index:100;
}

.sidebar.stop{
position:absolute;
bottom:0;
top:auto;
}

.sidebar_title{
font-size:22px;
font-weight:900;
margin-bottom:22px;
}

.category_list{
display:flex;
flex-direction:column;
gap:10px;
}

.category_item{
height:58px;
padding:0 18px;
border-radius:18px;
display:flex;
align-items:center;
justify-content:space-between;
background:#f8fafc;
cursor:pointer;
transition:.3s;
font-size:15px;
font-weight:700;
color:#0f172a;
}

.category_item:hover{
background:#fff7ed;
color:#ff7a00;
transform:translateX(3px);
}

.category_left{
display:flex;
align-items:center;
gap:14px;
}

.category_count{
font-size:12px;
font-weight:800;
padding:7px 10px;
border-radius:50px;
background:#fff;
color:#64748b;
}

/* RIGHT SIDE */
.right_content{
flex:1;
min-width:0;
transition:.25s;
}

.sidebar.fixed ~ .right_content{
margin-left:334px;
width:calc(100% - 334px);
max-width:calc(100% - 334px);
}


.content_area{
display:flex;
gap:24px;
align-items:flex-start;
position:relative;
min-height:100%;
}

.list_item{
border-radius:26px;
}

.list_image{
width:300px;
min-width:300px;
height:215px;
}

.list_title{
font-size:25px;
}

.price{
font-size:34px;
}

/* MOBILE */

@media(max-width:768px){

.content_area{
display:block;
}

.sidebar{
display:none;
}

.list_image{
width:125px;
min-width:125px;
height:105px;
}

.list_title{
font-size:16px;
}

.price{
font-size:24px;
}

}

.sidebar::-webkit-scrollbar{
width:6px;
}

.sidebar::-webkit-scrollbar-thumb{
background:#dbe3ec;
border-radius:20px;
}



.em_popup_overlay_x91k{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(15,23,42,.72);
backdrop-filter:blur(8px);
display:flex;
align-items:center;
justify-content:center;
z-index:999999999;
padding:20px;
box-sizing:border-box;
animation:em_popup_fade_x91k .18s ease;
}

.em_popup_box_x91k{
width:100%;
max-width:420px;
background:#ffffff;
border-radius:30px;
padding:30px;
box-sizing:border-box;
box-shadow:0 25px 80px rgba(0,0,0,.28);
animation:em_popup_scale_x91k .18s ease;
}

.em_popup_text_x91k{
font-size:16px;
line-height:1.7;
font-weight:800;
color:#0f172a;
text-align:center;
margin-bottom:24px;
word-break:break-word;
}

.em_popup_buttons_x91k{
display:flex;
gap:12px;
}

.em_popup_btn_x91k{
flex:1;
height:58px;
border:none;
border-radius:18px;
cursor:pointer;
font-size:15px;
font-weight:900;
transition:.2s;
}

.em_popup_ok_x91k{
background:#ff7a00;
color:#fff;
box-shadow:0 12px 30px rgba(255,122,0,.25);
}

.em_popup_ok_x91k:hover{
transform:translateY(-2px);
}

.em_popup_cancel_x91k{
background:#e2e8f0;
color:#0f172a;
}

.em_popup_cancel_x91k:hover{
background:#cbd5e1;
}

@keyframes em_popup_fade_x91k{

from{
opacity:0;
}

to{
opacity:1;
}

}

@keyframes em_popup_scale_x91k{

from{
opacity:0;
transform:scale(.92);
}

to{
opacity:1;
transform:scale(1);
}

}