/* Inner pages — single, page, product */

/* from single.html */
img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }

/* from single.html */
.download-season .series-downloaditems {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    }


    .content-toggle {
      max-height: max-content !important;
      position: static !important;
    }


    #suggested-movies #cover-suggested-movies .splide__slide .cover:before {

      background: none !important;

    }



    @media (max-width: 991px) {


      html {
        margin-top: 0 !important;
      }




      #siteHead #notificationsList {
        inset-inline-start: unset !important;
        inset-inline-start: 0px !important;
      }


      :root {
        --spiner_size: 1rem !important;
      }




      
        .posts {
          display: flex !important;
          /* Use flexbox for horizontal layout */
          overflow-x: auto;
          /* Enable horizontal scrolling */
          gap: 0.35rem !important;
          /* Space between items */
          padding-bottom: 1rem;
          /* Add padding at the bottom to create space for the scrollbar */
          -webkit-overflow-scrolling: touch;
          /* Enable momentum scrolling on iOS */
          scrollbar-width: none;
        }


        .posts div {
          flex: 0 0 30%;
          /* Each item takes up 45% of the container */
          scroll-snap-align: start;
          /* Align items to the start when scrolling */
        }






        .posts .entry .entry-cover {
          height: 175px !important;
        }



        .posts .entry .entry-icons .icon {
          width: 20px !important;
          height: 20px !important;
        }

        .posts .entry .entry-icons .icon>svg {
          width: 13px !important;
          height: 13px !important;
        }


        .posts .entry .entry-ganers a {
          font-size: 7px !important;
        }

        .entry-meta .d-flex.align-items-end.justify-content-between.fsz-13 {
          font-size: 10px !important;
        }

        .entry-meta .d-flex span:first-child svg {
          width: 18px !important;
          height: 9px !important;
        }

        .entry-meta .d-flex span:last-child svg {
          width: 9px !important;
          height: 9px !important;
        }

        .entry-meta .d-flex span strong {
          font-size: 10px !important;
        }

        .posts .entry .entry-title {
          font-size: 13px !important;
          margin: 0 5px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          white-space: pre-line;
          overflow: hidden;

        }

        .entry p {
          font-size: 9px !important;
        }

        .posts .entry .entry-cover {
          margin-bottom: 1rem;
        }

        .entry-cover {
          border-radius: .5rem !important;
        }

        .list-section:not(:last-child) {
          margin-bottom: 2.5rem !important;
        }

        .posts .entry .entry-cover img {
          -o-object-fit: fill !important;
          object-fit: fill !important;
        }







      

    }

    .switch-div {
      position: sticky;
      right: 20px;
      /* Adjust as needed */
      top: 50%;
      /* Center vertically */
      transform: translateY(-50%);
      /* Adjust for perfect centering */
      z-index: 1000;
      /* Ensure it stays on top */
    }


    .light-mode {
      background-color: #ededed !important;
      color: #000000 !important;
      --bg-card: #ffffff;
      --bg-body: #e1e1e1;
      --text-body: #000000;
      --border-color: #999999;
      --info-lighten-color: #e4e8ed;
      --danger-lighten-color: #e9c5c5;
      --primary-color: #070c12;
      --primary-lighten-color: #727272;

      input,
      textarea {
        background: white !important;
      }

      .content-toggle:after {
        background: none !important;
      }


      .download-list.hardsub>.title>span {
        background-color: #c1d2e7;
      }

      .posts .entry .entry-ganers a {
        color: white;
      }

      #siteHead .menu .megasub .lists .list>li>a {
        color: #fff;
      }



      #menucanvas .list>li,
      .pagination,
      #siteHead .menu .megasub .lists .list>li,
      #siteHead .menu a,
      #siteHead .menu {
        color: var(--text-body) !important;
      }

      #siteFoot,
      #siteFoot p,
      #siteFoot a,
      #siteFoot .text-muted,
      #siteFoot a.text-muted {
        color: var(--text-body) !important;
      }

      #siteHead .menu .megasub .navs .list-group.active {
        color: #ffffff;
      }


      #siteHead .menu .megasub .navs .list-group {
        color: white;
      }

      span.d-flex.flex-column.gap-05 {
        color: #fff;
      }


      span.d-inline-flex.align-items-center.gap-05 {
        color: white;
      }


      #suggested-movies #suggested-thumbnails .splide__list .splide__slide.is-active {
        border-color: rgb(233 233 233);
      }


      #post-intro .coverimg {
        -webkit-filter: blur(20px) brightness(4.35);
        filter: blur(20px) brightness(4.35);
      }



    }

    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;

      margin-left: 10px;
    }

    .switch #input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #2196f3;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      z-index: 0;
      overflow: hidden;
    }

    .sun-moon {
      position: absolute;
      content:"";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: yellow;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }

    #input:checked+.slider {
      background-color: black;
    }

    #input:focus+.slider {
      box-shadow: 0 0 1px #2196f3;
    }

    #input:checked+.slider .sun-moon {
      -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
      transform: translateX(26px);
      background-color: white;
      -webkit-animation: rotate-center 0.6s ease-in-out both;
      animation: rotate-center 0.6s ease-in-out both;
    }

    .moon-dot {
      opacity: 0;
      transition: 0.4s;
      fill: gray;
    }

    #input:checked+.slider .sun-moon .moon-dot {
      opacity: 1;
    }

    .slider.round {
      border-radius: 34px;
    }

    .slider.round .sun-moon {
      border-radius: 50%;
    }

    #moon-dot-1 {
      left: 10px;
      top: 3px;
      position: absolute;
      width: 6px;
      height: 6px;
      z-index: 4;
    }

    #moon-dot-2 {
      left: 2px;
      top: 10px;
      position: absolute;
      width: 10px;
      height: 10px;
      z-index: 4;
    }

    #moon-dot-3 {
      left: 16px;
      top: 18px;
      position: absolute;
      width: 3px;
      height: 3px;
      z-index: 4;
    }

    #light-ray-1 {
      left: -8px;
      top: -8px;
      position: absolute;
      width: 43px;
      height: 43px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-2 {
      left: -50%;
      top: -50%;
      position: absolute;
      width: 55px;
      height: 55px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-3 {
      left: -18px;
      top: -18px;
      position: absolute;
      width: 60px;
      height: 60px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    .cloud-light {
      position: absolute;
      fill: #eee;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
    }

    .cloud-dark {
      position: absolute;
      fill: #ccc;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-delay: 1s;
    }

    #cloud-1 {
      left: 30px;
      top: 15px;
      width: 40px;
    }

    #cloud-2 {
      left: 44px;
      top: 10px;
      width: 20px;
    }

    #cloud-3 {
      left: 18px;
      top: 24px;
      width: 30px;
    }

    #cloud-4 {
      left: 36px;
      top: 18px;
      width: 40px;
    }

    #cloud-5 {
      left: 48px;
      top: 14px;
      width: 20px;
    }

    #cloud-6 {
      left: 22px;
      top: 26px;
      width: 30px;
    }

    @keyframes cloud-move {
      0% {
        transform: translateX(0px);
      }

      40% {
        transform: translateX(4px);
      }

      80% {
        transform: translateX(-4px);
      }

      100% {
        transform: translateX(0px);
      }
    }

    .stars {
      transform: translateY(-32px);
      opacity: 0;
      transition: 0.4s;
    }

    .star {
      fill: white;
      position: absolute;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      animation-name: star-twinkle;
      animation-duration: 2s;
      animation-iteration-count: infinite;
    }

    #input:checked+.slider .stars {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }

    #star-1 {
      width: 20px;
      top: 2px;
      left: 3px;
      animation-delay: 0.3s;
    }

    #star-2 {
      width: 6px;
      top: 16px;
      left: 3px;
    }

    #star-3 {
      width: 12px;
      top: 20px;
      left: 10px;
      animation-delay: 0.6s;
    }

    #star-4 {
      width: 18px;
      top: 0px;
      left: 18px;
      animation-delay: 1.3s;
    }

    @keyframes star-twinkle {
      0% {
        transform: scale(1);
      }

      40% {
        transform: scale(1.2);
      }

      80% {
        transform: scale(0.8);
      }

      100% {
        transform: scale(1);
      }
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
    }

    .switch #input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #2196f3;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      z-index: 0;
      overflow: hidden;
    }

    .sun-moon {
      position: absolute;
      content: "";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: yellow;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }

    #input:checked+.slider {
      background-color: black;
    }

    #input:focus+.slider {
      box-shadow: 0 0 1px #2196f3;
    }

    #input:checked+.slider .sun-moon {
      -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
      transform: translateX(26px);
      background-color: white;
      -webkit-animation: rotate-center 0.6s ease-in-out both;
      animation: rotate-center 0.6s ease-in-out both;
    }

    .moon-dot {
      opacity: 0;
      transition: 0.4s;
      fill: gray;
    }

    #input:checked+.slider .sun-moon .moon-dot {
      opacity: 1;
    }

    .slider.round {
      border-radius: 34px;
    }

    .slider.round .sun-moon {
      border-radius: 50%;
    }

    #moon-dot-1 {
      left: 10px;
      top: 3px;
      position: absolute;
      width: 6px;
      height: 6px;
      z-index: 4;
    }

    #moon-dot-2 {
      left: 2px;
      top: 10px;
      position: absolute;
      width: 10px;
      height: 10px;
      z-index: 4;
    }

    #moon-dot-3 {
      left: 16px;
      top: 18px;
      position: absolute;
      width: 3px;
      height: 3px;
      z-index: 4;
    }

    #light-ray-1 {
      left: -8px;
      top: -8px;
      position: absolute;
      width: 43px;
      height: 43px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-2 {
      left: -50%;
      top: -50%;
      position: absolute;
      width: 55px;
      height: 55px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-3 {
      left: -18px;
      top: -18px;
      position: absolute;
      width: 60px;
      height: 60px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    .cloud-light {
      position: absolute;
      fill: #eee;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
    }

    .cloud-dark {
      position: absolute;
      fill: #ccc;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-delay: 1s;
    }

    #cloud-1 {
      left: 30px;
      top: 15px;
      width: 40px;
    }

    #cloud-2 {
      left: 44px;
      top: 10px;
      width: 20px;
    }

    #cloud-3 {
      left: 18px;
      top: 24px;
      width: 30px;
    }

    #cloud-4 {
      left: 36px;
      top: 18px;
      width: 40px;
    }

    #cloud-5 {
      left: 48px;
      top: 14px;
      width: 20px;
    }

    #cloud-6 {
      left: 22px;
      top: 26px;
      width: 30px;
    }

    @keyframes cloud-move {
      0% {
        transform: translateX(0px);
      }

      40% {
        transform: translateX(4px);
      }

      80% {
        transform: translateX(-4px);
      }

      100% {
        transform: translateX(0px);
      }
    }

    .stars {
      transform: translateY(-32px);
      opacity: 0;
      transition: 0.4s;
    }

    .star {
      fill: white;
      position: absolute;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      animation-name: star-twinkle;
      animation-duration: 2s;
      animation-iteration-count: infinite;
    }

    #input:checked+.slider .stars {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }

    #star-1 {
      width: 20px;
      top: 2px;
      left: 3px;
      animation-delay: 0.3s;
    }

    #star-2 {
      width: 6px;
      top: 16px;
      left: 3px;
    }

    #star-3 {
      width: 12px;
      top: 20px;
      left: 10px;
      animation-delay: 0.6s;
    }

    #star-4 {
      width: 18px;
      top: 0px;
      left: 18px;
      animation-delay: 1.3s;
    }

    @keyframes star-twinkle {
      0% {
        transform: scale(1);
      }

      40% {
        transform: scale(1.2);
      }

      80% {
        transform: scale(0.8);
      }

      100% {
        transform: scale(1);
      }
    }





    #post-intro .entry-poster .btn-tracking {
      top: 1rem;
      left: 4rem;
      position: absolute;
      width: 42px;
      height: 42px;
      border-radius: 50px;
    }


    .quick-access-menu.is-stuck {
      position: fixed;
      top: 0;
      width: -webkit-fill-available;
      z-index: 1000;
    }


    .quick-access-menu {
      position: sticky;
      top: 0;
      width: -webkit-fill-available;
      background-color: var(--bg-body);
      z-index: 1000;
      transition: box-shadow .2s ease;
    }

    .quick-access-menu ul {
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      margin: 0;
      list-style: none;
    }

    .quick-access-menu li {
      position: relative;
    }

    .quick-access-menu a {
      text-decoration: none;
      color: var(--text-body);
      padding: 10px 15px;
      transition: color 0.3s;
    }

    .quick-access-menu a.active {
      color: red;
      /* Change color for active link */
    }

    .quick-access-menu a::after {
      content: '';
      display: block;
      height: 2px;
      background: red;
      position: absolute;
      left: 50%;
      right: 50%;
      bottom: -5px;
      /* Adjust as needed */
      transition: left 0.3s, right 0.3s;
    }

    .quick-access-menu a.active::after {
      left: 0;
      right: 0;
    }



    @media (max-width: 768px) {

      .entry-genres {
        scrollbar-width: none;
      }

      .float-search.bg-card.border.fsz-13 {
        width: 700%;
        left: -125%;
      }
    }


    .download-season .series-downloaditems a button {
      padding: 0 .8rem !important;

    }

    .download-season .series-downloaditems a:first-child {
      margin-left: 3%;

    }

    .download-season .series-downloaditems .btn {
      place-content: center;

    }




    .main-footer-insta {
      background: linear-gradient(145deg, #FA9F6F, #FA697C);
      box-shadow: 0 3px 20px rgba(250, 123, 119, .3);
    }

    .main-footer-telegram {
      background: linear-gradient(145deg, #96D5F5, #5EBAE8);
      box-shadow: 0 3px 20px rgba(142, 209, 243, .35);
    }

    .ficon-instagram,
    .ficon-telegram {

      margin-left: 10px;

    }


    .ficon-instagram,
    .ficon-telegram {

      width: 22px;
      height: 22px;
      line-height: 1;
      font-weight: 300;
      transform: translate(-5px, 0);
      display: inline-block;
      fill: #fff;


    }

    .ficon-instagram g,
    .ficon-telegram g {
      fill: #fff;

    }


    .main-footer-insta .ficon-arrow-left-sign,
    .main-footer-telegram .ficon-arrow-left-sign {
      width: 22px;
      height: 22px;
      display: inline-block;
      left: 15px;
      top: 15px;
      position: absolute;
      border-radius: 100px;
      font-size: 10px;
      background: rgba(255, 255, 255, .15);
      fill: #fff;
    }

    .position-absolute {
      position: absolute !important;
    }


    .single-mb-header {
      display: flex;
      justify-content: space-around;
      height: 60% !important;

    }

    .light-mode #menucanvas .list>li,
    .light-mode #siteHead:not(.position-absolute) .menu,
    .light-mode #siteHead:not(.position-absolute) .menu a,
    .light-mode #siteHead:not(.position-absolute) .menu>li>a {
      color: #000000 !important;
    }

    .light-mode #siteFoot,
    .light-mode #siteFoot p,
    .light-mode #siteFoot a,
    .light-mode #siteFoot .text-muted,
    .light-mode #siteFoot a.text-muted {
      color: #000000 !important;
    }

