.opinions__main {
	text-align: center;
}

.opinions__main .text {
	margin: 3.2rem 0;
}

.opinions__main .btn {
	margin-bottom: 2.4rem;
}

/* Stylizacja tła Pop-upa */
.review-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.review-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.review-modal .title-6 {
    margin-bottom: 20px;
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    direction: row;
}

.star {
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
    font-style: normal;
}

.star.active, .star.hover {
    color: #FFD700;
}

.hidden-form {
    display: none;
}

.feedback-text {
	margin-bottom: 1.6rem;
}

#feedbackEmail {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
	margin-bottom: 1.6rem;
}

#feedbackMessage {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

#feedbackEmail:focus-visible, #feedbackMessage:focus-visible {
	outline: 2px solid var(--color-1);
}

.modal-btn {
    width: 100%;
}

.success-msg {
    color: green;
    font-weight: bold;
    margin-top: 15px;
}