*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background: #fff;
    color: #111; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}
    
.logo img {
    height: 100px;
    width: 200px;
}
    
nav ul {
    display: flex; 
    list-style: none; 
    gap: 25px; 
}
    
nav ul li { 
    cursor: pointer; 
    font-size: 25px; 
}
    
.icons i {
    margin-left: 18px; 
    cursor: pointer; 
}
.hero {
    height: 90vh;
    background: url("https://thumbs.dreamstime.com/b/sustainable-fashion-event-fashionable-attire-hanging-amid-nature-promoting-clothing-swap-eco-friendly-designs-stylishly-334360354.jpg") center/cover no-repeat;
    display: flex; 
    align-items: center; 
    padding: 0 20px;
    
}
.hero-text { 
    max-width: 450px; 
}
    
.hero-text h1 { 
    font-size: 48px; 
    margin-bottom: 15px; 
}
    
.hero-text p { 
    margin-bottom: 25px; 
    color: #444; 
}
.btn {
    padding: 12px 28px; 
    background: #000; 
    color: #fff;
    text-decoration: none; 
    font-size: 14px;
}
    
.categories {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; padding: 60px;
    
    
}
    
.cat {
    position: relative; 
    height: 320px; 
    color: #fff;
    background-size: cover; 
    background-position: center;
    
}
    
.cat span {
    position: absolute; 
    bottom: 20px; 
    left: 20px;
    background: rgba(0,0,0,0.6); 
    padding: 8px 15px;
    
    
}
.categories a{
    text-decoration: none;
    color: #fffx;
}
.products { 
    padding: 60px; 
}
    
.products h2 {
    margin-bottom: 30px; 
}
    
.product-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    
}
    
.card img {
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
}
    
.card h4 { 
    margin: 10px 0 5px; 
    font-size: 15px; 
}
    
.card p { 
    font-size: 14px; 
    color: #555; 
}

    
nav a {
    text-decoration: none;
    color: #111;
}
footer {
    background: #111; 
    color: #ccc; 
    padding: 40px 60px;
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
footer h4 { 
    margin-bottom: 15px; 
    color: #fff; 
}
    
footer p { 
    font-size: 14px; 
    line-height: 1.6; 
}