/* Add custom CSS styles below */ 
/* =========================================
   تصميم مجموعة كول
========================================= */

#coll-ready-section,
#coll-ready-section * {
  box-sizing: border-box;
}

#coll-ready-section {
  direction: rtl;
  width: calc(100% - 24px);
  max-width: 430px;
  margin: 25px auto;
  padding: 17px 14px 15px;
  overflow: hidden;
  border-radius: 15px;
  background: #ffffff;
  color: #111111;
  font-family: inherit;
}

/* العنوان العلوي */

#coll-ready-section .coll-ready-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 800;
}

#coll-ready-section .coll-ready-ar {
  text-align: right;
}

#coll-ready-section .coll-ready-en {
  direction: ltr;
  font-size: 18px;
  font-weight: 800;
}

/* الصورة الرئيسية */

#coll-ready-section .coll-ready-image-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #ffffff;
}

#coll-ready-section #coll-ready-main-image {
  display: none;
  width: 100%;
  height: 300px;
  object-fit: contain;
}

#coll-ready-section #coll-ready-main-image.is-loaded {
  display: block;
}

#coll-ready-section #coll-ready-loader {
  color: #777777;
  font-size: 13px;
  font-weight: 600;
}

/* السعر والتقييم */

#coll-ready-section .coll-ready-product-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 5px;
}

#coll-ready-section .coll-ready-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #555555;
  font-size: 11px;
  white-space: nowrap;
}

#coll-ready-section .coll-ready-stars {
  color: #ffae00;
  font-size: 18px;
  letter-spacing: -3px;
}

#coll-ready-section .coll-ready-main-price {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

#coll-ready-section .coll-ready-main-price del {
  color: #999999;
  font-size: 12px;
}

#coll-ready-section .coll-ready-main-price strong {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #111111;
  font-size: 25px;
  font-weight: 900;
}

#coll-ready-section .coll-ready-main-price small {
  font-size: 13px;
  font-weight: 800;
}

/* اسم المنتج والوصف */

#coll-ready-section .coll-ready-product-title {
  margin: 5px 0 4px;
  padding: 0;
  color: #a985ff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
  text-align: right;
}

#coll-ready-section .coll-ready-description {
  margin: 0 0 16px;
  padding: 0;
  color: #111111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

/* كروت الباقات */

#coll-ready-section .coll-ready-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
  margin-bottom: 17px;
}

#coll-ready-section .coll-ready-package {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 205px;
  padding: 23px 5px 32px;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-radius: 11px;
  outline: none;
  background: #ffffff;
  color: #111111;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}

#coll-ready-section .coll-ready-package:hover {
  transform: translateY(-2px);
  border-color: #a985ff;
}

#coll-ready-section .coll-ready-package.is-active {
  border: 2px solid #a985ff;
  box-shadow: 0 5px 17px rgba(169, 133, 255, 0.25);
}

/* الشارة العلوية */

#coll-ready-section .coll-ready-badge {
  position: absolute;
  top: 0;
  right: 9px;
  left: 9px;
  min-height: 20px;
  padding: 3px 3px;
  border-radius: 0 0 7px 7px;
  background: #a985ff;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

#coll-ready-section .coll-ready-badge:empty {
  display: none;
}

/* صور العبوات داخل الباقات */

#coll-ready-section .coll-ready-package-images {
  display: grid;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 92px;
  margin: 5px 0 3px;
  gap: 1px;
}

#coll-ready-section
  .coll-ready-package[data-quantity="2"]
  .coll-ready-package-images {
  grid-template-columns: repeat(2, 39px);
}

#coll-ready-section
  .coll-ready-package[data-quantity="4"]
  .coll-ready-package-images {
  grid-template-columns: repeat(2, 34px);
}

#coll-ready-section
  .coll-ready-package[data-quantity="6"]
  .coll-ready-package-images {
  grid-template-columns: repeat(3, 27px);
}

#coll-ready-section .coll-ready-package-images img {
  display: block;
  width: 100%;
  height: 43px;
  object-fit: contain;
}

/* اسم الباقة */

