/**
 * Traveller Review Plugin - Frontend Styles
 * Professional Premium Design
 */

/* Review Form Container */
.traveller-review-form-container {
    max-width: 1000px;
    margin: 10px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.review-form-header {
    color: #11315f;
    padding: 15px 40px 13px 40px;
    text-align: center;
}

.review-form-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.review-form-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Review Form */
.traveller-review-form {
    padding: 40px;
    display: block;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
    display: block;
    margin-bottom: 10px !important;
}

/* Grid layout for name and email fields */
.traveller-review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

/* Specific styling for location and title grid row */
.traveller-review-form .form-row.location-title-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.traveller-review-form .form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333333;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 16px 20px !important;
    border: 1px solid #bfbfbf;
    border-radius: 8px !important;
    font-size: 15px;
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: block;
    float: none;
    clear: both;
}

/* Ensure name and email fields are full width */
.form-group input[type="text"],
.form-group input[type="email"] {
    max-width: 100%;
    display: block;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed #ecf0f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

/* Image Upload Zone */
.image-upload-zone {
    width: 100%;
    padding: 40px 20px;
    border: 2px dashed #ecf0f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #f8f9fa;
}

.image-upload-zone:hover,
.image-upload-zone.drag-over {
    border-color: #3498db;
    background: #e8f4fd;
}

.upload-zone-content svg {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.upload-zone-content p {
    margin: 0 0 5px 0;
    color: #333333;
    font-size: 15px;
}

.upload-zone-content .browse-link {
    color: #3498db;
    text-decoration: underline;
    cursor: pointer;
}

.upload-zone-content small {
    color: #7f8c8d;
    font-size: 13px;
}

/* Image Preview Container */
.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.image-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ecf0f1;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item .remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.image-preview-item .remove-image:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 13px;
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    gap: 5px;
    cursor: pointer;
}

.star-rating .star {
    font-size: 32px;
    color: #949494;
    transition: all 0.3s ease;
    user-select: none;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #f39c12;
    transform: scale(1.1);
}

.star-rating .star:hover ~ .star {
    color: #d1d5db;
}

/* Fixed Departure */
.traveller-fixed-departures-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.2;
    margin-bottom: 25px;
}
.fixed-departures-compact-stars .star {
    font-size: 30px;
    color: #f39c12;
}
.fixed-departures-compact-rating {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.fixed-departures-compact-count {
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
}

/* Service Ratings Section */
.service-ratings {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.service-ratings h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.service-ratings .form-group {
    margin-bottom: 15px;
}

.service-ratings .form-group label {
    margin-bottom: 0px;
    font-size: 13px;
}

.service-ratings .star-rating .star {
    font-size: 28px;
}

/* Grid layout for service ratings */
.service-ratings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.service-ratings h3 {
    grid-column: 1 / -1;
}

/* Submit Button */
.submit-review-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #11315f 0%, #11315f 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e66a9a 0%, #e66a9a 100%);
}

.submit-review-btn:active {
    transform: translateY(0);
}

.submit-review-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Reviews Container */
.traveller-reviews-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 25px 20px 80px 20px;
}

.traveller-reviews-container h2 {
    font-size: 32px;
    font-weight: 600;
    color: #11315f;
    margin-bottom: 10px;
    text-align: center;
    font-family: var(--font-primary);
}

.reviews-list {
    display: grid;
    gap: 25px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr)) !important;
    gap: 20px;
}

/* Reviews Header */
.reviews-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
    border: 2px solid #e0e6ed;
    background: #ffffff;
    border-radius: 12px;
}

.overall-rating-summary {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    width: 70%;
}

.service-ratings-summary {
    border-radius: 12px;
    padding: 0px 20px;
    width: 36%;
}

.service-ratings-summary h3 {
    margin: 0px 0 !important;
}

.service-rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid #ecf0f1;
}

.service-rating-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-name {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    width: 120px;
}

.service-stars {
    display: flex;
    gap: 3px;
}

.service-stars .star {
    font-size: 20px;
    color: #d1d5db;
}

.service-stars .star.filled {
    color: #f39c12;
}

