.product-title{
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
}

.product-short-desc{
    color:#666;
    line-height:1.8;
}

.main-product-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.breadcrumb{

	background:transparent;

	margin-bottom:0;

}

.breadcrumb a{

	text-decoration:none;

	color:#2E7D32;

	font-weight:500;

}

.breadcrumb-item.active{

	color:#555;

}

.product-meta{

	margin:20px 0;

	padding:18px 20px;

	background:#f8f9fa;

	border-radius:12px;

	display:grid;

	grid-template-columns:repeat(2,1fr);

	gap:10px 25px;

}

.product-meta div{

	font-size:15px;

	color:#444;

}

.product-meta strong{

	color:#222;

}

.product-price{
    font-size:36px;
    font-weight:700;
    color:#2E7D32;
    margin:20px 0;
}

.qty-input{
    max-width:120px;
}

.product-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cart-btn,
.buy-btn{
    padding:12px 25px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.cart-btn{
    background:#2E7D32;
    color:#fff;
}

.buy-btn{
    background:#222;
    color:#fff;
}

.cart-btn:hover{
    background:#256428;
    color:#fff;
}

.buy-btn:hover{
    color:#fff;
}

.product-content-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.product-content-box h1,
.product-content-box h2,
.product-content-box h3,
.product-content-box h4,
.product-content-box h5,
.product-content-box h6{

    font-family:inherit;
    font-size:18px;
    font-weight:600;
    letter-spacing:-0.2px;
    color:#222;
    line-height:1.5;
    margin:24px 0 12px;

}

.product-content-box h2,
.product-content-box h3,
.product-content-box h4,
.product-content-box h5,
.product-content-box h6{

    margin-top:35px;

}

.product-content-box h1:first-child,
.product-content-box h2:first-child,
.product-content-box h3:first-child,
.product-content-box h4:first-child,
.product-content-box h5:first-child,
.product-content-box h6:first-child{

    margin-top:0;

}

.product-content-box h1:first-child,
.product-content-box h2:first-child,
.product-content-box h3:first-child,
.product-content-box h4:first-child,
.product-content-box h5:first-child,
.product-content-box h6:first-child{

    margin-top:0;

}

.product-content-box p,
.product-content-box li{

    font-size:16px;
    color:#555;
    line-height:1.9;

}

.product-content-box ul,
.product-content-box ol{

    padding-left:20px;
    margin-bottom:20px;

}

.product-content-box img{

    max-width:100%;
    height:auto;

}

.product-content-box table{

    width:100%;
    margin-bottom:20px;

}

.product-price-small{
    font-size:24px;
    color:#2E7D32;
    font-weight:700;
    margin-bottom:15px;
}

@media(max-width:768px){
	
	.product-meta{

		grid-template-columns:1fr;

	}

    .product-title{
        font-size:28px;
    }

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

    .product-content-box{
        padding:20px;
    }

}

/* ==========================================
   RELATED PRODUCTS
========================================== */

.related-products .product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
}

.related-products .product-card img{
    width:100%;
    height:250px;
    object-fit:contain;
    padding:15px;
    background:#fff;
}

.related-products .product-info{
    padding:20px;
    text-align:center;
}

.related-products .product-info h5{
    font-weight:700;
    margin-bottom:10px;
}

.related-products .join-btn{
    width:100%;
}

.main-image-box{
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.gallery-thumbnails{
    display:flex;
    gap:12px;
    margin-top:20px;
    flex-wrap:wrap;
}

.gallery-thumb{
    width:90px;
    height:90px;
    object-fit:contain;
    border:2px solid #e5e5e5;
    border-radius:12px;
    padding:6px;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}

.gallery-thumb:hover{
    border-color:#2E7D32;
    transform:scale(1.05);
}

@media(max-width:768px){

    .related-products .product-card img{
        height:180px;
    }

}