* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.header {
    background: white;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
}

.search {
    display: flex;
    flex: 1;
    max-width: 500px;
}

.search input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
}

.search button {
    padding: 12px 20px;
    background: #198754;
    color: white;
    border: none;
}

.menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #333;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: #e9f7ef;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
}

.shop-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #198754;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.categories {
    padding: 50px 5%;
    text-align: center;
}

.category-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.category {
    background: white;
    width: 160px;
    padding: 25px;
    border-radius: 10px;
    font-size: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category h3 {
    font-size: 18px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px 5%;
    text-align: center;
    background: white;
}

.features div {
    max-width: 250px;
}

footer {
    text-align: center;
    padding: 25px;
    background: #222;
    color: white;
}

@media (max-width: 800px) {

    .header {
        flex-direction: column;
    }

    .search {
        width: 100%;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}