.service-score {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    width: 30px;
    text-align: right;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rating-number {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    padding: 1px 13px;
    background: #00ab0f;
    border-radius: 19px;
}

.rating-stars {
    display: flex;
    gap: 4px;
    margin: 10px 0;
}

.rating-stars .star {
    font-size: 24px;
    color: #d1d5db;
}

.rating-stars .star.filled {
    color: #f39c12;
}

.total-reviews {
    font-size: 14px;
    color: #7f8c8d;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-label {
    font-size: 15px;
    color: #7f8c8d;
    width: 50px;
}

.bar-container {
    flex: 1;
    height: 14px;
    background: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f39c12 0%, #f1c40f 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-count {
    font-size: 15px;
    color: #7f8c8d;
    width: 30px;
    text-align: right;
}

/* Review Item */
.review-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid #cacaca;
}

.review-item:hover {
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ecf0f1;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name-with-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
}

.verified-traveler-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1d9800;
    padding: 4px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.verified-traveler-badge svg {
    width: 18px;
    height: 18px;
}

.date-separator {
    color: #7f8c8d;
    margin: 0 4px;
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: #7f8c8d;
}

.overall-rating {
    display: flex;
    gap: 1px;
}

.overall-rating .star {
    font-size: 25px;
    color: #d1d5db;
}

.overall-rating .star.filled {
    color: #f39c12;
}

