/**
 * LMKT Advanced Reviews - Frontend CSS
 * @version 1.0.0
 * Credit by Liemmkt - 0345781754
 */

:root {
    --lmkt-primary: #FF5722;
    --lmkt-secondary: #2196F3;
    --lmkt-star: #FFB400;
    --lmkt-text: #333333;
    --lmkt-light-text: #757575;
    --lmkt-background: #FFFFFF;
    --lmkt-border: #E0E0E0;
    --lmkt-success: #4CAF50;
    --lmkt-warning: #FF9800;
    --lmkt-radius: 8px;
    --lmkt-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Reviews Wrapper - Reset parent styles */
.lmkt-reviews-wrapper {
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both !important;
    grid-column: 1 / -1 !important;
    flex: 0 0 100% !important;
}

/* Review Summary */
.lmkt-review-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 1px solid var(--lmkt-border);
    border-radius: var(--lmkt-radius);
    margin-bottom: 20px;
    align-items: center;
}

.lmkt-summary-left {
    text-align: center;
    min-width: 120px;
}

.lmkt-average-rating {
    font-size: 48px;
    font-weight: 700;
    color: var(--lmkt-primary);
    line-height: 1;
}

.lmkt-rating-max {
    font-size: 24px;
    color: var(--lmkt-light-text);
}

.lmkt-rating-stars {
    margin: 10px 0;
}

.lmkt-total-reviews {
    color: var(--lmkt-light-text);
    font-size: 14px;
}

.lmkt-summary-right {
    flex: 1;
    min-width: 200px;
}

.lmkt-breakdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.lmkt-breakdown-row:hover {
    opacity: 0.8;
}

.lmkt-breakdown-stars {
    width: 50px;
    font-size: 14px;
    color: var(--lmkt-text);
}

.lmkt-breakdown-bar {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.lmkt-breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lmkt-star), #FFD54F);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.lmkt-breakdown-count {
    width: 30px;
    text-align: right;
    font-size: 13px;
    color: var(--lmkt-light-text);
}

.lmkt-summary-action {
    text-align: center;
}

.lmkt-write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--lmkt-primary), #FF7043);
    color: #fff;
    border: none;
    border-radius: var(--lmkt-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.lmkt-write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Stars */
.lmkt-stars {
    display: inline-flex;
    gap: 2px;
}

.lmkt-star {
    font-size: 18px;
}

.lmkt-star-filled {
    color: var(--lmkt-star);
}

.lmkt-star-half {
    color: var(--lmkt-star);
    opacity: 0.6;
}

.lmkt-star-empty {
    color: #ddd;
}

/* Filters */
.lmkt-review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--lmkt-radius);
    margin-bottom: 20px;
    align-items: center;
}

.lmkt-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lmkt-filter-group label {
    font-size: 13px;
    color: var(--lmkt-light-text);
    font-weight: 500;
}

.lmkt-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--lmkt-border);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.lmkt-filter-btn:hover,
.lmkt-filter-btn.active {
    background: var(--lmkt-primary);
    color: #fff;
    border-color: var(--lmkt-primary);
}

.lmkt-sort-select {
    padding: 6px 12px;
    border: 1px solid var(--lmkt-border);
    border-radius: var(--lmkt-radius);
    font-size: 13px;
    background: #fff;
}

/* Review List */
.lmkt-review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Review Item */
.lmkt-review-item {
    padding: 20px;
    background: var(--lmkt-background);
    border: 1px solid var(--lmkt-border);
    border-radius: var(--lmkt-radius);
    transition: box-shadow 0.2s;
}

.lmkt-review-item:hover {
    box-shadow: var(--lmkt-shadow);
}

.lmkt-review-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.lmkt-review-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.lmkt-reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--lmkt-text);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lmkt-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #E8F5E9;
    color: var(--lmkt-success);
    font-size: 11px;
    font-weight: 500;
    border-radius: 10px;
}

.lmkt-review-rating-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.lmkt-review-date {
    font-size: 12px;
    color: var(--lmkt-light-text);
}

.lmkt-review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.lmkt-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #FFF3E0;
    color: var(--lmkt-primary);
    font-size: 12px;
    border-radius: 12px;
}

.lmkt-review-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--lmkt-text);
    margin-bottom: 12px;
}

.lmkt-review-media {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.lmkt-media-item {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.lmkt-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.lmkt-media-item:hover img {
    transform: scale(1.05);
}

.lmkt-video-thumb {
    position: relative;
}

.lmkt-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.lmkt-review-actions {
    display: flex;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.lmkt-helpful-btn,
.lmkt-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--lmkt-border);
    border-radius: var(--lmkt-radius);
    font-size: 13px;
    color: var(--lmkt-light-text);
    cursor: pointer;
    transition: all 0.2s;
}

.lmkt-helpful-btn:hover,
.lmkt-helpful-btn.active {
    background: #E3F2FD;
    border-color: var(--lmkt-secondary);
    color: var(--lmkt-secondary);
}

/* Replies */
.lmkt-review-replies {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--lmkt-radius);
    border-left: 3px solid var(--lmkt-primary);
}

