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

body {
    font-family: 'Lato', sans-serif;
    background-color: #fdf8f0;
    color: #6b4c1e;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: #fdf8f0;
    border-bottom: 1px solid #e8d5a3;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    background: #fdf8f0;
    padding: 4px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    color: #6b4c1e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #c9a84c;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 64px 32px 48px;
    border-bottom: 1px solid #e8d5a3;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    color: #6b4c1e;
    letter-spacing: 3px;
}

.hero-line {
    width: 80px;
    height: 1px;
    background: #c9a84c;
    margin: 20px auto;
}

.hero-subtitle {
    font-size: 13px;
    color: #9b7b4a;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.collection-section {
    padding: 48px 40px;
    border-bottom: 1px solid #e8d5a3;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    color: #6b4c1e;
}

.section-line {
    width: 60px;
    height: 1px;
    background: #c9a84c;
    margin: 12px auto 32px;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border: 1px solid #e8d5a3;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

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

.product-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5ede0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 16px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b4c1e;
}

.product-price {
    font-size: 15px;
    color: #c9a84c;
    margin-top: 4px;
    font-weight: 400;
}

.product-desc {
    font-size: 13px;
    color: #9b7b4a;
    margin-top: 8px;
    line-height: 1.6;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    display: block;
    margin: 0 16px 16px;
    padding: 10px;
    background: #25d366;
    color: white;
    text-align: center;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.whatsapp-btn:hover {
    background: #1da851;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 64px 40px;
    background: #f5ede0;
    border-bottom: 1px solid #e8d5a3;
    text-align: center;
}

.about-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    color: #7a5c35;
}

/* ===== FOOTER ===== */
footer {
    background: #6b4c1e;
    padding: 28px 40px;
    text-align: center;
}

footer p {
    font-size: 13px;
    color: #e8d5a3;
    letter-spacing: 1px;
}

.footer-contact {
    margin-top: 8px;
    color: #c9a84c;
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}