#coll-ready-section .coll-ready-package-name {
  min-height: 35px;
  color: #333333;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

/* سعر الباقة */

#coll-ready-section .coll-ready-package-price {
  margin-top: auto;
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

/* شريط التوفير */

#coll-ready-section .coll-ready-saving {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 27px;
  padding: 5px 2px;
  background: #ffb300;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

/* الأزرار */

#coll-ready-section .coll-ready-actions {
  display: grid;
  gap: 7px;
  width: 100%;
}

#coll-ready-section .coll-ready-cart-button,
#coll-ready-section .coll-ready-apple-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 48px;
  padding: 9px 15px;
  border: 0;
  border-radius: 25px;
  text-decoration: none !important;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

#coll-ready-section .coll-ready-cart-button {
  background: #a985ff;
  color: #ffffff !important;
}

#coll-ready-section .coll-ready-apple-button {
  direction: rtl;
  background: #000000;
  color: #ffffff !important;
}

#coll-ready-section .coll-ready-apple-button strong {
  direction: ltr;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 19px;
}

/* الجوال */

@media (max-width: 420px) {
  #coll-ready-section {
    width: calc(100% - 12px);
    margin: 15px auto;
    padding: 14px 10px;
    border-radius: 12px;
  }

  #coll-ready-section .coll-ready-heading {
    font-size: 19px;
  }

  #coll-ready-section .coll-ready-en {
    font-size: 16px;
  }

  #coll-ready-section .coll-ready-image-box {
    min-height: 275px;
  }

  #coll-ready-section #coll-ready-main-image {
    height: 275px;
  }

  #coll-ready-section .coll-ready-packages {
    gap: 5px;
  }

  #coll-ready-section .coll-ready-package {
    min-height: 192px;
    padding-right: 3px;
    padding-left: 3px;
  }

  #coll-ready-section .coll-ready-package-images {
    height: 82px;
  }

  #coll-ready-section
    .coll-ready-package[data-quantity="2"]
    .coll-ready-package-images {
    grid-template-columns: repeat(2, 34px);
  }

  #coll-ready-section
    .coll-ready-package[data-quantity="4"]
    .coll-ready-package-images {
    grid-template-columns: repeat(2, 29px);
  }

  #coll-ready-section
    .coll-ready-package[data-quantity="6"]
    .coll-ready-package-images {
    grid-template-columns: repeat(3, 23px);
  }

  #coll-ready-section .coll-ready-package-images img {
    height: 39px;
  }

  #coll-ready-section .coll-ready-package-name {
    font-size: 8px;
  }

  #coll-ready-section .coll-ready-package-price {
    font-size: 13px;
  }

  #coll-ready-section .coll-ready-badge,
  #coll-ready-section .coll-ready-saving {
    font-size: 7.5px;
  }
}
#coll-ready-section .coll-ready-description {
  direction: rtl !important;
  width: 100% !important;
  text-align: right !important;
  text-align-last: right !important;
  line-height: 1.8 !important;
}
/* تصحيح صور الباقات الجاهزة */

#coll-ready-section .coll-ready-package-images {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 105px !important;
  margin: 5px 0 4px !important;
  overflow: hidden !important;
  grid-template-columns: none !important;
}

#coll-ready-section
  .coll-ready-package[data-quantity="2"]
  .coll-ready-package-images,
#coll-ready-section
  .coll-ready-package[data-quantity="4"]
  .coll-ready-package-images,
#coll-ready-section
  .coll-ready-package[data-quantity="6"]
  .coll-ready-package-images {
  grid-template-columns: none !important;
}

#coll-ready-section .coll-ready-package-images img {
  display: block !important;
  width: 100% !important;
  max-width: 115px !important;
  height: 100% !important;
  object-fit: contain !important;
}

#coll-ready-section #coll-ready-main-image {
  display: block !important;
  width: 100% !important;
  height: 300px !important;
  object-fit: contain !important;
}

#coll-ready-section #coll-ready-loader {
  display: none !important;
}

