.homepage-content{
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Headings */
.homepage-content h1{
    font-size: 36px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 700;
}

.homepage-content h2{
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.homepage-content h3{
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Paragraph */
.homepage-content p{
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
}

/* List Styling */
.homepage-content ul{
    padding-left: 20px;
    margin-bottom: 20px;
}

.homepage-content li{
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

/* Bold text highlight */
.homepage-content strong{
    color: #000;
}

/* Links */
.homepage-content a{
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

.homepage-content a:hover{
    text-decoration: underline;
}

/* Section spacing */
.homepage-content h2 + p{
    margin-top: 5px;
}
.clsaddtocart {
    width: 100%;
    padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 16px);
    margin-bottom: 7px;
    margin-top: 0px;
    background: #f17287;
    color: #FFF;
    border: none;
    border-radius: 6px;
    font-size: clamp(12px, 1.8vw, 13px);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.deal-card__content{
    padding: 0px 10px !important;
}
.deal-card__price span{
    color: #f17287 !important;
}
.clsbtbbox{
    padding: 0px 10px;
}
.deal-card__title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* maximum 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width:768px){

	.homepage-content{
	    padding: 25px 15px;
	}

	.homepage-content h1{
	    font-size: 28px;
	}

	.homepage-content h2{
	    font-size: 22px;
	}

	.homepage-content p{
	    font-size: 15px;
	}

}