/*
	Theme Name:   Jannah Child
	Theme URI:    http://jannah.tielabs.com/
	Description:  Jannh Child Theme
	Author:       TieLabs
	Author URI:   https://tielabs.com
	Template:     jannah
	Version:      1.0.2
	License:      license purchased
	License URI:  http://themeforest.net/licenses/regular_extended
	Tags:         Tags: two-columns, buddypress, left-sidebar, right-sidebar, custom-menu, editor-style, featured-images, full-width-template, microformats, rtl-language-support, sticky-post, threaded-comments, translation-ready
	Text Domain:  jannah-child
*/


/* write custom css after this line */



///////////////


.products-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 20px;
 padding: 20px;
}
.product-card {
 border: 1px solid #ddd;
 padding: 15px;
 text-align: center;
 background-color: #f9f9f9;
 border-radius: 8px;
 transition: transform 0.2s ease;
}
.product-card:hover {
 transform: scale(1.05);
}
.single-product img {
 max-width: 100%;
 height: auto;
 border-radius: 8px;
}
.product-details {
 margin-top: 20px;
 font-size: 16px;
 line-height: 1.6;
}
.buy-now {
 display: inline-block;
●
●
 background-color: #ff4081;
 color: #fff;
 padding: 10px 20px;
 text-transform: uppercase;
 font-weight: bold;
 border: none;
 border-radius: 5px;
 cursor: pointer;
}
.buy-now:hover {
 background-color: #e0366e;
}