*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    color:#222;
}

header{
    position:relative;
    background:#0b5d2a;
    color:#fff;
    padding:15px 40px;
    border-bottom:4px solid #d4af37;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    border-radius:50%;
}

.logo h1{
    color:gold;
    font-size:32px;
    margin:0;
}

.logo p{
    color:#ff4d4d;
    font-size:15px;
    margin-top:5px;
}
.top-links{
    position:absolute;
    top:25px;
    right:30px;
    display:flex;
    align-items:center;
    gap:25px;
}

.top-links a{
    color:white;
    font-size:22px;
    font-weight:bold;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
}

.top-links a:hover{
    color:#d4af37;
}
 

nav a{
    color:white;
    margin:0 20px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:gold;

}
.search-box{
    width:350px;
    padding:12px 20px;
    border:none;
    border-radius:30px;
    font-size:16px;
    outline:none;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
}
.cart-btn{
    display:inline-block;
    margin-top:10px;
    margin-left:10px;
    background:#0b7a33;
    color:white;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.cart-btn:hover{
    background:#086328;
}
.addCart{
    width:90%;
    margin:15px;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#0b7a33;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.addCart:hover{
    background:#095d28;
}
.product-card{
    background:#fff;
    width:300px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    text-align:center;
    margin:20px;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.product-card h2{
    color:#0b5d2a;
    margin:15px 0 8px;
}

.product-card h3{
    color:#d4af37;
    font-size:28px;
    margin-bottom:15px;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.30);
}
nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    background:#0b5d2a;
    padding:15px 0;
    border-top:2px solid #d4af37;
    border-bottom:2px solid #d4af37;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s;
}

nav a:hover{
    background:#d4af37;
    color:#0b5d2a;
}
.cart{
    position:fixed;
    top:180px;
    right:20px;
    width:320px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    padding:20px;
}

.cart h2{
    background:#0b5d2a;
    color:#fff;
    margin:-20px -20px 20px;
    padding:15px;
    border-radius:15px 15px 0 0;
    text-align:center;
}

.cart input{
    width:100%;
    padding:12px;
    margin:8px 0;
    border:1px solid #ddd;
    border-radius:8px;
    box-sizing:border-box;
}

#whatsappOrder{
    width:100%;
    padding:14px;
    background:#0b7a33;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}
.products h2{
    color:#0b5d2a;
    font-size:48px;
    font-weight:bold;
    text-align:center;
    margin-bottom:40px;
    font-family:Georgia, serif;
}