
* {
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
}
header {
    background: #24292e;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.search {
    flex: 1;
    margin: 0 20px;
    padding: 6px;
    border-radius: 4px;
    border: none;
}
nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}
.shop-now {
    background: orange;
    padding: 5px 10px;
    border-radius: 4px;
    color: black;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    background: white;
}
.section {
    padding: 30px 20px;
    background: white;
    margin: 10px 0;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.product {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    width: 200px;
    position: relative;
    text-align: center;
}
.product img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 2px 6px;
    font-size: 0.75rem;
    border-radius: 3px;
}
footer {
    background: #24292e;
    color: white;
    text-align: center;
    padding: 15px 0;
}
