* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    background: #f6f6f6;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #42a0a3;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
}
.logo span {
    color: #ff4d6d;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.logo-produk{
    width: 60px;
    height: 60px;
}

.hero {
    height: 70vh;
    background: url('bg-casual.png') no-repeat center/cover;
    display: flex;
    background-size: cover;
    background-position: center;
    align-items: center;
    padding-left: 50px;
    color: #111;
    
}

.hero button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff4d6d;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
}

.produk {
    padding: 60px 40px;
    text-align: center;
}

.produk h2 {
    margin-bottom: 30px;
    font-size: 32px;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.card p {
    color: #ff4d6d;
    font-weight: 600;
}

.card button {
    margin-top: 10px;
    padding: 8px 15px;
    background: #ff4d6d;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 500;
}

footer {
    padding: 30px 40px;
    text-align: center;
    background: #333;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 15px;
        box-shadow: 0 0 8px rgba(0,0,0,0.2);
        border-radius: 8px;
    }

    nav.show {
        display: flex;
    }

    nav a {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-left: 20px;
        text-align: center;
    }

    .hero button {
        margin: 20px auto 0 auto;
        display: block;
    }
}