/* from single.html */
.site-head-inner {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: var(--body-bg, #0f0f0f);
    }
    body.light-mode .site-head-inner {
      background: var(--bg-body, #ededed);
      border-bottom: 1px solid rgba(0, 0, 0, 0.09);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    #post-intro {
      padding-top: 2rem;
      min-height: auto;
    }
    .inner-route #post-intro {
      display: block !important;
      min-height: auto !important;
      overflow: visible;
      padding-top: 0 !important;
      align-items: stretch !important;
      justify-content: flex-start !important;
    }
    .inner-route #post-intro::before {
      display: none !important;
      content: none !important;
    }
    .book-text-preview { max-height: none; overflow: visible; }
    body.light-mode .book-text-preview { background: var(--card-bg, #fff); }
    .book-intro-digital__card {
      background: var(--card-bg, rgba(255,255,255,.04));
      border: 1px solid rgba(150, 242, 7, 0.22);
      border-radius: 14px;
      padding: 1.1rem 1.25rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    }
    body.light-mode .book-intro-digital__card {
      background: #fff;
      border-color: rgba(150, 242, 7, 0.35);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }
    .book-intro-digital__head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.65rem;
    }
    .book-intro-digital__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 8px;
      background: rgba(150, 242, 7, 0.12);
      color: #96F207;
    }
    .book-intro-digital__label {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }
    .book-intro-digital__title-en {
      font-size: 0.82rem;
      color: var(--text-muted, #9aa0a6);
      margin: 0 0 1rem;
      direction: ltr;
      text-align: left;
    }
    .book-intro-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.55rem 1rem;
    }
    @media (max-width: 575px) {
      .book-intro-meta { grid-template-columns: 1fr; }
    }
    .book-intro-meta__item {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.45rem 0.65rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }
    body.light-mode .book-intro-meta__item {
      background: rgba(0, 0, 0, 0.02);
      border-color: rgba(0, 0, 0, 0.06);
    }
    .book-intro-meta__key {
      font-size: 0.78rem;
      color: var(--text-muted, #9aa0a6);
      white-space: nowrap;
    }
    .book-intro-meta__val {
      font-size: 0.88rem;
      font-weight: 600;
      direction: rtl;
      text-align: right;
    }
    .book-intro-meta__val[dir="ltr"] {
      direction: rtl;
      text-align: right;
    }
    .book-intro-digital__actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1.15rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(150, 242, 7, 0.15);
    }
    .book-dl-btn {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      width: 100%;
      padding: 0.7rem 1rem;
      font-size: 0.88rem;
      font-weight: 600;
      line-height: 1.35;
      font-family: inherit;
      color: inherit;
      text-align: start;
      cursor: pointer;
      border-radius: 11px;
      border: 1px solid transparent;
      text-decoration: none;
      transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }
    .book-dl-btn[aria-disabled="true"] {
      opacity: 0.7;
      pointer-events: none;
    }
    .book-dl-btn__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 2.1rem;
      width: 2.1rem;
      height: 2.1rem;
      border-radius: 9px;
    }
    .book-dl-btn__body {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.1rem;
      min-width: 0;
      flex: 1 1 auto;
    }
    .book-dl-btn__title {
      font-size: 0.92rem;
      font-weight: 700;
    }
    .book-dl-btn__sub {
      font-size: 0.74rem;
      font-weight: 500;
      opacity: 0.82;
    }
    .book-download-locked {
      color: rgba(255, 255, 255, 0.88);
      background: linear-gradient(135deg, rgba(231, 76, 60, 0.22), rgba(192, 57, 43, 0.14));
      border-color: rgba(231, 76, 60, 0.45);
      cursor: not-allowed;
      user-select: none;
    }
    body.light-mode .book-download-locked {
      color: #7f1d1d;
      background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(231, 76, 60, 0.06));
      border-color: rgba(231, 76, 60, 0.35);
    }
    .book-download-locked .book-dl-btn__icon {
      background: rgba(231, 76, 60, 0.2);
      color: #e74c3c;
    }
    .book-download-locked:hover {
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23e74c3c' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a3 3 0 0 0-3 3v3h6V4a3 3 0 0 0-3-3zM4 7V4a4 4 0 0 1 8 0v3h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h1z'/%3E%3C/svg%3E") 12 12, not-allowed;
      border-color: rgba(231, 76, 60, 0.65);
      box-shadow: inset 0 0 0 1px rgba(231, 76, 60, 0.15);
    }
    .book-download-locked:hover .book-dl-btn__icon-lock {
      display: none;
    }
    .book-download-locked:hover .book-dl-btn__icon-block {
      display: inline-flex;
    }
    .book-dl-btn__icon-block {
      display: none;
    }
    .book-purchase-paths {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .book-purchase-paths__label {
      margin: 0;
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--text-muted, #9aa0a6);
      letter-spacing: 0.02em;
    }
    .book-purchase-paths__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.55rem;
    }
    @media (max-width: 479px) {
      .book-purchase-paths__grid {
        grid-template-columns: 1fr;
      }
    }
    .book-dl-btn--single {
      color: inherit;
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.12);
    }
    body.light-mode .book-dl-btn--single {
      background: #f8f9fa;
      border-color: rgba(0, 0, 0, 0.1);
    }
    .book-dl-btn--single .book-dl-btn__icon {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-color, #e8eaed);
    }
    body.light-mode .book-dl-btn--single .book-dl-btn__icon {
      background: rgba(0, 0, 0, 0.06);
      color: #333;
    }
    .book-dl-btn--single:hover {
      border-color: rgba(150, 242, 7, 0.45);
      background: rgba(150, 242, 7, 0.08);
      transform: translateY(-1px);
      color: inherit;
    }
    .book-dl-btn--pro {
      color: #0a0a0a;
      background: linear-gradient(135deg, #96F207, #7bc805);
      border-color: rgba(150, 242, 7, 0.65);
      box-shadow: 0 4px 18px rgba(150, 242, 7, 0.22);
    }
    .book-dl-btn--pro .book-dl-btn__icon {
      background: rgba(0, 0, 0, 0.12);
      color: #0a0a0a;
    }
    .book-dl-btn--pro .book-dl-btn__sub {
      color: rgba(0, 0, 0, 0.72);
      opacity: 1;
    }
    .book-dl-btn--pro:hover {
      color: #0a0a0a;
      background: linear-gradient(135deg, #a8ff1a, #96F207);
      transform: translateY(-1px);
      box-shadow: 0 6px 22px rgba(150, 242, 7, 0.32);
    }
    .book-dl-btn--active {
      color: #0a0a0a;
      background: linear-gradient(135deg, #96F207, #7bc805);
      border-color: rgba(150, 242, 7, 0.65);
    }
    .book-dl-btn--active .book-dl-btn__icon {
      background: rgba(0, 0, 0, 0.12);
      color: #0a0a0a;
    }
    .book-dl-btn--active:hover {
      color: #0a0a0a;
      transform: translateY(-1px);
    }

/* from single.html */
/* ruberah-index-custom */
#siteFoot .footer-logo--copyright {
      max-height: 22px;
      max-width: 72px;
    }
    #siteFoot .footer-namad-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      gap: 10px 14px;
      padding: 0;
      margin: 0;
    }

    #siteFoot .footer-namad-item {
      margin: 0;
      padding: 0;
    }

    #siteFoot .footer-namad-item img {
      height: 90px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      border: none;
      background: transparent;
    }

    #siteFoot .footer-quick-links a {
      text-decoration: none;
    }

    #siteFoot .footer-quick-links a:hover {
      text-decoration: underline;
    }

    /* Header contact — desktop */
    .site-head-contact {
      gap: 0.65rem;
      font-size: 0.8125rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    .site-head-contact__item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .light-mode .site-head-contact__item {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.1);
      color: #222;
    }

    .light-mode .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .site-head-contact__icon {
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
      opacity: 0.85;
    }

    .site-head-contact__label {
      opacity: 0.72;
      font-size: 0.75rem;
    }

    .site-head-contact__number {
      font-weight: 700;
      direction: ltr;
      unicode-bidi: embed;
    }

    /* Header contact — mobile offcanvas */
    .menucanvas-contact {
      margin-bottom: 1.25rem;
      padding: 1rem;
      border-radius: 0.75rem;
      background: linear-gradient(135deg, rgba(150, 242, 7, 0.14) 0%, rgba(150, 242, 7, 0.05) 100%);
      border: 1px solid rgba(150, 242, 7, 0.28);
    }

    .menucanvas-contact__title {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      font-weight: 800;
      color: #96F207;
    }

    .menucanvas-contact__title svg {
      width: 1.1rem;
      height: 1.1rem;
      flex-shrink: 0;
    }

    .menucanvas-contact__list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .menucanvas-contact__link {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.65rem 0.85rem;
      border-radius: 0.55rem;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.18);
      border-color: rgba(150, 242, 7, 0.4);
      color: inherit;
    }

    .light-mode .menucanvas-contact__link {
      background: #fff;
      border-color: #e0e0e0;
    }

    .light-mode .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.15);
      border-color: rgba(150, 242, 7, 0.45);
    }

    .menucanvas-contact__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: rgba(150, 242, 7, 0.2);
      color: #96F207;
    }

    .menucanvas-contact__icon svg {
      width: 1rem;
      height: 1rem;
    }

    .menucanvas-contact__text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      min-width: 0;
    }

    .menucanvas-contact__label {
      font-size: 0.75rem;
      opacity: 0.7;
    }

    .menucanvas-contact__number {
      font-size: 0.9375rem;
      font-weight: 800;
      direction: ltr;
      unicode-bidi: embed;
      text-align: right;
    }

