/* =========================
   Global small tweaks
   ========================= */

/* Sale badge */
.wc-block-grid__product-onsale { background: #E22120; }

/* =========================
   Checkout payment icons - stable layout
   ========================= */

/* Keep the payment label normal */
.woocommerce-checkout #payment .wc_payment_methods li label {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  line-height: 1.35 !important;
  box-sizing: border-box !important;
}

/* Icon row under gateway name */
.woocommerce-checkout #payment .wc_payment_methods li label .enderg-gateway-icons {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-top: 8px !important;
  white-space: normal !important;
  box-sizing: border-box !important;
}

/* Icons */
.woocommerce-checkout #payment .wc_payment_methods li label .enderg-gateway-icons img {
  height: 28px !important;
  max-height: 28px !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  float: none !important;
  display: inline-block !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Smaller screens */
@media (max-width: 480px) {
  .woocommerce-checkout #payment .wc_payment_methods li label .enderg-gateway-icons img {
    height: 24px !important;
    max-height: 24px !important;
  }

  .woocommerce-checkout #payment .wc_payment_methods li label .enderg-gateway-icons {
    gap: 5px !important;
  }
}



/* =========================
   Product page: non-sticky Buy Now button next to Add to cart
   ========================= */

.enderg-buy-now-btn{
  background: #3498db !important;
  border-color: #3498db !important;
  color: #fff !important;
  margin-left: 10px;
}

  /* Optional: reorder checkout sections (payment first) */
  #order_review{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #order_review #payment{
    order: 1;
  }
  #order_review .woocommerce-checkout-review-order-table,
  #order_review table.shop_table{
    order: 2;
  }

/* =====================================================
   MOBILE STICKY BARS – Checkout, Product, Cart
   ===================================================== */

/* Desktop: hide all sticky bars */
#wc-mobile-placeorder-bar,
#wc-mobile-product-bar,
#wc-mobile-cart-bar{
  display: none;
}

