.latest-products{
	margin-left: 0;
    display: flex;
    width: 100%;
    gap: 15px;
}
ul.products li.product h2 {
    font-size: 16px !important;
    font-weight: 700;
    color: #333333;
    margin: 10px 0 5px !important;
    text-transform: capitalize;
	padding-top: 0px !important;
	line-height: 1.4;
}
ul.products li.product a {
    text-decoration: none;
}
ul.products li.product a.button {
    width: 100% !important;
    margin-top: 0px !important;
    border: none;
    min-width: 100% !important;
    max-width: 100% !important;
    display: inline-block;
    margin-bottom: 0;
	padding: 0px !important;
}

.random-product-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
	margin-left: 0px;
}
.random-product-categories li {
    text-align: center;
}
.random-product-categories li .image-wrap {
    width: 100%;        
    height: 100%;  
	min-width: 120px;       
    min-height: 120px;  
	max-width: 180px;       
    max-height: 180px;      
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
	border: 2px solid #f7f7f7; 
}
.random-product-categories li .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; 
}
.random-product-categories li:hover .image-wrap img {
    transform: scale(1.15);
}
.random-product-categories h3 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0px;
    font-weight: 600;
}


.custom-testimonial-slider {
    margin: 0px 0;
}
.testimonial-card {
    padding: 15px;
}
.testimonial-inner {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 1px solid #ececec;
}
.testimonial-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.testimonial-img{
	margin: auto auto 20px auto;
}
.testimonial-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4CAF50; 
    margin-bottom: 15px;
}
.testimonial-stars {
    font-size: 22px;
    color: #FFD700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.testimonial-content {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 90px;
}
.testimonial-author {
    font-weight: bold;
    font-size: 16px;
    color: #2e7d32;
}
@media all and (max-width: 400px) {
	.latest-products {
		display: block !important;
	}
	ul.products li.product img {
		width: 100% !important;
	}
}
/* Arrows */
.latest-products .slick-prev,
.latest-products .slick-next {
	position: absolute;
	top: 45%;
	z-index: 10;
	background: #2c7a3f;
	color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	border: none;
	cursor: pointer;
}

.latest-products .slick-prev { left: -20px; }
.latest-products .slick-next { right: -20px; }

/* Dots */
.latest-products .slick-dots {
	bottom: -30px;
}

.latest-products .slick-dots li button:before {
	font-size: 10px;
	color: #2c7a3f;
}

.latest-products .slick-dots li.slick-active button:before {
	color: #2c7a3f;
}
/* Space between slides */
.latest-products .slick-slide {
	margin: 0 12px;   /* gap size */
}

/* Fix width issue caused by margins */
.latest-products .slick-list {
	margin: 0 -12px;
}
@media (max-width: 768px) {
	.latest-products .slick-slide {
		margin: 0 6px;
	}
	.latest-products .slick-list {
		margin: 0 -6px;
	}
}
.latest-products .slick-arrow {
    font-size: 26px !important;
    line-height: 1 !important;
}
.latest-products h2{
	height: 48px;
}
.latest-products li.product img{
	width: 100%;
}
.random-product-categories .slick-prev,
.random-product-categories .slick-next {
	position: absolute;
	top: 45%;
	z-index: 10;
	background: #2c7a3f;
	color: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	border: none;
	cursor: pointer;
}

.random-product-categories .slick-prev { left: -20px; }
.random-product-categories .slick-next { right: -20px; }
.random-product-categories .slick-arrow {
    font-size: 26px !important;
    line-height: 1 !important;
}