/* ═══════════════════════════════════════════════════
   Casino Review Page Styles
   Prefix: cr- (casino review)
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
.cr-page {
    color: #1a1a2e;
    line-height: 1.6;
}
.cr-page *,
.cr-page *::before,
.cr-page *::after {
    box-sizing: border-box;
}
.cr-page h1, .cr-page h2, .cr-page h3 {
    margin-top: 0;
    text-align: left;
    color: #1a1a2e;
}


/* ── Breadcrumbs ── */
.cr-breadcrumbs {
    background: #1e2529;
    padding: 14px 0;
    margin-top: 90px;
}
.cr-breadcrumbs nav {
    font-size: 13px;
    color: #9ca3af;
}
.cr-breadcrumbs a {
    color: #ebac56;
    text-decoration: none;
}
.cr-breadcrumbs a:hover {
    text-decoration: underline;
}


/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.cr-hero {
    background: linear-gradient(160deg, #1e2529 0%, #2a3134 50%, #1e2529 100%);
    padding: 48px 0 56px;
    border-bottom: 3px solid #ebac56;
}
.cr-hero__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.cr-hero__brand {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}
.cr-hero__logo {
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cr-hero__logo img {
    display: block;
    max-height: 60px;
    width: auto;
}
.cr-page .cr-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.cr-hero__rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cr-hero__score {
    font-size: 28px;
    font-weight: 800;
    color: #ebac56;
}
.cr-hero__score span {
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
}
.cr-hero__stars {
    display: flex;
    align-items: center;
}
.cr-hero__stars .star-ratings {
    font-size: 22px;
}
.cr-hero__safety {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Trust Badges */
.cr-hero__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.cr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(235, 172, 86, 0.1);
    border: 1px solid rgba(235, 172, 86, 0.3);
    color: #ebac56;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
}

/* Benefits */
.cr-hero__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin-bottom: 24px;
}
.cr-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 14px;
}
.cr-benefit svg {
    color: #ebac56;
    flex-shrink: 0;
}


/* ── CTA Buttons ── */
.cr-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ebac56, #d99a3e);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
}
.cr-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(235, 172, 86, 0.35);
    color: #fff;
    text-decoration: none;
}
.cr-cta--hero {
    font-size: 17px;
    padding: 16px 40px;
}
.cr-cta--facts,
.cr-cta--sidebar {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
}
.cr-cta--bonus {
    flex-shrink: 0;
    padding: 12px 28px;
}


/* ── Quick Facts Card ── */
.cr-facts-card {
    background: #fff;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.cr-facts-card__header {
    background: #1a1a2e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    text-align: center;
}
.cr-facts-card__list {
    margin: 0;
    padding: 0;
}
.cr-facts-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.cr-facts-card__row:last-child {
    border-bottom: none;
}
.cr-facts-card__row dt {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}
.cr-facts-card__row dd {
    margin: 0;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 600;
    text-align: right;
    max-width: 55%;
}
.cr-facts-card .cr-cta {
    margin: 16px 20px 20px;
    width: calc(100% - 40px);
}


/* ═══════════════════════════════════════════════════
   BODY LAYOUT
   ═══════════════════════════════════════════════════ */
.cr-body {
    background: #f5f6f8;
    padding: 40px 0 60px;
}
.cr-body__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}


/* ── Content Column ── */
.cr-content {
    min-width: 0;
}


/* ── Sections ── */
.cr-section {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.cr-section__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ebac56;
    display: inline-block;
}


/* ── Bonus Card ── */
.cr-bonus-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fef9f0 0%, #fff8ee 100%);
    border: 2px solid #ebac56;
    border-radius: 12px;
    padding: 24px;
}
.cr-bonus-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #ebac56;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.cr-bonus-card__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 4px;
}
.cr-bonus-card__value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
}
.cr-bonus-card__content {
    flex: 1;
    min-width: 0;
}