/* ---------------- Mobile only ---------------- */
@media (max-width: 768px){

  /* Never let the body itself add extra bottom padding */
  body.woocommerce-checkout,
  body.single-product,
  body.woocommerce-cart{
    padding-bottom: 0 !important;
  }

  /* =====================================================
     CHECKOUT – Sticky "Pay Now" bar (#wc-mobile-placeorder-bar)
     ===================================================== */

  #wc-mobile-placeorder-bar{
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    background: #0a1831;
    padding: 14px 0;

    z-index: 2147483647 !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;

    transition: background-color .2s ease;
  }

  /* When footer is visible */
  #wc-mobile-placeorder-bar.over-footer{
    background: #000;
  }

  /* Layout inside the sticky bar */
  #wc-mobile-placeorder-bar #wc-mpo-wrap{
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    width: calc(100% - 32px) !important;
    max-width: 520px !important;
    margin: 0 auto !important;
  }

  /* Pay Now button (LEFT) */
  #wc-mobile-placeorder-bar #wc-mobile-placeorder-btn{
    order: 1 !important;
    flex: 1 1 auto !important;
    width: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 16px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    min-height: 54px !important;
  }

  /* Total chip (RIGHT) */
  #wc-mobile-placeorder-bar #wc-mpo-total{
    order: 2 !important;
    flex: 0 0 auto !important;

    min-width: 92px !important;
    max-width: 40% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 10px !important;
    min-height: 54px !important;

    font-weight: 800 !important;
    color: #fff !important;

    border: 1px solid rgba(255,255,255,.22) !important;
    background: rgba(255,255,255,.08) !important;
    padding: 0 12px !important;

    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  /* Hide chip until total exists */
  #wc-mobile-placeorder-bar #wc-mpo-total:not(.has-total){
    display: none !important;
  }

  /* Give room for sticky bar without creating a footer gap */
  form.woocommerce-checkout{
    padding-bottom: 120px !important;
  }

  /* Optional: reorder checkout sections (payment first) */
  #order_review{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #order_review #payment{
    order: 1;
  }
  #order_review .woocommerce-checkout-review-order-table,
  #order_review table.shop_table{
    order: 2;
  }


  /* =====================================================
     PRODUCT – Sticky Add to cart + Buy Now (#wc-mobile-product-bar)
     ===================================================== */

  #wc-mobile-product-bar{
    display: flex !important;
    gap: 10px;

    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    padding: 12px 16px !important;
    background-color: #0a1831 !important;

    z-index: 2147483647 !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;

    transition: background-color .35s ease;
  }

  /* Footer overlay fade */
  #wc-mobile-product-bar::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
  }
  #wc-mobile-product-bar.over-footer::before{
    opacity: 1;
  }

  /* Buttons in product sticky bar */
  #wc-mobile-product-bar > button{
    position: relative;
    z-index: 1;

    flex: 1 1 0;
    width: auto;

    padding: 14px 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Sticky Add to cart */
  #wc-mobile-atc-btn{
    background: #0a1831;
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
  }

  /* Sticky Buy Now (mobile) */
  #wc-mobile-buynow-btn{
    background: #00917a;
    border-color: #00917a;
    color: #fff;
  }

  /* Give room for product sticky bar */
  body.single-product main,
  body.single-product #primary,
  body.single-product .site-content,
  body.single-product #content{
    padding-bottom: 96px !important;
  }


  /* =====================================================
     CART – Sticky "Proceed to checkout" bar (#wc-mobile-cart-bar)
     ===================================================== */

  body.woocommerce-cart #wc-mobile-cart-bar{
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    background: #0a1831;
    padding: 14px 0;

    z-index: 2147483647 !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;

    transition: background-color .2s ease;
  }

  body.woocommerce-cart #wc-mobile-cart-bar.over-footer{
    background: #000;
  }

  /* Cloned checkout button inside sticky cart bar */
  body.woocommerce-cart #wc-mobile-cart-bar #wc-mobile-cart-checkout{
    display: block;
    width: calc(100% - 32px);
    max-width: 720px;

    margin: 0 auto;
    padding: 16px;

    border-radius: 10px;
    text-align: center;
    text-decoration: none;
  }

  /* Give room for cart sticky bar */
  body.woocommerce-cart main,
  body.woocommerce-cart #primary,
  body.woocommerce-cart .site-content,
  body.woocommerce-cart #content{
    padding-bottom: 110px;
  }
}

@media (max-width: 768px){

  /* ---- 1) Your sticky bars: keep fixed and visible ---- */
  body.single-product #wc-mobile-product-bar,
  body.woocommerce-cart #wc-mobile-cart-bar,
  body.woocommerce-checkout #wc-mobile-placeorder-bar{
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 999998 !important;
    transform: translateZ(0) !important;
  }

  /* ---- 2) Make room so page content doesn't hide behind bar ---- */
  body.single-product,
  body.woocommerce-cart,
  body.woocommerce-checkout{
    padding-bottom: 90px !important;
  }

  /* ---- 3) TranslatePress floating switcher: MOVE ONLY (no size changes) ---- */
  body.single-product nav.trp-language-switcher.trp-floating-switcher,
  body.woocommerce-cart nav.trp-language-switcher.trp-floating-switcher,
  body.woocommerce-checkout nav.trp-language-switcher.trp-floating-switcher{
    bottom: 78px !important;   /* was 88px — now nearly flush */
    z-index: 1000000 !important;
  }
}

body.woocommerce-order-pay .hide-on-orderpay {
  display: none !important;
}

/* ORDER-PAY ONLY: hide the order summary box/table */
body.woocommerce-order-pay .woocommerce-order-overview,
body.woocommerce-order-pay .woocommerce table.shop_table,
body.woocommerce-order-pay .woocommerce .order_details {
  display: none !important;
}


/* Hide the sticky bar on the WooCommerce order-pay endpoint */
body.woocommerce-order-pay #wc-mobile-placeorder-bar{
  display: none !important;
}

/* Hide by default */
.orderpay-only { display: none !important; }

/* ORDER RECEIVED ONLY: hide checkout warning texts */
body.woocommerce-order-received .hide-on-orderreceived {
    display: none !important;
}

/* Show only on Woo order-pay pages */
body.woocommerce-order-pay .orderpay-only { 
  display: block !important;
}

