/** Shopify CDN: Minification failed

Line 864:0 Unexpected "}"

**/
/* Main Product Isolated - Simplified PDP for landing pages */

/* ==========================================================================
   Simple fix: Full-width sections for backgrounds, max-width for content
   ========================================================================== */

/* Make all sections full-width so backgrounds extend edge-to-edge */
@media screen and (min-width: 777px) {

  body.isolated-pdp .product section,
  body.isolated-pdp main.product section,
  body.isolated-pdp section.shopify-section {
    max-width: 100% !important;
    width: 100% !important;
  }
}

section.shopify-section.image-headline {
  margin: 0 !important;
}

/* Ensure section wrappers are also full-width */
body.isolated-pdp div[id^="shopify-section-"] {
  max-width: 100% !important;
  width: 100% !important;
}

/* Standardy jakości Kijimea (vorteile-kijimea): constrain content width on isolated PDP only */
@media screen and (min-width: 777px) {
  body.isolated-pdp section.shopify-section.vorteile-kijimea div.three-column-section {
    max-width: 1312px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Nasz doradca naukowy (expert section): max-width only on isolated PDP */
@media screen and (min-width: 777px) {
  body.isolated-pdp section.wissenschaftlicher-beirat .expert-wrapper-desktop.home-test {
    max-width: 1312px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Common sections on isolated PDP: consistent max-width 1312px, centered */
@media screen and (min-width: 777px) {

  body.isolated-pdp .reviews-stories-section .section-container,
  body.isolated-pdp .benefits-isolated-section .benefits-isolated-container,
  body.isolated-pdp .comparison-table-isolated .comparison-container,
  body.isolated-pdp .vorteile-pdp-section {
    max-width: 1312px;
    margin: auto;
  }
}

/* ==========================================================================
   Trust Headline Section (Above Product)
   ========================================================================== */

.trust-headline-section {
  background: #FBFBFB;
  padding: 37.5px 64px;
  text-align: center;
}

.trust-headline-section h2 {
  color: #1c3660;
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 8px 0;
}

.trust-headline-section .rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.trust-headline-section .rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trust-headline-section .stars {
  display: flex;
  gap: 0;
}

.trust-headline-section .stars svg {
  width: 18px;
  height: 16px;
}

.trust-headline-section .rating-number {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #48494B;
}

/* Reviews.io source logo - underneath, centered, not clickable */
.trust-headline-section .trust-headline-source {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  pointer-events: none;
  cursor: default;
}

.trust-headline-section .trust-headline-reviewsio-logo {
  height: 18px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  vertical-align: middle;
}

@media screen and (max-width: 749px) {
  .trust-headline-section {
    padding: 40px 25px;
  }

  .trust-headline-section h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ==========================================================================
   Main Product Grid
   ========================================================================== */

.product-isolated {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  flex-direction: unset !important;
  gap: 130px;
  max-width: 1312px !important;
  margin: 0 auto;
  padding: 64px;
}

@media screen and (max-width: 989px) {
  .product-isolated {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 32px;
    padding: 0;
    background: #E9EDF0;
  }
}

/* ==========================================================================
   Product Gallery - Desktop Grid
   ========================================================================== */

.product-gallery-isolated {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-gallery-isolated .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-gallery-isolated .gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

/* All gallery images: cursor zoom-in + click to open lightbox (same as normal product) */
@media screen and (min-width: 990px) {
  .product-gallery-isolated .gallery-item[data-zoom-src] {
    cursor: zoom-in;
  }
}

.product-gallery-isolated .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery zoom lightbox (nutrition facts – fullscreen, close via X / backdrop / Escape) */
.gallery-zoom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  pointer-events: none;
}
.gallery-zoom-lightbox.is-open {
  display: flex !important;
  pointer-events: auto;
}
.gallery-zoom-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
  z-index: 1;
  pointer-events: auto;
}
.gallery-zoom-lightbox__content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: auto;
}
.gallery-zoom-lightbox__content:hover {
  pointer-events: auto;
}
.gallery-zoom-lightbox__img {
  max-width: 100%;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.gallery-zoom-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, color 0.2s;
  pointer-events: auto;
}
.gallery-zoom-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.gallery-zoom-lightbox__close svg {
  width: 24px;
  height: 24px;
}

/* Show 4 items at first; items 5–6 hidden until "show more" (desktop only) */
@media screen and (min-width: 990px) {
  .product-gallery-isolated .gallery-item--more {
    display: none;
  }

  .product-gallery-isolated.is-expanded .gallery-item--more {
    display: block;
  }
}

.product-gallery-isolated .gallery-toggle-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.product-gallery-isolated .show-more-btn,
.product-gallery-isolated .show-less-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #1c3660;
  color: #1c3660;
}

.product-gallery-isolated .show-more-btn {
  background: transparent;
}

/* Show less: white background, dark blue border & text (per design) */
.product-gallery-isolated .show-less-btn {
  display: none;
  background: #fff;
}

.product-gallery-isolated.is-expanded .show-more-btn {
  display: none;
}

.product-gallery-isolated.is-expanded .show-less-btn {
  display: flex;
}

/* Gallery Slider - default hidden on desktop */
.product-gallery-isolated .gallery-slider {
  display: none;
}

/* Mobile Gallery - Slider */
@media screen and (max-width: 989px) {
  .product-gallery-isolated .gallery-grid {
    display: none !important;
  }

  .product-gallery-isolated .gallery-slider {
    display: block !important;
    /* Full-bleed: image touches screen edges on mobile (Figma design) */
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .product-gallery-isolated .gallery-toggle-buttons {
    display: none;
  }

  .product-gallery-isolated .swiper-slide {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .product-gallery-isolated .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
  }

  .product-gallery-isolated .swiper-pagination {
    background: #E9EDF0;
  }
}

/* Swiper styles for mobile gallery (base) */
.product-gallery-isolated .swiper {
  width: 100%;
  padding-bottom: 30px;
}

.product-gallery-isolated .swiper-slide {
  display: flex;
  justify-content: center;
}

/* Desktop / larger screens: keep contained gallery with rounded corners */
@media screen and (min-width: 990px) {
  .product-gallery-isolated .swiper-slide img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
  }
}

.product-gallery-isolated .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #ddd;
  opacity: 1;
}

.product-gallery-isolated .swiper-pagination-bullet-active {
  background: #1c3660;
}

/* Mobile 10 Million Banner */
.mobile-10m-banner {
  display: none;
  background: #1c3660;
  padding: 12px 20px;
  text-align: center;
  margin-top: 8px;
}

.mobile-10m-banner .banner-number {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #E3C564;
}

.mobile-10m-banner .banner-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-left: 4px;
}