/* Glass header overlay — hero (over slider) */
    #siteHead.position-absolute {
      background: linear-gradient(180deg, rgba(6, 8, 4, 0.72) 0%, rgba(6, 8, 4, 0.46) 100%);
      -webkit-backdrop-filter: blur(16px) saturate(1.15);
      backdrop-filter: blur(16px) saturate(1.15);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    }

    @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
      #siteHead.position-absolute {
        background: linear-gradient(180deg, rgba(6, 8, 4, 0.58) 0%, rgba(6, 8, 4, 0.36) 100%);
      }
    }

    /* Hero header: always light text — readable on dark slider in light theme too */
    #siteHead.position-absolute .menu,
    #siteHead.position-absolute .menu a,
    #siteHead.position-absolute .menu > li > a,
    .light-mode #siteHead.position-absolute .menu,
    .light-mode #siteHead.position-absolute .menu a,
    .light-mode #siteHead.position-absolute .menu > li > a {
      color: rgba(255, 255, 255, 0.93) !important;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    #siteHead.position-absolute .menu a:hover,
    .light-mode #siteHead.position-absolute .menu a:hover {
      color: #b8ff3d !important;
      text-shadow: none;
    }

    #siteHead.position-absolute .site-head-contact__item,
    .light-mode #siteHead.position-absolute .site-head-contact__item {
      color: rgba(255, 255, 255, 0.95);
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.24);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
    }

    #siteHead.position-absolute .site-head-contact__label {
      opacity: 0.8;
    }

    #siteHead.position-absolute .site-head-contact__item:hover,
    .light-mode #siteHead.position-absolute .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
      box-shadow: 0 2px 10px rgba(150, 242, 7, 0.4);
    }

    #siteHead.position-absolute .site-head-icon-btn,
    .light-mode #siteHead.position-absolute .site-head-icon-btn {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.26);
      color: #fff;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    #siteHead.position-absolute .site-head-icon-btn:hover,
    .light-mode #siteHead.position-absolute .site-head-icon-btn:hover {
      background: rgba(150, 242, 7, 0.22);
      border-color: rgba(150, 242, 7, 0.55);
      color: #b8ff3d;
    }

/* Glass header — hero over slider */
    #siteHead.position-absolute {
      z-index: 10;
      -webkit-backdrop-filter: blur(18px) saturate(1.08);
      backdrop-filter: blur(18px) saturate(1.08);
    }

    /* Light theme: bright frosted bar, black text, clear separation */
    .light-mode #siteHead.position-absolute {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 100%);
      border-bottom: 1px solid rgba(0, 0, 0, 0.09) !important;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
      .light-mode #siteHead.position-absolute {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
      }
    }

    .light-mode #siteHead.position-absolute .menu a:hover {
      color: #5a8f00 !important;
    }

    .light-mode #siteHead.position-absolute .site-head-contact__item {
      color: #1a1a1a;
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(0, 0, 0, 0.11);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }

    .light-mode #siteHead.position-absolute .site-head-contact__label {
      opacity: 0.65;
      color: #444;
    }

    .light-mode #siteHead.position-absolute .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
      box-shadow: 0 2px 8px rgba(150, 242, 7, 0.35);
    }

    .light-mode #siteHead.position-absolute .site-head-icon-btn {
      background: #6b6b6b;
      border-color: #5a5a5a;
      color: #fff;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    }

    .light-mode #siteHead.position-absolute .site-head-icon-btn:hover {
      background: rgba(150, 242, 7, 0.35);
      border-color: rgba(150, 242, 7, 0.55);
      color: #b8ff3d;
    }

    /* Lighten top of slider behind header for contrast */
    .light-mode #suggested-movies,
    .light-mode #suggested-movies-mobile {
      position: relative;
    }

    .light-mode #suggested-movies::before,
    .light-mode #suggested-movies-mobile::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 140px;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
    }

    /* Dark theme fallback on hero (if toggled) */
    body:not(.light-mode) #siteHead.position-absolute {
      background: linear-gradient(180deg, rgba(6, 8, 4, 0.58) 0%, rgba(6, 8, 4, 0.36) 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    }

    body:not(.light-mode) #siteHead.position-absolute .menu,
    body:not(.light-mode) #siteHead.position-absolute .menu a,
    body:not(.light-mode) #siteHead.position-absolute .menu > li > a {
      color: rgba(255, 255, 255, 0.93) !important;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    body:not(.light-mode) #siteHead.position-absolute .menu a:hover {
      color: #b8ff3d !important;
      text-shadow: none;
    }

    body:not(.light-mode) #siteHead.position-absolute .site-head-contact__item {
      color: rgba(255, 255, 255, 0.95);
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.24);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
    }

    body:not(.light-mode) #siteHead.position-absolute .site-head-icon-btn {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.26);
      color: #fff;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

/* from single.html */
/* ruberah-shared */
#siteFoot .footer-logo--copyright {
      max-height: 22px;
      max-width: 72px;
    }
    #siteFoot .footer-namad-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      gap: 10px 14px;
      padding: 0;
      margin: 0;
    }

    #siteFoot .footer-namad-item {
      margin: 0;
      padding: 0;
    }

    #siteFoot .footer-namad-item img {
      height: 90px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      border: none;
      background: transparent;
    }

    #siteFoot .footer-quick-links a {
      text-decoration: none;
    }

    #siteFoot .footer-quick-links a:hover {
      text-decoration: underline;
    }

    /* Header contact — desktop */
    .site-head-contact {
      gap: 0.65rem;
      font-size: 0.8125rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    .site-head-contact__item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .light-mode .site-head-contact__item {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.1);
      color: #222;
    }

    .light-mode .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .site-head-contact__icon {
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
      opacity: 0.85;
    }

    .site-head-contact__label {
      opacity: 0.72;
      font-size: 0.75rem;
    }

    .site-head-contact__number {
      font-weight: 700;
      direction: ltr;
      unicode-bidi: embed;
    }

    /* Header menu — compact to stay on one line */
    #siteHead .menu {
      gap: 1rem;
      flex-wrap: nowrap;
    }

    #siteHead .menu > li > a {
      font-size: 0.76rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    #siteHead .menu > li > a svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    @media (min-width: 1400px) {
      #siteHead .menu {
        gap: 1.25rem;
      }

      #siteHead .menu > li > a {
        font-size: 0.8125rem;
      }
    }

    /* Header contact — mobile offcanvas */
    .menucanvas-contact {
      margin-bottom: 1.25rem;
      padding: 1rem;
      border-radius: 0.75rem;
      background: linear-gradient(135deg, rgba(150, 242, 7, 0.14) 0%, rgba(150, 242, 7, 0.05) 100%);
      border: 1px solid rgba(150, 242, 7, 0.28);
    }

    .menucanvas-contact__title {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      font-weight: 800;
      color: #96F207;
    }

    .menucanvas-contact__title svg {
      width: 1.1rem;
      height: 1.1rem;
      flex-shrink: 0;
    }

    .menucanvas-contact__list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .menucanvas-contact__link {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.65rem 0.85rem;
      border-radius: 0.55rem;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.18);
      border-color: rgba(150, 242, 7, 0.4);
      color: inherit;
    }

    .light-mode .menucanvas-contact__link {
      background: #fff;
      border-color: #e0e0e0;
    }

    .light-mode .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.15);
      border-color: rgba(150, 242, 7, 0.45);
    }

    .menucanvas-contact__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: rgba(150, 242, 7, 0.2);
      color: #96F207;
    }

    .menucanvas-contact__icon svg {
      width: 1rem;
      height: 1rem;
    }

    .menucanvas-contact__text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      min-width: 0;
    }

    .menucanvas-contact__label {
      font-size: 0.75rem;
      opacity: 0.7;
    }

    .menucanvas-contact__number {
      font-size: 0.9375rem;
      font-weight: 800;
      direction: ltr;
      unicode-bidi: embed;
      text-align: right;
    }

