/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 10px 20px;
}

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

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Slider */
.slider {
    overflow: hidden;
    width: 100%;
    height: 300px;
    position: relative;
}

.slides img {
    width: 100%;
    height: auto;
}

/* Layout */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

/* Categories */
.categories, .login {
    width: 20%;
    padding: 15px;
    background: #f4f4f4;
    border-radius: 8px;
}

/* Featured Products */
.featured {
    text-align: center;
    margin: 20px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

.social-icons img {
    width: 30px;
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .categories, .login {
        width: 90%;
        margin-bottom: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
