* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* TOP BAR */
.top-bar {
    background: #c2185b;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #c2185b;
}

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

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #c2185b;
}

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1521334884684-d80222895322');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

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

.btn {
    display: inline-block;
    background: #c2185b;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
}

/* SECTION GENERAL */
section {
    padding: 60px 10%;
    text-align: center;
}

h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #c2185b;
}

/* CATEGORY */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

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

.product {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* FEATURED */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #c2185b;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
}

/* TESTIMONIAL */
.testimonial {
    background: #f4f4f4;
}

/* CONTACT */
.contact {
    background: #fff;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .category-grid,
    .product-grid,
    .why-grid,
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    header {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
    }
}

@media(max-width: 600px){
    .category-grid,
    .product-grid,
    .why-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    header {
        padding: 20px;
    }
}