:root{
    --orange:#ff914d;
    --teal:#2d8b7b;
    --black:#080808;
    --white:#ffffff;
    --gray:#f5f5f5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    color:#111;
    background:white;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

header{
    position:absolute;
    width:100%;
    z-index:100;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
}

.logo{
    font-family:'Montserrat';
    font-size:1.4rem;
    font-weight:800;
    color:white;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

.btn-primary{
    background:var(--orange);
    color:white;
    border:none;
    padding:12px 24px;
    border-radius:6px;
    cursor:pointer;
}

.hero{
    height:90vh;

    background:url("https://images.unsplash.com/photo-1560518883-ce09059eeffa")
    center/cover;

    display:flex;
    align-items:center;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1200px;
    margin:auto;
    color:white;
}

.hero h1{
    font-family:'Montserrat';
    font-size:4rem;
    max-width:700px;
}

.hero p{
    margin-top:15px;
    font-size:1.1rem;
}

.search-box{
    margin-top:30px;
    background:white;
    display:flex;
    max-width:700px;
    border-radius:10px;
    overflow:hidden;
}

.search-box input{
    flex:1;
    border:none;
    padding:20px;
}

.search-box button{
    border:none;
    background:var(--orange);
    color:white;
    padding:0 40px;
}

.inventory{
    padding:90px 0;
}

.section-header h2{
    font-family:'Montserrat';
    font-size:2rem;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.card{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-content{
    padding:25px;
}

.card-content h3{
    font-family:'Montserrat';
}

.price{
    margin-top:15px;
    color:var(--orange);
    font-size:1.4rem;
    font-weight:700;
}

.process{
    background:#fafafa;
    padding:90px 0;
}

.process h2{
    font-family:'Montserrat';
    margin-bottom:40px;
}

.timeline{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.step{
    background:white;
    padding:20px;
    border-radius:10px;
    border:1px solid #ddd;
}

.completed{
    border-left:4px solid var(--teal);
}

.active{
    border-left:4px solid var(--orange);
}