/* ===================================
   REVIEWS WRAPPER
   =================================== */
.hydra-reviews-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 40px auto;
    padding: 0 8px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .hydra-reviews-wrapper {
        padding: 0 12px;
    }
}

@media (min-width: 1024px) {
    .hydra-reviews-wrapper {
        padding: 0 16px;
    }
}

/* ===================================
   REVIEW FORM SECTION
   =================================== */
.hydra-review-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hydra-review-heading {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 32px 0;
    color: #3d4852;
}

.hydra-review-form-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

.hydra-review-form-left,
.hydra-review-form-right {
    max-width: 100%;
    box-sizing: border-box;
}

.hydra-form-group {
    margin-bottom: 20px;
}

/* Form Inputs */
.hydra-form-input,
.hydra-form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
    background: #fff;
    color: #3d4852;
}

.hydra-form-input::placeholder,
.hydra-form-textarea::placeholder {
    color: #9ca3af;
    font-size: 16px;
}

.hydra-form-input:focus,
.hydra-form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.hydra-form-textarea {
    resize: vertical;
    min-height: 180px;
}

/* ===================================
   RATING WIDGET
   =================================== */
.hydra-rating-widget {
    background: #fff;
    padding: 0;
    border-radius: 0;
    margin-bottom: 28px;
}

.hydra-rating-label {
    font-size: 18px;
    font-weight: 600;
    color: #3d4852;
    margin-bottom: 12px;
}