/* from single.html */
/* ruberah-search-overlay */
@media (min-width: 992px) {
      .site-search-overlay {
        position: fixed;
        inset: 0;
        z-index: 1060;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s;
        pointer-events: none;
      }

      .site-search-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .site-search-overlay[hidden]:not(.is-open) {
        display: none !important;
      }

      .site-search-overlay.is-open {
        display: flex !important;
      }

      .site-search-overlay__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }

      .site-search-overlay__panel {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 760px;
        margin-top: min(10vh, 100px);
        padding: 0 1.5rem 2rem;
        max-height: calc(100vh - min(10vh, 100px));
        display: flex;
        flex-direction: column;
        transform: translateY(-16px) scale(0.98);
        transition: transform 0.25s ease;
      }

      .site-search-overlay.is-open .site-search-overlay__panel {
        transform: translateY(0) scale(1);
      }

      .site-search-overlay__header {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .site-search-overlay__field {
        flex: 1;
      }

      .site-search-overlay__inner.float-search {
        position: static !important;
        width: 100% !important;
        left: auto !important;
        display: block !important;
        background: var(--card-bg, #fff);
        border-radius: 14px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
        padding: 1.25rem 1.25rem 0.75rem;
        border: none;
      }

      .site-search-overlay__field input {
        font-size: 1.25rem;
        padding: 0.9rem 3rem 0.9rem 1rem;
        border-radius: 10px;
        border: 2px solid transparent;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
        height: auto;
      }

      .site-search-overlay__field input:focus {
        border-color: var(--primary, #0d6efd);
        outline: none;
        box-shadow: 0 4px 24px rgba(13, 110, 253, 0.15);
      }

      .site-search-overlay__close {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.65rem 0.85rem;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 0.85rem;
        cursor: pointer;
        backdrop-filter: blur(4px);
      }

      .site-search-overlay__close:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .site-search-overlay .search-ajax-result {
        max-height: min(52vh, 520px);
        overflow-y: auto;
        margin-top: 0.75rem;
        padding-bottom: 0.5rem;
      }

      .site-search-overlay .search-ajax-result .listunstyled {
        margin: 0;
        padding: 0;
      }

      body.site-search-open {
        overflow: hidden;
      }
    }

    @media (max-width: 991.98px) {
      #site-search-overlay {
        display: none !important;
      }
    }

/* from page.html */
.site-head-inner {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: var(--body-bg, #0f0f0f);
    }
    body.light-mode .site-head-inner {
      background: var(--bg-body, #ededed);
      border-bottom: 1px solid rgba(0, 0, 0, 0.09);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    #siteBody.page-wrap {
      padding-top: 1.5rem;
      padding-bottom: 3rem;
      min-height: 60vh;
    }
    #siteBody .breadcrumb {
      --bs-breadcrumb-divider: "/";
    }
    .entry-content h2,
    .entry-content h3 {
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .light-mode {
      background-color: #ededed !important;
      color: #000000 !important;
      --bg-card: #ffffff;
      --bg-body: #e1e1e1;
      --text-body: #000000;
      --border-color: #999999;
      --info-lighten-color: #e4e8ed;
      --danger-lighten-color: #e9c5c5;
      --primary-color: #070c12;
      --primary-lighten-color: #727272;

      input,
      textarea {
        background: white !important;
      }

      .content-toggle:after {
        background: none !important;
      }


      .download-list.hardsub>.title>span {
        background-color: #c1d2e7;
      }

      .posts .entry .entry-ganers a {
        color: white;
      }

      #siteHead .menu .megasub .lists .list>li>a {
        color: #fff;
      }



      #menucanvas .list>li,
      .pagination,
      #siteHead .menu .megasub .lists .list>li,
      #siteHead .menu a,
      #siteHead .menu {
        color: var(--text-body) !important;
      }

      #siteFoot,
      #siteFoot p,
      #siteFoot a,
      #siteFoot .text-muted,
      #siteFoot a.text-muted {
        color: var(--text-body) !important;
      }

      #siteHead .menu .megasub .navs .list-group.active {
        color: #ffffff;
      }


      #siteHead .menu .megasub .navs .list-group {
        color: white;
      }

      span.d-flex.flex-column.gap-05 {
        color: #fff;
      }


      span.d-inline-flex.align-items-center.gap-05 {
        color: white;
      }


      #suggested-movies #suggested-thumbnails .splide__list .splide__slide.is-active {
        border-color: rgb(233 233 233);
      }


      #post-intro .coverimg {
        -webkit-filter: blur(20px) brightness(4.35);
        filter: blur(20px) brightness(4.35);
      }



    }

    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;

      margin-left: 10px;
    }

    .switch #input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #2196f3;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      z-index: 0;
      overflow: hidden;
    }

    .sun-moon {
      position: absolute;
      content:"";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: yellow;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }

    #input:checked+.slider {
      background-color: black;
    }

    #input:focus+.slider {
      box-shadow: 0 0 1px #2196f3;
    }

    #input:checked+.slider .sun-moon {
      -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
      transform: translateX(26px);
      background-color: white;
      -webkit-animation: rotate-center 0.6s ease-in-out both;
      animation: rotate-center 0.6s ease-in-out both;
    }

    .moon-dot {
      opacity: 0;
      transition: 0.4s;
      fill: gray;
    }

    #input:checked+.slider .sun-moon .moon-dot {
      opacity: 1;
    }

    .slider.round {
      border-radius: 34px;
    }

    .slider.round .sun-moon {
      border-radius: 50%;
    }

    #moon-dot-1 {
      left: 10px;
      top: 3px;
      position: absolute;
      width: 6px;
      height: 6px;
      z-index: 4;
    }

    #moon-dot-2 {
      left: 2px;
      top: 10px;
      position: absolute;
      width: 10px;
      height: 10px;
      z-index: 4;
    }

    #moon-dot-3 {
      left: 16px;
      top: 18px;
      position: absolute;
      width: 3px;
      height: 3px;
      z-index: 4;
    }

    #light-ray-1 {
      left: -8px;
      top: -8px;
      position: absolute;
      width: 43px;
      height: 43px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-2 {
      left: -50%;
      top: -50%;
      position: absolute;
      width: 55px;
      height: 55px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-3 {
      left: -18px;
      top: -18px;
      position: absolute;
      width: 60px;
      height: 60px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    .cloud-light {
      position: absolute;
      fill: #eee;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
    }

    .cloud-dark {
      position: absolute;
      fill: #ccc;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-delay: 1s;
    }

    #cloud-1 {
      left: 30px;
      top: 15px;
      width: 40px;
    }

    #cloud-2 {
      left: 44px;
      top: 10px;
      width: 20px;
    }

    #cloud-3 {
      left: 18px;
      top: 24px;
      width: 30px;
    }

    #cloud-4 {
      left: 36px;
      top: 18px;
      width: 40px;
    }

    #cloud-5 {
      left: 48px;
      top: 14px;
      width: 20px;
    }

    #cloud-6 {
      left: 22px;
      top: 26px;
      width: 30px;
    }

    @keyframes cloud-move {
      0% {
        transform: translateX(0px);
      }

      40% {
        transform: translateX(4px);
      }

      80% {
        transform: translateX(-4px);
      }

      100% {
        transform: translateX(0px);
      }
    }

    .stars {
      transform: translateY(-32px);
      opacity: 0;
      transition: 0.4s;
    }

    .star {
      fill: white;
      position: absolute;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      animation-name: star-twinkle;
      animation-duration: 2s;
      animation-iteration-count: infinite;
    }

    #input:checked+.slider .stars {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }

    #star-1 {
      width: 20px;
      top: 2px;
      left: 3px;
      animation-delay: 0.3s;
    }

    #star-2 {
      width: 6px;
      top: 16px;
      left: 3px;
    }

    #star-3 {
      width: 12px;
      top: 20px;
      left: 10px;
      animation-delay: 0.6s;
    }

    #star-4 {
      width: 18px;
      top: 0px;
      left: 18px;
      animation-delay: 1.3s;
    }

    @keyframes star-twinkle {
      0% {
        transform: scale(1);
      }

      40% {
        transform: scale(1.2);
      }

      80% {
        transform: scale(0.8);
      }

      100% {
        transform: scale(1);
      }
    }

/* from page.html */
/* ruberah-shared */
    .light-mode #menucanvas .list>li,
    .light-mode #siteHead:not(.position-absolute) .menu,
    .light-mode #siteHead:not(.position-absolute) .menu a,
    .light-mode #siteHead:not(.position-absolute) .menu > li > a {
      color: #000000 !important;
    }
    .light-mode #siteFoot,
    .light-mode #siteFoot p,
    .light-mode #siteFoot a,
    .light-mode #siteFoot .text-muted,
    .light-mode #siteFoot a.text-muted {
      color: #000000 !important;
    }
#siteFoot .footer-logo--copyright {
      max-height: 22px;
      max-width: 72px;
    }
    #siteFoot .footer-namad-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      gap: 10px 14px;
      padding: 0;
      margin: 0;
    }

    #siteFoot .footer-namad-item {
      margin: 0;
      padding: 0;
    }

    #siteFoot .footer-namad-item img {
      height: 90px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      border: none;
      background: transparent;
    }

    #siteFoot .footer-quick-links a {
      text-decoration: none;
    }

    #siteFoot .footer-quick-links a:hover {
      text-decoration: underline;
    }

    /* Header contact — desktop */
    .site-head-contact {
      gap: 0.65rem;
      font-size: 0.8125rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    .site-head-contact__item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .light-mode .site-head-contact__item {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.1);
      color: #222;
    }

    .light-mode .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .site-head-contact__icon {
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
      opacity: 0.85;
    }

    .site-head-contact__label {
      opacity: 0.72;
      font-size: 0.75rem;
    }

    .site-head-contact__number {
      font-weight: 700;
      direction: ltr;
      unicode-bidi: embed;
    }

    /* Header menu — compact to stay on one line */
    #siteHead .menu {
      gap: 1rem;
      flex-wrap: nowrap;
    }

    #siteHead .menu > li > a {
      font-size: 0.76rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    #siteHead .menu > li > a svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    @media (min-width: 1400px) {
      #siteHead .menu {
        gap: 1.25rem;
      }

      #siteHead .menu > li > a {
        font-size: 0.8125rem;
      }
    }

    /* Header contact — mobile offcanvas */
    .menucanvas-contact {
      margin-bottom: 1.25rem;
      padding: 1rem;
      border-radius: 0.75rem;
      background: linear-gradient(135deg, rgba(150, 242, 7, 0.14) 0%, rgba(150, 242, 7, 0.05) 100%);
      border: 1px solid rgba(150, 242, 7, 0.28);
    }

    .menucanvas-contact__title {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      font-weight: 800;
      color: #96F207;
    }

    .menucanvas-contact__title svg {
      width: 1.1rem;
      height: 1.1rem;
      flex-shrink: 0;
    }

    .menucanvas-contact__list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .menucanvas-contact__link {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.65rem 0.85rem;
      border-radius: 0.55rem;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.18);
      border-color: rgba(150, 242, 7, 0.4);
      color: inherit;
    }

    .light-mode .menucanvas-contact__link {
      background: #fff;
      border-color: #e0e0e0;
    }

    .light-mode .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.15);
      border-color: rgba(150, 242, 7, 0.45);
    }

    .menucanvas-contact__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: rgba(150, 242, 7, 0.2);
      color: #96F207;
    }

    .menucanvas-contact__icon svg {
      width: 1rem;
      height: 1rem;
    }

    .menucanvas-contact__text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      min-width: 0;
    }

    .menucanvas-contact__label {
      font-size: 0.75rem;
      opacity: 0.7;
    }

    .menucanvas-contact__number {
      font-size: 0.9375rem;
      font-weight: 800;
      direction: ltr;
      unicode-bidi: embed;
      text-align: right;
    }