/* fix product page images */
/* Center and resize WooCommerce product image/gallery on mobile */
@media (max-width: 767px) {

  body.single-product div.product div.images,
  body.single-product div.product .woocommerce-product-gallery {
    float: none !important;
    clear: both !important;
    width: clamp(160px, 45vw, 220px) !important;
    max-width: 220px !important;
    min-width: 160px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 18px !important;
    display: block !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    text-align: center !important;
  }

  body.single-product div.product .woocommerce-product-gallery__wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    display: block !important;
    transform: none !important;
  }

  body.single-product div.product .woocommerce-product-gallery__image {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    text-align: center !important;
  }

  body.single-product div.product div.images img,
  body.single-product div.product .woocommerce-product-gallery img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    object-fit: contain !important;
  }
}

/* Product thumbnails: crop from top instead of center */
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img,
.wc-block-grid__product-image img,
.wp-block-handpicked-products .wc-block-grid__product-image img {
  object-fit: cover !important;
  object-position: top center !important;
}


/* =========================
   Product + page title sizing
   ========================= */

/* Product titles in product grids/widgets */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title,
.wp-block-handpicked-products .wc-block-grid__product-title {
  font-size: 18px !important;
  line-height: 1.25 !important;
  margin-top: 14px !important;
  margin-bottom: 8px !important;
}

/* Main page titles / section headings */
.entry-title,
.page-title,
.wp-block-heading,
.elementor-heading-title,
h1 {
  font-size: 36px !important;
  line-height: 1.2 !important;
}

/* Section titles like PLAYSTATION PLUS, BEST SELLING GAMES, etc */
h2,
.woocommerce-products-header__title {
  font-size: 32px !important;
  line-height: 1.2 !important;
}

