/**
 * Consent Manager Banner Styles
 *
 * Note: File renamed from "cookie-consent.css" to avoid being blocked by ad blockers
 *
 * @package ReviewPro
 * @since 1.2.0
 */

/* ==========================================================================
   Cookie Consent Banner - Base Styles
   ========================================================================== */

/* 
 * NOTE: .reviewpro-consent-content is the INNER content div, NOT the outer banner.
 * It should NOT have position:fixed - only the outer .reviewpro-cookie-consent has that.
 */
.reviewpro-consent-content {
    position: relative; /* Normal flow inside the banner */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    pointer-events: auto; /* Ensure clicks work on mobile */
    touch-action: auto; /* Allow touch interactions */
    opacity: 1;
    visibility: visible;
    display: block;
}

.reviewpro-cookie-consent__title,
.reviewpro-consent-title {
    box-sizing: border-box;
    pointer-events: auto;
    display: block;
    visibility: visible;
}

/* Hidden state for when consent is already given */
.reviewpro-cookie-consent[data-consent-ready="true"][style*="display: none"] {
    display: none !important;
}

.reviewpro-cookie-consent__message,
.reviewpro-consent-message {
    box-sizing: border-box;
    pointer-events: auto;
    display: block;
    visibility: visible;
    position: relative;
}

.reviewpro-cookie-consent__privacy-link,
.reviewpro-consent-link {
    box-sizing: border-box;
    pointer-events: auto;
    cursor: pointer;
    display: inline;
}

.reviewpro-cookie-consent *,
.reviewpro-cookie-consent *::before,
.reviewpro-cookie-consent *::after {
    box-sizing: inherit;
}

.reviewpro-cookie-consent__privacy-link:hover,
.reviewpro-consent-link:hover {
    opacity: 0.8;
}

/* Banner Container */
.reviewpro-cookie-consent {
    position: fixed;
    z-index: 9999999; /* Very high to be above everything */
    background-color: #ffffff;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    pointer-events: auto;
    touch-action: auto;
}

