.ott-reviews {
		--glass-bg: rgba(255, 255, 255, 0.65);
        --glass-border: rgba(255, 255, 255, 0.5);
        --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        --glass-blur: blur(24px);
        --primary-text: #1d1d1f;
        --secondary-text: #86868b;
        --accent-color: #007AFF;
        --google-red: #ea4335;
        --fb-blue: #1877f2;
        --star-yellow: #fbbc04;
        max-width: 800px;
        color: var(--primary-text);
    }

    .ott-tabs {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-bottom: 40px;
        padding: 4px;
        background: rgba(118, 118, 128, 0.12);
        border-radius: 99px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        backdrop-filter: blur(10px);
    }

    .ott-tab {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 20px;
        color: var(--primary-text);
        cursor: pointer;
        position: relative;
        user-select: none;
        border-radius: 99px;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 500;
        border: none;
        /* No border for flat look */
        opacity: 0.7;
    }

    .ott-tab:hover {
        opacity: 1;
    }

    .ott-tab i {
        font-size: 1rem;
    }

    .ott-count {
        background: rgba(0, 0, 0, 0.08);
        border-radius: 99px;
        padding: 2px 8px;
        font-size: 0.75rem;
        font-weight: 600;
        color: inherit;
    }

    .ott-tab.is-active {
        background: #fff;
        color: #000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        /* Subtle lift */
        opacity: 1;
    }

    .ott-tab[data-tab="gmaps"].is-active {
        color: var(--google-red);
    }

    .ott-tab[data-tab="fb"].is-active {
        color: var(--fb-blue);
    }

    .ott-tab.is-active .ott-count {
        background: rgba(0, 0, 0, 0.05);
    }

    /* Panels */
    .ott-panel {
        display: none;
        animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ott-panel.is-active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .ott-reviews-list {
        display: grid;
        gap: 20px;
    }
    .ott-gmaps-hero {
        border-radius: 20px;
    }
    .ott-gmaps-review,
    .wp-facebook-review {
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid var(--glass-border);
        /* Inner light border for glass edge effect */
        box-shadow:
            var(--glass-shadow),
            inset 0 0 0 1px rgba(255, 255, 255, 0.4);
        border-radius: 20px;
        padding: 24px;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .ott-gmaps-review:hover,
    .wp-facebook-review:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .ott-gr-header {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 6px;
    }

    .ott-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        background: #f5f5f7;
        /* No border, cleaner look */
    }

    .ott-author {
        flex: 1;
        min-width: 0;
    }

    .ott-name {
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        color: var(--primary-text);
        display: block;
        margin-bottom: 2px;
    }

    .ott-userinfo {
        font-size: 0.8rem;
        color: var(--secondary-text);
    }

    /* Meta (Stars & Date) */
    .ott-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
        font-size: 0.85rem;
        color: var(--secondary-text);
    }

    .wp-facebook-stars {
        display: inline-block;
        width: 100px;
        height: 20px;
        background-image: url(https://api.iconify.design/solar/star-bold.svg?color=%23ffac33);
        background-repeat: space no-repeat;
        background-size: 18% 100%;
    }

    .ott-date {
        opacity: 0.6;
        font-size: 0.8rem;
    }

    /* Body Text */
    .ott-gr-body {
        line-height: 1.6;
        color: var(--primary-text);
        font-size: 0.95rem;
        font-weight: 400;
    }

    /* Load More Button - Restored & Styled */
    .moretestimonials {
        text-align: center;
        margin: 40px auto 0;
        padding: 12px 32px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 99px;
        color: var(--accent-color);
        cursor: pointer;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        display: block !important;
        /* Force display to override potential JS issues initially, though JS will toggle it */
        width: fit-content;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .moretestimonials:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-1px);
    }

    /* Gallery Fixes */
    .custom-gallery {
        margin-top: 16px;
        border-radius: 12px;
        overflow: hidden;
        opacity: 0.95;
        transition: opacity 0.2s;
    }

    .custom-gallery:hover {
        opacity: 1;
    }

    .wp-facebook-review{display:block;}

    .wpacedit {
        line-height: 20px;
        color: #333;
        display: inline;
    }

    .wp-fbrevedit .wp-facebook-left {
        display: table-cell;
        vertical-align: top;
    }

    .wp-fbrevedit .wp-facebook-right {
        display: table-cell;
        vertical-align: top;
        width: 10000px;
    }

    .wp-fbrevedit .wp-facebook-left img {
        border: none;
        float: left;
        height: 50px;
        width: 50px;
        max-width: none;
        margin-right: 5px;
        border-radius: 50%;
        box-shadow: 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24);
    }

    .wp-fbrevedit .wp-facebook-name {
        color: #427fed;
        font-weight: bold;
        margin: 0 0 2px;
        padding-right: 6px;
        text-decoration: none;
    }

    .wp-fbrevedit .wp-facebook-rating {
        color: #4080ff;
        font-size: 20px;
        margin: 0 6px 0 0;
        vertical-align: middle;
    }

    .wp-fbrevedit .wp-facebook-powered {
        color: #999;
        margin: 6px 0 0;
    }

    .wp-fbrevedit .wp-facebook-powered span {
        color: #4080ff;
        font-weight: 700;
        font-size: 15px;
    }

    .wp-fbrevedit .wp-facebook-content-inner {
        position: relative;
        min-height: 100%;
        margin: 0 auto;
        display: block;
    }

    .wp-fbrevedit .wp-facebook-review {
        margin-top: 15px !important;
    }

    .wp-fbrevedit .wp-facebook-time {
        color: #999;
        font-size: 13px;
    }

    .wp-fbrevedit .wp-facebook-text {
        color: #222;
        font-size: 14px;
        line-height: 22px;
        max-width: 100%;
        overflow: hidden;
        white-space: pre-wrap;
        word-break: break-word;
    }

    @media (max-width: 480px) {
        .ott-reviews {
            padding: 20px 16px;
        }

        .ott-gmaps-review {
            padding: 20px;
        }
		
		.ott-gmaps-review, .wp-facebook-review {
			padding: 12px;
		}
		
        .ott-tabs {
            width: 100%;
        }

        .ott-tab {
            flex: 1;
            padding: 8px;
            font-size: 0.85rem;
        }
    }

.moretestimonials[aria-busy="true"]{opacity:.6;pointer-events:none}
.moretestimonials.is-hidden{display:none!important}