/* ── Rating Breakdown ── */
.cr-ratings-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cr-rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cr-rating-row__label {
    width: 200px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cr-rating-row__score {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
}
.cr-rating-row__bar {
    flex: 1;
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}
.cr-rating-row__fill {
    height: 100%;
    background: linear-gradient(90deg, #ebac56, #d99a3e);
    border-radius: 5px;
    transition: width 1.2s ease-out;
}
.cr-rating-total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid #f0f0f0;
}
.cr-rating-total__label {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.cr-rating-total__score {
    color: #ebac56;
    font-weight: 700;
}
.cr-rating-row__bar--total {
    height: 14px;
}
.cr-rating-row__fill--total {
    background: linear-gradient(90deg, #d04b59, #ebac56);
}


/* ── Games Grid ── */
.cr-games-total {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 500;
}
.cr-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}
.cr-game-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 12px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.15s ease;
}
.cr-game-card:hover {
    border-color: #ebac56;
    transform: translateY(-2px);
}
.cr-game-card img {
    display: block;
    margin: 0 auto 8px;
}
.cr-game-card__count {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.cr-game-card__label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


/* ── Withdrawal Limits ── */
.cr-limits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.cr-limit-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.cr-limit-card__period {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 6px;
}
.cr-limit-card__value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}


/* ── Pros & Cons ── */
.cr-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cr-proscons__col {
    border-radius: 10px;
    overflow: hidden;
}
.cr-proscons__header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 20px;
    color: #fff;
}
.cr-proscons__header--pros {
    background: #16a34a;
}
.cr-proscons__header--cons {
    background: #dc2626;
}
.cr-proscons__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cr-proscons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}
.cr-proscons__list li:last-child {
    border-bottom: none;
}
.cr-proscons__list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}
.cr-proscons__col--pros {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.cr-proscons__col--cons {
    background: #fef2f2;
    border: 1px solid #fecaca;
}


/* ── Review Content ── */
.cr-review-body {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}
.cr-review-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ebac56;
}
.cr-review-body h2:first-child {
    margin-top: 0;
}
.cr-review-body h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 28px 0 12px;
}
.cr-review-body p {
    margin: 0 0 16px;
    color: #374151;
}
.cr-review-body strong {
    color: #1a1a2e;
}
.cr-review-body ul,
.cr-review-body ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.cr-review-body li {
    margin-bottom: 6px;
    color: #374151;
}
.cr-review-body a {
    color: #ebac56;
    text-decoration: underline;
}
.cr-review-body a:hover {
    color: #d99a3e;
}


/* ── Mid-Content CTA ── */
.cr-mid-cta {
    background: linear-gradient(135deg, #1e2529, #2a3134);
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 24px;
    text-align: center;
    border: 1px solid rgba(235, 172, 86, 0.3);
}
.cr-mid-cta__text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.cr-cta--mid {
    font-size: 17px;
    padding: 14px 48px;
}


/* ── Related Casinos ── */
.cr-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cr-related-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.2s ease;
}
.cr-related-card:hover {
    border-color: #ebac56;
}
.cr-related-card__logo {
    display: block;
    margin-bottom: 10px;
}
.cr-related-card__logo img {
    max-height: 45px;
    width: auto;
    display: inline-block;
}
.cr-related-card__name a {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
}
.cr-related-card__name a:hover {
    color: #ebac56;
}
.cr-related-card__rating {
    font-size: 20px;
    font-weight: 800;
    color: #ebac56;
    margin: 6px 0;
}
.cr-related-card__bonus {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.4;
}
.cr-related-card__actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.cr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
}
.cr-btn--primary {
    background: #ebac56;
    color: #fff;
}
.cr-btn--primary:hover {
    background: #d99a3e;
    color: #fff;
}
.cr-btn--outline {
    background: transparent;
    color: #1a1a2e;
    border: 1px solid #d1d5db;
}
.cr-btn--outline:hover {
    border-color: #ebac56;
    color: #ebac56;
}


/* ═══════════════════════════════════════════════════
   STICKY SIDEBAR
   ═══════════════════════════════════════════════════ */
.cr-sidebar__sticky {
    position: sticky;
    top: 110px;
}
.cr-sidebar-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}
.cr-sidebar-card__logo {
    padding: 20px 20px 12px;
}
.cr-sidebar-card__logo img {
    max-height: 50px;
    width: auto;
}
.cr-sidebar-card__score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}
.cr-sidebar-card__number {
    font-size: 36px;
    font-weight: 800;
    color: #ebac56;
    line-height: 1;
}
.cr-sidebar-card__max {
    font-size: 16px;
    color: #9ca3af;
    font-weight: 500;
}
.cr-sidebar-card__stars {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.cr-sidebar-card__facts {
    margin: 0;
    padding: 0;
    border-top: 1px solid #f0f0f0;
}
.cr-sidebar-card__fact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.cr-sidebar-card__fact:last-child {
    border-bottom: none;
}
.cr-sidebar-card__fact dt {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}
.cr-sidebar-card__fact dd {
    margin: 0;
    font-size: 13px;
    color: #1a1a2e;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}
.cr-sidebar-card .cr-cta {
    margin: 16px 16px 16px;
    width: calc(100% - 32px);
}


/* ═══════════════════════════════════════════════════
   AUTHOR BYLINE BAR
   ═══════════════════════════════════════════════════ */
.cr-author-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}
.cr-author-bar__inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cr-author-bar__photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.cr-author-bar__info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.cr-author-bar__name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}
.cr-author-bar__name a {
    color: #ebac56;
    text-decoration: none;
}
.cr-author-bar__name a:hover {
    text-decoration: underline;
}
.cr-author-bar__meta {
    font-size: 12px;
    color: #9ca3af;
}
.cr-author-bar__disclosure {
    flex-shrink: 0;
}
.cr-author-bar__disclosure a {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.15s ease;
}
.cr-author-bar__disclosure a:hover {
    border-color: #ebac56;
    color: #ebac56;
}


