.product-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 360px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
    position: relative;
    margin: 6px;
}

.featured-products {
    display: flex;
}
a.button.alt.add_to_cart_button:hover {
    background-color: white;
    color: black;
    border: 1px solid #ffb61d;
}
a.button.alt.add_to_cart_button{
    color: black;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
/*     justify-content: space-between; */
    max-width: 100%;
    margin: 0 auto;
    gap: 0px;
}

.product-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-image img {
	width: 100%;
    height: auto;
}

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ff5722;
    cursor: pointer;
}

.wishlist-icon:hover {
    color: #e64a19;
}

.product-info {
    text-align: left;
    /* padding: 15px; */
}

.product-rating {
    margin-bottom: 10px;
    font-size: 24px;
    color: #FCBB4D;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000 !important;
    margin: 10px 0;
	text-transform: uppercase;
}

.product-title a {
    text-decoration: none;
    color: #000 !important;
}

.product-title a:hover {
    color: #ff5722;
}

.product-price-container {
    display: flex;
    align-items: end;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    margin-right: 10px;
}

.product-price .woocommerce-Price-amount {
    color: #000;
}

.product-price .woocommerce-Price-currencySymbol {
    color: #ffb61d;
    margin-right: 2px;
}

.product-actions {
    display: flex;
    align-items: end;
    padding: 0px;
    /* margin-left: 180px; */
}

.product-actions .button {
   background-color: white !important;
    border: 1px solid #eee !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    
}

.product-actions .button:hover {
    background-color: #ffb61d !important;
    color: #000000 !important;
}

.product-actions .button img {
    width: 25px;
    height: 25px;
}