@media (max-width: 420px) {
  #coll-ready-section .coll-ready-package-images {
    height: 95px !important;
  }

  #coll-ready-section .coll-ready-package-images img {
    max-width: 105px !important;
  }

  #coll-ready-section #coll-ready-main-image {
    height: 275px !important;
  }
}
/* =========================================
   الديسكتوب — نفس ترتيب الجوال بعرض الصفحة
========================================= */

@media (min-width: 992px) {

  #coll-ready-section {
    display: block !important;
    width: calc(100vw - 60px) !important;
    max-width: 1450px !important;
    min-height: 0 !important;
    margin: 35px auto !important;
    padding: 35px 50px 40px !important;
  }

  /* إلغاء تقسيم العمودين القديم */
  #coll-ready-section > * {
    grid-area: auto !important;
  }

  /* العنوان */

  #coll-ready-section .coll-ready-heading {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 25px !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    font-size: 29px;
  }

  #coll-ready-section .coll-ready-en {
    font-size: 25px;
  }

  /* الصورة الرئيسية لوحدها فوق */

  #coll-ready-section .coll-ready-image-box {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 540px !important;
    margin: 0 auto 25px !important;
    padding: 25px !important;
    border-radius: 20px;
    background: #fafafa;
  }

  #coll-ready-section #coll-ready-main-image {
    display: block !important;
    width: 100% !important;
    max-width: 600px !important;
    height: 500px !important;
    margin: auto !important;
    object-fit: contain !important;
  }

  /* السعر والتقييم */

  #coll-ready-section .coll-ready-product-info {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 5px !important;
  }

  #coll-ready-section .coll-ready-rating {
    font-size: 14px;
  }

  #coll-ready-section .coll-ready-stars {
    font-size: 23px;
  }

  #coll-ready-section .coll-ready-main-price strong {
    font-size: 35px;
  }

  #coll-ready-section .coll-ready-main-price del {
    font-size: 16px;
  }

  /* اسم المنتج */

  #coll-ready-section .coll-ready-product-title {
    width: 100%;
    margin: 5px 0 !important;
    font-size: 35px;
    text-align: right;
  }

  /* الوصف */

  #coll-ready-section .coll-ready-description {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 28px !important;
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }

  /* الباقات الثلاثة تحت الصورة */

  #coll-ready-section .coll-ready-packages {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 0 25px !important;
  }

  #coll-ready-section .coll-ready-package {
    min-height: 355px !important;
    padding: 38px 15px 48px !important;
    border-radius: 18px !important;
  }

  #coll-ready-section .coll-ready-package-images {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 210px !important;
    margin: 8px 0 12px !important;
  }

  #coll-ready-section .coll-ready-package-images img {
    display: block !important;
    width: 100% !important;
    max-width: 270px !important;
    height: 205px !important;
    object-fit: contain !important;
  }

  #coll-ready-section .coll-ready-package-name {
    min-height: 50px;
    font-size: 16px !important;
    line-height: 1.7;
  }

  #coll-ready-section .coll-ready-package-price {
    font-size: 24px !important;
  }

  #coll-ready-section .coll-ready-badge {
    right: 20px;
    left: 20px;
    min-height: 32px;
    padding: 7px 5px;
    font-size: 14px;
  }

  #coll-ready-section .coll-ready-saving {
    min-height: 40px;
    padding: 8px 5px;
    font-size: 15px;
  }

  /* الأزرار تحت بعض مثل الجوال */

  #coll-ready-section .coll-ready-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  #coll-ready-section .coll-ready-cart-button,
  #coll-ready-section .coll-ready-apple-button {
    width: 100% !important;
    min-height: 62px !important;
    border-radius: 32px !important;
    font-size: 21px !important;
  }

  #coll-ready-section .coll-ready-apple-button strong {
    font-size: 25px;
  }
}
/* =================================================
   عرض نتائج الكولاجين في الديسكتوب مثل المرجع
   صورتان ظاهرتان + جزء من الصورة التالية
================================================= */

