.review-widget-container-e5d4b1ed {
    font-family: inherit;
    width: 100%;
}

/* Header */
.rw-header {
    text-align: center;
    margin-bottom: 40px;
}
.rw-header-subtitle {
    color: #e67e22; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 10px;
}
.rw-header-title {
    color: #1a2b4c; 
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
}

/* Grid Layout */
.rw-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}
.rw-grid-cols-1 { grid-template-columns: 1fr; }
.rw-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.rw-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.rw-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .rw-grid-cols-3, .rw-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .rw-grid-cols-2, .rw-grid-cols-3, .rw-grid-cols-4 { grid-template-columns: 1fr; }
}

/* Review Item Card */
.rw-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.rw-item-rating {
    margin-bottom: 15px;
}
.rw-star {
    color: #f39c12; 
    font-size: 1.2em;
    margin-right: 2px;
}
.rw-star-empty {
    color: #e0e0e0 !important;
}
.rw-item-text {
    color: #444;
    font-size: 1.05em;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}
.rw-item-meta {
    margin-top: auto;
}
.rw-item-name {
    font-weight: 700;
    color: #1a2b4c;
    font-size: 1.1em;
}
.rw-item-location {
    color: #888;
    font-size: 0.9em;
}

/* Trigger Button */
.rw-action-area {
    text-align: center;
}
.rw-trigger-btn {
    background: #1a2b4c;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.rw-trigger-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Modal Styling */
.rw-modal-e5d4b1ed {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rw-modal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}
.rw-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.rw-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}
.rw-modal-close:hover { color: #333; }
.rw-modal-title {
    margin-top: 0; margin-bottom: 25px;
    text-align: center;
    color: #1a2b4c;
}

/* Modal Form */
.rw-form { display: flex; flex-direction: column; gap: 15px; }
.rw-rating-selector { text-align: center; font-size: 30px; cursor: pointer; }
.rw-star-select { transition: color 0.2s; }
.rw-star-select:hover, .rw-star-select.active, .rw-star-select:hover ~ .rw-star-select { color: #f39c12; }
.rw-rating-selector .rw-star-select:hover ~ .rw-star-select { color: #e0e0e0; }

.rw-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
}
textarea.rw-input { min-height: 100px; resize: vertical; }

.rw-submit-btn {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}
.rw-submit-btn:hover { opacity: 0.9; }
.rw-msg { text-align: center; margin-top: 10px; }