.hydra-rating-display {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hydra-rating-value {
    font-size: 72px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.hydra-rating-max {
    font-size: 24px;
    color: #9ca3af;
    font-weight: 500;
}

.hydra-rating-stars {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap !important;
}

.hydra-review-star-btn {
    all: unset !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    background: #e5e7eb !important;
    color: #fff !important;
    transition: all 0.15s ease !important;
    user-select: none !important;
    border-radius: 4px !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    flex-shrink: 0 !important;
}

.hydra-review-star-btn:hover {
    transform: scale(1.05) !important;
    opacity: 1 !important;
}

.hydra-review-star-btn.hydra-star-active {
    color: #fff !important;
}

/* Different colors for different star positions - always show colors */
.hydra-review-star-btn:nth-child(1) {
    background: #d97706 !important;
}
.hydra-review-star-btn:nth-child(2) {
    background: #d97706 !important;
}
.hydra-review-star-btn:nth-child(3) {
    background: #eab308 !important;
}
.hydra-review-star-btn:nth-child(4) {
    background: #eab308 !important;
}
.hydra-review-star-btn:nth-child(5) {
    background: #facc15 !important;
}
.hydra-review-star-btn:nth-child(6) {
    background: #facc15 !important;
}
.hydra-review-star-btn:nth-child(7) {
    background: #84cc16 !important;
}
.hydra-review-star-btn:nth-child(8) {
    background: #84cc16 !important;
}
.hydra-review-star-btn:nth-child(9) {
    background: #22c55e !important;
}
.hydra-review-star-btn:nth-child(10) {
    background: #16a34a !important;
}

/* Opacity for inactive stars */
.hydra-review-star-btn:not(.hydra-star-active) {
    opacity: 0.3 !important;
}

/* reCAPTCHA */
.hydra-recaptcha-group {
    margin-bottom: 18px;
}

/* Terms Checkbox */
.hydra-terms-group {
    margin-bottom: 20px;
}

.hydra-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
    cursor: pointer;
    line-height: 1.5;
}

.hydra-checkbox-input {
    margin-top: 2px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hydra-checkbox-text a.hydra-link {
    color: #3b82f6;
    text-decoration: none;
}

.hydra-checkbox-text a.hydra-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.hydra-submit-btn {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    background: #22c55e !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: all 0.2s !important;
    text-transform: uppercase !important;
    box-sizing: border-box !important;
}

.hydra-submit-btn:hover {
    background: #16a34a !important;
}

/* ===================================
   REVIEWS LIST SECTION
   =================================== */
.hydra-reviews-list-section {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.hydra-reviews-header {
    margin-bottom: 20px;
}

.hydra-reviews-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0 15px 0;
    color: #1a202c;
}

.hydra-reviews-subtitle {
    font-size: 14px;
    color: #6b7280;
}

/* ===================================
   STATS CARD
   =================================== */
.hydra-reviews-stats-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.hydra-stats-date {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 16px;
}

.hydra-stats-date strong {
    font-weight: 600;
}

.hydra-stats-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.hydra-stats-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hydra-stat-percent-box {
    display: flex;
    gap: 16px;
    align-items: baseline;
}

.hydra-stat-positive-big {
    font-size: 56px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.hydra-stat-negative-big {
    font-size: 56px;
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
}

.hydra-stat-bars-wrapper {
    display: flex;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.hydra-stat-bar-positive {
    background: #22c55e;
    transition: width 0.5s ease;
}

.hydra-stat-bar-negative {
    background: #ef4444;
    transition: width 0.5s ease;
}

.hydra-stats-description {
    border-left: 4px solid #22c55e;
    padding-left: 20px;
}

.hydra-stats-verdict {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 10px 0;
}

.hydra-stats-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* ===================================
   FILTERS
   =================================== */
.hydra-reviews-filters {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.hydra-filter-btn {
    all: unset !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #6b7280 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -1px !important;
}

.hydra-filter-btn:hover {
    color: #1f2937 !important;
}

.hydra-filter-btn.active {
    color: #3b82f6 !important;
    border-bottom-color: #3b82f6 !important;
}

/* ===================================
   REVIEW ITEMS
   =================================== */
.hydra-reviews-items {
    display: grid;
    gap: 16px;
}

.hydra-review-item {
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s;
    background: #fff;
}

.hydra-review-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hydra-review-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.hydra-review-author-section {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hydra-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
}

.hydra-author-flag {
    font-size: 24px;
}

.hydra-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hydra-author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
}

.hydra-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hydra-review-date {
    font-size: 13px;
    color: #9ca3af;
}

.hydra-review-rating-box {
    display: flex;
    align-items: baseline;
    gap: 2px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid;
    flex-shrink: 0;
}

.hydra-review-rating-box.positive {
    background: #fff;
    border-color: #22c55e;
}

.hydra-review-rating-box.negative {
    background: #fff;
    border-color: #ef4444;
}

.hydra-rating-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.hydra-review-rating-box.positive .hydra-rating-number {
    color: #22c55e;
}

.hydra-review-rating-box.negative .hydra-rating-number {
    color: #ef4444;
}

.hydra-rating-outof {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
}

.hydra-review-content {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #374151;
    font-size: 14px;
}

.hydra-review-translation {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 4px;
}

.hydra-see-original {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.hydra-see-original:hover {
    text-decoration: underline;
}

/* ===================================
   REVIEW ACTIONS
   =================================== */
.hydra-review-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hydra-vote-btn {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 6px 12px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.hydra-vote-btn:hover:not([disabled]) {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
}

.hydra-vote-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed !important;
}

/* ===================================
   COMMENTS SECTION
   =================================== */
.hydra-comments-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.hydra-comments-list {
    margin-bottom: 16px;
}

.hydra-comment-item {
    padding: 12px;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 8px;
}

.hydra-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hydra-comment-author {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.hydra-comment-date {
    font-size: 12px;
    color: #9ca3af;
}

.hydra-comment-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 8px;
}

.hydra-comment-reply-btn {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 12px !important;
    color: #3b82f6 !important;
    cursor: pointer !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    transition: background 0.2s !important;
}

.hydra-comment-reply-btn:hover {
    background: #eff6ff !important;
}

.hydra-comment-replies {
    margin-left: 32px;
    margin-top: 8px;
    padding-left: 12px;
    border-left: 2px solid #e5e7eb;
}

.hydra-comment-reply-item {
    padding: 10px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #e5e7eb;
}

.hydra-comment-form-wrapper {
    margin-top: 12px;
}

.hydra-reply-form-wrapper {
    margin-top: 8px;
    padding: 12px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.hydra-comment-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hydra-comment-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.2s;
}

.hydra-comment-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.hydra-comment-submit {
    all: unset !important;
    align-self: flex-end;
    padding: 8px 16px !important;
    background: #3b82f6 !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.hydra-comment-submit:hover {
    background: #2563eb !important;
}

.hydra-reply-cancel {
    all: unset !important;
    padding: 8px 16px !important;
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    margin-left: 8px !important;
}

.hydra-reply-cancel:hover {
    background: #e5e7eb !important;
}

/* ===================================
   MESSAGES
   =================================== */
.hydra-review-message {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.hydra-review-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.hydra-review-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* ===================================
   RESPONSIVE
   =================================== */
/* ===================================
   MOBILE RESPONSIVE
   =================================== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hydra-review-form-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hydra-review-form-right {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .hydra-stats-content {
        grid-template-columns: 200px 1fr;
        gap: 24px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .hydra-reviews-wrapper {
        margin: 20px auto;
    }
    
    .hydra-review-form-section,
    .hydra-reviews-list-section {
        padding: 24px 16px;
        border-radius: 8px;
        margin-bottom: 20px;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .hydra-review-heading {
    display: block;
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .hydra-reviews-title {
    display: block;
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hydra-reviews-subtitle {
        font-size: 13px;
    }
    
    /* Form inputs */
    .hydra-form-input,
    .hydra-form-textarea {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    /* Rating widget */
    .hydra-rating-label {
        font-size: 16px;
    }
    
    .hydra-rating-display {
        gap: 6px;
    }
    
    .hydra-rating-value {
        font-size: 56px;
    }
    
    .hydra-rating-max {
        font-size: 20px;
    }
    
    .hydra-rating-stars {
        gap: 3px;
        flex-wrap: nowrap;
    }
    
    .hydra-review-star-btn {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        font-size: 18px !important;
    }
    
    /* Submit button */
    .hydra-submit-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 12px !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    /* Checkbox */
    .hydra-checkbox-text {
        font-size: 13px;
    }
    
    /* Statistics */
    .hydra-reviews-stats-card {
        padding: 20px 16px;
    }
    
    .hydra-stats-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hydra-stat-percent-box {
        justify-content: center;
    }
    
    .hydra-stat-positive-big,
    .hydra-stat-negative-big {
        font-size: 42px;
    }
    
    .hydra-stats-verdict {
    display: block;
        font-size: 18px;
    }
    
    .hydra-stats-text {
        font-size: 14px;
    }
    
    /* Filters */
    .hydra-reviews-filters {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hydra-reviews-filters::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .hydra-filter-btn {
        font-size: 13px !important;
        padding: 8px 16px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        display: inline-flex !important;
        min-width: auto !important;
    }
    
    /* Review items */
    .hydra-review-item {
        padding: 16px;
    }
    
    .hydra-review-main {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    
    .hydra-review-author-section {
        flex: 1;
        min-width: 0;
    }
    
    .hydra-review-left {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .hydra-review-avatar {
        width: 40px;
        height: 40px;
    }
    
    .hydra-review-user-icon {
        width: 18px;
        height: 18px;
    }
    
    .hydra-review-author {
        font-size: 14px;
    }
    
    .hydra-review-date {
        font-size: 11px;
    }
    
    .hydra-review-rating-box {
        align-self: flex-start;
        padding: 6px 12px;
    }
    
    .hydra-rating-number {
        font-size: 22px;
    }
    
    .hydra-rating-outof {
        font-size: 12px;
    }
    
    .hydra-review-content {
        font-size: 14px;
    }
    
    .hydra-review-translation {
        font-size: 11px;
        padding: 8px;
    }
    
    .hydra-review-actions {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .hydra-vote-btn {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
    
    /* Comments */
    .hydra-comment-item,
    .hydra-comment-reply-item {
        padding: 10px;
    }
    
    .hydra-comment-author {
        font-size: 12px;
    }
    
    .hydra-comment-date {
        font-size: 11px;
    }
    
    .hydra-comment-text {
        font-size: 13px;
    }
    
    .hydra-comment-reply-btn {
        font-size: 11px !important;
    }
    
    .hydra-comment-replies {
        margin-left: 16px;
        padding-left: 8px;
    }
    
    .hydra-comment-input {
        padding: 10px;
        font-size: 14px;
    }
    
    .hydra-comment-submit,
    .hydra-reply-cancel {
        font-size: 13px !important;
        padding: 8px 14px !important;
    }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
    .hydra-review-form-section,
    .hydra-reviews-list-section {
        padding: 20px 12px;
    }
    
    .hydra-review-heading {
    display: block;
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .hydra-reviews-title {
    display: block;
        font-size: 18px;
    }
    
    .hydra-rating-value {
        font-size: 48px;
    }
    
    .hydra-rating-stars {
        gap: 2px;
    }
    
    .hydra-review-star-btn {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        font-size: 16px !important;
    }
    
    .hydra-stat-positive-big,
    .hydra-stat-negative-big {
        font-size: 40px;
    }
    
    .hydra-stats-verdict {
    display: block;
        font-size: 16px;
    }
    
    .hydra-stats-text {
        font-size: 13px;
    }
    
    /* Горизонтальний скрол для фільтрів */
    .hydra-reviews-filters {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    
    .hydra-reviews-filters::-webkit-scrollbar {
        display: none !important;
    }
    
    .hydra-filter-btn {
        font-size: 12px !important;
        padding: 7px 12px !important;
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        min-width: auto !important;
        white-space: nowrap !important;
    }
    
    .hydra-review-item {
        padding: 14px 12px;
    }
    
    .hydra-review-main {
        gap: 6px;
    }
    
    .hydra-review-avatar {
        width: 36px;
        height: 36px;
    }
    
    .hydra-review-author {
        font-size: 13px;
    }
    
    .hydra-review-date {
        font-size: 10px;
    }
    
    .hydra-rating-number {
        font-size: 20px;
    }
    
    .hydra-rating-outof {
        font-size: 11px;
    }
    
    .hydra-review-rating-box {
        padding: 5px 10px;
    }
    
    .hydra-review-content {
        font-size: 13px;
    }
    
    .hydra-comment-replies {
        margin-left: 12px;
        padding-left: 6px;
    }
}

/* Extra small (max 360px) */
@media (max-width: 360px) {
    .hydra-review-form-section,
    .hydra-reviews-list-section {
        padding: 16px 10px;
    }
    
    .hydra-review-heading {
    display: block;
        font-size: 18px;
    }
    
    .hydra-rating-value {
        font-size: 42px;
    }
    
    .hydra-rating-stars {
        gap: 1px;
    }
    
    .hydra-review-star-btn {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        max-width: 26px !important;
        max-height: 26px !important;
        font-size: 14px !important;
    }
    
    .hydra-stat-positive-big,
    .hydra-stat-negative-big {
        font-size: 36px;
    }
}
