/* Import Font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* --- HEADER & NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #881a3f; /* Pink Tua */
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #e19191;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #a12747;
}

.cart-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    background: #aa3352;
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
}

/* --- HERO SECTION (SLIDER) --- */
.hero {
    margin: 20px 8%;
    background: #fdf0f3; /* Background Pink Sangat Muda */
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.hero-text p {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
    max-width: 400px;
}

.btn-main {
    background: #8d2b45;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    background: #d34675;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
}

/* --- PRODUCT SECTION --- */
.section-title {
    text-align: left;
    margin: 50px 8% 30px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 8% 50px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(255, 77, 125, 0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 15px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
}

.btn-buy {
    background: #b63759;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
}