@media (min-width: 768px) {

  #collagen-results-section {
    width: calc(100% - 40px) !important;
    max-width: 900px !important;
    margin: 30px auto !important;
    padding: 25px 28px 22px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
  }

  /* العنوان */

  #collagen-results-section .cr-heading {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin: 0 0 20px !important;
  }

  #collagen-results-section .cr-heading h2,
  #collagen-results-section .cr-heading h3 {
    font-size: 25px !important;
    font-weight: 800 !important;
  }

  /* إلغاء شبكة الديسكتوب وتحويلها لسلايدر */

  #collagen-results-section .cr-track {
    direction: rtl !important;
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 0 0 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    overscroll-behavior-x: contain !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  #collagen-results-section .cr-track::-webkit-scrollbar {
    display: none !important;
  }

  /* عرض صورتين وجزء من الثالثة */

  #collagen-results-section .cr-card {
    flex: 0 0 42% !important;
    width: 42% !important;
    min-width: 42% !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    scroll-snap-align: start !important;
  }

  #collagen-results-section .cr-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    border-radius: 18px !important;
  }

  /* إظهار خطوط التنقل */

  #collagen-results-section .cr-dots {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    margin-top: 15px !important;
  }

  #collagen-results-section .cr-dots span {
    width: 23px !important;
    height: 3px !important;
    border-radius: 20px !important;
    background: #eeeeee !important;
  }

  #collagen-results-section .cr-dots span.is-active {
    background: #d2d2d2 !important;
  }
}


/* الشاشات الكبيرة */

@media (min-width: 1200px) {

  #collagen-results-section {
    max-width: 1050px !important;
    padding: 28px 34px 24px !important;
  }

  #collagen-results-section .cr-card {
    flex-basis: 40% !important;
    width: 40% !important;
    min-width: 40% !important;
  }

  #collagen-results-section .cr-heading h2,
  #collagen-results-section .cr-heading h3 {
    font-size: 29px !important;
  }
}

.main-nav-container {
    background-color: var(--header-bg);
    color: var(--header-text-color);
    margin-bottom: -119px;
}

.sicon-menu:before {
    content: "\ed7f";
    color: white;
}
    .centered_logo .header-btn__icon:where([dir=rtl],[dir=rtl] *) {
        margin-left: 0;
        color: white;
    }
[dir=rtl] .ms-1 {
    margin-right: .25rem;
    color: white;
}
.s-fast-checkout-button.outline {
    background-color: transparent;
    border: 1px solid #A485D2;
    color: #A485D2;
}
.product-single .sticky-product-bar salla-add-product-button salla-button .s-button-btn {
    max-height: 40px;
    background: #A485D2;
    color: white;
    border: 6px solid #e6e1ed;
}
.product-more-info .more-tab-container .more-info-tabs__nav-link.active {
        color: white;
        background: #A485D2;
    }
.product-more-info .more-tab-container .more-info-tabs__nav-link {
        align-items: center;
        background: #A485D2;
        color: white;
        display: flex;
        font-size: 16px;
        font-weight: 400;
        justify-content: space-between;
        padding: 10px 20px;
    }
.footer-is-custom .store-footer .store-footer__contacts-row, .footer-is-custom .store-footer .store-footer__inner, .footer-is-custom .store-footer .store-footer__newsletter {
    background-color: #B093FC;
    --tw-border-opacity: 1;
    border-bottom-color: #e5e7eb;
    border-bottom-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.store-footer h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: .75rem;
    color: white;
}
.footer-list a:last-child {
    margin-bottom: 0;
    color: white;
}
.unicode {
    unicode-bidi: plaintext;
    color: white;
}
#coll-routine-section .coll-routine-card {
  flex: 0 0 42%;
  min-width: 42%;
  display: block;
  overflow: hidden;

  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;

  border-radius: 18px;
  text-decoration: none;
  scroll-snap-align: start;
}

#coll-routine-section .coll-routine-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;

  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 18px;

  transform: none !important;
  transition: none;
}