/* from page.html */
/* ruberah-search-overlay */
@media (min-width: 992px) {
      .site-search-overlay {
        position: fixed;
        inset: 0;
        z-index: 1060;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s;
        pointer-events: none;
      }

      .site-search-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .site-search-overlay[hidden]:not(.is-open) {
        display: none !important;
      }

      .site-search-overlay.is-open {
        display: flex !important;
      }

      .site-search-overlay__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }

      .site-search-overlay__panel {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 760px;
        margin-top: min(10vh, 100px);
        padding: 0 1.5rem 2rem;
        max-height: calc(100vh - min(10vh, 100px));
        display: flex;
        flex-direction: column;
        transform: translateY(-16px) scale(0.98);
        transition: transform 0.25s ease;
      }

      .site-search-overlay.is-open .site-search-overlay__panel {
        transform: translateY(0) scale(1);
      }

      .site-search-overlay__header {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .site-search-overlay__field {
        flex: 1;
      }

      .site-search-overlay__inner.float-search {
        position: static !important;
        width: 100% !important;
        left: auto !important;
        display: block !important;
        background: var(--card-bg, #fff);
        border-radius: 14px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
        padding: 1.25rem 1.25rem 0.75rem;
        border: none;
      }

      .site-search-overlay__field input {
        font-size: 1.25rem;
        padding: 0.9rem 3rem 0.9rem 1rem;
        border-radius: 10px;
        border: 2px solid transparent;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
        height: auto;
      }

      .site-search-overlay__field input:focus {
        border-color: var(--primary, #0d6efd);
        outline: none;
        box-shadow: 0 4px 24px rgba(13, 110, 253, 0.15);
      }

      .site-search-overlay__close {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.65rem 0.85rem;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 0.85rem;
        cursor: pointer;
        backdrop-filter: blur(4px);
      }

      .site-search-overlay__close:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .site-search-overlay .search-ajax-result {
        max-height: min(52vh, 520px);
        overflow-y: auto;
        margin-top: 0.75rem;
        padding-bottom: 0.5rem;
      }

      .site-search-overlay .search-ajax-result .listunstyled {
        margin: 0;
        padding: 0;
      }

      body.site-search-open {
        overflow: hidden;
      }
    }

    @media (max-width: 991.98px) {
      #site-search-overlay {
        display: none !important;
      }
    }

/* from product.html */
.site-head-inner {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: var(--body-bg, #0f0f0f);
    }
    body.light-mode .site-head-inner {
      background: var(--bg-body, #ededed);
      border-bottom: 1px solid rgba(0, 0, 0, 0.09);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    #post-intro {
      padding-top: 2rem;
      min-height: auto;
    }
    .inner-route #post-intro {
      display: block !important;
      min-height: auto !important;
      overflow: visible;
      padding-top: 0 !important;
      align-items: stretch !important;
      justify-content: flex-start !important;
    }
    .inner-route #post-intro::before {
      display: none !important;
      content: none !important;
    }
    .site-breadcrumb {
      margin-bottom: 1.25rem;
    }
    .site-breadcrumb .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 0.6875rem;
      font-weight: 400;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.38);
    }
    body.light-mode .site-breadcrumb .breadcrumb {
      color: rgba(0, 0, 0, 0.38);
    }
    .site-breadcrumb .breadcrumb-item {
      display: inline-flex;
      align-items: center;
    }
    .site-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      content: "/";
      display: inline-block;
      padding: 0 0.45em;
      color: rgba(255, 255, 255, 0.22);
      font-weight: 300;
    }
    body.light-mode .site-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(0, 0, 0, 0.22);
    }
    .site-breadcrumb .breadcrumb-item a {
      color: inherit;
      text-decoration: none;
      transition: color 0.15s ease;
    }
    .site-breadcrumb .breadcrumb-item a:hover {
      color: #96F207;
    }
    .site-breadcrumb .breadcrumb-item.active {
      color: rgba(255, 255, 255, 0.62);
    }
    body.light-mode .site-breadcrumb .breadcrumb-item.active {
      color: rgba(0, 0, 0, 0.58);
    }

/* from product.html */
img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }

