/* Start custom CSS for html, class: .elementor-element-2f7b1fd */.customer-reviews-section {
    padding: 50px 20px;
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    text-align: center;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-container h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
}

.review-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.customer-info {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700; /* Gold color for stars */
}

.star {
    font-size: 1.2em;
    margin-right: 2px;
}

.review-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.review-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 0.9em;
    color: #888;
    display: block; /* Ensures it takes its own line */
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-reviews-section {
        padding: 30px 15px;
    }

    .reviews-container h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
    }

    .customer-name {
        font-size: 1.1em;
    }

    .review-text {
        font-size: 1em;
    }
}/* End custom CSS */