/* GENERAL STYLES */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fdf6f0;
    color: #4b3b2f;
}

h1 {
    text-align: center;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

button {
    cursor: pointer;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .logo img {
    width: 120px;
}

/* NAVIGATION ITEMS FLEX */
.nav-items {
    display: flex;
    align-items: center;
    gap: 20px; /* space between links and dropdown */
}

.nav-items ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-items ul li {
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-items ul li:hover {
    color: #a16b4d;
}

.nav-items .country {
    padding: 5px 10px;
    font-size: 14px;
}

/* HERO */
.hero img {
    width: 100%;
    height: auto;
}

/* PRODUCTS */
.products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 50px;
}

.product-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.shopnow {
    background-color: #a16b4d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 10px;
    transition: background 0.3s;
}

.shopnow:hover {
    background-color: #8e573d;
}

/* BEFORE & AFTER */
.before-after .images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.before-after img {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

/* BRAND PROMISE */
.brand-promise .promise-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.brand-promise img {
    width: 80px;
    height: auto;
}

/* FOOTER */
footer {
    background-color: #fff;
    padding: 50px;
    text-align: center;
    color: #4b3b2f;
}