* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fdfaf5;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #4a2c2a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 24px; font-weight: 700; }
.logo span { color: #ff9f43; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: white; text-decoration: none; font-weight: 400; }

/* Hero Slider */
.slider-container {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active { opacity: 1; }

.content {
    text-align: center;
    color: white;
}

.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 10px;
}

/* Produk Section */
.products {
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4a2c2a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover { transform: translateY(-10px); }

.p-img { font-size: 50px; margin-bottom: 15px; }

.price {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #e67e22;
    font-size: 1.2rem;
}

/* WA Floating */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-decoration: none;
    z-index: 1000;
}

.wa-card {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.wa-card img { width: 30px; }

footer {
    background: #4a2c2a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
