/*
Theme Name: KOTECHWORLD NeoMarket Pro
Author: Kingsley Obi
Version: 3.0
Description: Futuristic classified marketplace WordPress theme.
*/

:root{
 --bg:#050816;
 --card:#0f172a;
 --primary:#4f46e5;
 --secondary:#9333ea;
 --text:#f8fafc;
 --muted:#94a3b8;
}

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

body{
 background:linear-gradient(180deg,#030712,#0f172a);
 color:var(--text);
 font-family:Arial,sans-serif;
}

.container{
 width:92%;
 max-width:1400px;
 margin:auto;
}

header{
 position:sticky;
 top:0;
 z-index:999;
 backdrop-filter:blur(18px);
 background:rgba(5,8,22,.85);
 border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{
 display:flex;
 justify-content:space-between;
 align-items:center;
 padding:22px 0;
}

.logo{
 font-size:28px;
 font-weight:700;
 letter-spacing:2px;
}

nav ul{
 display:flex;
 gap:25px;
 list-style:none;
}

nav a{
 color:white;
 text-decoration:none;
}

.hero{
 padding:90px 0;
 text-align:center;
}

.hero h1{
 font-size:72px;
 line-height:1.05;
 margin-bottom:20px;
}

.hero p{
 color:var(--muted);
 max-width:720px;
 margin:auto;
 margin-bottom:35px;
}

.search-bar{
 display:flex;
 justify-content:center;
 gap:14px;
}

.search-bar input{
 width:60%;
 padding:20px;
 border:none;
 border-radius:18px;
 background:#111827;
 color:white;
}

.btn{
 border:none;
 background:linear-gradient(135deg,var(--primary),var(--secondary));
 color:white;
 padding:18px 28px;
 border-radius:18px;
 font-weight:bold;
 cursor:pointer;
}

.category-grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
 gap:22px;
 padding:40px 0 70px;
}

.category{
 background:rgba(15,23,42,.8);
 border:1px solid rgba(255,255,255,.06);
 padding:28px;
 border-radius:24px;
 transition:.3s;
}

.category:hover{
 transform:translateY(-8px);
 box-shadow:0 0 40px rgba(79,70,229,.3);
}

.section-title{
 font-size:36px;
 margin-bottom:30px;
}

.listing-grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
 gap:24px;
}

.card{
 background:rgba(15,23,42,.85);
 border-radius:24px;
 overflow:hidden;
 border:1px solid rgba(255,255,255,.08);
}

.card img{
 width:100%;
 height:230px;
 object-fit:cover;
}

.card-content{
 padding:22px;
}

.price{
 color:#22c55e;
 font-size:28px;
 font-weight:bold;
 margin:14px 0;
}

.badge{
 display:inline-block;
 padding:8px 14px;
 border-radius:50px;
 background:rgba(79,70,229,.18);
 color:#818cf8;
 margin-bottom:12px;
 font-size:13px;
}

.dashboard-preview{
 margin-top:90px;
 background:rgba(15,23,42,.8);
 border-radius:28px;
 padding:40px;
 border:1px solid rgba(255,255,255,.08);
}

.stats{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
 gap:20px;
 margin-top:30px;
}

.stat{
 background:#111827;
 border-radius:22px;
 padding:30px;
}

footer{
 margin-top:100px;
 border-top:1px solid rgba(255,255,255,.08);
 text-align:center;
 padding:50px 0;
 color:var(--muted);
}

@media(max-width:768px){

.hero h1{
 font-size:46px;
}

.search-bar{
 flex-direction:column;
}

.search-bar input{
 width:100%;
}

nav{
 display:none;
}

}