.lmkt-reply-item {
    margin-bottom: 10px;
}

.lmkt-reply-item:last-child {
    margin-bottom: 0;
}

.lmkt-reply-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.lmkt-reply-author {
    font-weight: 600;
    font-size: 13px;
    color: var(--lmkt-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lmkt-reply-date {
    font-size: 11px;
    color: var(--lmkt-light-text);
}

.lmkt-reply-content {
    font-size: 13px;
    line-height: 1.6;
    color: var(--lmkt-text);
}

/* Empty State */
.lmkt-review-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: var(--lmkt-radius);
}

.lmkt-empty-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 15px;
}

.lmkt-review-empty h3 {
    margin: 0 0 10px;
    color: var(--lmkt-text);
}

.lmkt-review-empty p {
    color: var(--lmkt-light-text);
    margin-bottom: 20px;
}

/* Load More */
.lmkt-load-more-wrapper {
    text-align: center;
    margin-top: 20px;
}

.lmkt-load-more-btn {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid var(--lmkt-primary);
    color: var(--lmkt-primary);
    border-radius: var(--lmkt-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lmkt-load-more-btn:hover {
    background: var(--lmkt-primary);
    color: #fff;
}

/* Modal */
.lmkt-review-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lmkt-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.lmkt-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: lmkt-modal-in 0.3s ease;
}

@keyframes lmkt-modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lmkt-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lmkt-modal-close:hover {
    background: #e0e0e0;
}

.lmkt-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.lmkt-modal-header h3 {
    margin: 0 0 5px;
    font-size: 22px;
}

.lmkt-modal-subtitle {
    color: var(--lmkt-light-text);
    margin: 0;
}

/* Form */
.lmkt-review-form .lmkt-form-group {
    margin-bottom: 20px;
}

.lmkt-review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--lmkt-text);
}

.lmkt-review-form label .required {
    color: var(--lmkt-primary);
}

.lmkt-review-form input[type="text"],
.lmkt-review-form input[type="email"],
.lmkt-review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--lmkt-border);
    border-radius: var(--lmkt-radius);
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lmkt-review-form input:focus,
.lmkt-review-form textarea:focus {
    outline: none;
    border-color: var(--lmkt-primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.lmkt-form-row {
    display: flex;
    gap: 15px;
}

.lmkt-form-half {
    flex: 1;
}

.lmkt-char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--lmkt-light-text);
    margin-top: 5px;
}

/* Star Rating Input - Uses row-reverse for CSS sibling selector (:hover~label) */
.lmkt-star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

/* IMPORTANT: Modal form uses JavaScript highlighting, so it should display LTR (1-5) */
#lmkt-review-modal .lmkt-star-rating {
    flex-direction: row !important;
    justify-content: flex-start !important;
}

.lmkt-star-rating input {
    display: none;
}

.lmkt-star-rating label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    margin: 0;
}

.lmkt-star-rating label:hover,
.lmkt-star-rating label:hover~label,
.lmkt-star-rating input:checked~label {
    color: var(--lmkt-star);
}

.lmkt-star-rating label:hover {
    transform: scale(1.2);
}

/* Quick Tags */
.lmkt-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lmkt-quick-tag {
    padding: 8px 15px;
    background: #f5f5f5;
    border: 1px solid var(--lmkt-border);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.lmkt-quick-tag:hover,
.lmkt-quick-tag.active {
    background: var(--lmkt-primary);
    color: #fff;
    border-color: var(--lmkt-primary);
}

/* Media Upload */
.lmkt-media-upload {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lmkt-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 2px dashed var(--lmkt-border);
    border-radius: var(--lmkt-radius);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.lmkt-upload-btn:hover {
    border-color: var(--lmkt-primary);
    background: #FFF3E0;
}

.lmkt-media-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.lmkt-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.lmkt-preview-item img,
.lmkt-preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lmkt-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkbox */
.lmkt-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
    font-size: 13px !important;
}

.lmkt-checkbox-label input {
    margin-top: 3px;
}

/* Submit */
.lmkt-form-submit {
    margin-top: 25px;
}

.lmkt-submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--lmkt-primary), #FF7043);
    color: #fff;
    border: none;
    border-radius: var(--lmkt-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.lmkt-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.lmkt-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Message */
.lmkt-form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: var(--lmkt-radius);
    font-size: 14px;
    text-align: center;
    display: none;
}

.lmkt-form-message.success {
    display: block;
    background: #E8F5E9;
    color: var(--lmkt-success);
}

.lmkt-form-message.error {
    display: block;
    background: #FFEBEE;
    color: #c62828;
}

/* Loading */
.lmkt-loading {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.lmkt-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--lmkt-primary);
    border-radius: 50%;
    animation: lmkt-spin 1s linear infinite;
}

@keyframes lmkt-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Lightbox */
.lmkt-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lmkt-lightbox img,
.lmkt-lightbox video {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lmkt-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .lmkt-review-summary {
        flex-direction: column;
        text-align: center;
    }

    .lmkt-summary-right {
        width: 100%;
    }

    .lmkt-filter-group {
        width: 100%;
        justify-content: flex-start;
    }

    .lmkt-form-row {
        flex-direction: column;
    }

    .lmkt-form-half {
        width: 100%;
    }

    .lmkt-modal-content {
        padding: 20px;
        margin: 10px;
    }
}