#coll-routine-section .coll-routine-card:hover img {
  transform: none !important;
}
#coll-routine-section a.coll-routine-card,
#coll-routine-section a.coll-routine-card:hover,
#coll-routine-section a.coll-routine-card:focus,
#coll-routine-section a.coll-routine-card:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.main-nav-container .inner {
    padding-bottom: 19px;
    padding-top: 0px;
}
.store-footer a {
    transition-duration: .15s;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  color: black
}
.footer-is-custom .store-footer .store-footer__contacts-row, .footer-is-custom .store-footer .store-footer__inner, .footer-is-custom .store-footer .store-footer__newsletter {
    background-color: white;
    --tw-border-opacity: 1;
    border-bottom-color: #e5e7eb;
  padding: 0;
    border-bottom-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.footer-is-custom .store-footer .store-footer__curve {
    /* color: var(--footer-bg); */
    display: none;
}
.footer-list {
    margin-bottom: .625rem;
    display: flex;
}
.footer-list a:last-child {
    margin-bottom: 0;
    color: black;
}
/* إجبار المسارات على العمل كسلايدر أفقي حقيقي */
  #collagen-results-section .cr-track,
  #coll-customer-reviews .coll-reviews-track,
  #coll-routine-section .coll-routine-track {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: none !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  #collagen-results-section .cr-track::-webkit-scrollbar,
  #coll-customer-reviews .coll-reviews-track::-webkit-scrollbar,
  #coll-routine-section .coll-routine-track::-webkit-scrollbar {
    display: none !important;
  }

  /* قسم النتائج يبدأ طبيعيًا من اليسار */
  #collagen-results-section .cr-track {
    direction: ltr !important;
    flex-direction: row !important;
  }

  /* الآراء والروتين يحافظان على أول صورة جهة اليمين */
  #coll-customer-reviews .coll-reviews-track,
  #coll-routine-section .coll-routine-track {
    direction: ltr !important;
    flex-direction: row-reverse !important;
  }

  #coll-customer-reviews .coll-review-card,
  #coll-routine-section .coll-routine-card {
    direction: rtl !important;
  }

  /* إظهار أسهم نتائج الكولاجين على الديسكتوب أيضًا */
  #collagen-results-section .cr-nav {
    display: flex !important;
  }

  /* نتائج الكولاجين: 3 صور في الديسكتوب وصورتان في الجوال */
  @media (min-width: 768px) {
    #collagen-results-section .cr-track {
      display: flex !important;
      gap: 18px !important;
      overflow-x: auto !important;
      padding-inline: 38px !important;
    }

    #collagen-results-section .cr-card {
      flex: 0 0 calc((100% - 36px) / 3) !important;
      min-width: calc((100% - 36px) / 3) !important;
    }

    #collagen-results-section .cr-dots {
      display: flex !important;
    }
  }

  @media (max-width: 767px) {
    #collagen-results-section .cr-card {
      flex: 0 0 calc(50% - 5px) !important;
      min-width: calc(50% - 5px) !important;
    }
  }

  /* نقاط التنقل الجديدة */
  #collagen-results-section .cr-dots,
  #coll-customer-reviews .coll-reviews-dots,
  #coll-routine-section .coll-routine-lines {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
  }

  #collagen-results-section .cr-dots button,
  #coll-customer-reviews .coll-reviews-dots button,
  #coll-routine-section .coll-routine-lines button {
    display: block !important;
    width: 22px !important;
    height: 4px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #ececec !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition:
      width .2s ease,
      background .2s ease,
      transform .2s ease !important;
  }

  #collagen-results-section .cr-dots button.is-active,
  #coll-customer-reviews .coll-reviews-dots button.is-active,
  #coll-routine-section .coll-routine-lines button.is-active {
    width: 32px !important;
    background: #b093fd !important;
  }

  /* التأكد أن الأسهم فوق الصور ويمكن الضغط عليها */
  #collagen-results-section .cr-nav,
  #coll-customer-reviews .coll-reviews-arrow,
  #coll-routine-section .coll-routine-arrow {
    z-index: 50 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  #collagen-results-section .cr-nav:disabled,
  #coll-customer-reviews .coll-reviews-arrow:disabled,
  #coll-routine-section .coll-routine-arrow:disabled {
    opacity: .32 !important;
    pointer-events: none !important;
    cursor: default !important;
  }