/* Tablets */
@media (max-width: 1024px) {
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  .wc-block-grid__product-title,
  .wp-block-handpicked-products .wc-block-grid__product-title {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .entry-title,
  .page-title,
  .wp-block-heading,
  .elementor-heading-title,
  h1 {
    font-size: 30px !important;
  }

  h2,
  .woocommerce-products-header__title {
    font-size: 28px !important;
  }
}

/* Phones */
@media (max-width: 480px) {
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  .wc-block-grid__product-title,
  .wp-block-handpicked-products .wc-block-grid__product-title {
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin-top: 10px !important;
    margin-bottom: 6px !important;
  }

  .entry-title,
  .page-title,
  .wp-block-heading,
  .elementor-heading-title,
  h1 {
    font-size: 25px !important;
    line-height: 1.18 !important;
  }

  h2,
  .woocommerce-products-header__title {
    font-size: 23px !important;
    line-height: 1.2 !important;
  }
}


/* Stable 2-column WooCommerce product grid on mobile */
@media (max-width: 767px) {
    .wc-block-grid__products,
    .wp-block-product-category ul {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 18px !important;
        row-gap: 34px !important;
        align-items: start !important;
    }

    .wc-block-grid__product {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        float: none !important;
    }

    .wc-block-grid__product .wc-block-grid__product-image {
        display: block !important;
        width: 100% !important;
        aspect-ratio: 4 / 5 !important;
    }

    .wc-block-grid__product .wc-block-grid__product-image img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}


//* EnderG Xbox short description wrapper */
.single-product .enderg-short-description,
.woocommerce div.product .enderg-short-description {
  max-width: 590px !important;
  margin: 14px auto 22px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* Top Trustpilot + PC plan strip */
.single-product .eg-top-info-card,
.woocommerce div.product .eg-top-info-card {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  max-width: 590px !important;
  margin: 0 auto 14px !important;
  padding: 10px 12px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 14px !important;
  box-sizing: border-box !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18) !important;
}

/* Trustpilot mini area */
.single-product .eg-review-mini,
.woocommerce div.product .eg-review-mini {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 128px !important;
  padding: 2px 10px 2px 4px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-sizing: border-box !important;
}

.single-product .eg-review-label,
.woocommerce div.product .eg-review-label {
  color: #9bf00b !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1 !important;
  margin-bottom: 3px !important;
}

.single-product .eg-review-mini img,
.woocommerce div.product .eg-review-mini img {
  display: block !important;
  width: 101px !important;
  max-width: 101px !important;
  height: auto !important;
  margin: 0 auto !important;
}

/* PC-only CTA */
.single-product .eg-pc-mini-cta,
.woocommerce div.product .eg-pc-mini-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex: 1 !important;
  padding: 8px 6px 8px 2px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.single-product .eg-pc-mini-cta:hover,
.woocommerce div.product .eg-pc-mini-cta:hover {
  text-decoration: none !important;
}

.single-product .eg-pc-mini-text,
.woocommerce div.product .eg-pc-mini-text {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
  line-height: 1.25 !important;
}

.single-product .eg-pc-mini-text strong,
.woocommerce div.product .eg-pc-mini-text strong {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.single-product .eg-pc-mini-text small,
.woocommerce div.product .eg-pc-mini-text small {
  color: #cfd8d1 !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
}

.single-product .eg-pc-mini-button,
.woocommerce div.product .eg-pc-mini-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffd500 !important;
  color: #111111 !important;
  border-radius: 999px !important;
  padding: 7px 12px !important;
  font-size: 11.5px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(255, 213, 0, 0.18) !important;
  transition: transform 0.15s ease, background 0.15s ease !important;
}

.single-product .eg-pc-mini-cta:hover .eg-pc-mini-button,
.woocommerce div.product .eg-pc-mini-cta:hover .eg-pc-mini-button {
  background: #ffe45c !important;
  transform: translateY(-1px) !important;
}

/* Main Xbox bonus offer box */
.single-product .eg-bonus-offer,
.woocommerce div.product .eg-bonus-offer {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at top center, rgba(155, 240, 11, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(9, 34, 17, 0.98), rgba(3, 16, 8, 0.98)) !important;
  border: 1px solid rgba(155, 240, 11, 0.85) !important;
  border-radius: 16px !important;
  padding: 18px 18px 16px !important;
  margin: 0 auto 21px !important;
  max-width: 590px !important;
  color: #ffffff !important;
  text-align: center !important;
  box-sizing: border-box !important;
  box-shadow:
    0 0 0 1px rgba(155, 240, 11, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(16, 124, 16, 0.24) !important;
}

.single-product .eg-bonus-offer::before,
.woocommerce div.product .eg-bonus-offer::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 4px !important;
  background: linear-gradient(90deg, #107c10, #9bf00b, #107c10) !important;
}

.single-product .eg-bonus-kicker,
.woocommerce div.product .eg-bonus-kicker {
  color: #9bf00b !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.55px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}

.single-product .eg-bonus-headline,
.woocommerce div.product .eg-bonus-headline {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
}

.single-product .eg-bonus-headline span,
.woocommerce div.product .eg-bonus-headline span {
  color: #9bf00b !important;
  text-shadow: 0 0 10px rgba(155, 240, 11, 0.35) !important;
}

.single-product .eg-bonus-subtitle,
.woocommerce div.product .eg-bonus-subtitle {
  color: #dbe8dc !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-bottom: 11px !important;
}

/* Eligible plan chips */
.single-product .eg-plan-chips,
.woocommerce div.product .eg-plan-chips {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 auto 14px !important;
  max-width: 100% !important;
}

.single-product .eg-plan-chips span,
.woocommerce div.product .eg-plan-chips span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 86px !important;
  padding: 9px 12px !important;
  background: #f4f4f4 !important;
  color: #1b1b1b !important;
  border: 1px solid #d7d7d7 !important;
  border-radius: 9px !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18) !important;
}

/* Coupon code pill */
.single-product .eg-bonus-code,
.woocommerce div.product .eg-bonus-code {
  display: inline-block !important;
  background: linear-gradient(180deg, #9bf00b, #66b80f) !important;
  color: #071007 !important;
  padding: 9px 17px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  box-shadow: 0 5px 14px rgba(155, 240, 11, 0.28) !important;
}

.single-product .eg-bonus-code strong,
.woocommerce div.product .eg-bonus-code strong {
  color: #071007 !important;
  font-weight: 950 !important;
  letter-spacing: 0.5px !important;
}

.single-product .eg-bonus-note,
.woocommerce div.product .eg-bonus-note {
  color: #b9c7bb !important;
  font-size: 11.5px !important;
  font-weight: 650 !important;
  margin-top: 9px !important;
  line-height: 1.35 !important;
}

/* Compact mobile styling */
@media (max-width: 767px) {
  .single-product .enderg-short-description,
  .woocommerce div.product .enderg-short-description {
    max-width: 100% !important;
    margin: 8px auto 12px !important;
  }

  .single-product .eg-top-info-card,
  .woocommerce div.product .eg-top-info-card {
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 7px 8px !important;
    margin-bottom: 8px !important;
    border-radius: 11px !important;
    box-shadow: none !important;
  }

  .single-product .eg-review-mini,
  .woocommerce div.product .eg-review-mini {
    min-width: 78px !important;
    width: 78px !important;
    padding: 0 7px 0 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: none !important;
  }

  .single-product .eg-review-label,
  .woocommerce div.product .eg-review-label {
    display: none !important;
  }

  .single-product .eg-review-mini img,
  .woocommerce div.product .eg-review-mini img {
    width: 72px !important;
    max-width: 72px !important;
    height: auto !important;
  }

  .single-product .eg-pc-mini-cta,
  .woocommerce div.product .eg-pc-mini-cta {
    width: auto !important;
    flex: 1 !important;
    gap: 7px !important;
    padding: 0 !important;
  }

  .single-product .eg-pc-mini-text,
  .woocommerce div.product .eg-pc-mini-text {
    line-height: 1.15 !important;
  }

  .single-product .eg-pc-mini-text strong,
  .woocommerce div.product .eg-pc-mini-text strong {
    font-size: 11.5px !important;
  }

  .single-product .eg-pc-mini-text small,
  .woocommerce div.product .eg-pc-mini-text small {
    font-size: 10px !important;
  }

  .single-product .eg-pc-mini-button,
  .woocommerce div.product .eg-pc-mini-button {
    font-size: 10px !important;
    padding: 5px 8px !important;
  }

  .single-product .eg-bonus-offer,
  .woocommerce div.product .eg-bonus-offer {
    padding: 11px 9px 10px !important;
    margin: 0 auto 12px !important;
    border-radius: 12px !important;
    box-shadow:
      0 0 0 1px rgba(155, 240, 11, 0.10),
      0 8px 18px rgba(0, 0, 0, 0.22) !important;
  }

  .single-product .eg-bonus-offer::before,
  .woocommerce div.product .eg-bonus-offer::before {
    height: 3px !important;
  }

  .single-product .eg-bonus-kicker,
  .woocommerce div.product .eg-bonus-kicker {
    font-size: 10.5px !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.35px !important;
  }

  .single-product .eg-bonus-headline,
  .woocommerce div.product .eg-bonus-headline {
    font-size: 17px !important;
    margin-bottom: 5px !important;
  }

  .single-product .eg-bonus-subtitle,
  .woocommerce div.product .eg-bonus-subtitle {
    font-size: 10.5px !important;
    margin-bottom: 7px !important;
  }

  .single-product .eg-plan-chips,
  .woocommerce div.product .eg-plan-chips {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    margin: 0 auto 8px !important;
    overflow-x: auto !important;
    padding-bottom: 2px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .single-product .eg-plan-chips::-webkit-scrollbar,
  .woocommerce div.product .eg-plan-chips::-webkit-scrollbar {
    display: none !important;
  }

  .single-product .eg-plan-chips span,
  .woocommerce div.product .eg-plan-chips span {
    min-width: auto !important;
    flex: 0 0 auto !important;
    padding: 6px 9px !important;
    font-size: 10.5px !important;
    border-radius: 7px !important;
  }

  .single-product .eg-bonus-code,
  .woocommerce div.product .eg-bonus-code {
    font-size: 11.5px !important;
    padding: 6px 11px !important;
  }

  .single-product .eg-bonus-note,
  .woocommerce div.product .eg-bonus-note {
    display: none !important;
  }
}