.custom-bullet {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}


.custom-bullet:before {
    content: '✔'; /* Unicode for solid circle */
    position: top;
    left: 0;
	padding-right: 7px;
    color: orange;
    font-size: 20px;
}



.product-container {
	
	  padding-top: 40px;
	
	font-family: Arial, sans-serif;
    margin: 0;
    
    background-color: #f9f9f9;
    color: #333;
	
	
    display: flex;
    flex-wrap: wrap;
    max-width: 1050px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-image {
    flex: 2;
    min-width: 400px;
    background: #f7e2d2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-details {
    flex: 2;
    padding-left: 90px;
    display: flex;
    flex-direction: column;
    
}

.product-title {
    font-size: 32px;
	padding-left: 20px;
    margin-bottom: 10px;
    color: black;
}

.product-description {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #555;
}

.product-price {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.buy-now-button {
    padding: 15px 20px;
    font-size: 20px;
    color: #fff;
    background-color: #ff5d22;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.buy-now-button:hover {
    background-color: #b0441c;
}

/* Responsive Design */
@media (max-width: 768px) {
	
	
	
	
	.product-container {
	
	  padding-top: 0px;
	
	
}

	
	.product-title {
      padding-top: 15px;
}

	
	.product-details {
   
    padding-left: 10px;

    
}
	
	.product-image {
   
    min-width: 270px;
   
 padding: 10px;
	
	
    .product-container {
        flex-direction: column;
    }

    .product-image, .product-details {
        padding: 15px;
    }

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

    .product-description {
        font-size: 14px;
    }

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

    .buy-now-button {
        font-size: 14px;
    }
}