/* Visible state - explicitly shown by JS */
.reviewpro-cookie-consent--visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.reviewpro-cookie-consent__container,
[data-rp-consent="container"] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.reviewpro-cookie-consent__content,
[data-rp-consent="content"] {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.reviewpro-cookie-consent__title,
[data-rp-consent="title"] {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.reviewpro-cookie-consent__message,
[data-rp-consent="message"] {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.reviewpro-cookie-consent__nojs,
.reviewpro-consent-nojs {
    margin-top: 10px;
    font-size: 13px;
    display: block;
}

.reviewpro-cookie-consent__nojs a,
.reviewpro-consent-nojs a {
    margin-right: 10px;
    text-decoration: underline;
}

.reviewpro-js .reviewpro-cookie-consent__nojs,
.reviewpro-js .reviewpro-consent-nojs {
    display: none;
}

.reviewpro-cookie-consent__privacy-link {
    display: inline;
    margin-left: 4px;
    text-decoration: underline;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.reviewpro-cookie-consent__privacy-link:hover {
    opacity: 0.8;
}

.reviewpro-cookie-consent__actions,
[data-rp-consent="actions"] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    /* Ensure actions container is interactive */
    pointer-events: auto;
    touch-action: manipulation;
    position: relative;
    z-index: 10; /* Ensure buttons are above other content */
}

/* Backup hooks in case external CSS is blocked */
html:not(.reviewpro-js) [data-rp-consent="banner"] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000;
    background-color: #ffffff;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

html:not(.reviewpro-js) [data-rp-consent="container"] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

html:not(.reviewpro-js) [data-rp-consent="content"] {
    flex: 1;
    min-width: 260px;
}

html:not(.reviewpro-js) [data-rp-consent="title"] {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}

html:not(.reviewpro-js) [data-rp-consent="message"] {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    display: block;
    white-space: normal;
}

html:not(.reviewpro-js) [data-rp-consent="actions"] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 6px;
}

html:not(.reviewpro-js) [data-rp-consent~="btn"] {
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #cccccc;
    background: #f3f3f3;
    color: #111111;
    font-weight: 600;
    cursor: pointer;
}

html:not(.reviewpro-js) [data-rp-consent~="btn-accept"] {
    background: #28a745;
    border-color: #28a745;
    color: #ffffff;
}

html:not(.reviewpro-js) [data-rp-consent~="btn-reject"] {
    background: #6c757d;
    border-color: #6c757d;
    color: #ffffff;
}

html:not(.reviewpro-js) [data-rp-consent~="btn-customize"] {
    background: transparent;
    border-color: currentColor;
    color: inherit;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

.reviewpro-cookie-consent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    /* Ensure mobile touch works */
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.reviewpro-cookie-consent__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviewpro-cookie-consent__btn:active {
    transform: translateY(0);
}

.reviewpro-cookie-consent__btn:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.reviewpro-cookie-consent__btn--accept,
.reviewpro-cookie-consent__btn--save {
    background-color: #28a745;
    color: #ffffff;
}

.reviewpro-cookie-consent__btn--accept:hover,
.reviewpro-cookie-consent__btn--save:hover {
    background-color: #218838;
}

.reviewpro-cookie-consent__btn--reject {
    background-color: #6c757d;
    color: #ffffff;
}

.reviewpro-cookie-consent__btn--reject:hover {
    background-color: #5a6268;
}

.reviewpro-cookie-consent__btn--customize {
    background-color: transparent;
    border: 2px solid currentColor;
    color: inherit;
}

.reviewpro-cookie-consent__btn--customize:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Position Variants
   ========================================================================== */

/* Bottom Bar (Default) */
.reviewpro-cookie-consent--bottom {
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.reviewpro-cookie-consent--top {
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom Left Popup */
.reviewpro-cookie-consent--bottom-left {
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.reviewpro-cookie-consent--bottom-left .reviewpro-cookie-consent__container {
    flex-direction: column;
    align-items: flex-start;
}

.reviewpro-cookie-consent--bottom-left .reviewpro-cookie-consent__actions {
    width: 100%;
}

.reviewpro-cookie-consent--bottom-left .reviewpro-cookie-consent__btn {
    flex: 1;
    min-width: 0;
}

/* Bottom Right Popup */
.reviewpro-cookie-consent--bottom-right {
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.reviewpro-cookie-consent--bottom-right .reviewpro-cookie-consent__container {
    flex-direction: column;
    align-items: flex-start;
}

.reviewpro-cookie-consent--bottom-right .reviewpro-cookie-consent__actions {
    width: 100%;
}

.reviewpro-cookie-consent--bottom-right .reviewpro-cookie-consent__btn {
    flex: 1;
    min-width: 0;
}

/* Center Modal */
.reviewpro-cookie-consent--center {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.reviewpro-cookie-consent--center .reviewpro-cookie-consent__container {
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: stretch;
}

.reviewpro-cookie-consent--center .reviewpro-cookie-consent__content,
.reviewpro-cookie-consent--center .reviewpro-consent-content {
    text-align: center;
}

.reviewpro-cookie-consent--center .reviewpro-cookie-consent__actions {
    justify-content: center;
}

/* ==========================================================================
   Style Variants (Light/Dark)
   ========================================================================== */

/* Light Theme (Default) */
.reviewpro-cookie-consent--light {
    background-color: #ffffff;
    color: #333333;
}

.reviewpro-cookie-consent--light .reviewpro-cookie-consent__privacy-link {
    color: #28a745;
}

.reviewpro-cookie-consent--light.reviewpro-cookie-consent--center {
    background-color: rgba(0, 0, 0, 0.5);
}

.reviewpro-cookie-consent--light.reviewpro-cookie-consent--center .reviewpro-cookie-consent__container {
    background-color: #ffffff;
}

/* Dark Theme */
.reviewpro-cookie-consent--dark {
    background-color: #1a1a2e;
    color: #e8e8e8;
}

.reviewpro-cookie-consent--dark .reviewpro-cookie-consent__privacy-link {
    color: #4ade80;
}

.reviewpro-cookie-consent--dark .reviewpro-cookie-consent__btn--customize {
    border-color: rgba(255, 255, 255, 0.3);
}

.reviewpro-cookie-consent--dark .reviewpro-cookie-consent__btn--customize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.reviewpro-cookie-consent--dark.reviewpro-cookie-consent--center {
    background-color: rgba(0, 0, 0, 0.7);
}

.reviewpro-cookie-consent--dark.reviewpro-cookie-consent--center .reviewpro-cookie-consent__container {
    background-color: #1a1a2e;
}

/* ==========================================================================
   Cookie Preferences Modal
   ========================================================================== */

.reviewpro-cookie-preferences {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999999; /* Must be above banner and age gate */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.reviewpro-cookie-preferences__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.reviewpro-cookie-preferences__modal {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.reviewpro-cookie-preferences__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.reviewpro-cookie-preferences__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.reviewpro-cookie-preferences__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 28px;
    line-height: 1;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.reviewpro-cookie-preferences__close:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
}

.reviewpro-cookie-preferences__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.reviewpro-cookie-preferences__category {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.reviewpro-cookie-preferences__category:last-child {
    border-bottom: none;
}

.reviewpro-cookie-preferences__category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.reviewpro-cookie-preferences__category-name {
    font-size: 16px;
    font-weight: 600;
}

.reviewpro-cookie-preferences__required {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.6;
}

.reviewpro-cookie-preferences__category-description {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.8;
    padding-left: 60px;
}

.reviewpro-cookie-preferences__footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-end;
}

/* ==========================================================================
   Toggle Switch
   ========================================================================== */

.reviewpro-cookie-preferences__toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.reviewpro-cookie-preferences__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.reviewpro-cookie-preferences__toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 26px;
    transition: all 0.3s ease;
}

.reviewpro-cookie-preferences__toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reviewpro-cookie-preferences__toggle input:checked + .reviewpro-cookie-preferences__toggle-slider {
    background-color: #28a745;
}

.reviewpro-cookie-preferences__toggle input:checked + .reviewpro-cookie-preferences__toggle-slider::before {
    transform: translateX(22px);
}

.reviewpro-cookie-preferences__toggle input:disabled + .reviewpro-cookie-preferences__toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.reviewpro-cookie-preferences__toggle input:focus + .reviewpro-cookie-preferences__toggle-slider {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

/* Preferences Modal Light Theme */
.reviewpro-cookie-preferences.reviewpro-cookie-consent--light .reviewpro-cookie-preferences__modal {
    background-color: #ffffff;
    color: #333333;
}

/* Preferences Modal Dark Theme */
.reviewpro-cookie-preferences.reviewpro-cookie-consent--dark .reviewpro-cookie-preferences__overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.reviewpro-cookie-preferences.reviewpro-cookie-consent--dark .reviewpro-cookie-preferences__modal {
    background-color: #1a1a2e;
    color: #e8e8e8;
}

.reviewpro-cookie-preferences.reviewpro-cookie-consent--dark .reviewpro-cookie-preferences__header,
.reviewpro-cookie-preferences.reviewpro-cookie-consent--dark .reviewpro-cookie-preferences__footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.reviewpro-cookie-preferences.reviewpro-cookie-consent--dark .reviewpro-cookie-preferences__category {
    border-color: rgba(255, 255, 255, 0.08);
}

.reviewpro-cookie-preferences.reviewpro-cookie-consent--dark .reviewpro-cookie-preferences__close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Floating Settings Button
   ========================================================================== */

.reviewpro-cookie-settings-btn {
    position: fixed;
    z-index: 999999999; /* Same as banner - above age gate */
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.reviewpro-cookie-settings-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.reviewpro-cookie-settings-btn:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.reviewpro-cookie-settings-btn svg {
    width: 24px;
    height: 24px;
}

.reviewpro-cookie-settings-btn--bottom-left {
    bottom: 20px;
    left: 20px;
}

.reviewpro-cookie-settings-btn--bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Settings Button Dark Theme */
.reviewpro-cookie-settings-btn.reviewpro-cookie-consent--dark {
    background-color: #1a1a2e;
    color: #4ade80;
    border: 2px solid #4ade80;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    .reviewpro-cookie-consent {
        /* Ensure banner is visible on mobile - use very high z-index */
        z-index: 9999999 !important;
        /* Only show if not hidden by JS */
        pointer-events: auto !important;
        touch-action: manipulation !important;
        position: fixed !important;
        padding: 14px 16px;
    }
    
    /* Only hide if JS has set consent-ready AND display:none inline style */
    .reviewpro-cookie-consent[data-consent-ready="true"][style*="display: none"] {
        display: none !important;
    }

    .reviewpro-cookie-consent__container {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .reviewpro-cookie-consent__content,
    .reviewpro-consent-content,
    [data-rp-consent="content"] {
        text-align: center;
        min-width: 100%;
    }
    
    .reviewpro-cookie-consent__title,
    .reviewpro-consent-title,
    [data-rp-consent="title"] {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .reviewpro-cookie-consent__message,
    .reviewpro-consent-message,
    [data-rp-consent="message"] {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .reviewpro-cookie-consent__actions,
    [data-rp-consent="actions"] {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        /* Ensure buttons are interactive */
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    html:not(.reviewpro-js) [data-rp-consent="actions"] {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .reviewpro-cookie-consent__btn,
    [data-rp-consent~="btn"] {
        width: 100% !important;
        padding: 13px 20px !important;
        font-size: 16px !important; /* Prevent iOS zoom on focus */
        min-height: 48px !important; /* iOS recommended touch target size */
        display: flex !important;
        align-items: center;
        justify-content: center;
        /* Critical for mobile interaction */
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        cursor: pointer !important;
        position: relative;
        z-index: 100;
    }

    html:not(.reviewpro-js) [data-rp-consent~="btn"] {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
    }

    .reviewpro-cookie-consent--bottom-left,
    .reviewpro-cookie-consent--bottom-right {
        left: 10px;
        right: 10px;
        bottom: 0;
        max-width: none;
        border-radius: 0;
    }

    .reviewpro-cookie-consent--bottom {
        left: 0;
        right: 0;
        bottom: 0;
    }

    .reviewpro-cookie-consent--top {
        left: 0;
        right: 0;
        top: 0;
    }

    .reviewpro-cookie-preferences__modal {
        max-height: 80vh;
    }

    .reviewpro-cookie-preferences__category-description {
        padding-left: 0;
        margin-top: 8px;
    }

    .reviewpro-cookie-settings-btn {
        width: 44px;
        height: 44px;
    }

    .reviewpro-cookie-settings-btn--bottom-left,
    .reviewpro-cookie-settings-btn--bottom-right {
        bottom: 10px;
    }

    .reviewpro-cookie-settings-btn--bottom-left {
        left: 10px;
    }

    .reviewpro-cookie-settings-btn--bottom-right {
        right: 10px;
    }
}

/* ==========================================================================
   Animation
   ========================================================================== */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reviewpro-cookie-consent--bottom,
.reviewpro-cookie-consent--bottom-left,
.reviewpro-cookie-consent--bottom-right {
    animation: slideUp 0.4s ease-out;
}

.reviewpro-cookie-consent--top {
    animation: slideDown 0.4s ease-out;
}

.reviewpro-cookie-consent--center {
    animation: fadeIn 0.3s ease-out;
}

.reviewpro-cookie-consent--center .reviewpro-cookie-consent__container {
    animation: slideUp 0.4s ease-out;
}

.reviewpro-cookie-preferences {
    animation: fadeIn 0.3s ease-out;
}

.reviewpro-cookie-preferences__modal {
    animation: slideUp 0.4s ease-out;
}

.reviewpro-cookie-settings-btn {
    animation: fadeIn 0.4s ease-out;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .reviewpro-cookie-consent,
    .reviewpro-cookie-preferences,
    .reviewpro-cookie-settings-btn {
        display: none !important;
    }
}

/* ==========================================================================
   Accessibility - Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .reviewpro-cookie-consent,
    .reviewpro-cookie-consent__container,
    .reviewpro-cookie-preferences,
    .reviewpro-cookie-preferences__modal,
    .reviewpro-cookie-settings-btn,
    .reviewpro-cookie-consent__btn,
    .reviewpro-cookie-preferences__toggle-slider,
    .reviewpro-cookie-preferences__toggle-slider::before {
        animation: none;
        transition: none;
    }
}
