.single_add_to_cart_button{
 background-color:#3ac517!important;
}

/* Single Row Reviews Grid */
.piececool-reviews-grid {
    display: flex; /* Horizontal layout */
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 20px; /* Space between review items */
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 10px 0; /* Add vertical padding */
    scrollbar-width: thin; /* For Firefox */
}

/* Individual Review Item */
.piececool-review-item {
    flex: 0 0 300px; /* Fixed width for each review */
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

/* Link Style */
.piececool-review-link {
    text-decoration: none;
    color: inherit; /* Use the same color as the parent */
    display: block; /* Make the link cover the entire review item */
}

/* Rating (Stars) */
.piececool-review-rating {
    font-size: 18px;
    color: #ffcc00; /* Gold color for stars */
    margin-bottom: 10px;
}

/* Review Content */
.piececool-review-content {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    line-height: 1.5em; /* Improve readability */
    overflow: hidden; /* Prevent content overflow */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
    display: -webkit-box; /* Required for multi-line truncation */
    -webkit-line-clamp: 3; /* Limit to 3 lines (adjust as needed) */
    -webkit-box-orient: vertical; /* Required for multi-line truncation */
	min-height: 75px;
}

/* Review Author */
.piececool-review-author {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* Product Title (Optional) */
.piececool-product-title {
    margin-bottom: .5em;
    padding: 0;
    font-size: 1em;
    min-height: 45px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
}

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

.piececool-product-title a:hover {
    text-decoration: underline;
    color: #003399;
}

/* Optional: Customize Scrollbar */
.piececool-reviews-grid::-webkit-scrollbar {
    height: 6px;
    background: #eee;
}
.piececool-reviews-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
@media (min-width:900px) {
.mobile-img {
        display: none;
    }
    .desktop-img {
        display: block;
    }
}
@media only screen and (max-width: 908px) {
    .desktop-img {
        display: none;
    }
.mobile-img {
        display: block;
    }
}
@media (max-width: 768px) {
    .ast-theme-transparent-header #masthead {
        position: relative!important;
        left: 0;
        right: 0;
    }
}
