/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F8F5F2;
    color: #1A1A1A;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}

.logo span {
    color: #CFA18D;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    margin: 10px;
    text-decoration: none;
    color: #1A1A1A;
}

.icons {
    font-size: 18px;
}

/* HERO */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    background: rgba(0,0,0,0.4);
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: white;
}

.hero p {
    color: white;
    margin-top: 10px;
}

.hero button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    background: #CFA18D;
    color: white;
}

/* SECTION */
.section {
    padding: 40px 20px;
}

.section h2 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* CATEGORIES */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cat-card {
    background: #EADFD7;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

/* PRODUCTS */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card button {
    margin-top: 10px;
    padding: 8px 15px;
    background: black;
    color: white;
    border: none;
}

/* BANNER */
.banner {
    background: #1A1A1A;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

/* NEWSLETTER */
.newsletter {
    text-align: center;
    padding: 40px 20px;
}

.newsletter input {
    padding: 10px;
    width: 80%;
    max-width: 300px;
    margin-top: 10px;
}

.newsletter button {
    padding: 10px 20px;
    background: #CFA18D;
    border: none;
    color: white;
    margin-top: 10px;
}

/* FOOTER */
footer {
    background: #1A1A1A;
    color: white;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

footer p {
    margin: 5px 0;
}

/* ========================= */
/* 📱 RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    nav {
        justify-content: center;
    }

    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 26px;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .categories {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}