/* ===================================
   COLOR PALETTE
===================================

Primary Green : #0F6A4A
Dark Green    : #08452F
Gold Accent   : #D4AF37
Dark Text     : #1F2937
Light Text    : #6B7280
White         : #FFFFFF
Light BG      : #F8FAFC
Border Color  : #E5E7EB

=================================== */

:root{
    --primary-green:#0F6A4A;
    --dark-green:#08452F;
    --gold:#D4AF37;
    --dark-text:#1F2937;
    --light-text:#6B7280;
    --white:#FFFFFF;
    --light-bg:#F8FAFC;
    --border:#E5E7EB;
}
*{margin:0;padding:0;box-sizing:border-box}

body{font-family:Arial,sans-serif;color:#222;line-height:1.6}
.container{width:min(1200px,92%);margin:auto}
p{
    text-align:justify;
    line-height:1.8;
}
/* =========================
   TOP ANNOUNCEMENT BAR
========================= */

.top-bar{
    background:#0F6A4A;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:hidden;
    color:#fff;
    position:relative;
    z-index:1001;
}

.offer-marquee{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
    padding-left:15px;
}

.offer-track{
    display:inline-block;
    white-space:nowrap;
    animation:scrollOffer 25s linear infinite;
    font-size:14px;
    font-weight:500;
}

@keyframes scrollOffer{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}

.top-contact{
    display:flex;
    align-items:center;
    gap:25px;
    padding:0 20px;
    background:#08452f;
    height:42px;
    flex-shrink:0;
}

.top-contact a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.top-contact a:hover{
    color:#D4AF37;
}

/* MOBILE */

@media(max-width:768px){

    .top-bar{
        height:auto;
        flex-direction:column;
    }

    .offer-marquee{
        width:100%;
        padding:8px 10px;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .offer-track{
        font-size:12px;
    }

    .top-contact{
        width:100%;
        justify-content:center;
        gap:15px;
        padding:8px 10px;
        height:auto;
        background:#08452f;
    }

    .top-contact a{
        font-size:12px;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}
.top-bar{
    position:relative;
    z-index:10000;
}
/* =========================
   HEADER FIXED VERSION
========================= */

.site-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

/* HEADER LAYOUT */
.header-wrapper{
    display:grid;
    grid-template-columns:220px 1fr 260px;
    align-items:center;
    height:70px;
    padding:0 20px;
}

/* LOGO */
.logo img{
    height:45px;
    transform:scale(4);
    transform-origin:left center;
}

/* MENU */
.menu{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
}

.menu a,
.product-link{
    text-decoration:none;
    color:#1F2937;
    font-weight:600;
}

.menu a:hover,
.product-link:hover{
    color:#0F6A4A;
}

/* ICONS */
.header-icons{
    display:flex;
    gap:12px;
    justify-content:flex-end;
    align-items:center;
}

.icon-btn{
    width:44px;
    height:44px;
    border:1px solid #E5E7EB;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#1F2937;
}

.icon-btn:hover{
    background:#0F6A4A;
    color:#fff;
}

.signup-btn{
    background:#0F6A4A;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    text-decoration:none;
}

/* =========================
   MEGA MENU
========================= */

.mega-parent{
    position:relative;
}

.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:900px;

    background:#fff;
    display:none;

    grid-template-columns:250px 1fr;
    gap:20px;

    padding:25px;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* desktop hover */
@media(min-width:992px){
    .mega-parent:hover .mega-menu{
        display:grid;
    }
}

/* CATEGORY */
.category-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.cat-item{
    padding:10px;
    cursor:pointer;
    border-radius:6px;
}

.cat-item.active,
.cat-item:hover{
    background:#0F6A4A;
    color:#fff;
}

/* ITEMS */
.items-box{
    display:none;
    flex-direction:column;
    gap:10px;
}

.items-box.active{
    display:flex;
}

.items-box a{
    text-decoration:none;
    color:#555;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
    display:none;
    font-size:32px;
    background:none;
    border:none;
    cursor:pointer;
    position:relative;
    z-index:100001;
}

/* hide desktop/mobile blocks default */
.mobile-only{ display:none; }
.desktop-only{ display:flex; }

/* =========================
   MOBILE FIX
========================= */

@media(max-width:991px){

    .header-wrapper{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
    }

    /* FULL SCREEN MENU */
    .menu{
        position:fixed;
        top:0;
        left:0;

        width:100%;
        height:100vh;

        background:#fff;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:100px 20px 20px;

        gap:15px;

        transform:translateX(-100%);
        transition:0.3s ease;

        z-index:99999;

        overflow-y:auto;
    }

    .menu.active{
        transform:translateX(0);
    }

    .desktop-only{
        display:none !important;
    }

    .mobile-only{
        display:flex !important;
        flex-direction:column;
        gap:12px;
        margin-top:20px;
    }

    /* MOBILE MEGA MENU FIX */
    .mega-menu{
        position:static;
        transform:none;
        width:100%;
        box-shadow:none; 
        padding:0;
        display:none;
        grid-template-columns:1fr;
    }

    .mega-parent.open .mega-menu{
        display:grid;
        margin-top:10px;
    }
}
/* hero banner */
.hero{
    padding:40px 15px;
    background:#f8fafc;
}

/* MAIN WRAPPER */
.hero-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;

    border:2px solid #e5e7eb;
    border-radius:16px;
    padding:20px;
    background:#fff;
    overflow:hidden;
}

/* IMAGE */
.hero-image img{
    width:100%;
    height:100%;
    max-height:450px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

/* CONTENT */
.hero-content h1{
    font-size:48px;
    color:#1F2937;
    margin-bottom:15px;
}

.hero-content p{
    font-size:16px;
    color:#4b5563;
    margin-bottom:25px;
    line-height:1.6;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.btn-primary{
    background:#0F6A4A;
    color:#fff;
}

.btn-primary:hover{
    background:#0b4f38;
}

.btn-secondary{
    background:#D4AF37;
    color:#111;
}

.btn-secondary:hover{
    background:#c19a2e;
}

/* RESPONSIVE */
@media(max-width:991px){
    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-buttons{
        justify-content:center;
    }
}
/* Category Section */
.product-category-section{
    padding:80px 0;
    background:#F8FAFC;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#1F2937;
    margin-bottom:50px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.product-content{
    padding:25px;
    text-align:center;
}

.product-content h3{
    color:#0F6A4A;
    font-size:28px;
    margin-bottom:12px;
}

.product-content p{
    color:#6B7280;
    font-size:15px;
    line-height:1.8;
    text-align:center;
    margin-bottom:18px;
}

.view-btn{
    display:inline-block;
    background:#0F6A4A;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.product-card:hover .view-btn{
    background:#D4AF37;
    color:#111;
}

@media(max-width:991px){

    .category-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:32px;
    }

    .product-card img{
        height:220px;
    }

}
/* product Section */
.featured-products{
    padding:60px 0;
    background:#f8fafc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.featured-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
    color:#1F2937;
}

/* GRID */
.featured-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* CONTENT */
.product-content{
    padding:15px;
}

.product-content h3{
    font-size:18px;
    margin-bottom:8px;
    color:#111827;
}

/* RATING */
.rating{
    color:#f5b301;
    font-size:14px;
    margin-bottom:10px;
}

.rating span{
    color:#6b7280;
    font-size:13px;
}

/* PRICE */
.price-box{
    margin-bottom:15px;
}

.sale-price{
    font-size:20px;
    font-weight:700;
    color:#c00000;
}

.old-price{
    text-decoration:line-through;
    color:#9ca3af;
    margin-left:8px;
}

/* BUTTONS */
.product-btns{
    display:flex;
    gap:10px;
}

/* VIEW BUTTON */
.view-btn{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:25px;
    background:#0F6A4A;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.view-btn:hover{
    background:#0b4f38;
}

/* WHATSAPP BUTTON */
.wa-btn{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:25px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.wa-btn:hover{
    background:#1da851;
}
.img-box{
    position:relative;
}

/* DISCOUNT BADGE */
.discount{
    position:absolute;
    top:10px;
    left:10px;
    background:#c00000;
    color:#fff;
    padding:6px 12px;
    font-size:13px;
    font-weight:700;
    border-radius:6px;
    z-index:2;
}
.discount{
    background:linear-gradient(135deg,#ff0000,#ff5e5e);
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}

/* RESPONSIVE */
@media(max-width:1024px){
    .featured-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:768px){
    .featured-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:500px){
    .featured-grid{
        grid-template-columns:1fr;
    }
}
/* about section */
.about{
    background:#f7f7f7;
    padding:60px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* TITLE */
.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
    font-weight:700;
    color:#1F2937;
}

/* GRID FIXED 4 COLUMN */
.features-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:24px;
}

/* CARD */
.feature-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    text-align:center;
    transition:.3s;

    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.feature-card:hover{
    transform:translateY(-6px);
}

/* TEXT */
.feature-card h3{
    margin-bottom:10px;
    font-size:18px;
    color:#0F6A4A;
}

.feature-card p{
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .features-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .features-grid{
        grid-template-columns:1fr;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonials{
    padding:80px 0;
    background:#fff;
}

.testimonial-subtitle{
    text-align:center;
    color:#6B7280;
    max-width:700px;
    margin:0 auto 50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    border:1px solid #E5E7EB;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
}

.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:15px;
    right:20px;
    font-size:60px;
    color:#D4AF37;
    opacity:.25;
}

.stars{
    color:#D4AF37;
    font-size:18px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
    text-align:left;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-img{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0F6A4A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.client-info h4{
    color:#1F2937;
    margin-bottom:3px;
    font-size:16px;
}

.client-info span{
    color:#6B7280;
    font-size:13px;
}

/* Responsive */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:25px;
    }

}

.faq-item{border-bottom:1px solid #ddd;padding:15px 0}
.faq-q{cursor:pointer;font-weight:700}
.faq-a{display:none;padding-top:10px}

.cta{
padding:80px 0;
background:#0F6A4A;
text-align:center;
color:#fff;
}

.cta h2{
font-size:38px;
margin-bottom:15px;
}

.cta a{
display:inline-block;
margin-top:20px;
padding:15px 35px;
background:#D4AF37;
color:#000;
text-decoration:none;
border-radius:8px;
font-weight:700;
}

/* =========================
   FOOTER STYLES
========================= */

.footer{
    background:#111;
    color:#fff;
    padding:60px 0 0;
}

/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding-bottom:40px;
}

/* BOX */
.footer-box h3{
    color:#D4AF37;
    margin-bottom:15px;
    font-size:18px;
}

.footer-box p{
    color:#ccc;
    font-size:14px;
    line-height:1.6;
}

.footer-box a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#0F6A4A;
    padding-left:5px;
}

/* BOTTOM BAR */
.footer-bottom{
    text-align:center !important;
    padding:15px;
    border-top:1px solid #333;
    font-size:13px;
    color:#aaa;
}
.footer-bottom-links{
    margin-bottom:10px;
}

.footer-bottom-links a{
    color:#aaa;
    text-decoration:none;
    font-size:13px;
    margin:0 10px;
    transition:0.3s;
}

.footer-bottom-links a:hover{
    color:#D4AF37;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-box a:hover{
        padding-left:0;
    }
     .footer-bottom-links a{
        display:block;
        margin:5px 0;
    }
}

.whatsapp{position:fixed;right:20px;bottom:20px;background:#25d366;color:#fff;padding:14px 18px;border-radius:50px;text-decoration:none}
@media(max-width:768px){
.hero h1{font-size:40px}
}
/* =========================
   Item page k liye
========================= */

.product-detail-section{
padding:80px 0;
background:#fff;
}

.product-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.main-image{
border:1px solid #eee;
padding:20px;
border-radius:15px;
}

.main-image img{
width:100%;
display:block;
}

.thumbs{
display:flex;
gap:12px;
margin-top:15px;
}

.thumbs img{
width:80px;
height:80px;
object-fit:cover;
border:1px solid #ddd;
padding:5px;
cursor:pointer;
border-radius:10px;
}

.product-category{
background:#0F6A4A;
color:#fff;
padding:6px 15px;
border-radius:30px;
font-size:13px;
}

.product-info h1{
font-size:42px;
margin:20px 0;
color:#1F2937;
}

.price-box{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.new-price{
font-size:34px;
font-weight:700;
color:#0F6A4A;
}

.old-price{
text-decoration:line-through;
color:#999;
font-size:22px;
}

.product-short{
line-height:1.8;
color:#666;
margin-bottom:25px;
}

.product-meta p{
margin-bottom:10px;
}

.product-actions{
display:flex;
gap:15px;
margin-top:30px;
}

.btn-enquiry{
background:#0F6A4A;
color:#fff;
padding:14px 30px;
text-decoration:none;
border-radius:8px;
}

.btn-whatsapp{
background:#25D366;
color:#fff;
padding:14px 30px;
text-decoration:none;
border-radius:8px;
}

.product-description,
.why-product,
.specifications{
padding:80px 0;
}

.product-description h2,
.why-product h2,
.specifications h2{
font-size:34px;
margin-bottom:25px;
}

.product-description ul{
margin-top:20px;
padding-left:20px;
}

.product-description li{
margin-bottom:12px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-box{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.why-box h3{
margin-bottom:10px;
}

.specifications table{
width:100%;
border-collapse:collapse;
}

.specifications td{
padding:15px;
border:1px solid #eee;
}

.product-cta{
padding:80px 0;
background:#0F6A4A;
text-align:center;
color:#fff;
}

.product-cta h2{
font-size:38px;
margin-bottom:15px;
}

.product-cta a{
display:inline-block;
margin-top:20px;
padding:15px 35px;
background:#D4AF37;
color:#000;
text-decoration:none;
border-radius:8px;
font-weight:700;
}

@media(max-width:991px){

.product-wrapper{
grid-template-columns:1fr;
}

.product-info h1{
font-size:32px;
}

.why-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:576px){

.why-grid{
grid-template-columns:1fr;
}

.product-actions{
flex-direction:column;
}

.new-price{
font-size:28px;
}

}

