*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #f5f5f5;
    color: #222;
}

header{
    background: #111;
    color: white;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-size: 1.8rem;
    font-weight: bold;
}

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

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

nav a:hover{
    color: #c59d5f;
}

.hero{
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1{
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn{
    display: inline-block;
    padding: 12px 25px;
    background: #c59d5f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover{
    background: #a57f47;
}

.products{
    padding: 70px 8%;
}

.section-title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.product-card{
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card:hover{
    transform: translateY(-5px);
}

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

.product-info{
    padding: 20px;
}

.product-info h3{
    margin-bottom: 10px;
}

.price{
    color: #c59d5f;
    font-weight: bold;
    margin: 10px 0;
}

.footer{
    background: #111;
    color: #ddd;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 40px;

    padding-bottom: 40px;
}

.footer-section h3{
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo{
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-section p{
    line-height: 1.8;
    color: #aaa;
}

.footer-section ul{
    list-style: none;
}

.footer-section ul li{
    margin-bottom: 12px;
}

.footer-section ul li a{
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.footer-section ul li a:hover{
    color: #c59d5f;
    padding-left: 5px;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px 10px;
    color: #888;
    font-size: 0.95rem;
}

@media(max-width:768px){

    header{
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1{
        font-size: 2.3rem;
    }
}