
section {
    margin-bottom: 60px;
}
.shop {
    padding: 120px 60px; 
}
		/* ================= FOOTER ================= */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: #f3efe8;
    flex-wrap: wrap;
    gap: 40px;
}

/* LEFT SIDE */
.footer-left {
    max-width: 200px;
}

.footer-logo {
    display: grid;
    grid-template-columns: repeat(2, 10px);
    gap: 6px;
    margin-bottom: 15px;
}

.footer-logo div {
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
}

.footer-left p {
    font-size: 12px;
    color: #777;
}

/* COLUMNS */
.footer-col h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col p {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    cursor: pointer;
}

/* HOVER EFFECT */
.footer-col p:hover {
    color: #c49a6c;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        body {
            background: #f8f6f2;
            color: #333;
        }

        /* NAVBAR */
        header {
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        .logo {
            font-weight: bold;
            font-size: 20px;
            color: #999;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav ul li {
            cursor: pointer;
            color: #999;
            font-size: 14px;
        }

        .faq-btn {
            background: #c49a6c;
            color: white;
            padding: 8px 14px;
            border-radius: 6px;
        }

        /* HERO SECTION */
        .hero {
            height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
            filter: brightness(0.7);
        }

        .hero-content {
            position: relative;
            color: white;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .hero p {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .shop-btn {
            background: #fff;
            color: #333;
            padding: 10px 20px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            display: inline-block;
            text-decoration: none;
            
            
        }
    
        /* FEATURE STRIP */
       .features {
    display: flex;
    justify-content: space-around;
    padding: 30px 40px;
    background: #f1ede6;
}

.feature {
    font-size: 13px;
    color: #777;
}

.feature strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}
        /* SECTION 2 (placeholder) */
        .section {
            padding: 60px;
            text-align: center;
        }
        .story {
    padding: 80px 60px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.story h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.story p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}
        /* ================= ECO SECTION ================= */
.eco {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    background: #f5f1ea;
    gap: 40px;
}

.eco-text {
    max-width: 500px;
}

.eco-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.eco-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.eco-btn {
    background: #c49a6c;
    color: white;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;   
    text-decoration: none;
    font-size: 13px;
}

.eco-img img {
    width: 400px;
    border-radius: 10px;
}


/* ================= services SECTION ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 per row */
    gap: 30px;
    max-width: 900px;
    margin: 0 auto; /* center grid */
}
.services {
    padding: 80px 60px;
    text-align: center; /* 🔥 centers heading */
}
.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;

}
.card {
    border-left: 4px solid #c49a6c;
}
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr; /* 1 per row on phone */
    }
}
.card:hover {
    transform: translateY(-5px);
}
.card .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #3e5c4b;
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: 0.3s;
}
.card:hover .tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}
/* 🔥 Highlight tag */
.tag.hot {
    background: #c49a6c;
}
/* ================= SHOP SECTION ================= */
.shop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    background: #f3efe8;
    gap: 40px;
}

.shop-text {
    max-width: 500px;
}

.shop-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.shop-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.shop-img img {
    width: 400px;
}
/* ================= DISCOVER SECTION ================= */
.discover-card {
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.hidden-content {
    display: none;
    margin-top: 10px;
    color: #666;
}

.discover-card.active {
    border: 1.5px solid #c49a6c;
    background: rgba(196,154,108,0.05);
}

.discover-card.active .hidden-content {
    display: block;
}
.discover {
    padding: 80px 60px;
    background: #f8f6f2;
    text-align: center;
}

.discover h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.discover-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.discover-grid h4 {
    margin-bottom: 8px;
}

.discover-grid p {
    font-size: 13px;
    color: #777;
}
.discover-grid div {
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.discover-card {
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* CLICK STATE ONLY */
.discover-card.active {
    border: 1.5px solid #c49a6c;
    background: rgba(196,154,108,0.05);
}
.discover-card:hover {
    transform: translateY(-3px);
}
.shop {
    background: 
        linear-gradient(rgba(101,67,33,0.4), rgba(196,154,108,0.3)),
        url("w1.jpg.jpeg");
    background-size: cover;
    background-position: center;
}
.shop {
    margin-top: 150px;
}
.products {
    padding: 80px 60px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
}
.enquire-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: #c49a6c;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

.enquire-btn:hover {
    opacity: 0.9;
}
.product-card {
    margin-top: 30px;
}