/* ═══════════════════════════════════════════════════
   RESPONSIBLE GAMING NOTICE
   ═══════════════════════════════════════════════════ */
.cr-rg-notice {
    background: #1e2529;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.cr-rg-notice__inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
}
.cr-rg-notice__inner svg {
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 2px;
}
.cr-rg-notice__inner div {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}
.cr-rg-notice__inner strong {
    color: #d1d5db;
}
.cr-rg-notice__inner a {
    color: #ebac56;
    text-decoration: underline;
}


/* ═══════════════════════════════════════════════════
   MOBILE FLOATING CTA
   ═══════════════════════════════════════════════════ */
.cr-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #1e2529;
    border-top: 2px solid #ebac56;
    padding: 10px 16px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}
.cr-mobile-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}
.cr-mobile-cta__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cr-mobile-cta__info strong {
    color: #fff;
    font-size: 14px;
}
.cr-mobile-cta__info span {
    color: #ebac56;
    font-size: 13px;
    font-weight: 700;
}
.cr-cta--mobile {
    padding: 10px 24px;
    font-size: 14px;
    white-space: nowrap;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE - Tablet (max-width: 1100px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .cr-hero {
        padding: 32px 0 40px;
    }
    .cr-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cr-hero__title {
        font-size: 26px;
    }
    .cr-hero__brand {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .cr-hero__title-block {
        text-align: center;
    }
    .cr-hero__rating-row {
        justify-content: center;
    }
    .cr-hero__badges {
        justify-content: center;
    }
    .cr-hero__benefits {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .cr-hero__main {
        text-align: center;
    }
    .cr-hero__main .cr-cta {
        margin: 0 auto;
    }

    .cr-body__grid {
        grid-template-columns: 1fr;
    }

    /* Hide desktop sidebar, show mobile CTA */
    .cr-sidebar {
        display: none;
    }
    .cr-mobile-cta {
        display: block;
    }

    .cr-section {
        padding: 24px 20px;
    }
    .cr-section__title {
        font-size: 20px;
    }

    .cr-bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .cr-rating-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .cr-rating-row__label {
        width: 100%;
    }
    .cr-rating-row__bar {
        width: 100%;
    }

    .cr-limits-grid {
        grid-template-columns: 1fr;
    }

    .cr-proscons {
        grid-template-columns: 1fr;
    }

    .cr-related-grid {
        grid-template-columns: 1fr;
    }

    .cr-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .cr-author-bar__inner {
        flex-wrap: wrap;
    }
    .cr-author-bar__disclosure {
        width: 100%;
        margin-top: 4px;
        padding-left: 48px;
    }

    .cr-rg-notice__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Add bottom padding for floating CTA */
    .cr-page {
        padding-bottom: 70px;
    }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE - Mobile (max-width: 700px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 700px) {
    .cr-hero {
        padding: 24px 0 32px;
    }
    .cr-hero__title {
        font-size: 22px;
    }
    .cr-hero__score {
        font-size: 24px;
    }
    .cr-hero__stars .star-ratings {
        font-size: 18px;
    }

    .cr-section {
        padding: 20px 16px;
        border-radius: 10px;
        margin-bottom: 16px;
    }
    .cr-section__title {
        font-size: 18px;
    }

    .cr-bonus-card {
        padding: 16px;
    }
    .cr-bonus-card__value {
        font-size: 16px;
    }

    .cr-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .cr-game-card {
        padding: 14px 8px;
    }
    .cr-game-card__count {
        font-size: 16px;
    }
    .cr-game-card__label {
        font-size: 11px;
    }
    .cr-game-card img {
        width: 28px;
        height: 28px;
    }

    .cr-review-body {
        font-size: 15px;
    }
    .cr-review-body h2 {
        font-size: 20px;
    }
    .cr-review-body h3 {
        font-size: 17px;
    }

    .cr-mid-cta {
        padding: 24px 20px;
    }
    .cr-mid-cta__text {
        font-size: 16px;
    }
}


/* ═══════════════════════════════════════════════════
   STAR RATINGS (inherited from theme, scoped to cr-page)
   ═══════════════════════════════════════════════════ */
.cr-page .star-ratings {
    unicode-bidi: bidi-override;
    color: #eb9c46;
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.cr-page .star-ratings .fill-ratings {
    color: #eb9c46;
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}
.cr-page .star-ratings .fill-ratings span {
    color: #eb9c46;
    display: inline-block;
}
.cr-page .star-ratings .empty-ratings {
    padding: 0;
    display: block;
    z-index: 0;
}
.cr-page .star-ratings .empty-ratings span {
    -webkit-text-fill-color: #f6f0ec;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #eb9c46;
}
