/* ===================================
   BambooHack Commerce Pro
   Premium Frontend Styles
===================================*/

.bhcp-section{
    margin:40px 0;
    padding:25px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.bhcp-section h2{
    margin:0 0 20px;
    font-size:28px;
    font-weight:700;
    line-height:1.3;
}

.bhcp-hero{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    align-items:center;
}

.bhcp-hero-image,
.bhcp-hero-content{
    flex:1;
    min-width:300px;
}

.bhcp-hero-image img{
    width:100%;
    border-radius:12px;
}

.bhcp-price{
    font-size:30px;
    color:#2e7d32;
    font-weight:700;
    margin:15px 0;
}

.bhcp-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.bhcp-gallery-item img{
    width:100%;
    border-radius:10px;
    transition:.3s;
    cursor:pointer;
}

.bhcp-gallery-item img:hover{
    transform:scale(1.05);
}

.bhcp-highlights ul,
.bhcp-shipping ul,
.bhcp-why-us ul,
.bhcp-care ul,
.bhcp-features ul{
    margin:0;
    padding-left:20px;
}

.bhcp-highlights li,
.bhcp-shipping li,
.bhcp-why-us li,
.bhcp-care li,
.bhcp-features li{
    margin-bottom:10px;
}

.bhcp-specifications table{
    width:100%;
}

.bhcp-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.bhcp-badge{
    background:#f5f5f5;
    border-radius:20px;
    padding:8px 15px;
    font-size:14px;
}

.bhcp-icon-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.bhcp-icon-box{
    text-align:center;
    padding:20px;
    border:1px solid #ececec;
    border-radius:10px;
    font-size:28px;
}

.bhcp-icon-box h4{
    margin-top:10px;
    font-size:16px;
}

.bhcp-footer-cta{
    text-align:center;
    background:#f8f8f8;
}

.bhcp-footer-cta .button{
    margin-top:15px;
}

.bhcp-faq details{
    margin-bottom:12px;
    padding:12px;
    border:1px solid #eee;
    border-radius:8px;
}

.bhcp-faq summary{
    cursor:pointer;
    font-weight:600;
}

.bhcp-sticky-cart{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    background:#fff;
    border-top:1px solid #ddd;
    padding:15px;
    z-index:9999;
    display:none;
}

@media(max-width:768px){

.bhcp-section{
    padding:18px;
}

.bhcp-section h2{
    font-size:22px;
}

.bhcp-price{
    font-size:24px;
}

.bhcp-sticky-cart{
    display:block;
}

}