.review-title {
    margin: 15px 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-date-separator {
    color: #7f8c8d;
    font-size: 14px;
}

.review-title .review-date {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}

.review-title-date-only {
    margin: 15px 0 10px 0;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}

.review-text {
    margin: 10px 0;
    font-size: 14px !important;
    line-height: 1.4;
    color: #333333;
}

.quote-open {
    color: #e66a9a;
    font-size: 22px;
    font-weight: bold;
    margin-right: 2px;
}

.quote-close {
    color: #e66a9a;
    font-size: 22px;
    font-weight: bold;
    margin-left: 2px;
}

/* Rating Summary Shortcode Styles */
.traveller-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.rating-stars-display {
    display: flex;
    gap: 1px;
}

.rating-stars-display .star {
    font-size: 27px;
    color: #949494;
}

.rating-stars-display .star.filled {
    color: #f39c12;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.review-count {
    font-size: 15px;
    color: #7f8c8d;
}

/* Service Ratings Display */
.service-ratings-display {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.service-rating {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.service-label {
    font-weight: 500;
    font-size: 14px;
    color: #333333;
}

.mini-stars {
    display: flex;
    gap: 2px;
}

.mini-stars .star {
    font-size: 25px;
    color: #d1d5db;
}

.mini-stars .star.filled {
    color: #f39c12;
}

/* Review Images */
.review-images {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.review-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ecf0f1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-images img:hover {
    transform: scale(1.05);
    border-color: #3498db;
}

/* Review Actions */
.review-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
    text-align: right;
}

.edit-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #ecf0f1;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-review-btn:hover {
    background: #3498db;
    color: #ffffff;
    border-color: #3498db;
}

.edit-review-btn svg {
    width: 16px;
    height: 16px;
}

/* Edit Review Modal */
.edit-review-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.edit-modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.edit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #ecf0f1;
}

.edit-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.edit-modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.edit-modal-close:hover {
    color: #e74c3c;
}

.edit-review-form {
    padding: 25px;
}

.service-ratings-edit {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.service-ratings-edit h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
    position: relative;
}

.toast.success {
    border-left: 4px solid #27ae60;
}

.toast.error {
    border-left: 4px solid #e74c3c;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.toast.success .toast-icon {
    color: #27ae60;
}

.toast.error .toast-icon {
    color: #e74c3c;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #95a5a6;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #2c3e50;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.hiding {
    animation: slideOut 0.3s ease forwards;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 70%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: #3498db;
    transform: scale(1.1);
}

/* No Reviews */
.no-reviews {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #7f8c8d;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Form Container */
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)) !important;
    }
    .traveller-review-form-container {
        margin: 15px;
        border-radius: 8px;
    }
    
    .traveller-review-form {
        padding: 25px 20px;
    }
    
    .review-form-header {
        padding: 20px 15px;
    }
    
    .review-form-header h2 {
        font-size: 22px;
    }
    
    .review-form-header p {
        font-size: 14px;
    }
    .rating-info {
        display: flow;
    }
    /* Form Grid */
    .traveller-review-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Service Type Form - Keep location separate */
    .traveller-review-form .form-row.location-title-row {
        grid-template-columns: 1fr;
    }
    
    /* Reviews Container */
    .traveller-reviews-container {
        padding: 20px 15px;
    }
    
    .traveller-reviews-container h2 {
        font-size: 24px;
    }
    
    /* Rating Summary */
    .average-rating {
        padding: 20px;
        border-radius: 8px;
    }
    
    .rating-left {
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .rating-number {
        font-size: 32px !important;
        padding: 2px 10px;
    }
    
    .rating-stars-display .star {
        font-size: 24px;
    }
    
    .rating-right {
        padding-left: 0;
    }
    
    .rating-bar {
        height: 8px;
    }
    .overall-rating-summary {
        display: flow;
        width: 95%;
    }
    
    /* Review Items */
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .review-item {
        padding: 15px;
        border-radius: 8px;
    }
    
    .reviewer-name-with-badge {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .reviewer-avatar {
        width: 31px !important;
        height: 31px !important;
        font-size: 12px !important;
        margin-right: 8px;
        padding: 6px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
    
    .verified-traveler-badge {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .verified-traveler-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .reviewer-location {
        font-size: 12px;
    }
    
    .overall-rating {
        gap: 2px;
    }
    
    .overall-rating .star {
        font-size: 16px;
    }
    
    .review-title {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .review-title .review-date {
        font-size: 13px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Service Ratings */
    .service-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .service-label {
        font-size: 13px;
    }
    
    .mini-stars .star {
        font-size: 14px;
    }
    
    /* Review Images */
    .review-images {
        gap: 8px;
    }
    
    .review-images img {
        width: 70px;
        height: 70px;
    }
    
    /* Admin Response */
    .admin-response {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Load More Button */
    .load-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Featured Reviews */
    .featured-review-item {
        padding: 15px;
    }
    
    .featured-reviewer-info {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .featured-reviewer-avatar {
        width: 38px;
        height: 38px;
        font-size: 13px;
        padding: 6px;
    }
    
    .featured-reviewer-name {
        font-size: 15px;
    }
    
    .featured-reviewer-location {
        font-size: 12px;
    }
    
    .featured-review-title {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .featured-review-text {
        font-size: 14px;
    }
    
    .reviews-header {
       justify-content: center !important;
    }
    .rating-breakdown {
        gap: 17px;
    }
    
    /* Compact Rating */
    .traveller-rating-compact {
        flex-wrap: wrap;
    }
    
    .compact-stars .star {
        font-size: 20px;
    }
    
    .compact-rating {
        font-size: 14px;
    }
    
    .compact-count {
        font-size: 13px;
    }
    
    /* Overall Rating */
    .traveller-overall-rating {
        flex-wrap: wrap;
    }
    
    .overall-stars .star {
        font-size: 20px;
    }
    
    .overall-rating-number {
        font-size: 21px;
    }
    
    .overall-review-count {
        font-size: 14px;
    }
    
    .overall-site-name {
        font-size: 14px;
    }
    
    /* Simple Rating */
    .traveller-rating-simple {
        flex-wrap: wrap;
    }
    
    .simple-star {
        font-size: 18px;
    }
    
    .simple-rating {
        font-size: 15px;
    }
    
    .simple-count {
        font-size: 13px;
    }
    
    /* Short Tours Compact Rating */
    .traveller-short-tours-compact {
        flex-wrap: wrap;
    }
    
    .short-tours-compact-stars .star {
        font-size: 17px;
    }
    
    .short-tours-compact-rating {
        font-size: 15px;
    }
    
    .short-tours-compact-count {
        font-size: 13px;
    }
    
    /* Review Carousel */
    .traveller-review-carousel {
        padding: 20px;
    }
    
    .carousel-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .carousel-avatar {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .carousel-reviewer-name {
        font-size: 14px;
    }
    
    .carousel-review-title {
        font-size: 15px;
    }
    
    .carousel-review-text {
        font-size: 13px;
    }
}

/* Overall Rating Shortcode Styles */
.traveller-overall-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.2;
}

.overall-stars {
    display: flex;
    gap: 2px;
}

.overall-stars .star {
    font-size: 30px;
    color: #949494;
    line-height: 1;
}

.overall-stars .star.filled {
    color: #f39c12;
}

.overall-rating-number {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.overall-review-count {
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
}

.overall-site-name {
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 480px) {
    /* Form */
    .traveller-review-form {
        padding: 20px 15px;
    }
    
    .review-form-header h2 {
        font-size: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .star-rating .star {
        font-size: 26px;
    }
    
    .submit-review-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Reviews Container */
    .traveller-reviews-container {
        padding: 15px 10px;
    }
    
    .traveller-reviews-container h2 {
        font-size: 20px;
    }
    
    /* Rating Summary */
    .average-rating {
        padding: 15px;
    }
    
    .rating-number {
        font-size: 13px !important;
    }
    
    .rating-stars-display .star {
        font-size: 23px;
    }
    
    .review-count {
        font-size: 13px;
    }
    
    /* Review Items */
    .review-item {
        padding: 12px;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 12px;
        margin-right: 6px;
        padding: 5px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
    
    .verified-traveler-badge {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    .verified-traveler-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .reviewer-location {
        font-size: 11px;
    }
    
    .overall-rating .star {
        font-size: 14px;
    }
    
    .review-title {
        font-size: 15px;
    }
    
    .review-title .review-date {
        font-size: 12px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    /* Service Ratings */
    .service-label {
        font-size: 12px;
    }
    
    .mini-stars .star {
        font-size: 12px;
    }
    
    /* Review Images */
    .review-images img {
        width: 60px;
        height: 60px;
    }
    
    /* Featured Reviews */
    .featured-review-item {
        padding: 12px;
    }
    
    .featured-reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 12px;
        padding: 5px;
    }
    
    .featured-reviewer-name {
        font-size: 14px;
    }
    
    .featured-reviewer-location {
        font-size: 11px;
    }
    
    .featured-review-title {
        font-size: 15px;
    }
    
    .featured-review-text {
        font-size: 13px;
    }
    
    /* Load More */
    .load-more-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Compact Rating */
    .compact-stars .star {
        font-size: 18px;
    }
    
    .compact-rating {
        font-size: 13px;
    }
    
    .compact-count {
        font-size: 12px;
    }
    
    /* Overall Rating */
    .overall-stars .star {
        font-size: 18px;
    }
    
    .overall-rating-number {
        font-size: 16px;
    }
    
    .overall-review-count {
        font-size: 13px;
    }
    
    .overall-site-name {
        font-size: 13px;
    }
    
    /* Simple Rating */
    .simple-star {
        font-size: 16px;
    }
    
    .simple-rating {
        font-size: 14px;
    }
    
    .simple-count {
        font-size: 12px;
    }
    
    /* Short Tours Compact Rating */
    .short-tours-compact-stars .star {
        font-size: 16px;
    }
    
    .short-tours-compact-rating {
        font-size: 14px;
    }
    
    .short-tours-compact-count {
        font-size: 12px;
    }
    
    /* Review Carousel */
    .traveller-review-carousel {
        padding: 15px;
    }
    
    .carousel-card {
        min-width: 260px;
        max-width: 260px;
        padding: 15px;
    }
    
    .carousel-avatar {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
    
    .carousel-reviewer-name {
        font-size: 13px;
    }
    
    .carousel-review-title {
        font-size: 14px;
    }
    
    .carousel-review-text {
        font-size: 12px;
    }
    
    .carousel-location {
        font-size: 12px;
    }
    
    /* Simple Rating */
    .simple-star {
        font-size: 14px;
    }
    
    .simple-rating {
        font-size: 13px;
    }
    
    .simple-count {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    /* Extra Small Phones */
    .traveller-review-form-container {
        margin: 10px;
    }
    
    .traveller-review-form {
        padding: 15px 10px;
    }
    
    .review-form-header h2 {
        font-size: 18px;
    }
    
    .review-item {
        padding: 10px;
    }
    
    .reviewer-avatar {
        width: 32px;
        height: 32px;
        font-size: 11px;
        margin-right: 5px;
        padding: 4px;
    }
    
    .reviewer-name {
        font-size: 13px;
    }
    
    .overall-rating .star {
        font-size: 13px;
    }
    
    .review-title {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 12px;
    }
    
    .rating-number {
        font-size: 13px !important;
    }
    
    .rating-stars-display .star {
        font-size: 18px;
    }
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Required Field Indicator */
.form-group label .required {
    color: #e74c3c;
    margin-left: 2px;
}

/* Focus States for Accessibility */
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .traveller-review-form-container,
    .submit-review-btn {
        display: none;
    }
    
    .review-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Compact Rating Shortcode Styles for Tour Cards */
.traveller-rating-compact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.2;
}

.compact-stars {
    display: flex;
    gap: 1px;
}

.compact-stars .star {
    font-size: 28px;
    color: #949494;
    line-height: 1;
}

.compact-stars .star.filled {
    color: #f39c12;
}

.compact-rating {
    font-size: 16px;
    font-weight: 600;
    color: #11315f;
    padding-top: 4px;
}

.compact-count {
    font-size: 17px;
    color: #7f8c8d;
    font-weight: 400;
    padding-top: 4px;
}

/* Featured Reviews Styles */
.traveller-featured-reviews {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e6ed;
}

.traveller-featured-reviews h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
}

.featured-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-review-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e6ed;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.featured-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
}

.featured-reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-reviewer-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.featured-review-rating {
    display: flex;
    gap: 2px;
}

.featured-review-rating .star {
    font-size: 16px;
    color: #949494;
}

.featured-review-rating .star.filled {
    color: #f39c12;
}

.featured-review-date {
    font-size: 13px;
    color: #7f8c8d;
}

.featured-review-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-title-date-separator {
    color: #7f8c8d;
    font-size: 14px;
}

.featured-review-title .featured-review-date {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}

.featured-review-title-date-only {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}

.featured-review-text {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

.featured-review-text .quote-open,
.featured-review-text .quote-close {
    color: #e66a9a;
    font-size: 18px;
    font-weight: bold;
}

.featured-admin-response {
    background: #e8f4fd;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin-top: 15px;
}

.featured-admin-response strong {
    color: #2980b9;
    font-size: 14px;
}

.featured-admin-response p {
    margin: 5px 0 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.no-featured-reviews {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 20px;
}

/* Clickable Review Count Link */
.total-reviews,
.review-count {
    color: #11315f;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.total-reviews:hover,
.review-count:hover {
    color: #2980b9;
    text-decoration: underline;
}

.compact-count {
    color: #11315f;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 17px;
}

.compact-count:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Review Carousel Styles */
.traveller-review-carousel {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 30px 30px 30px;
    margin: 10px 0 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.carousel-header {
    margin-bottom: 25px;
    text-align: center;
}

.carousel-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.carousel-stars {
    display: flex;
    gap: 2px;
}

.carousel-stars .star {
    font-size: 24px;
    color: #949494;
    line-height: 1;
}

.carousel-stars .star.filled {
    color: #f39c12;
}

.carousel-rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.carousel-review-count {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

.carousel-site-name {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 400;
    font-style: italic;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 35px 0px;
    overflow-x: auto;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e6ed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.carousel-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.carousel-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
    flex-shrink: 0;
}

.carousel-reviewer-info {
    flex: 1;
    min-width: 0;
}

.carousel-reviewer-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-stars-mini {
    display: flex;
    gap: 1px;
}

.carousel-stars-mini .star {
    font-size: 14px;
    color: #949494;
}

.carousel-stars-mini .star.filled {
    color: #f39c12;
}

.carousel-review-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-review-text {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-location {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

.no-reviews {
    text-align: center;
    color: #7f8c8d;
    font-size: 16px;
    padding: 40px 20px;
}

/* Simple Rating Shortcode Styles */
.traveller-rating-simple {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.2;
}

.simple-star {
    font-size: 20px;
    color: #f39c12;
    line-height: 1;
}

.simple-rating {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.simple-count {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
}

/* Short Tours Rating Shortcode Styles */
.traveller-short-tours-rating {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.short-tours-header {
    text-align: center;
    margin-bottom: 25px;
}

.short-tours-header h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
    color: #11315f;
}

.short-tours-subtitle {
    margin: 0;
    font-size: 14px;
    color: #7f8c8d;
}

.short-tours-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.short-tours-stars {
    display: flex;
    gap: 2px;
}

.short-tours-stars .star {
    font-size: 30px;
    color: #949494;
}

.short-tours-stars .star.filled {
    color: #f39c12;
}

.short-tours-rating-number {
    font-size: 32px;
    font-weight: 700;
    color: #11315f;
}

.short-tours-count {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 500;
}

.traveller-short-tours-reviews {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.short-tours-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.short-tours-review-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e6ed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-tours-review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.short-tours-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.short-tours-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
    flex-shrink: 0;
}

.short-tours-reviewer-info {
    flex: 1;
    min-width: 0;
}

.short-tours-reviewer-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.short-tours-stars-mini {
    display: flex;
    gap: 1px;
}

.short-tours-stars-mini .star {
    font-size: 14px;
    color: #949494;
}

.short-tours-stars-mini .star.filled {
    color: #f39c12;
}

.short-tours-review-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.short-tours-review-text {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.short-tours-location {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

.short-tours-footer {
    padding-top: 20px;
    border-top: 1px solid #e0e6ed;
    text-align: center;
}

.short-tours-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.short-tours-footer .short-tours-stars {
    display: flex;
    gap: 2px;
}

.short-tours-footer .short-tours-stars .star {
    font-size: 20px;
}

.short-tours-footer .short-tours-rating-number {
    font-size: 20px;
    font-weight: 600;
    color: #11315f;
}

.short-tours-footer .short-tours-count {
    font-size: 16px;
    color: #7f8c8d;
}

/* Short Tours Compact Rating Shortcode Styles */
.traveller-short-tours-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.2;
}

.short-tours-compact-stars {
    display: flex;
    gap: 2px;
}

.short-tours-compact-stars .star {
    font-size: 30px;
    color: #949494;
    line-height: 1;
}

.short-tours-compact-stars .star.filled {
    color: #f39c12;
}

.short-tours-compact-rating {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 4px;
}

.short-tours-compact-count {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    margin-top: 4px;
}

/* Read More/Less Functionality */
.review-ellipsis {
    display: inline;
}

.read-more-link {
    color: #e66a9a;
    text-decoration: none;
    font-weight: normal;
    margin-left: 5px;
    cursor: pointer;
    transition: color 0.7s ease;
}

.read-more-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.featured-review-ellipsis {
    display: inline;
}

.featured-read-more-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.featured-read-more-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.featured-review-text-content {
    display: inline;
}

.review-text-content {
    display: inline;
}

/* Load More Reviews Button */
.load-more-container {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.load-more-reviews-btn {
    background: linear-gradient(135deg, #11315f 0%, #11315f 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.load-more-reviews-btn:hover {
    background: linear-gradient(135deg, #e66a9a 0%, #e66a9a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.load-more-reviews-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.reviews-remaining {
    display: block;
    margin-top: 10px;
    color: #7f8c8d;
    font-size: 14px;
}

/* Reviewer Avatar Initials */
.reviewer-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.reviewer-name-with-badge {
    display: flex;
    align-items: center;
}

.location-separator {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0 3px;
}

.reviewer-location {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

.featured-reviewer-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.featured-reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-location-separator {
    color: #7f8c8d;
    font-size: 14px;
}

.featured-reviewer-location {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

/* Short Tours Rating Shortcode Styles */
.traveller-short-tours-rating {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.short-tours-header {
    text-align: center;
    margin-bottom: 25px;
}

.short-tours-header h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
    color: #11315f;
}

.short-tours-subtitle {
    margin: 0;
    font-size: 14px;
    color: #7f8c8d;
}

.short-tours-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.short-tours-stars {
    display: flex;
    gap: 2px;
}

.short-tours-stars .star {
    font-size: 30px;
    color: #949494;
}

.short-tours-stars .star.filled {
    color: #f39c12;
}

.short-tours-rating-number {
    font-size: 32px;
    font-weight: 700;
    color: #11315f;
}

.short-tours-count {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 500;
}

.traveller-short-tours-reviews {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.short-tours-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.short-tours-review-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e6ed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-tours-review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.short-tours-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.short-tours-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
    flex-shrink: 0;
}

.short-tours-reviewer-info {
    flex: 1;
    min-width: 0;
}

.short-tours-reviewer-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.short-tours-stars-mini {
    display: flex;
    gap: 1px;
}

.short-tours-stars-mini .star {
    font-size: 14px;
    color: #949494;
}

.short-tours-stars-mini .star.filled {
    color: #f39c12;
}

.short-tours-review-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.short-tours-review-text {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.short-tours-location {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

.short-tours-footer {
    padding-top: 20px;
    border-top: 1px solid #e0e6ed;
    text-align: center;
}

.short-tours-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.short-tours-footer .short-tours-stars {
    display: flex;
    gap: 2px;
}

.short-tours-footer .short-tours-stars .star {
    font-size: 20px;
}

.short-tours-footer .short-tours-rating-number {
    font-size: 20px;
    font-weight: 600;
    color: #11315f;
}

.short-tours-footer .short-tours-count {
    font-size: 16px;
    color: #7f8c8d;
}