@media screen and (max-width: 989px) {
  .mobile-10m-banner {
    display: block;
  }
}

/* ==========================================================================
   Product Info
   ========================================================================== */

.product-info-isolated {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-info-isolated .product-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1c3660;
  margin: 0 0 8px 0;
  line-height: 40px;
}

.product-info-isolated .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-info-isolated .product-rating .stars {
  display: flex;
  gap: 0;
}

.product-info-isolated .product-rating .stars svg {
  width: 18px;
  height: 16px;
}

.product-info-isolated .product-rating .review-count {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #48494B;
}

@media screen and (max-width: 749px) {
  .product-info-isolated {
    padding: 32px 16px;
    background: #F0F4F6;
  }

  .product-info-isolated .product-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ==========================================================================
   USP Checkmarks
   ========================================================================== */

.product-usps-isolated {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
}

.product-usps-isolated .usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-usps-isolated .usp-item svg {
  width: 16px;
  height: 14px;
  flex-shrink: 0;
}

.product-usps-isolated .usp-item span {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #48494B;
}

.product-usps-isolated .usp-item p {
  margin: 0;
}

/* ==========================================================================
   Variant Picker / Price / Buy Button
   ========================================================================== */

.product-purchase-isolated {
  background: #fff;
  border-radius: 4px;
  margin-top: 0;
}

.product-purchase-isolated .variant-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.product-purchase-isolated .variant-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 2px solid #E7EDF1;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-purchase-isolated .variant-option.selected {
  border-color: #1c3660;
}

.product-purchase-isolated .variant-option .variant-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-purchase-isolated .variant-option .variant-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1c3660;
}

.product-purchase-isolated .variant-option .variant-details {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #48494B;
}

.product-purchase-isolated .variant-option .variant-price {
  text-align: right;
}

.product-purchase-isolated .variant-option .price-current {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1c3660;
}

