/* ======================================================
   PRODUCT HERO
====================================================== */

.product-hero{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    color:#fff;
    background:#0d4d2b;
}

.hero-bg{
    position:absolute;
    inset:0;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,25,.92) 0%,
        rgba(0,55,25,.75) 45%,
        rgba(0,55,25,.20) 100%
    );
}

.product-hero .container{
    position:relative;
    z-index:2;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.hero-content{
    flex:1;
}

.hero-image{
    flex:1;
    text-align:right;
}

.hero-image img{
    max-width:500px;
    width:100%;
}

.hero-label{
    display:inline-block;
    background:#7dbf43;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.hero-content h1{
    font-size:56px;
    margin-bottom:15px;
}

.hero-content h2{
    font-size:28px;
    color:#dff5d0;
    margin-bottom:25px;
}

.hero-description{
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#7dbf43;
    color:#fff;
}

.btn-primary:hover{
    background:#fff;
    color:#0d4d2b;
}

.btn-secondary{
    background:#fff;
    color:#0d4d2b;
}

.btn-secondary:hover{
    background:#7dbf43;
    color:#fff;
}
.product-grid{
    display:grid;
    grid-template-columns:260px minmax(0,1fr) 280px;
    gap:30px;
    align-items:start;
}


.product-sidebar-left,
.product-sidebar-right{
    position:sticky;
    top:110px;
}

.product-main{
    min-width:0;
}

@media(max-width:1200px){
    .product-grid{
        grid-template-columns:1fr;
    }

    .product-sidebar-left,
    .product-sidebar-right{
        position:relative;
        top:auto;
    }
}
/*==================================================
LEFT SIDEBAR
==================================================*/

.product-sidebar{

    position:sticky;
    top:120px;

}

.sidebar-box{

    background:#fff;

    border-radius:12px;

    padding:25px;

    margin-bottom:25px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.sidebar-title{

    font-size:22px;

    margin-bottom:20px;

    color:#0b5d2a;

}

.product-menu{

    list-style:none;

    padding:0;

    margin:0;

}

.product-menu li{

    margin-bottom:8px;

}

.product-menu li a{

    display:block;

    padding:12px 18px;

    border-radius:8px;

    color:#333;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

.product-menu li a:hover{

    background:#f1f8f1;

    color:#0b5d2a;

}

.product-menu li.active a{

    background:#0b5d2a;

    color:#fff;

}

.download-box{

    background:#f7fbf7;

}

.download-btn{

    display:block;

    margin-top:15px;

    text-align:center;

    background:#0b5d2a;

    color:#fff;

    padding:14px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

}

.download-btn:hover{

    background:#15803d;

}

.contact-box{

    text-align:center;

}

.contact-btn{

    display:inline-block;

    margin-top:20px;

    background:#7DBF43;

    color:#fff;

    padding:14px 28px;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;

}

.contact-btn:hover{

    background:#0b5d2a;

}
/*=============================================
RIGHT SIDEBAR
=============================================*/

.product-sidebar-right{

align-self:start;

}

.product-sidebar-right-wrap{

position:sticky;

top:120px;

display:flex;

flex-direction:column;

gap:20px;

max-height:calc(100vh - 140px);

overflow-y:auto;

padding-right:6px;

}

.sidebar-card{

    background:#fff;

    border-radius:14px;

    padding:25px;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.sidebar-card h3{

    font-size:20px;

    color:#0b5d2a;

    margin-bottom:18px;

}

.page-nav{

    list-style:none;

    margin:0;

    padding:0;

}

.page-nav li{

    margin-bottom:10px;

}

.page-nav li a{

    display:block;

    padding:10px 15px;

    border-radius:8px;

    color:#444;

    text-decoration:none;

    transition:.3s;

}

.page-nav li a:hover{

    background:#e8f6e8;

    color:#0b5d2a;

}

.sidebar-btn{

    display:block;

    text-align:center;

    margin-bottom:12px;

    padding:13px;

    border-radius:8px;

    background:#0b5d2a;

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

.sidebar-btn:hover{

    background:#7dbf43;

}

.certificate-list{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.certificate-list span{

    padding:10px;

    background:#f6faf6;

    border-radius:8px;

    font-size:15px;

}

.sidebar-contact{

    text-align:center;

}

.sidebar-contact-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 28px;

    background:#7dbf43;

    color:#fff;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

}

.sidebar-contact-btn:hover{

    background:#0b5d2a;

}
/*=============================
OVERVIEW
==============================*/

.product-overview{
    margin-bottom:60px;
}

.overview-card{
    background:#fff;
    border-radius:18px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.overview-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:45px;
}

.section-title span{
    display:inline-block;
    color:#79c52b;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:8px;
}

.section-title h2{
    margin:0 0 20px;
    color:#136433;
    font-size:34px;
    font-weight:700;
}

.overview-text p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.feature-card{
    background:#f7fbf4;
    border:1px solid #dcefd4;
    border-radius:16px;
    padding:30px;
}

.feature-card h3{
    margin:0 0 20px;
    color:#136433;
}

.feature-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.feature-card li{
    padding:10px 0;
    border-bottom:1px solid #e6efe1;
}

.feature-card li:last-child{
    border-bottom:none;
}

@media(max-width:991px){

.overview-grid{
    grid-template-columns:1fr;
}

.overview-card{
    padding:30px;
}

}
/*=============================
SPECIFICATIONS
==============================*/

.product-specifications{
    margin-bottom:60px;
}

.spec-card{
    background:#fff;
    border-radius:18px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.spec-table{
    width:100%;
    border-collapse:collapse;
}

.spec-table th{
    width:260px;
    background:#f6faf4;
    color:#136433;
    padding:18px;
    text-align:left;
    border:1px solid #e8ece9;
}

.spec-table td{
    padding:18px;
    border:1px solid #e8ece9;
}

.spec-table tr:nth-child(even){
    background:#fafafa;
}

.spec-content table{
    width:100%;
    border-collapse:collapse;
}

.spec-content table td,
.spec-content table th{
    padding:16px;
    border:1px solid #e8ece9;
}

@media(max-width:768px){

.spec-card{
    padding:25px;
}

.spec-table th,
.spec-table td{
    display:block;
    width:100%;
}

}
/*==============================
APPLICATIONS
==============================*/

.product-applications{
    margin-bottom:60px;
}

.application-card{
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.application-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    width:100%;
}

.application-item{
    background:#f8fbf7;
    border:1px solid #e3eee3;
    border-radius:16px;
    padding:30px;
    text-align:center;
    transition:.3s;
    width:100%;
    box-sizing:border-box;
}

.application-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.application-icon{
    font-size:42px;
    margin-bottom:18px;
}

.application-item h3{
    margin-bottom:12px;
    color:#136433;
}

.application-item p{
    color:#666;
    line-height:1.7;
}

@media(max-width:992px){

.application-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.application-grid{
    grid-template-columns:1fr;
}

.application-card{
    padding:30px;
}

}
/*==============================
BENEFITS
==============================*/

.product-benefits{
    margin-bottom:60px;
}

.benefit-card{
    background:#fff;
    border-radius:18px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.benefit-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:25px;
    border:1px solid #e6efe5;
    border-radius:16px;
    background:#f9fcf8;
    transition:.3s;
}

.benefit-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.benefit-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#79c52b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:700;
    flex-shrink:0;
}

.benefit-item h3{
    margin:0 0 8px;
    color:#136433;
    font-size:20px;
}

.benefit-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

@media(max-width:991px){

.benefit-grid{
    grid-template-columns:1fr;
}

.benefit-card{
    padding:30px;
}

}
/*==============================
CERTIFICATIONS
==============================*/

.product-certifications{
margin-bottom:60px;
}

.cert-card{
background:#fff;
padding:45px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.cert-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.cert-item{
text-align:center;
padding:30px;
background:#f8fbf7;
border-radius:16px;
border:1px solid #e4efe4;
transition:.3s;
}

.cert-item:hover{
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.cert-icon{
font-size:42px;
margin-bottom:15px;
}

.cert-item h4{
margin:0;
color:#136433;
}

@media(max-width:992px){

.cert-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.cert-grid{
grid-template-columns:1fr;
}

.cert-card{
padding:30px;
}

}
/*==============================
FAQ
==============================*/

.product-faq{
margin-bottom:60px;
}

.faq-card{
background:#fff;
padding:45px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.faq-item{
margin-bottom:15px;
border:1px solid #e6ece8;
border-radius:12px;
overflow:hidden;
}

.faq-item summary{
cursor:pointer;
padding:20px;
font-weight:600;
background:#f7fbf7;
}

.faq-item div{
padding:20px;
line-height:1.8;
background:#fff;
}

@media(max-width:768px){

.faq-card{
padding:30px;
}

}
/*==============================
RELATED PRODUCTS
==============================*/

.related-products{

margin-bottom:60px;

}

.related-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.related-card{

display:block;

text-decoration:none;

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.related-card:hover{

transform:translateY(-8px);

}

.related-card img{

width:100%;

height:230px;

object-fit:cover;

}

.related-card h3{

padding:20px;

color:#136433;

}

.related-card span{

padding:0 20px 20px;

display:block;

color:#79c52b;

font-weight:700;

}

@media(max-width:991px){

.related-grid{

grid-template-columns:1fr;

}

}
/*==============================
CTA
==============================*/

.product-cta{

margin:60px 0;

}

.cta-content{

background:linear-gradient(135deg,#136433,#79c52b);

padding:60px;

border-radius:20px;

color:#fff;

}

.cta-content .section-title span,

.cta-content .section-title h2,

.cta-content p{

color:#fff;

}

.cta-form{

margin-top:35px;

}
.product-sidebar-right-wrap::-webkit-scrollbar{

width:6px;

}

.product-sidebar-right-wrap::-webkit-scrollbar-thumb{

background:#79c52b;

border-radius:20px;

}
@media (max-width:1200px){

.product-grid{

grid-template-columns:260px 1fr;

}

.product-sidebar-right{

grid-column:1/-1;

margin-top:40px;

}

.product-sidebar-right-wrap{
    position:sticky;
    top:120px;
    overflow:visible;
    max-height:none;
}

}
Mobile
@media (max-width:768px){

.product-grid{

grid-template-columns:1fr;

}

.product-sidebar-left{

order:2;

}

.product-main-content{
    min-width:0;
    width:100%;
}


.product-sidebar-right{

order:3;

}

}
/*=====================================
DOWNLOADS
======================================*/

.product-downloads{

margin-bottom:70px;

}

.download-card{

background:#fff;

padding:45px;

border-radius:22px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.download-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:25px;

margin-top:35px;

}

.download-item{

display:flex;

gap:22px;

align-items:flex-start;

padding:28px;

border-radius:18px;

border:1px solid #e5efe4;

background:#f9fcf8;

text-decoration:none;

transition:.35s;

}

.download-item:hover{

transform:translateY(-6px);

box-shadow:0 15px 30px rgba(0,0,0,.08);

border-color:#79c52b;

}

.download-icon{

width:65px;

height:65px;

background:#79c52b;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

color:#fff;

flex-shrink:0;

}

.download-info{

flex:1;

}

.download-info h3{

margin-bottom:12px;

color:#136433;

font-size:24px;

}

.download-info p{

color:#666;

line-height:1.8;

margin-bottom:18px;

}

.download-info span{

font-weight:700;

color:#79c52b;

}

.download-empty{

text-align:center;

padding:60px 30px;

border:2px dashed #cfe6c7;

border-radius:20px;

background:#f9fcf8;

}

.empty-icon{

font-size:60px;

margin-bottom:20px;

}

.download-empty h3{

color:#136433;

margin-bottom:15px;

}

.download-empty p{

max-width:500px;

margin:0 auto 30px;

line-height:1.8;

color:#666;

}

@media(max-width:768px){

.download-card{

padding:30px;

}

.download-grid{

grid-template-columns:1fr;

}

}