*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#faf9f5;
    color:#333;
    line-height:1.7;
}

.navbar{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo{
    text-decoration:none;
    color:#0b6b34;
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    font-weight:700;
}

.back-btn{
    text-decoration:none;
    background:#0b6b34;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
}

.product-page{
    width:90%;
    max-width:1300px;
    margin:70px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

.product-image{
    text-align:center;
}

.product-image img{

width:100%;

max-width:620px;

display:block;

margin:auto;

padding:25px;

background:#ffffff;

border-radius:30px;

box-shadow:0 25px 60px rgba(0,0,0,.15);

transition:.35s;

}

.product-image img:hover{

transform:scale(1.03);

}
.category{
    color:#b88b00;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.product-info h1{
    font-family:'Cormorant Garamond',serif;
    color:#0b6b34;
    font-size:64px;
    margin-bottom:20px;
}

.price{
    font-family:'Cormorant Garamond',serif;
    color:#0b6b34;
    font-size:54px;
    margin:25px 0;
}

.product-info{

text-align:left;

}

.product-info p{

font-size:19px;

line-height:1.9;

color:#555;

margin-bottom:35px;

text-align:justify;

}

.product-info h2{

margin-top:45px;

margin-bottom:18px;

color:#0b6b34;

font-size:36px;

font-family:'Cormorant Garamond',serif;

border-bottom:2px solid #e8efe9;

padding-bottom:10px;

}

.product-info ul{

margin-left:0;

padding-left:22px;

margin-bottom:35px;

}

.product-info li{

margin-bottom:14px;

font-size:18px;

line-height:1.8;

color:#444;

}

.whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    padding:20px 55px;
    background:#0b6b34;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(11,107,52,.25);
}

.whatsapp-btn:hover{
    background:#085126;
    transform:translateY(-3px);
}

footer{
    margin-top:80px;
    background:#0b6b34;
    color:#fff;
    text-align:center;
    padding:30px;
    font-size:16px;
}

.product-image{
    position:relative;
}

.product-image::before{

content:"";

position:absolute;

width:520px;

height:520px;

background:linear-gradient(135deg,#eef9f1,#ffffff);

border-radius:50%;

top:50%;

left:50%;

transform:translate(-50%,-50%);

z-index:-1;

}
/* ---------- Responsive ---------- */

@media (max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .logo{
        font-size:34px;
    }

    .back-btn{
        padding:12px 24px;
        font-size:16px;
    }

    .product-page{
        grid-template-columns:1fr;
        gap:50px;
        margin:50px auto;
    }

    .product-image::before{
        width:300px;
        height:300px;
    }

    .product-image img{
        max-width:320px;
    }

    .category{
        display:block;
        text-align:center;
    }

    .product-info{
        text-align:center;
    }

    .product-info h1{
        font-size:46px;
    }

    .price{
        font-size:42px;
    }

    .product-info ul{
        text-align:left;
        display:inline-block;
    }

    .whatsapp-btn{
        display:block;
        width:100%;
        max-width:320px;
        margin:30px auto 0;
    }

}
/* ===========================
   Product Information Box
=========================== */

.info-box{
    background:linear-gradient(135deg,#eef9f1,#f9fffb);
    border:1px solid #d7eadb;
    border-left:6px solid #0b6b34;
    border-radius:18px;
    padding:25px;
    margin:35px 0;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.info-box h2{
    margin:0 0 18px;
    color:#0b6b34;
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
}

.info-box ul{
    list-style:none;
    margin:0;
    padding:0;
}

.info-box li{
    padding:12px 0;
    border-bottom:1px solid #dfeee2;
    font-size:17px;
}

.info-box li:last-child{
    border-bottom:none;
}

.info-box strong{
    color:#0b6b34;
}
/* ===========================
   RELATED PRODUCTS
=========================== */

.related-products{
    width:100%;
    max-width:1400px;
    margin:100px auto 0;
    padding:60px 20px 0;
    border-top:1px solid #e8e8e8;
}

.related-products h2{

    text-align:center;
    font-family:'Cormorant Garamond',serif;
    color:#0b6b34;
    font-size:48px;
    margin-bottom:50px;

}

.related-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}
.related-card{
    width:300px;
    background:#fff;
    border-radius:20px;
    padding:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.related-card:hover{

    transform:translateY(-8px);

}

.related-card img{

    width:160px;
    margin:auto;
    display:block;

}

.related-card h3{

    color:#0b6b34;
    margin:20px 0 10px;
    font-family:'Cormorant Garamond',serif;

}

.related-card p{

    font-size:16px;
    color:#666;
    margin-bottom:20px;

}

.related-card a{

    color:#0b6b34;
    text-decoration:none;
    font-weight:600;

}
@media (max-width: 768px) {

    .page-header{
        text-align: center;
        padding: 20px;
    }

    .page-header a{
        display: block;
        margin: 10px 0;
        text-decoration: none;
        font-size: 18px;
    }

    .hero,
    .product-hero{
        display: flex;
        flex-direction: column;
    }

    .hero-content,
    .hero-image{
        width: 100%;
    }

    h1{
        font-size: 42px;
        line-height: 1.2;
    }
}
/* =====================================
   HOSPITALITY ICONS
===================================== */

.hospitality-icons{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(120px,1fr));

gap:18px;

margin:30px 0;

}

.hospitality-item{

background:#faf7ef;

border-radius:18px;

padding:25px 15px;

text-align:center;

font-size:18px;

font-weight:600;

line-height:1.8;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.hospitality-item:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,0,0,.15);

}