.product-purchase-isolated .variant-option .price-per-unit {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #48494B;
}

.product-purchase-isolated .buy-button {
  width: 100%;
  padding: 18px 24px;
  background: #1c3660;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}

.product-purchase-isolated .buy-button:hover {
  background: #142847;
}

.product-purchase-isolated .buy-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-purchase-isolated .buy-button svg {
  width: 20px;
  height: 20px;
}

/* Checkout section scroll target: avoid sticky header covering it */
#checkout-section,
.checkout-variants-section {
  scroll-margin-top: 120px;
}

/* ==========================================================================
   Trust Badges Section
   ========================================================================== */

.trust-badges-isolated {


  border-radius: 8px;
  padding: 16px;
  padding-top: 58px;
  margin: 0 auto;
  max-width: 350px;
}

.trust-badges-isolated .company-verified {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 20px;
  margin-bottom: 16px;
}

.trust-badges-isolated .company-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c3660;
}

.trust-badges-isolated .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8fef2;
  border: 1px solid rgba(0, 105, 8, 0.2);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #006908;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  max-width: 280px;
}

.trust-badges-isolated .verified-badge__shield,
.trust-badges-isolated .verified-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trust-badges-isolated .verified-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Marketplace Ratings Grid */
.trust-badges-isolated .marketplace-ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-badges-isolated .marketplace-rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 8px;
  padding: 8px 16px;
  max-height: 150px;
  background: #F4F4F4;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-badges-isolated .marketplace-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
}

/* Allegro */
.trust-badges-isolated .allegro-card .allegro-text {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FF5A00;
  letter-spacing: -0.5px;
}

.trust-badges-isolated .allegro-stars svg {
  fill: #FF5A00;
}

/* Reviews.io */
.trust-badges-isolated .marketplace-logo.reviewsio {
  gap: 0;
  position: relative;
}

.trust-badges-isolated .reviewsio-logo {
  width: 100px;
  height: auto;
}

/* Text fallback when Reviews.io logo image fails to load */
.trust-badges-isolated .reviewsio-logo-fallback {
  display: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c3660;
  letter-spacing: -0.02em;
}

.trust-badges-isolated .reviewsio-logo-fallback--show {
  display: inline-block;
}

.trust-badges-isolated .reviewsio-stars svg {
  fill: #FFB800;
}

/* Amazon */
.trust-badges-isolated .marketplace-logo.amazon {
  flex-direction: column;
  gap: 0;
}

.trust-badges-isolated .amazon-card .amazon-text {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #232F3E;
  letter-spacing: -0.5px;
}

.trust-badges-isolated .amazon-arrow {
  margin-top: -6px;
}

.trust-badges-isolated .amazon-stars svg {
  fill: #FF9900;
}

/* Trustpilot */
.trust-badges-isolated .marketplace-logo.trustpilot {
  gap: 6px;
}

.trust-badges-isolated .trustpilot-icon {
  width: 22px;
  height: 22px;
}

.trust-badges-isolated .trustpilot-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #191919;
}

.trust-badges-isolated .trustpilot-stars {
  gap: 3px;
}

.trust-badges-isolated .trustpilot-stars svg {
  width: 22px;
  height: 22px;
}

.trust-badges-isolated .marketplace-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.trust-badges-isolated .marketplace-score {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1c3660;
  line-height: 1;
}

.trust-badges-isolated .marketplace-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

@media screen and (max-width: 749px) {
  .trust-badges-isolated {
    background: #ffffff;
    border-radius: 16px;
    padding:  16px !important; 
    margin-top: 32px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
  /* .product-gallery-isolated .swiper {
    background: #f0f4f6 !important;
} */
  }
  .trust-badges-isolated .marketplace-ratings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .trust-badges-isolated .marketplace-rating-item {
    padding: 16px 12px;
  }

  .trust-badges-isolated .marketplace-score {
    font-size: 24px;
  }

  .trust-badges-isolated .marketplace-logo svg {
    max-width: 70px;
  }
}

/* ==========================================================================
   Shipping Info
   ========================================================================== */

.shipping-info-isolated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f0f4f6;
  border-radius: 4px;
  margin-top: 12px;
}

.shipping-info-isolated svg {
  width: 20px;
  height: 20px;
  color: #4A9500;
}

