/*YOUR CUSTOM STYLES*/
/* Product Card Styles */
.product-thumb {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    padding: 15px;
    margin-bottom: 20px;
}
.product-thumb:hover {
    transform: scale(1.02);
}

/* Product Image */
.product-header img {
    width: 100%;
    border-radius: 8px;
}

/* Product Title */
.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 10px 0;
}

/* Ratings */
.icon-group {
    text-align: center;
    color: #FFD700; /* Gold Stars */
    margin-bottom: 10px;
}

/* Product Details */
.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Pricing */
.product-pricing {
    text-align: center;
    margin-bottom: 15px;
}
.product-pricing span {
    display: block;
    font-size: 1.2rem;
}

/* Earnings Highlight */
.product-earnings {
    background: #28a745;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    border-radius: 5px;
    margin: 10px 0;
}

/* Call to Action Buttons */
.product-actions {
    text-align: center;
}
.product-actions .btn {
    margin: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}