/* from product.html */
.download-season .series-downloaditems {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    }


    .content-toggle {
      max-height: max-content !important;
      position: static !important;
    }


    #suggested-movies #cover-suggested-movies .splide__slide .cover:before {

      background: none !important;

    }



    @media (max-width: 991px) {


      html {
        margin-top: 0 !important;
      }




      #siteHead #notificationsList {
        inset-inline-start: unset !important;
        inset-inline-start: 0px !important;
      }


      :root {
        --spiner_size: 1rem !important;
      }




      
        .posts {
          display: flex !important;
          /* Use flexbox for horizontal layout */
          overflow-x: auto;
          /* Enable horizontal scrolling */
          gap: 0.35rem !important;
          /* Space between items */
          padding-bottom: 1rem;
          /* Add padding at the bottom to create space for the scrollbar */
          -webkit-overflow-scrolling: touch;
          /* Enable momentum scrolling on iOS */
          scrollbar-width: none;
        }


        .posts div {
          flex: 0 0 30%;
          /* Each item takes up 45% of the container */
          scroll-snap-align: start;
          /* Align items to the start when scrolling */
        }






        .posts .entry .entry-cover {
          height: 175px !important;
        }



        .posts .entry .entry-icons .icon {
          width: 20px !important;
          height: 20px !important;
        }

        .posts .entry .entry-icons .icon>svg {
          width: 13px !important;
          height: 13px !important;
        }


        .posts .entry .entry-ganers a {
          font-size: 7px !important;
        }

        .entry-meta .d-flex.align-items-end.justify-content-between.fsz-13 {
          font-size: 10px !important;
        }

        .entry-meta .d-flex span:first-child svg {
          width: 18px !important;
          height: 9px !important;
        }

        .entry-meta .d-flex span:last-child svg {
          width: 9px !important;
          height: 9px !important;
        }

        .entry-meta .d-flex span strong {
          font-size: 10px !important;
        }

        .posts .entry .entry-title {
          font-size: 13px !important;
          margin: 0 5px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          white-space: pre-line;
          overflow: hidden;

        }

        .entry p {
          font-size: 9px !important;
        }

        .posts .entry .entry-cover {
          margin-bottom: 1rem;
        }

        .entry-cover {
          border-radius: .5rem !important;
        }

        .list-section:not(:last-child) {
          margin-bottom: 2.5rem !important;
        }

        .posts .entry .entry-cover img {
          -o-object-fit: fill !important;
          object-fit: fill !important;
        }







      

    }

    .switch-div {
      position: sticky;
      right: 20px;
      /* Adjust as needed */
      top: 50%;
      /* Center vertically */
      transform: translateY(-50%);
      /* Adjust for perfect centering */
      z-index: 1000;
      /* Ensure it stays on top */
    }


    .light-mode {
      background-color: #ededed !important;
      color: #000000 !important;
      --bg-card: #ffffff;
      --bg-body: #e1e1e1;
      --text-body: #000000;
      --border-color: #999999;
      --info-lighten-color: #e4e8ed;
      --danger-lighten-color: #e9c5c5;
      --primary-color: #070c12;
      --primary-lighten-color: #727272;

      input,
      textarea {
        background: white !important;
      }

      .content-toggle:after {
        background: none !important;
      }


      .download-list.hardsub>.title>span {
        background-color: #c1d2e7;
      }

      .posts .entry .entry-ganers a {
        color: white;
      }

      #siteHead .menu .megasub .lists .list>li>a {
        color: #fff;
      }



      #menucanvas .list>li,
      .pagination,
      #siteHead .menu .megasub .lists .list>li,
      #siteHead .menu a,
      #siteHead .menu {
        color: var(--text-body) !important;
      }

      #siteFoot,
      #siteFoot p,
      #siteFoot a,
      #siteFoot .text-muted,
      #siteFoot a.text-muted {
        color: var(--text-body) !important;
      }

      #siteHead .menu .megasub .navs .list-group.active {
        color: #ffffff;
      }


      #siteHead .menu .megasub .navs .list-group {
        color: white;
      }

      span.d-flex.flex-column.gap-05 {
        color: #fff;
      }


      span.d-inline-flex.align-items-center.gap-05 {
        color: white;
      }


      #suggested-movies #suggested-thumbnails .splide__list .splide__slide.is-active {
        border-color: rgb(233 233 233);
      }


      #post-intro .coverimg {
        -webkit-filter: blur(20px) brightness(4.35);
        filter: blur(20px) brightness(4.35);
      }



    }

    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;

      margin-left: 10px;
    }

    .switch #input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #2196f3;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      z-index: 0;
      overflow: hidden;
    }

    .sun-moon {
      position: absolute;
      content:"";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: yellow;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }

    #input:checked+.slider {
      background-color: black;
    }

    #input:focus+.slider {
      box-shadow: 0 0 1px #2196f3;
    }

    #input:checked+.slider .sun-moon {
      -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
      transform: translateX(26px);
      background-color: white;
      -webkit-animation: rotate-center 0.6s ease-in-out both;
      animation: rotate-center 0.6s ease-in-out both;
    }

    .moon-dot {
      opacity: 0;
      transition: 0.4s;
      fill: gray;
    }

    #input:checked+.slider .sun-moon .moon-dot {
      opacity: 1;
    }

    .slider.round {
      border-radius: 34px;
    }

    .slider.round .sun-moon {
      border-radius: 50%;
    }

    #moon-dot-1 {
      left: 10px;
      top: 3px;
      position: absolute;
      width: 6px;
      height: 6px;
      z-index: 4;
    }

    #moon-dot-2 {
      left: 2px;
      top: 10px;
      position: absolute;
      width: 10px;
      height: 10px;
      z-index: 4;
    }

    #moon-dot-3 {
      left: 16px;
      top: 18px;
      position: absolute;
      width: 3px;
      height: 3px;
      z-index: 4;
    }

    #light-ray-1 {
      left: -8px;
      top: -8px;
      position: absolute;
      width: 43px;
      height: 43px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-2 {
      left: -50%;
      top: -50%;
      position: absolute;
      width: 55px;
      height: 55px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-3 {
      left: -18px;
      top: -18px;
      position: absolute;
      width: 60px;
      height: 60px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    .cloud-light {
      position: absolute;
      fill: #eee;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
    }

    .cloud-dark {
      position: absolute;
      fill: #ccc;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-delay: 1s;
    }

    #cloud-1 {
      left: 30px;
      top: 15px;
      width: 40px;
    }

    #cloud-2 {
      left: 44px;
      top: 10px;
      width: 20px;
    }

    #cloud-3 {
      left: 18px;
      top: 24px;
      width: 30px;
    }

    #cloud-4 {
      left: 36px;
      top: 18px;
      width: 40px;
    }

    #cloud-5 {
      left: 48px;
      top: 14px;
      width: 20px;
    }

    #cloud-6 {
      left: 22px;
      top: 26px;
      width: 30px;
    }

    @keyframes cloud-move {
      0% {
        transform: translateX(0px);
      }

      40% {
        transform: translateX(4px);
      }

      80% {
        transform: translateX(-4px);
      }

      100% {
        transform: translateX(0px);
      }
    }

    .stars {
      transform: translateY(-32px);
      opacity: 0;
      transition: 0.4s;
    }

    .star {
      fill: white;
      position: absolute;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      animation-name: star-twinkle;
      animation-duration: 2s;
      animation-iteration-count: infinite;
    }

    #input:checked+.slider .stars {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }

    #star-1 {
      width: 20px;
      top: 2px;
      left: 3px;
      animation-delay: 0.3s;
    }

    #star-2 {
      width: 6px;
      top: 16px;
      left: 3px;
    }

    #star-3 {
      width: 12px;
      top: 20px;
      left: 10px;
      animation-delay: 0.6s;
    }

    #star-4 {
      width: 18px;
      top: 0px;
      left: 18px;
      animation-delay: 1.3s;
    }

    @keyframes star-twinkle {
      0% {
        transform: scale(1);
      }

      40% {
        transform: scale(1.2);
      }

      80% {
        transform: scale(0.8);
      }

      100% {
        transform: scale(1);
      }
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
    }

    .switch #input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #2196f3;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      z-index: 0;
      overflow: hidden;
    }

    .sun-moon {
      position: absolute;
      content: "";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: yellow;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }

    #input:checked+.slider {
      background-color: black;
    }

    #input:focus+.slider {
      box-shadow: 0 0 1px #2196f3;
    }

    #input:checked+.slider .sun-moon {
      -webkit-transform: translateX(26px);
      -ms-transform: translateX(26px);
      transform: translateX(26px);
      background-color: white;
      -webkit-animation: rotate-center 0.6s ease-in-out both;
      animation: rotate-center 0.6s ease-in-out both;
    }

    .moon-dot {
      opacity: 0;
      transition: 0.4s;
      fill: gray;
    }

    #input:checked+.slider .sun-moon .moon-dot {
      opacity: 1;
    }

    .slider.round {
      border-radius: 34px;
    }

    .slider.round .sun-moon {
      border-radius: 50%;
    }

    #moon-dot-1 {
      left: 10px;
      top: 3px;
      position: absolute;
      width: 6px;
      height: 6px;
      z-index: 4;
    }

    #moon-dot-2 {
      left: 2px;
      top: 10px;
      position: absolute;
      width: 10px;
      height: 10px;
      z-index: 4;
    }

    #moon-dot-3 {
      left: 16px;
      top: 18px;
      position: absolute;
      width: 3px;
      height: 3px;
      z-index: 4;
    }

    #light-ray-1 {
      left: -8px;
      top: -8px;
      position: absolute;
      width: 43px;
      height: 43px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-2 {
      left: -50%;
      top: -50%;
      position: absolute;
      width: 55px;
      height: 55px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    #light-ray-3 {
      left: -18px;
      top: -18px;
      position: absolute;
      width: 60px;
      height: 60px;
      z-index: -1;
      fill: white;
      opacity: 10%;
    }

    .cloud-light {
      position: absolute;
      fill: #eee;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
    }

    .cloud-dark {
      position: absolute;
      fill: #ccc;
      animation-name: cloud-move;
      animation-duration: 6s;
      animation-iteration-count: infinite;
      animation-delay: 1s;
    }

    #cloud-1 {
      left: 30px;
      top: 15px;
      width: 40px;
    }

    #cloud-2 {
      left: 44px;
      top: 10px;
      width: 20px;
    }

    #cloud-3 {
      left: 18px;
      top: 24px;
      width: 30px;
    }

    #cloud-4 {
      left: 36px;
      top: 18px;
      width: 40px;
    }

    #cloud-5 {
      left: 48px;
      top: 14px;
      width: 20px;
    }

    #cloud-6 {
      left: 22px;
      top: 26px;
      width: 30px;
    }

    @keyframes cloud-move {
      0% {
        transform: translateX(0px);
      }

      40% {
        transform: translateX(4px);
      }

      80% {
        transform: translateX(-4px);
      }

      100% {
        transform: translateX(0px);
      }
    }

    .stars {
      transform: translateY(-32px);
      opacity: 0;
      transition: 0.4s;
    }

    .star {
      fill: white;
      position: absolute;
      -webkit-transition: 0.4s;
      transition: 0.4s;
      animation-name: star-twinkle;
      animation-duration: 2s;
      animation-iteration-count: infinite;
    }

    #input:checked+.slider .stars {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }

    #star-1 {
      width: 20px;
      top: 2px;
      left: 3px;
      animation-delay: 0.3s;
    }

    #star-2 {
      width: 6px;
      top: 16px;
      left: 3px;
    }

    #star-3 {
      width: 12px;
      top: 20px;
      left: 10px;
      animation-delay: 0.6s;
    }

    #star-4 {
      width: 18px;
      top: 0px;
      left: 18px;
      animation-delay: 1.3s;
    }

    @keyframes star-twinkle {
      0% {
        transform: scale(1);
      }

      40% {
        transform: scale(1.2);
      }

      80% {
        transform: scale(0.8);
      }

      100% {
        transform: scale(1);
      }
    }





    #post-intro .entry-poster .btn-tracking {
      top: 1rem;
      left: 4rem;
      position: absolute;
      width: 42px;
      height: 42px;
      border-radius: 50px;
    }


    .quick-access-menu.is-stuck {
      position: fixed;
      top: 0;
      width: -webkit-fill-available;
      z-index: 1000;
    }


    .quick-access-menu {
      position: sticky;
      top: 0;
      width: -webkit-fill-available;
      background-color: var(--bg-body);
      z-index: 1000;
      transition: box-shadow .2s ease;
    }

    .quick-access-menu ul {
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      margin: 0;
      list-style: none;
    }

    .quick-access-menu li {
      position: relative;
    }

    .quick-access-menu a {
      text-decoration: none;
      color: var(--text-body);
      padding: 10px 15px;
      transition: color 0.3s;
    }

    .quick-access-menu a.active {
      color: red;
      /* Change color for active link */
    }

    .quick-access-menu a::after {
      content: '';
      display: block;
      height: 2px;
      background: red;
      position: absolute;
      left: 50%;
      right: 50%;
      bottom: -5px;
      /* Adjust as needed */
      transition: left 0.3s, right 0.3s;
    }

    .quick-access-menu a.active::after {
      left: 0;
      right: 0;
    }



    @media (max-width: 768px) {

      .entry-genres {
        scrollbar-width: none;
      }

      .float-search.bg-card.border.fsz-13 {
        width: 700%;
        left: -125%;
      }
    }


    .download-season .series-downloaditems a button {
      padding: 0 .8rem !important;

    }

    .download-season .series-downloaditems a:first-child {
      margin-left: 3%;

    }

    .download-season .series-downloaditems .btn {
      place-content: center;

    }




    .main-footer-insta {
      background: linear-gradient(145deg, #FA9F6F, #FA697C);
      box-shadow: 0 3px 20px rgba(250, 123, 119, .3);
    }

    .main-footer-telegram {
      background: linear-gradient(145deg, #96D5F5, #5EBAE8);
      box-shadow: 0 3px 20px rgba(142, 209, 243, .35);
    }

    .ficon-instagram,
    .ficon-telegram {

      margin-left: 10px;

    }


    .ficon-instagram,
    .ficon-telegram {

      width: 22px;
      height: 22px;
      line-height: 1;
      font-weight: 300;
      transform: translate(-5px, 0);
      display: inline-block;
      fill: #fff;


    }

    .ficon-instagram g,
    .ficon-telegram g {
      fill: #fff;

    }


    .main-footer-insta .ficon-arrow-left-sign,
    .main-footer-telegram .ficon-arrow-left-sign {
      width: 22px;
      height: 22px;
      display: inline-block;
      left: 15px;
      top: 15px;
      position: absolute;
      border-radius: 100px;
      font-size: 10px;
      background: rgba(255, 255, 255, .15);
      fill: #fff;
    }

    .position-absolute {
      position: absolute !important;
    }


    .single-mb-header {
      display: flex;
      justify-content: space-around;
      height: 60% !important;

    }

    .light-mode #menucanvas .list>li,
    .light-mode #siteHead:not(.position-absolute) .menu,
    .light-mode #siteHead:not(.position-absolute) .menu a,
    .light-mode #siteHead:not(.position-absolute) .menu>li>a {
      color: #000000 !important;
    }

    .light-mode #siteFoot,
    .light-mode #siteFoot p,
    .light-mode #siteFoot a,
    .light-mode #siteFoot .text-muted,
    .light-mode #siteFoot a.text-muted {
      color: #000000 !important;
    }