.shipping-info-isolated span {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #48494B;
}

/* ==========================================================================
   Price Display
   ========================================================================== */

.price-display-isolated {
  margin-bottom: 16px;
}

.price-display-isolated .price-main {
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1c3660;
}

.price-display-isolated .price-info {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #48494B;
  margin-top: 4px;
}

/* ==========================================================================
   Quantity Selector
   ========================================================================== */

.quantity-selector-isolated {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #E7EDF1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.quantity-selector-isolated button {
  width: 44px;
  height: 44px;
  border: none;
  background: #f0f4f6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1c3660;
}

.quantity-selector-isolated input {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #1c3660;
}

.quantity-selector-isolated input::-webkit-outer-spin-button,
.quantity-selector-isolated input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
   Gallery Placeholders & Special Items
   ========================================================================== */

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #f0f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border-radius: 8px;
}

/* 10 Million Badge Fallback */
.gallery-item--10m-badge {
  background: linear-gradient(135deg, #1c3660 0%, #2a4a7a 100%);
  color: #fff;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.gallery-item--10m-badge .badge-number {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
}

.gallery-item--10m-badge .badge-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

/* ==========================================================================
   Vorteile Kijimea Override - 2 per row on mobile for isolated PDP
   ========================================================================== */

@media screen and (max-width: 776px) {
  body.isolated-pdp div.usp_wrapper {
    max-width: calc(50% - 16px);
    width: calc(50% - 16px);
  }

  body.isolated-pdp .product div.column.column-center .text {
    font-size: 12px;
    line-height: 14px;
  }
}

/* ==========================================================================
   Reviews widget (wrapper-abtest): force yellow stars
   ========================================================================== */

/* Only full stars get solid fill; half/empty use gradient rules below */
#wrapper-abtest .ElementsWidget-prefix .R-RatingStars .R-RatingStars__stars .stars__icon--100,
#wrapper-abtest .ElementsWidget-prefix .stars__icon.ricon-percentage-star--100 {
  color: #E3C564;
  background-image: linear-gradient(to right, #E3C564 99.9%, #E3C564 100%) !important;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.4px #E3C564;
  paint-order: fill stroke;
}

#wrapper-abtest .ElementsWidget-prefix .R-RatingStars .R-RatingStars__stars .stars__icon--50 {
  color: #E3C564;
  background-image: linear-gradient(to right, #E3C564 50%, var(--common-star-disabled-color, rgba(0, 0, 0, 0.25)) 50.1%) !important;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 0.4px #E3C564;
  paint-order: fill stroke;
}

/* Empty star: grey only */
#wrapper-abtest .ElementsWidget-prefix .R-RatingStars .R-RatingStars__stars .stars__icon--0 {
  color: rgba(0, 0, 0, 0.25);
  -webkit-text-fill-color: rgba(0, 0, 0, 0.25) !important;
  background-image: none !important;
  background-color: transparent !important;
}

/* Modal (reviews popup) */
div#reviews-io-polaris-modal-ReviewsWidgetABTEST .ElementsWidget-prefix .stars__icon--100,
div#reviews-io-polaris-modal-ReviewsWidgetABTEST .ElementsWidget-prefix .stars__icon.ricon-percentage-star--100 {
  color: #E3C564;
  background-image: linear-gradient(to right, #E3C564 99.9%, #E3C564 100%) !important;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.4px #E3C564;
  paint-order: fill stroke;
}
div#reviews-io-polaris-modal-ReviewsWidgetABTEST .ElementsWidget-prefix .R-RatingStars .R-RatingStars__stars .stars__icon--50 {
  color: #E3C564;
  background-image: linear-gradient(to right, #E3C564 50%, var(--common-star-disabled-color, rgba(0, 0, 0, 0.25)) 50.1%) !important;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 0.4px #E3C564;
  paint-order: fill stroke;
}

div#reviews-io-polaris-modal-ReviewsWidgetABTEST .ElementsWidget-prefix .R-RatingStars .R-RatingStars__stars .stars__icon--0 {
  color: rgba(0, 0, 0, 0.25);
  -webkit-text-fill-color: rgba(0, 0, 0, 0.25) !important;
  background-image: none !important;
  background-color: transparent !important;
}

section div.three-column-section  {
  background: #f0f4f6 !important;
}