/* =====================================================
   LAYOUT STYLES - Modern | Classic | Minimal
   ===================================================== */

/* ========= MODERN LAYOUT (Default - Shopee Style) ========= */
.lmkt-layout-modern .lmkt-review-summary {
    background: linear-gradient(135deg, #fff5f0 0%, #fff0eb 100%);
    border: 2px solid #ffe0d6;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.1);
}

.lmkt-layout-modern .lmkt-average-rating {
    font-size: 56px;
    background: linear-gradient(135deg, #FF5722, #FF7043);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lmkt-layout-modern .lmkt-write-review-btn {
    background: linear-gradient(135deg, #FF5722, #FF7043);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.35);
    padding: 14px 28px;
}

.lmkt-layout-modern .lmkt-review-item {
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lmkt-layout-modern .lmkt-review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.lmkt-layout-modern .lmkt-breakdown-fill {
    background: linear-gradient(90deg, #FF5722, #FFB74D);
    border-radius: 5px;
}

.lmkt-layout-modern .lmkt-tag {
    background: linear-gradient(135deg, #FFF3E0, #FFECB3);
    border-radius: 15px;
    font-weight: 500;
}

.lmkt-layout-modern .lmkt-filter-btn.active {
    background: linear-gradient(135deg, #FF5722, #FF7043);
}

/* ========= CLASSIC LAYOUT ========= */
.lmkt-layout-classic .lmkt-review-summary {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: none;
}

.lmkt-layout-classic .lmkt-average-rating {
    font-size: 42px;
    color: #333;
    background: none;
    -webkit-text-fill-color: #333;
}

.lmkt-layout-classic .lmkt-write-review-btn {
    background: #333333;
    border-radius: 4px;
    box-shadow: none;
    padding: 10px 20px;
}

.lmkt-layout-classic .lmkt-write-review-btn:hover {
    background: #444444;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lmkt-layout-classic .lmkt-review-item {
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #555;
}

.lmkt-layout-classic .lmkt-review-item:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lmkt-layout-classic .lmkt-breakdown-bar {
    background: #e0e0e0;
    border-radius: 2px;
}

.lmkt-layout-classic .lmkt-breakdown-fill {
    background: #FFB400;
    border-radius: 2px;
}

.lmkt-layout-classic .lmkt-tag {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.lmkt-layout-classic .lmkt-filter-btn {
    border-radius: 4px;
}

.lmkt-layout-classic .lmkt-filter-btn.active {
    background: #333;
}

.lmkt-layout-classic .lmkt-verified-badge {
    background: #e8f5e9;
    border-radius: 3px;
}

.lmkt-layout-classic .lmkt-review-filters {
    background: #fafafa;
    border-radius: 4px;
}

/* ========= MINIMAL LAYOUT ========= */
.lmkt-layout-minimal .lmkt-review-summary {
    background: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 20px 0;
}

.lmkt-layout-minimal .lmkt-average-rating {
    font-size: 36px;
    color: #111;
    font-weight: 300;
}

.lmkt-layout-minimal .lmkt-write-review-btn {
    background: transparent;
    color: #111;
    border: 1px solid #111;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 24px;
    font-weight: 400;
}

.lmkt-layout-minimal .lmkt-write-review-btn:hover {
    background: #111;
    color: #fff;
    transform: none;
    box-shadow: none;
}

.lmkt-layout-minimal .lmkt-review-item {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 25px 0;
}

.lmkt-layout-minimal .lmkt-review-item:hover {
    transform: none;
    box-shadow: none;
    background: #fafafa;
}

.lmkt-layout-minimal .lmkt-breakdown-bar {
    background: #f0f0f0;
    height: 4px;
    border-radius: 0;
}

.lmkt-layout-minimal .lmkt-breakdown-fill {
    background: #111;
    border-radius: 0;
}

.lmkt-layout-minimal .lmkt-tag {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lmkt-layout-minimal .lmkt-filter-btn {
    border-radius: 0;
    border: 1px solid #ddd;
}

.lmkt-layout-minimal .lmkt-filter-btn.active {
    background: #111;
    border-color: #111;
}

.lmkt-layout-minimal .lmkt-review-filters {
    background: transparent;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 15px 0;
}

.lmkt-layout-minimal .lmkt-verified-badge {
    background: transparent;
    border: 1px solid #4CAF50;
    border-radius: 0;
}

.lmkt-layout-minimal .lmkt-load-more-btn {
    border: 1px solid #111;
    border-radius: 0;
    color: #111;
}

.lmkt-layout-minimal .lmkt-load-more-btn:hover {
    background: #111;
    color: #fff;
}

.lmkt-layout-minimal .lmkt-stars .lmkt-star-filled {
    color: #111;
}

.lmkt-layout-minimal .lmkt-review-actions {
    border-top: none;
    padding-top: 0;
}