body{
    background:#fff;
    font-family:Inter,sans-serif;
}

.topbar{
	background:#173B6D;
}

.btn-search{
	background: #1F447B;
	border-color: #1F447B;
}

.btn-search:hover{
	background: #28579c;
}

.btn-outline-echance{
    color:#1FE4A8;
    border-color:#1FE4A8;
}

.btn-outline-echance:hover{
    background:#1FE4A8;
    color:#1F447B;
}

.midbar{
	background:#f8f9fa;
	border-bottom:1px solid #dee2e6;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.navbar{
    padding:20px 0;
}

.hero{
    background:#111;
    color:white;
    min-height:80vh;
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:4rem;
    font-weight:700;
}

.hero p{
    color:#bbb;
    font-size:1.2rem;
}

.hero img{
    max-height:550px;
    object-fit:contain;
}

.btn-shop{
    padding:12px 30px;
    border-radius:50px;
}

.section-title{
    font-weight:700;
    margin-bottom:40px;
}

.product-card{
    border:none;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    border-radius:20px;
    background:#f5f5f5;
    padding:25px;
    height:280px;
    object-fit:contain;
}

.product-name{
    font-weight:600;
}

.price{
    font-size:1.1rem;
    font-weight:700;
}

.newsletter{
    background:#f7f7f7;
    padding:80px 0;
}

footer{
    padding:30px 0;
    border-top:1px solid #eee;
}