/* from product.html */
.book-intro-digital__card {
      background: var(--card-bg, rgba(255,255,255,.04));
      border: 1px solid rgba(150, 242, 7, 0.22);
      border-radius: 14px;
      padding: 1.1rem 1.25rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    }
    body.light-mode .book-intro-digital__card {
      background: #fff;
      border-color: rgba(150, 242, 7, 0.35);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }
    .book-intro-digital__head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.65rem;
    }
    .book-intro-digital__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 8px;
      background: rgba(150, 242, 7, 0.12);
      color: #96F207;
    }
    .book-intro-digital__label {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }
    .book-intro-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.55rem 1rem;
    }
    @media (max-width: 575px) {
      .book-intro-meta { grid-template-columns: 1fr; }
    }
    .book-intro-meta__item {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.45rem 0.65rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }
    body.light-mode .book-intro-meta__item {
      background: rgba(0, 0, 0, 0.02);
      border-color: rgba(0, 0, 0, 0.06);
    }
    .book-intro-meta__key {
      font-size: 0.78rem;
      color: var(--text-muted, #9aa0a6);
      white-space: nowrap;
    }
    .book-intro-meta__val {
      font-size: 0.88rem;
      font-weight: 600;
      direction: rtl;
      text-align: right;
    }
    .book-intro-meta__val[dir="ltr"] {
      direction: rtl;
      text-align: right;
    }
    .product-intro-highlights {
      margin: 0.85rem 0 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .product-intro-highlights li {
      font-size: 0.82rem;
      line-height: 1.5;
      color: var(--text-muted, #9aa0a6);
      padding-inline-start: 1rem;
      position: relative;
    }
    .product-intro-highlights li::before {
      content: "";
      position: absolute;
      inset-inline-start: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #96F207;
    }
    .product-intro-highlights strong {
      color: inherit;
      font-weight: 700;
    }
    .product-intro-digital__actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1.15rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(150, 242, 7, 0.15);
    }
    .product-price {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.75rem;
    }
    .product-price__rating {
      font-size: 0.78rem;
      color: var(--text-muted, #9aa0a6);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }
    .product-price__rating svg {
      color: #f5c518;
    }
    .product-cart-row {
      display: flex;
      align-items: stretch;
      gap: 0.65rem;
    }
    .product-qty {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.03);
      flex: 0 0 auto;
    }
    body.light-mode .product-qty {
      border-color: rgba(0, 0, 0, 0.1);
      background: rgba(0, 0, 0, 0.02);
    }
    .product-qty button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.75rem;
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
      transition: background-color 0.15s ease;
    }
    .product-qty button:hover {
      background: rgba(150, 242, 7, 0.12);
    }
    .product-qty input {
      width: 2.5rem;
      border: 0;
      background: transparent;
      text-align: center;
      font-weight: 700;
      font-size: 0.95rem;
      color: inherit;
      -moz-appearance: textfield;
    }
    .product-qty input::-webkit-outer-spin-button,
    .product-qty input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
    .product-poster-thumbs__btn {
      display: block;
      padding: 0;
      border: 2px solid transparent;
      border-radius: 8px;
      overflow: hidden;
      background: transparent;
      cursor: pointer;
      opacity: 0.72;
      transition: opacity 0.15s ease, border-color 0.15s ease;
    }
    .product-poster-thumbs__btn.is-active,
    .product-poster-thumbs__btn:hover {
      opacity: 1;
      border-color: rgba(150, 242, 7, 0.65);
    }
    .product-poster-thumbs__btn img {
      display: block;
      object-fit: cover;
    }
    .product-add-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      flex: 1 1 auto;
      width: 100%;
      min-height: 3rem;
      padding: 0.75rem 1.25rem;
      font-size: 0.95rem;
      font-weight: 800;
      line-height: 1.35;
      border-radius: 12px;
      border: 1px solid rgba(150, 242, 7, 0.65);
      background: linear-gradient(135deg, #96F207, #7bc805);
      color: #0a0a0a;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(150, 242, 7, 0.28);
      transition: transform 0.15s ease, box-shadow 0.2s ease;
    }
    .product-add-btn__label {
      font-weight: 700;
    }
    .product-add-btn__price {
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .product-add-btn__sep {
      opacity: 0.45;
      font-weight: 400;
    }
    .product-add-btn:hover {
      color: #0a0a0a;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(150, 242, 7, 0.38);
    }
    .product-secondary-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 3rem;
      padding: 0.85rem 3rem;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.45;
      text-align: center;
      border-radius: 12px;
      border: 2px solid rgba(96, 165, 250, 0.75);
      background: rgba(59, 130, 246, 0.18);
      color: #93c5fd;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(59, 130, 246, 0.15);
      transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    }
    body.light-mode .product-secondary-btn {
      color: #1d4ed8;
      background: rgba(59, 130, 246, 0.12);
      border-color: rgba(37, 99, 235, 0.55);
    }
    .product-secondary-btn:hover {
      border-color: rgba(96, 165, 250, 0.95);
      background: rgba(59, 130, 246, 0.28);
      box-shadow: 0 6px 22px rgba(59, 130, 246, 0.22);
      transform: translateY(-1px);
      color: #bfdbfe;
    }
    body.light-mode .product-secondary-btn:hover {
      color: #1e40af;
      background: rgba(59, 130, 246, 0.2);
    }
    .product-secondary-btn__text {
      display: block;
      width: 100%;
      text-align: center;
    }
    .product-secondary-btn__icon {
      position: absolute;
      inset-inline-start: 1rem;
      top: 50%;
      transform: translateY(-50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 2rem;
      width: 2rem;
      height: 2rem;
      border-radius: 8px;
      background: rgba(59, 130, 246, 0.35);
      color: #dbeafe;
    }
    body.light-mode .product-secondary-btn__icon {
      background: rgba(37, 99, 235, 0.15);
      color: #2563eb;
    }
    .product-price-updated {
      margin: 0.15rem 0 0;
      padding: 0;
      font-size: 0.8rem;
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
      color: var(--text-muted, #9aa0a6);
    }
    body.light-mode .product-price-updated {
      color: #6b7280;
    }
    .prometric-sample-modal {
      position: fixed;
      inset: 0;
      z-index: 1070;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: min(10vh, 5rem) 1rem 2rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .prometric-sample-modal.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .prometric-sample-modal[hidden]:not(.is-open) {
      display: none !important;
    }
    .prometric-sample-modal.is-open {
      display: flex !important;
    }
    .prometric-sample-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.62);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .prometric-sample-modal__panel {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 28rem;
      background: var(--card-bg, #fff);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
      overflow: hidden;
      transform: translateY(-12px) scale(0.98);
      transition: transform 0.25s ease;
    }
    body.light-mode .prometric-sample-modal__panel {
      border-color: rgba(0, 0, 0, 0.08);
    }
    .prometric-sample-modal.is-open .prometric-sample-modal__panel {
      transform: translateY(0) scale(1);
    }
    .prometric-sample-modal__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 1rem 1.1rem;
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 800;
    }
    .prometric-sample-modal__close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border: 0;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.16);
      color: #fff;
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    .prometric-sample-modal__close:hover {
      background: rgba(255, 255, 255, 0.28);
    }
    .prometric-sample-modal__body {
      padding: 1.1rem 1.1rem 1.25rem;
      color: inherit;
    }
    .prometric-sample-modal__body .wpcf7-form p {
      margin-bottom: 0.9rem;
    }
    .prometric-sample-modal__body .wpcf7-form label {
      display: block;
      font-size: 0.86rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }
    .prometric-sample-modal__body .wpcf7-form-control:not(.arcaptcha):not(.wpcf7-submit) {
      width: 100%;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 0.65rem 0.8rem;
      font-size: 0.9rem;
      background: var(--body-bg, #0f0f0f);
      color: inherit;
    }
    body.light-mode .prometric-sample-modal__body .wpcf7-form-control:not(.arcaptcha):not(.wpcf7-submit) {
      background: #fff;
      border-color: rgba(0, 0, 0, 0.14);
    }
    .prometric-sample-modal__field--captcha {
      margin-bottom: 0.9rem;
    }
    .prometric-sample-modal__field--captcha .wpcf7-form-control-wrap {
      display: block;
      width: 100%;
    }
    .prometric-sample-modal__field--captcha .wpcf7-form-control.arcaptcha {
      display: block;
      width: 100%;
      max-width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }
    .prometric-sample-modal__field--captcha #arc-checkbox {
      width: 100%;
      max-width: 100%;
    }
    .prometric-sample-modal__body .wpcf7-form p.prometric-sample-modal__submit {
      margin-bottom: 0;
    }
    .prometric-sample-modal__submit {
      margin: 0.75rem 0 0;
      padding: 0;
    }
    .prometric-sample-modal__submit .wpcf7-form-control.wpcf7-submit {
      display: block;
      width: 100%;
      min-height: 2.85rem;
      appearance: none;
      -webkit-appearance: none;
      border: 0 !important;
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
      font-weight: 800;
      line-height: 1.4;
      background: #96F207 !important;
      background-image: none !important;
      color: #0a0a0a !important;
      cursor: pointer;
      box-shadow: none !important;
      transform: none !important;
      transition: background-color 0.2s ease;
    }
    .prometric-sample-modal__submit .wpcf7-form-control.wpcf7-submit:hover,
    .prometric-sample-modal__submit .wpcf7-form-control.wpcf7-submit:focus-visible {
      background: #7bc805 !important;
      background-image: none !important;
      color: #0a0a0a !important;
      transform: none !important;
      box-shadow: none !important;
      outline: none;
    }
    .prometric-sample-modal__submit .wpcf7-form-control.wpcf7-submit:active {
      background: #6aad04 !important;
      transform: none !important;
      box-shadow: none !important;
    }
    .prometric-sample-modal__body .wpcf7-response-output {
      margin: 0.75rem 0 0;
      border-radius: 10px;
      font-size: 0.84rem;
    }
    #product-purchase .entry-title {
      font-size: clamp(1.1rem, 2.5vw, 1.875rem);
      font-weight: 900;
      line-height: 1.35;
      margin-bottom: 1rem;
      padding-inline-end: 0;
      text-align: start;
    }
    @media (min-width: 768px) {
      #post-intro .wrapper {
        align-items: start;
      }
      #post-intro .d-flex.flex-column.pt-3.position-relative {
        padding-top: 0 !important;
      }
    }
    @media screen and (max-width: 768px) {
      #product-purchase .entry-title {
        font-size: 20px !important;
      }
    }

/* from product.html */
/* ruberah-shared */
#siteFoot .footer-logo--copyright {
      max-height: 22px;
      max-width: 72px;
    }
    #siteFoot .footer-namad-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      gap: 10px 14px;
      padding: 0;
      margin: 0;
    }

    #siteFoot .footer-namad-item {
      margin: 0;
      padding: 0;
    }

    #siteFoot .footer-namad-item img {
      height: 90px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      border: none;
      background: transparent;
    }

    #siteFoot .footer-quick-links a {
      text-decoration: none;
    }

    #siteFoot .footer-quick-links a:hover {
      text-decoration: underline;
    }

    /* Header contact — desktop */
    .site-head-contact {
      gap: 0.65rem;
      font-size: 0.8125rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    .site-head-contact__item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .light-mode .site-head-contact__item {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.1);
      color: #222;
    }

    .light-mode .site-head-contact__item:hover {
      color: #0a1206;
      background: #96F207;
      border-color: #96F207;
    }

    .site-head-contact__icon {
      flex-shrink: 0;
      width: 1rem;
      height: 1rem;
      opacity: 0.85;
    }

    .site-head-contact__label {
      opacity: 0.72;
      font-size: 0.75rem;
    }

    .site-head-contact__number {
      font-weight: 700;
      direction: ltr;
      unicode-bidi: embed;
    }

    /* Header menu — compact to stay on one line */
    #siteHead .menu {
      gap: 1rem;
      flex-wrap: nowrap;
    }

    #siteHead .menu > li > a {
      font-size: 0.76rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    #siteHead .menu > li > a svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    @media (min-width: 1400px) {
      #siteHead .menu {
        gap: 1.25rem;
      }

      #siteHead .menu > li > a {
        font-size: 0.8125rem;
      }
    }

    /* Header contact — mobile offcanvas */
    .menucanvas-contact {
      margin-bottom: 1.25rem;
      padding: 1rem;
      border-radius: 0.75rem;
      background: linear-gradient(135deg, rgba(150, 242, 7, 0.14) 0%, rgba(150, 242, 7, 0.05) 100%);
      border: 1px solid rgba(150, 242, 7, 0.28);
    }

    .menucanvas-contact__title {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      font-weight: 800;
      color: #96F207;
    }

    .menucanvas-contact__title svg {
      width: 1.1rem;
      height: 1.1rem;
      flex-shrink: 0;
    }

    .menucanvas-contact__list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .menucanvas-contact__link {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.65rem 0.85rem;
      border-radius: 0.55rem;
      text-decoration: none;
      color: inherit;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.18);
      border-color: rgba(150, 242, 7, 0.4);
      color: inherit;
    }

    .light-mode .menucanvas-contact__link {
      background: #fff;
      border-color: #e0e0e0;
    }

    .light-mode .menucanvas-contact__link:hover {
      background: rgba(150, 242, 7, 0.15);
      border-color: rgba(150, 242, 7, 0.45);
    }

    .menucanvas-contact__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: rgba(150, 242, 7, 0.2);
      color: #96F207;
    }

    .menucanvas-contact__icon svg {
      width: 1rem;
      height: 1rem;
    }

    .menucanvas-contact__text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
      min-width: 0;
    }

    .menucanvas-contact__label {
      font-size: 0.75rem;
      opacity: 0.7;
    }

    .menucanvas-contact__number {
      font-size: 0.9375rem;
      font-weight: 800;
      direction: ltr;
      unicode-bidi: embed;
      text-align: right;
    }

