:root{
    --ivory:#FAF9F6;
    --beige:#EAE6DF;
    --charcoal:#1A1A1A;
    --accent:#C8B9A6;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--ivory);
    color:var(--charcoal);
    line-height:1.6;
}

/* NAVBAR (CLEAN - NO DUPLICATES) */
.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    box-shadow:0 3px 18px rgba(0,0,0,0.08);
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:1.5rem;
    font-weight:700;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
}

.nav-links a{
    font-size:18px;
    font-weight:700;
    color:var(--charcoal);
    text-decoration:none;
    letter-spacing:0.5px;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--accent);
}

/* HERO */
.hero{
    min-height:85vh;
    background:url('https://ik.imagekit.io/dr4pyavmo/file_00000000d734720b82c20f4095e2b3f2.png?updatedAt=1782555419047') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    background:rgba(0,0,0,0.35);
    padding:50px;
    border-radius:20px;
    color:white;
    max-width:700px;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:3.2rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.15rem;
    margin-bottom:25px;
}

/* BUTTONS */
.btn{
    display:inline-block;
    background:var(--accent);
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-2px);
    opacity:0.9;
}

.product-btn{
    margin-top:15px;
}

/* SECTIONS */
.featured-section{
    padding:80px 8%;
}

.featured-section h2{
    text-align:center;
    font-family:'Playfair Display',serif;
    font-size:2.4rem;
    margin-bottom:50px;
}

/* PRODUCTS */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    text-align:center;
    padding-bottom:25px;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.product-card h3{
    font-size:1.1rem;
    padding:20px 15px 10px;
    font-weight:600;
}

/* TRUST LINE */
.trust-line{
    margin-top:15px;
    font-size:14px;
    color:rgba(255,255,255,0.85);
    text-align:center;
}

/* FOOTER */
footer{
    background:var(--charcoal);
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.social-links{
    margin-bottom:20px;
}

.social-links a{
    color:#fff;
    font-size:28px;
    margin:0 12px;
    transition:0.3s;
}

.social-links a:hover{
    color:var(--accent);
}

footer p{
    margin-top:10px;
}

/* MOBILE */
@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-overlay{
        margin:20px;
        padding:30px;
    }

    .featured-section{
        padding:60px 20px;
    }

    .product-card img{
        height:300px;
    }
}