/* --- RESET STYLES & FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7ede2; /* Warna dasar pastel cream */
    color: #5c5552; /* Warna teks gelap lembut (bukan hitam pekat) */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HEADER & NAVBAR --- */
header {
    background-color: #f5cac3; /* Pastel Pink/Peach */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: #84a59d; /* Pastel Sage Green untuk kontras logo */
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.9rem;
    color: #6d6875;
    margin-top: 5px;
}

/* --- MAIN CONTENT --- */
.section-title {
    text-align: center;
    margin: 40px 0 20px 0;
    font-size: 1.8rem;
    color: #6d6875;
    position: relative;
}

/* Grid Layout untuk Katalog */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

/* --- KARTU PRODUK (PRODUCT CARD) --- */
.product-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* --- IMAGE CAROUSEL/SLIDER (CSS ONLY) --- */
.image-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: 250px;
    background-color: #f0efa6; /* Tempat placeholder */
}

/* Menyembunyikan scrollbar bawaan browser agar slider rapi */
.image-slider::-webkit-scrollbar {
    height: 6px;
}
.image-slider::-webkit-scrollbar-thumb {
    background: #f5cac3;
    border-radius: 10px;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* --- INFORMASI PRODUK --- */
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #5c5552;
}

.product-desc {
    font-size: 0.9rem;
    color: #7b726e;
    margin-bottom: 15px;
    flex-grow: 1; /* Memastikan deskripsi mengambil ruang yang fleksibel */
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f28482; /* Pastel Red/Coral untuk harga */
    margin-bottom: 15px;
}

/* --- TOMBOL HUBUNGI PENJUAL --- */
.btn-contact {
    display: block;
    text-align: center;
    background-color: #84a59d; /* Pastel Mint Green */
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #6b8c85; /* Mint sedikit lebih gelap saat hover */
}

/* --- FOOTER --- */
footer {
    background-color: #6d6875;
    color: #f7ede2;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 0.85rem;
}