/* from product.html */
/* ruberah-search-overlay */
@media (min-width: 992px) {
      .site-search-overlay {
        position: fixed;
        inset: 0;
        z-index: 1060;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s;
        pointer-events: none;
      }

      .site-search-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      .site-search-overlay[hidden]:not(.is-open) {
        display: none !important;
      }

      .site-search-overlay.is-open {
        display: flex !important;
      }

      .site-search-overlay__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }

      .site-search-overlay__panel {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 760px;
        margin-top: min(10vh, 100px);
        padding: 0 1.5rem 2rem;
        max-height: calc(100vh - min(10vh, 100px));
        display: flex;
        flex-direction: column;
        transform: translateY(-16px) scale(0.98);
        transition: transform 0.25s ease;
      }

      .site-search-overlay.is-open .site-search-overlay__panel {
        transform: translateY(0) scale(1);
      }

      .site-search-overlay__header {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .site-search-overlay__field {
        flex: 1;
      }

      .site-search-overlay__inner.float-search {
        position: static !important;
        width: 100% !important;
        left: auto !important;
        display: block !important;
        background: var(--card-bg, #fff);
        border-radius: 14px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
        padding: 1.25rem 1.25rem 0.75rem;
        border: none;
      }

      .site-search-overlay__field input {
        font-size: 1.25rem;
        padding: 0.9rem 3rem 0.9rem 1rem;
        border-radius: 10px;
        border: 2px solid transparent;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
        height: auto;
      }

      .site-search-overlay__field input:focus {
        border-color: var(--primary, #0d6efd);
        outline: none;
        box-shadow: 0 4px 24px rgba(13, 110, 253, 0.15);
      }

      .site-search-overlay__close {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.65rem 0.85rem;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 0.85rem;
        cursor: pointer;
        backdrop-filter: blur(4px);
      }

      .site-search-overlay__close:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .site-search-overlay .search-ajax-result {
        max-height: min(52vh, 520px);
        overflow-y: auto;
        margin-top: 0.75rem;
        padding-bottom: 0.5rem;
      }

      .site-search-overlay .search-ajax-result .listunstyled {
        margin: 0;
        padding: 0;
      }

      body.site-search-open {
        overflow: hidden;
      }
    }

    @media (max-width: 991.98px) {
      #site-search-overlay {
        display: none !important;
      }
    }

    /* ——— Cart & checkout (سبد خرید) ——— */
    .site-head-cart-btn,
    .site-head-icon-btn.site-head-cart-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      padding: 0;
      border-radius: 12px;
      text-decoration: none;
    }
    .site-head-cart-btn .site-head-cart__badge {
      position: absolute;
      top: -0.35rem;
      inset-inline-start: -0.15rem;
      min-width: 1.15rem;
      height: 1.15rem;
      padding: 0 0.25rem;
      border-radius: 999px;
      background: #96f207;
      color: #0a0a0a;
      font-size: 0.68rem;
      font-weight: 800;
      line-height: 1.15rem;
      text-align: center;
      pointer-events: none;
    }
    #cart-page .cart-page__title {
      font-size: 1.35rem;
      font-weight: 900;
      margin-bottom: 1.25rem;
    }
    .cart-breadcrumb {
      margin-bottom: 1.5rem;
    }
    .cart-item {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      gap: 1rem;
      align-items: center;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(150, 242, 7, 0.12);
    }
    .cart-item:last-child {
      border-bottom: 0;
    }
    .cart-item__thumb {
      width: 72px;
      height: 96px;
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.04);
    }
    .cart-item__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .cart-item__title {
      font-size: 0.95rem;
      font-weight: 800;
      margin: 0 0 0.35rem;
      line-height: 1.45;
    }
    .cart-item__title a {
      color: inherit;
      text-decoration: none;
    }
    .cart-item__title a:hover {
      color: #96f207;
    }
    .cart-item__meta {
      font-size: 0.78rem;
      color: var(--text-muted, #9aa0a6);
      margin: 0;
    }
    .cart-item__price {
      font-size: 0.92rem;
      font-weight: 800;
      white-space: nowrap;
      text-align: end;
    }
    .cart-item__remove {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      margin-top: 0.5rem;
      padding: 0;
      border: 0;
      background: transparent;
      color: #e57373;
      font-size: 0.78rem;
      cursor: pointer;
    }
    .cart-summary__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.55rem 0;
      font-size: 0.9rem;
    }
    .cart-summary__row--total {
      margin-top: 0.5rem;
      padding-top: 0.85rem;
      border-top: 1px solid rgba(150, 242, 7, 0.2);
      font-size: 1rem;
      font-weight: 900;
    }
    .cart-summary__checkout {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      min-height: 3rem;
      margin-top: 1rem;
      padding: 0.75rem 1.25rem;
      border: 0;
      border-radius: 12px;
      background: linear-gradient(135deg, #96f207 0%, #7bc805 100%);
      color: #0a0a0a;
      font-size: 0.95rem;
      font-weight: 900;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .cart-summary__checkout:hover {
      color: #0a0a0a;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(150, 242, 7, 0.25);
    }
    .cart-empty {
      text-align: center;
      padding: 3rem 1.5rem;
    }
    .cart-empty__icon {
      width: 120px;
      height: 120px;
      margin: 0 auto 1.25rem;
      opacity: 0.35;
    }
    .cart-empty__title {
      font-size: 1.1rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
    }
    .cart-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(150, 242, 7, 0.12);
    }
    .cart-trust__item {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.78rem;
      color: var(--text-muted, #9aa0a6);
    }
    .cart-trust__item svg {
      color: #96f207;
      flex-shrink: 0;
    }
    .product-add-btn--in-cart {
      background: rgba(150, 242, 7, 0.12);
      border: 2px solid rgba(150, 242, 7, 0.45);
      color: inherit;
    }
    .product-add-btn--in-cart:hover {
      background: rgba(150, 242, 7, 0.2);
      color: inherit;
    }
    @media (max-width: 767.98px) {
      .cart-item {
        grid-template-columns: 56px 1fr;
      }
      .cart-item__price {
        grid-column: 2;
        text-align: start;
        margin-top: 0.25rem;
      }
    }
    .cart-table {
      width: 100%;
      margin: 0;
      border-collapse: collapse;
    }
    .cart-table thead th {
      padding: 0.85rem 1rem;
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: none;
      color: var(--text-muted, #9aa0a6);
      border-bottom: 1px solid rgba(150, 242, 7, 0.15);
      background: rgba(150, 242, 7, 0.04);
      white-space: nowrap;
    }
    .cart-table tbody td {
      padding: 1rem;
      vertical-align: middle;
      border-bottom: 1px solid rgba(150, 242, 7, 0.1);
    }
    .cart-table tbody tr:last-child td {
      border-bottom: 0;
    }
    .cart-table__product {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      min-width: 12rem;
    }
    .cart-table__thumb {
      flex: 0 0 56px;
      width: 56px;
      height: 74px;
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.04);
    }
    .cart-table__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .cart-table__title {
      font-size: 0.92rem;
      font-weight: 800;
      line-height: 1.45;
    }
    .cart-table__title a {
      color: inherit;
      text-decoration: none;
    }
    .cart-table__title a:hover {
      color: #96f207;
    }
    .cart-table__col-qty {
      width: 6.5rem;
      text-align: center;
    }
    .cart-table__col-price,
    .cart-table__col-subtotal {
      width: 8.5rem;
      text-align: end;
      white-space: nowrap;
      font-weight: 700;
    }
    .cart-table__col-remove {
      width: 2.5rem;
      text-align: center;
    }
    .cart-table__remove {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 8px;
      color: #e57373;
      transition: background-color 0.15s ease;
    }
    .cart-table__remove:hover {
      background: rgba(229, 115, 115, 0.12);
      color: #e57373;
    }
    .cart-table .quantity .qty {
      width: 3rem;
      text-align: center;
      border-radius: 8px;
      border: 1px solid rgba(150, 242, 7, 0.2);
      background: transparent;
      padding: 0.35rem 0.25rem;
    }
    .cart-form-panel__label {
      display: block;
      font-size: 0.82rem;
      font-weight: 800;
      margin-bottom: 0.45rem;
    }
    .cart-coupon__row {
      display: flex;
      gap: 0.5rem;
      align-items: stretch;
    }
    .cart-coupon__input {
      flex: 1 1 auto;
      min-height: 2.75rem;
      border-radius: 10px;
    }
    .cart-coupon__btn {
      flex: 0 0 auto;
      min-height: 2.75rem;
      border-radius: 10px;
      font-weight: 800;
      white-space: nowrap;
    }
    .cart-notes__input {
      border-radius: 10px;
      resize: vertical;
      min-height: 5rem;
    }
    .cart-form-actions__update {
      font-weight: 800;
      border-radius: 10px;
    }
    .cart-steps {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    .cart-steps__item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      background: rgba(150, 242, 7, 0.08);
      color: var(--text-muted, #9aa0a6);
    }
    .cart-steps__item.is-active {
      background: rgba(150, 242, 7, 0.22);
      color: inherit;
    }
    .cart-steps__num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 50%;
      background: #96f207;
      color: #0a0a0a;
      font-size: 0.72rem;
      font-weight: 900;
    }
    @media (max-width: 767.98px) {
      .cart-table thead {
        display: none;
      }
      .cart-table tbody tr {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(150, 242, 7, 0.1);
      }
      .cart-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        padding: 0.35rem 0;
        border: 0;
      }
      .cart-table tbody td::before {
        content: attr(data-title);
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-muted, #9aa0a6);
        flex: 0 0 auto;
      }
      .cart-table tbody td.product-name::before {
        display: none;
      }
      .cart-table tbody td.product-name {
        display: block;
        padding-bottom: 0.65rem;
      }
      .cart-coupon__row {
        flex-direction: column;
      }
    }
