/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
                .module_shop_sub_1.item_img{
                    width:60px;
                    height:60px;
                }
            
                .module_shop_sub_2.item_img{
                    width:60px;
                    height:60px;
                }
            
                .module_shop_sub_3.item_img{
                    width:60px;
                    height:60px;
                }
            
                .parent-time-box .time-box{
                    width: 70px;
                    height: 70px;
                    display: flex;
                    margin-left: 15px;
                    background-color: rgba(251,251,251,.85);
                    text-align: center;
                    justify-content: center;
                    flex-direction: column;
                    border-radius: 4px;
                    line-height: 20px;
                }
                .parent-time-box .time-box span:first-child{
                    color: #222;
                    font-weight: 500;
                    font-size: 16px;
                }
                .parent-time-box .time-box span:last-child{
                    color: #555;
                    font-size: 14px;
                    font-weight: 400;
                }
            
                    #color_img_1 > .bg-item-img{
                        background-image:url("https://bitaplus.ir/files/pro/Charging/EP-T2510/white/1785743184_download (5).png");
                    }
                
                    #color_img_2 > .bg-item-img{
                        background-image:url("https://bitaplus.ir/files/pro/Charging/1785219648_download-(3).jpg");
                    }
                
                #module_shop_page .img-box{
                    height:100%;
                    width:530px;
                    min-width:530px;
                    position: -webkit-sticky;
                    position: sticky;
                    top: 20px;
                }
                #slider_shop_page{
                    height: calc(100vh - 40px);
                    max-height: 600px;
                    overflow: hidden;
                }
                #big_img_ssp{
                    height: 81%;
                    width: 100%;
                    margin-bottom: 10px;
                    border-radius: 40px;
                    position: relative;
                }
                #module_shop_page .submodule-slider .swiper-slide{
                    height: 100%;
                }
                #module_shop_page .submodule-slider{
                    min-height:90px;
                    height: 90px;
                    margin:auto;
                }
                #module_shop_page .swiper-button-prev,#module_shop_page .swiper-button-next {
                    display: none;
                }
                .swiper_button{
                    position: absolute;
                    top: 0;
                    height: 90px;
                    display: flex;
                    justify-content: center;
                    flex-direction: column;
                }
                .swiper_button.dno{
                    display: none !important;
                }
                .swiper_button_right{
                    right: 0;
                }
                .swiper_button_left{
                    left: 0;
                }
                .swiper_button > div{
                    font-size: 20px;
                    color: #555;
                    height: 30px;
                    width: 30px;
                    border-radius: 50%;
                    text-align: center;
                    background-color: #f7f8fa;
                    cursor: pointer;
                    -webkit-transition: .2s;-moz-transition:  .2s;-ms-transition:  .2s;-o-transition:  .2s;transition:  .2s;
                }
                #module_shop_page #slider_shop_page .swiper-wrapper img{
                    object-fit: cover;
                    cursor: pointer;
                }
                #module_shop_page .swiper-wrapper img:hover,#module_shop_page .swiper-wrapper .active_img img{
                    filter: opacity(0.7);
                }
                .swiper_button > div:hover{
                    background-color: #ddd;
                }
                .swiper_button > div:active{
                    border: 2px solid transparent;
                }
                .swiper_button .disabled-button,.swiper_button .disabled-button:hover,.swiper_button .disabled-button:active{
                    cursor: default;
                    background-color: rgba(250,250,250,.9);
                    color: #ddd;
                    border: none;
                }
                .swiper_button .disabled-button i{
                    cursor: default;
                }
            
            #module_shop_page #slider_shop_page img{
                width: 100%;
                height: 100%;
                object-fit: fill;
                border-radius: 0;
            }
            #big_img_ssp #icon_zoom_img{
                position: absolute;
                top: 10px;
                right: 10px;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                cursor: pointer;
                background-color: transparent;
                color: #fff;
                font-size: 18px;
                visibility: visible;
                left: unset;
                text-align: center;
                z-index: 999;
                -webkit-transition: 1s;-moz-transition:  1s;-ms-transition:  1s;-o-transition:  1s;transition:  1s;
            }
            #big_img_ssp:hover #icon_zoom_img{
                background-color: #2879fe;
            }
            #big_img_ssp div{
                width: 100%;
                height: 100%;
                cursor: crosshair;
            }
            #big_img_ssp > div{
                position: absolute;
                left: 0;
                top: 0;
                visibility: hidden;
            }
            #big_img_ssp > div.active_img{
                visibility: visible;
            }
            #big_img_ssp .zoom:hover img{
                cursor: crosshair;
            }
            #module_shop_page #big_img_ssp img{
                position: absolute;
                left: 0;
                top: 0;
                -webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);
                -webkit-transition: .4s;-moz-transition:  .4s;-ms-transition:  .4s;-o-transition:  .4s;transition:  .4s;
                opacity: 0;
                visibility: hidden;
            }
            #module_shop_page #big_img_ssp .active_img img{
                -webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);
                opacity: 1;
                visibility: visible;
            }
        
                    #shopping_box_page button,#unavailable_box_page button{
                        width: 400px !important;
                    }
                    .title_type_count{
                        background-color: #f1f1f1;
                        padding: 0px 15px;
                        margin-left:5px;
                        border-radius:5px;
                    }
                
                #popup_module{
                    position:fixed;
                    display:flex;
                    background:rgba(0,0,0,0.5);
                    width:auto;
                    height:auto;
                    -webkit-transition:0;-moz-transition:0;-ms-transition:0;-o-transition:0;transition:0;
                    text-align:center;
                    top:0;
                    bottom:0;
                    right:0;
                    left:0;
                    z-index:99999;
                    visibility:hidden;
                    
                    flex-direction:column;
                    justify-content:center;
                
                }
                #popup_module.show_popup{
                    visibility:visible;
                    
                }
                #popup_module > div{
                    display:block;
                    background:transparent;
                    width:95%;
                    height:95%;
                    padding:10px;
                    margin:auto;
                    transform:translateY(-150px);
                    -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                    text-align:center;
                    border-radius:10px;
                    ;
                    position:relative;
                    z-index:999999;
                }
                #popup_module.show_popup > div{
                    transform:translateY(0);
                    
                }
                #popup_module .icon-close-popup{
                    position:absolute;
                    font-size:30px;
                    height:30px;
                    width:30px;
                    border-radius:50%;
                    color:red;
                    top:-10px;
                    right:-10px;
                    background-color:transparent;
                    z-index:9999;
                }
                #popup_module .icon-close-popup i{
                    position:absolute;
                    top:0;
                    right:0;
                }
                #popup_module .container-html{
                    height:100%;
                    overflow:auto;
                    max-height:90vh;
                }
                #popup_module .container-html::-webkit-scrollbar{
                    width:5px;
                    height:100%;
                }
                #popup_module .container-html::-webkit-scrollbar-track{
                    background-color:transparent;
                }
                #popup_module .container-html::-webkit-scrollbar-thumb{
                    background-color:#777;
                    border-radius:20%;
                }
            
                    #popup_module .icon-close-popup{
                        color:#fff;
                        top:0;
                        right:0;
                    }
                
                #s_breadCrump{
                    width: 1200px;
                    margin: auto;
                    height: 60px;
                    line-height:60px;
                }
                #s_breadCrump span,#s_breadCrump a{display:inline-block;padding: 0px 10px;}
            
            #product_title{
                margin-top: 60px;
                margin-bottom: 60px;
            }
            #post_status_shop_page{
                color: red;
                font-size: 16px;
                padding: 5px 20px;
                background-color: mistyrose;
            }
            #shop_price_box{
                height: 60px;
            }
            #module_shop_page{
                display:flex;
                padding:20px 10px;
                height:auto;
                background-color: transparent;
                border-radius: 0px;
                overflow: unset !important;
            }
            .icon_widout_val{
                color: red;
            }
            #module_shop_page .img-box img,#module_shop_page .img-box video{
                height:100%;
                width:100%;
                border-radius:3px;
            }
            #module_shop_page .container-box{
                padding:0 30px;
                text-align:right;
                width:100%;
            }
            #module_shop_page .msg-row-box{
                margin-bottom: 5px;
            }
            #module_shop_page .msg-row-box span:first-child{
                font-weight: 400;
                margin-left: 5px;
                color: #333;
            }
            #module_shop_page .msg-row-box span:nth-child(2){
                font-weight: bold;
                font-size: 15px;
                color: #007bff;
            }
            #module_shop_page .title-box{
                font-size: 24px;
                font-weight: 500;
                line-height: 40px;
                text-align: justify;
                margin: 35px 0 5px;
            }
            .title-box h1 {
                font-weight: ;
            }
            .sub_title_product{
                font-size: 14px;
                font-weight: 400;
            }
            #module_shop_page .item_img{
                padding: 2px;
                margin-left: 10px;
                margin-top: 3px;
                border-radius: 7px;
                position: relative;
                cursor: pointer;
                -webkit-transition: border-width .3s;-moz-transition: border-width .3s;-ms-transition: border-width .3s;-o-transition: border-width .3s;transition: border-width .3s;
            }
            #module_shop_page .item_img:hover,#module_shop_page .item_img.active_group,#module_shop_page .item_img.active_size,#module_shop_page .item_img.active_material{
                border: 4px solid #007bff;
            }
            #module_shop_page .title-item-img{
                position: absolute;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                top: -55px;
                opacity: 0;
                display: block;
                height: 30px;
                line-height: 30px;
                color: #777;
                font-size: 14px;
                font-weight: 300;
                background-color: #fff;
                padding: 0 10px;
                white-space: nowrap;
                text-align: center;
                visibility: hidden;
                -webkit-transition: .5s;-moz-transition:  .5s;-ms-transition:  .5s;-o-transition:  .5s;transition:  .5s;
                -webkit-box-shadow: 0 0 5px #f7f8fa;-moz-box-shadow: 0 0 5px #f7f8fa;box-shadow: 0 0 5px #f7f8fa;
                border: 1px solid #efefef;
            }
            #module_shop_page .item_img:hover .title-item-img{
                opacity: 1;
                top: -45px;
                visibility: visible;
            }
            #module_shop_page .item_img .title-item-img:hover{
                opacity: 0;
                top: -55px;
                visibility: hidden;
            }
            #module_shop_page .title-item-img:after{
                content:"";
                border: 7px solid;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                border-color: #efefef transparent transparent transparent;
                position: absolute;
                top: 100%;
            }
            #module_shop_page .active_group .title-item-img,#module_shop_page .active_material .title-item-img{
                display: none;
            }
            #module_shop_page .item_img .bg-item-img{
                background-size: 60px 60px;
                background-repeat: no-repeat;
                background-position: center center;
                display: block;
                width: 100%;
                height: 100%;
                cursor: pointer;
                border-radius: 5px;
            }
            #module_shop_page .item_img.active_group .bg-item-img,#module_shop_page .item_img.active_material .bg-item-img{
                cursor: default;
                border-radius: 0;
            }
            #module_shop_page .item_img:hover .bg-item-img{
                border-radius: 0;
            }
            #module_shop_page .price-box,#module_shop_page .discount-box{
                font-size: 26px;
                color: #2879fe;
                direction:inherit;
                font-weight:500;
                letter-spacing:2px;
            }
            #module_shop_page .price-box-delete{
                color:#2879fe;
                direction:inherit;
                font-weight: 400;
                font-size:26px;
                text-decoration:line-through rgba(255, 0, 0, 0.6);
            }
            #module_shop_page .background-image-toman{
                height:30px;
                width:50px;
                margin-right:3px;
                -webkit-background-size:100% 100%;
                background-size:100% 100%;
                -webkit-background-repeat:no-repeat;
                background-repeat:no-repeat;
                -webkit-background-image:  url("https://bitaplus.ir/files/main/module/shop/main/img/toman.svg");
                background-image: url("https://bitaplus.ir/files/main/module/shop/main/img/toman.svg");
                display:inline-block;
                vertical-align:middle;
            }
            #module_shop_page .star-box{
                margin:10px 0 30px;
            }
            #module_shop_page .star-box i{
                color:#ffb503;
                font-size:12px;
                margin: 0 1px;
            }
            #module_shop_page .calculation-box{
                margin: 20px 0;
                line-height: 25px;
                font-size: 14px;
            }
            #module_shop_page .calculation-box span:nth-child(2){
                font-weight: bold;
                margin-right: 5px;
            }
            #module_shop_page .price-finally-cb {
                color: green;
                font-size: 16px;
            }
            #module_shop_page .description-box{
                text-align:justify;
                font-size:13px;
                font-weight:500;
                color:#777;
            }
            #status_shopping_box_page{
                min-width: 560px;
            }
            #status_shopping_box_page.unavailable #unavailable_box_page,#shopping_box_page{
                display: flex;
            }
            #unavailable_box_page,#status_shopping_box_page.unavailable #shopping_box_page{
                display: none;
            }
            .form_title{
                text-align: center;
            }
            #myForm{
                box-shadow: black 0px 0px 8px 1px;
                border-radius: 13px;
            }
            .open-button {
                  background-color: #7e7880;
                  color: white;
                  padding: 16px 20px;
                  border: none;
                  cursor: pointer;
                  opacity: 0.8;
                  width: max-content;
                  border-radius: 5px;
                }
                #main_form{
                    display:none;
                    position:fixed;
                    top:0;
                    left:0;
                    right:0;
                    bottom:0;
                    background-color: rgba(0,0,0,0.5);
                    z-index: 100000;
                }
                .form-popup {
                  position: absolute;
                  border: 3px solid #f1f1f1;
                  transform: translate(-50%,-50%);
                  left: 50%;
                  top:50%;
                }
                .form-container {
                  max-width: 300px;
                  max-height:400px;
                  padding: 10px;
                  background-color: white;
                }
                #load_khabar_kon{
                    margin: 10px;
                }
                .form-container input[type=text], .form-container input[type=password] {
                  width: 100%;
                  padding: 15px;
                  margin: 5px 0 22px 0;
                  border: none;
                  background: #f1f1f1;
                }
               
                .form-container input[type=text]:focus, .form-container input[type=password]:focus {
                  background-color: #ddd;
                  outline: none;
                }
                
                .form-container .btn {
                  background-color: #4CAF50;
                  color: white;
                  border: none;
                  cursor: pointer;
                  width: 100%;
                  margin-bottom:10px;
                  opacity: 0.8;
                  height:40px;
                }
                .form-container input[type="text"]{
                    height: 36px;
                }
                .form-container .cancel {
                  background-color: red;
                }
                
                .form-container .btn:hover, .open-button:hover {
                  opacity: 1;
                }
            .unavailable_form{
                display: none;
            }
            .unavailable .unavailable_form{
                display:block;
            }
            #shopping_box_page button,#unavailable_box_page button{
                border: none;
                width: 100%;
                margin: 0 auto;
                height: 50px;
                line-height: 50px;
                border-radius: 6px;
                color: #ffffff;
                font-size: 15px;
                font-weight:500;
                text-space: 1px;
                text-align:center;
                cursor:pointer;
                transition: background-color .5s;
                max-width:100%;
            }
            #shopping_box_page button{
                background-color: #256fe8;
                -webkit-box-shadow: 0 20px 19px -20px #2879fe;
                -moz-box-shadow: 0 20px 19px -20px #2879fe;
                box-shadow: 0 20px 19px -20px #2879fe;
            }
            #unavailable_box_page button{
                background-color: #7e7880;
                -webkit-box-shadow: 0 20px 19px -20px #7e7880;
                -moz-box-shadow: 0 20px 19px -20px #7e7880;
                box-shadow: 0 20px 19px -20px #7e7880;
            }
            #unavailable_box_page button span{
                color: #ffcfd7;
            }
            #module_shop_page .number-product{
                width: 150px;
                border-radius: 5px;
                background-color: #f1f1f1;
                height: 50px;
                line-height: 50px;
                margin-left: 15px;
            }
            #module_shop_page .number-product span{
                background-color: transparent;
                border: none;
                width: 50%;
                font-size: 14px;
                color: #222;
                font-weight: bold;
                text-align: center;
            }
            #module_shop_page .number-product i{
                width: 25%;
                color: #aaa;
                height: 100%;
                text-align: center;
                cursor: pointer;
                -webkit-transition: color .2s;-moz-transition: color .2s;-ms-transition: color .2s;-o-transition: color .2s;transition: color .2s;
            }
            #module_shop_page .number-product i:hover{
                color: #666;
            }
            #module_shop_page .info-box{
                margin-bottom: 5px;
            }
            #module_shop_page .info-box span:first-child{
                font-weight: 400;
                margin-left: 5px;
                color: #333;
            }
            #module_shop_page .info-box span:nth-child(2){
                font-weight: bold;
                font-size: 15px;
                color: #007bff;
            }
            #module_shop_page .toggle-slide{
                display: block;
                color: #222;
                font-size: 16px;
                font-weight: bold;
                cursor: pointer;
                margin-bottom: 25px;
            }
            .hr-box{
                height: 1px;
                width: 100%;
                background-color: #f7f8fa;
                margin: 35px 0;
            }
            #time_stp{
                height: 80px;
            }
            /*-----------------------------POPUP--------------------------------*/
            #popup_module .container-html{
                color: #fff;
                overflow: hidden;
            }
            #popup_module .container-html i{
                font-size: 50px;
            }
            #popup_module .container-html img,#popup_module .container-html video{
                max-height: 100%;
                max-width: 80%;
                border-radius: 3px;
                object-fit: contain;
                margin: auto;
            }
            #popup_module .container-html video{
                background-color: #000;
            }
            #module_shop_page .title-slh{
                font-size: 16px;
                font-weight: 500;
                height: 40px;
                line-height: 40px;
                color: #444;
            }
         
            .w-49{
                width: 49%;
            }
            #description_product{
                padding: 50px 0;
            }
            .tabs-description{
                width: 100%;
                display: flex;
                flex-direction: row;
                border-bottom: 1px solid #ccc;
            }
            .tab-description{
                font-size: 16px;
                font-weight: 600;
                padding: 0 10px;
                height: 40px;
                line-height: 40px;
                cursor: pointer;
            }
            .active-border{
                border-bottom: 3px solid #ff0000;
            }
            .content-tabs{
                width: 100%;
                padding: 10px 0;
            }
            .content-tab{
                width: 100%;
            }
            .table-content{
                display: flex;
                flex-direction: row;
                height: max-content;
                padding-top: 30px;
            }
            .flex-grow1{
                flex: 1 0;
                color: #555;
            }
            .flex-grow3{
                flex: 3 0;
                color: #222;
            }
        
/* ==========================================================================
   RenderBox CMS Scoped CSS: HeroQuickSpecs Module (Samsung 25W EP-T2510)
   Root ID: #HeroQuickSpecs_root__S25W
   ========================================================================== */

/* Scoped Reset */
#HeroQuickSpecs_root__S25W,
#HeroQuickSpecs_root__S25W *,
#HeroQuickSpecs_root__S25W *::before,
#HeroQuickSpecs_root__S25W *::after {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#HeroQuickSpecs_root__S25W {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, &amp;amp;amp;quot;Segoe UI&amp;amp;amp;quot;, Roboto, sans-serif !important;
  background-color: #ffffff !important;
  color: #0B1221 !important;
  width: 100% !important;
  padding-top: 8.5rem !important;
  padding-bottom: 2.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  direction: rtl !important;
  text-align: right !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Container */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_container__S25W {
  max-width: 80rem !important; /* 1280px */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_container__S25W {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_container__S25W {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* Top Header Block */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_headerBlock__S25W {
  max-width: 48rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem !important;
  text-align: center !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_topBadge__S25W {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 0.375rem 1rem !important;
  border-radius: 9999px !important;
  margin-bottom: 0.875rem !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_iconGold__S25W {
  width: 0.875rem !important;
  height: 0.875rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mainTitle__S25W {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #0B1221 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.25 !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_mainTitle__S25W {
    font-size: 1.875rem !important;
  }
}

@media (min-width: 1024px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_mainTitle__S25W {
    font-size: 2.25rem !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_brandHighlight__S25W {
  color: #b08a49 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_subtitle__S25W {
  margin-top: 0.5rem !important;
  color: #475569 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_subtitle__S25W {
    font-size: 0.875rem !important;
  }
}

/* DESKTOP TOGGLE TABS (Hidden on Mobile) */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopTabsNav__S25W {
  display: none !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopTabsNav__S25W {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    margin-top: 1.75rem !important;
    padding: 0.375rem !important;
    background-color: #0B1221 !important;
    border: 1px solid rgba(176, 138, 73, 0.3) !important;
    border-radius: 1.5rem !important;
    gap: 0.5rem !important;
    width: 100% !important;
    max-width: 56rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopTabBtn__S25W {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.75rem !important;
  padding: 0.875rem 1rem !important;
  border-radius: 1rem !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: #cbd5e1 !important;
  text-align: right !important;
}

@media (min-width: 1024px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopTabBtn__S25W {
    gap: 1rem !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopTabBtn__S25W:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopTabBtn__S25W.HeroQuickSpecs_active__S25W {
  background: linear-gradient(to right, #131C31, #0B1221) !important;
  color: #f9de97 !important;
  border: 1px solid rgba(218, 197, 118, 0.5) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_tabBadge__S25W {
  flex-shrink: 0 !important;
  width: 1.75rem !important;
  height: 1.75rem !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #cbd5e1 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopTabBtn__S25W.HeroQuickSpecs_active__S25W .HeroQuickSpecs_tabBadge__S25W {
  background-color: #dac576 !important;
  color: #0B1221 !important;
}

/* MOBILE ACCORDION VIEW (Visible on Mobile) */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileAccordionWrapper__S25W {
  display: block !important;
  margin-bottom: 2rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileAccordionWrapper__S25W {
    display: none !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionItem__S25W {
  background-color: #0B1221 !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 0.875rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionBtn__S25W {
  width: 100% !important;
  padding: 1rem !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  transition: background-color 0.3s ease !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
  background-color: #0B1221 !important;
  color: #e2e8f0 !important;
  text-align: right !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionItem__S25W.HeroQuickSpecs_open__S25W .HeroQuickSpecs_accordionBtn__S25W {
  background: linear-gradient(to right, #131C31, #0B1221) !important;
  color: #f9de97 !important;
  border-bottom: 1px solid rgba(176, 138, 73, 0.4) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionTitleGroup__S25W {
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  min-width: 0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionItem__S25W.HeroQuickSpecs_open__S25W .HeroQuickSpecs_tabBadge__S25W {
  background-color: #dac576 !important;
  color: #0B1221 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_goldModelName__S25W {
  font-weight: 800 !important;
  color: #dac576 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_chevronIcon__S25W {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionItem__S25W.HeroQuickSpecs_open__S25W .HeroQuickSpecs_chevronIcon__S25W {
  transform: rotate(180deg) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionBody__S25W {
  display: none !important;
  padding: 1rem !important;
  background-color: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_accordionItem__S25W.HeroQuickSpecs_open__S25W .HeroQuickSpecs_accordionBody__S25W {
  display: block !important;
}

/* Mobile Features List */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileList__S25W {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.625rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileSpecCard__S25W {
  background-color: #f8fafc !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 0.75rem !important;
  padding: 0.875rem !important;
  transition: border-color 0.2s ease !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileSpecCard__S25W:hover {
  border-color: rgba(176, 138, 73, 0.6) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileSpecHeader__S25W {
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
  margin-bottom: 0.375rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileIconBox__S25W {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 0.5rem !important;
  background-color: #0B1221 !important;
  color: #dac576 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(176, 138, 73, 0.3) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileIconBox__S25W svg {
  width: 1rem !important;
  height: 1rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileSpecTitle__S25W {
  font-weight: 800 !important;
  color: #0B1221 !important;
  font-size: 0.75rem !important;
  line-height: 1.25 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileSpecDesc__S25W {
  color: #475569 !important;
  font-size: 0.6875rem !important;
  line-height: 1.5 !important;
  padding-right: 2.5rem !important;
}

/* Connection / Highlights Sub Box */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connectionSubBox__S25W {
  background-color: #0B1221 !important;
  color: #ffffff !important;
  border-radius: 0.75rem !important;
  padding: 1rem !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  margin-top: 1rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connectionSubHeader__S25W {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: #f9de97 !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 0.75rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connectionSubHeader__S25W svg {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connectionSubList__S25W {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connectionSubItem__S25W {
  background-color: #131C31 !important;
  padding: 0.75rem !important;
  border-radius: 0.5rem !important;
  border: 1px solid rgba(176, 138, 73, 0.2) !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.625rem !important;
  font-size: 0.75rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connectionSubItem__S25W svg {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
  margin-top: 0.125rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connTitle__S25W {
  font-weight: 700 !important;
  color: #f9de97 !important;
  display: block !important;
  font-size: 0.6875rem !important;
  margin-bottom: 0.125rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_connDesc__S25W {
  color: #cbd5e1 !important;
  font-size: 0.625rem !important;
  line-height: 1.4 !important;
}

/* Mobile Category Blocks */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileSpecCategoryGroup__S25W {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileCategoryHeader__S25W {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  padding: 0.625rem 0.75rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid rgba(176, 138, 73, 0.3) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileCategoryHeader__S25W svg {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileCategoryItems__S25W {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileCategoryRow__S25W {
  background-color: #f8fafc !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 0.75rem !important;
  padding: 0.75rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
  font-size: 0.75rem !important;
  text-align: right !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_rowLabel__S25W {
  color: #64748b !important;
  font-weight: 500 !important;
  font-size: 0.6875rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_rowValue__S25W {
  color: #1e293b !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  line-height: 1.4 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_rowValue__S25W.HeroQuickSpecs_highlightVal__S25W {
  color: #0B1221 !important;
  font-weight: 800 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_mobileCtaBlock__S25W {
  margin-top: 1rem !important;
  padding-top: 0.75rem !important;
  border-top: 1px solid #e2e8f0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_ctaButton__S25W {
  background: linear-gradient(to right, #0B1221, #131C31) !important;
  color: #f9de97 !important;
  border: 1px solid rgba(218, 197, 118, 0.4) !important;
  font-weight: 800 !important;
  font-size: 0.75rem !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  width: 100% !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_ctaButton__S25W:hover {
  opacity: 0.9 !important;
}

/* DESKTOP CONTENT VIEW */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopContentView__S25W {
  display: none !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopContentView__S25W {
    display: block !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopPanel__S25W {
  display: none !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopPanel__S25W.HeroQuickSpecs_activePanel__S25W {
  display: block !important;
  opacity: 1 !important;
}

/* Desktop Panel 1: Key Features */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopGrid9__S25W {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 1rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopGrid9__S25W {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_desktopGrid9__S25W {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskFeatureCard__S25W {
  background-color: #ffffff !important;
  border-radius: 1rem !important;
  padding: 1.25rem !important;
  border: 2px solid #f1f5f9 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskFeatureCard__S25W:hover {
  border-color: rgba(176, 138, 73, 0.6) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskIconBox__S25W {
  width: 2.75rem !important;
  height: 2.75rem !important;
  border-radius: 0.75rem !important;
  background-color: #0B1221 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #dac576 !important;
  margin-bottom: 0.75rem !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskIconBox__S25W svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskFeatureCard__S25W:hover .HeroQuickSpecs_deskIconBox__S25W {
  background-color: #b08a49 !important;
  color: #ffffff !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCardTitle__S25W {
  font-weight: 700 !important;
  color: #0B1221 !important;
  font-size: 0.75rem !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.375 !important;
  transition: color 0.3s ease !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCardTitle__S25W {
    font-size: 0.875rem !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskFeatureCard__S25W:hover .HeroQuickSpecs_deskCardTitle__S25W {
  color: #b08a49 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCardDesc__S25W {
  color: #475569 !important;
  font-size: 0.75rem !important;
  line-height: 1.625 !important;
  font-weight: 400 !important;
}

/* Connection Box Desktop */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionBox__S25W {
  background-color: #0B1221 !important;
  border-radius: 1rem !important;
  padding: 1.25rem !important;
  border: 1px solid rgba(176, 138, 73, 0.3) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
  margin-top: 1.5rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionBox__S25W {
    padding: 1.5rem !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionHeader__S25W {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: #f9de97 !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  margin-bottom: 1rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionHeader__S25W {
    font-size: 0.875rem !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionHeader__S25W svg {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionGrid__S25W {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 0.75rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionGrid__S25W {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnectionGrid__S25W {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnCard__S25W {
  background-color: #131C31 !important;
  padding: 1rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid rgba(176, 138, 73, 0.2) !important;
  transition: border-color 0.2s ease !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnCard__S25W:hover {
  border-color: rgba(218, 197, 118, 0.5) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnCardHeader__S25W {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnCardHeader__S25W svg {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnCardHeader__S25W h4 {
  font-weight: 700 !important;
  color: #f9de97 !important;
  font-size: 0.75rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskConnCard__S25W p {
  color: #cbd5e1 !important;
  font-size: 0.6875rem !important;
  line-height: 1.625 !important;
}

/* Desktop Panel 2: Official Specs */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskTableContainer__S25W {
  background-color: #ffffff !important;
  border-radius: 1rem !important;
  padding: 1.5rem !important;
  border: 2px solid #f1f5f9 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskTableHeader__S25W {
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskTableHeader__S25W h3 {
  font-weight: 800 !important;
  color: #0B1221 !important;
  font-size: 1rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskTableHeader__S25W h3 {
    font-size: 1.125rem !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskTableHeader__S25W p {
  font-size: 0.75rem !important;
  color: #64748b !important;
  margin-top: 0.25rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCategoryGrid2__S25W {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 1.5rem !important;
}

@media (min-width: 768px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCategoryGrid2__S25W {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCatCard__S25W {
  background-color: rgba(248, 250, 252, 0.8) !important;
  border-radius: 1rem !important;
  padding: 1.25rem !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCatTitle__S25W {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding-bottom: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_goldDot__S25W {
  width: 0.625rem !important;
  height: 0.625rem !important;
  border-radius: 9999px !important;
  background-color: #dac576 !important;
  flex-shrink: 0 !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCatTitle__S25W h4 {
  font-weight: 700 !important;
  color: #0B1221 !important;
  font-size: 0.875rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskSpecRows__S25W {
  display: flex !important;
  flex-direction: column !important;
  font-size: 0.75rem !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskSpecRow__S25W {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 0.375rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskSpecRow__S25W {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskSpecRow__S25W:last-child {
  border-bottom: none !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskRowLabel__S25W {
  color: #475569 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  text-align: right !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskRowVal__S25W {
  font-weight: 700 !important;
  color: #0B1221 !important;
  text-align: right !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskHighlightVal__S25W {
  color: #f9de97 !important;
  background-color: #0B1221 !important;
  padding: 0.125rem 0.625rem !important;
  border-radius: 0.375rem !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  align-self: flex-start !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskHighlightVal__S25W {
    align-self: auto !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCtaRow__S25W {
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid #f1f5f9 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCtaRow__S25W {
    flex-direction: row !important;
  }
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCtaQuestion__S25W {
  font-size: 0.75rem !important;
  color: #475569 !important;
  text-align: center !important;
}

@media (min-width: 640px) {
  #HeroQuickSpecs_root__S25W .HeroQuickSpecs_deskCtaQuestion__S25W {
    text-align: right !important;
  }
}

/* Animations State Classes */
#HeroQuickSpecs_root__S25W .HeroQuickSpecs_animateIn__S25W {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#HeroQuickSpecs_root__S25W .HeroQuickSpecs_animateIn__S25W.HeroQuickSpecs_animated__S25W {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: HighlightBanner Module
   Root ID: #HighlightBanner_root__Hb816
   ========================================================================== */

/* Scoped Reset */
#HighlightBanner_root__Hb816,
#HighlightBanner_root__Hb816 *,
#HighlightBanner_root__Hb816 *::before,
#HighlightBanner_root__Hb816 *::after {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#HighlightBanner_root__Hb816 {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, &amp;amp;amp;quot;Segoe UI&amp;amp;amp;quot;, Roboto, sans-serif !important;
  background-color: #0B1221 !important;
  color: #ffffff !important;
  width: 100% !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  position: relative !important;
  overflow: hidden !important;
  direction: rtl !important;
  text-align: right !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Glowing Background Orbs */
#HighlightBanner_root__Hb816 .HighlightBanner_glowOrbTop__Hb816 {
  position: absolute !important;
  top: 0 !important;
  right: 25% !important;
  width: 24rem !important;
  height: 24rem !important;
  background-color: rgba(176, 138, 73, 0.2) !important;
  border-radius: 9999px !important;
  filter: blur(64px) !important;
  pointer-events: none !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_glowOrbBottom__Hb816 {
  position: absolute !important;
  bottom: 0 !important;
  left: 25% !important;
  width: 24rem !important;
  height: 24rem !important;
  background-color: rgba(19, 28, 49, 0.5) !important;
  border-radius: 9999px !important;
  filter: blur(64px) !important;
  pointer-events: none !important;
}

/* Container */
#HighlightBanner_root__Hb816 .HighlightBanner_container__Hb816 {
  max-width: 80rem !important; /* 1280px */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  position: relative !important;
  z-index: 10 !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_container__Hb816 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_container__Hb816 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* Section Header Block */
#HighlightBanner_root__Hb816 .HighlightBanner_headerBlock__Hb816 {
  text-align: center !important;
  max-width: 48rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2.5rem !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_topBadge__Hb816 {
  display: inline-block !important;
  color: #dac576 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  background-color: rgba(176, 138, 73, 0.2) !important;
  border: 1px solid rgba(189, 161, 98, 0.3) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 9999px !important;
  margin-bottom: 0.75rem !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_mainTitle__Hb816 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.025em !important;
  line-height: 1.375 !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_mainTitle__Hb816 {
    font-size: 1.875rem !important;
  }
}

@media (min-width: 1024px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_mainTitle__Hb816 {
    font-size: 2.25rem !important;
  }
}

#HighlightBanner_root__Hb816 .HighlightBanner_brandHighlight__Hb816 {
  background: linear-gradient(to right, #f9de97, #bda162) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #f9de97 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_subtitle__Hb816 {
  margin-top: 0.75rem !important;
  color: #cbd5e1 !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  line-height: 1.625 !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_subtitle__Hb816 {
    font-size: 1rem !important;
  }
}

/* Featured Card Box */
#HighlightBanner_root__Hb816 .HighlightBanner_featuredCard__Hb816 {
  background-color: #131C31 !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  border: 1px solid rgba(176, 138, 73, 0.3) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  margin-bottom: 3rem !important;
  backdrop-filter: blur(16px) !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_featuredCard__Hb816 {
    padding: 2rem !important;
  }
}

#HighlightBanner_root__Hb816 .HighlightBanner_featuredGrid__Hb816 {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 2rem !important;
  align-items: center !important;
}

@media (min-width: 1024px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_featuredGrid__Hb816 {
    grid-template-columns: repeat(12, 1fr) !important;
  }

  #HighlightBanner_root__Hb816 .HighlightBanner_imageColumn__Hb816 {
    grid-column: span 5 / span 5 !important;
  }

  #HighlightBanner_root__Hb816 .HighlightBanner_contentColumn__Hb816 {
    grid-column: span 7 / span 7 !important;
  }
}

/* Image &amp;amp;amp;amp; Badges Column */
#HighlightBanner_root__Hb816 .HighlightBanner_imageWrapper__Hb816 {
  position: relative !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_productImg__Hb816 {
  width: 100% !important;
  height: 16rem !important;
  object-fit: cover !important;
  border-radius: 1rem !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_productImg__Hb816 {
    height: 20rem !important;
  }
}

#HighlightBanner_root__Hb816 .HighlightBanner_imageWrapper__Hb816:hover .HighlightBanner_productImg__Hb816 {
  transform: scale(1.05) !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_imageOverlay__Hb816 {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, #020617, rgba(2, 6, 23, 0.2), transparent) !important;
  pointer-events: none !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_imgTopBadge__Hb816 {
  position: absolute !important;
  top: 0.75rem !important;
  right: 0.75rem !important;
  background-color: rgba(11, 18, 33, 0.9) !important;
  color: #f9de97 !important;
  border: 1px solid rgba(217, 119, 6, 0.5) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 0.5rem !important;
  backdrop-filter: blur(8px) !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_imgBottomBadges__Hb816 {
  position: absolute !important;
  bottom: 1rem !important;
  right: 1rem !important;
  left: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 0.75rem !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_badgeLdrgb__Hb816 {
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  background-color: rgba(176, 138, 73, 0.8) !important;
  color: #fef3c7 !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.5rem !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  font-weight: 700 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_iconSparkle__Hb816 {
  width: 0.875rem !important;
  height: 0.875rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_badgeMic__Hb816 {
  background-color: rgba(11, 18, 33, 0.9) !important;
  color: #34d399 !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.5rem !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  font-weight: 700 !important;
}

/* Description &amp;amp;amp;amp; Features Column */
#HighlightBanner_root__Hb816 .HighlightBanner_headerTag__Hb816 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background-color: rgba(176, 138, 73, 0.2) !important;
  color: #f9de97 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 0.375rem !important;
  border: 1px solid rgba(217, 119, 6, 0.4) !important;
  margin-bottom: 0.75rem !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_iconVolume__Hb816 {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_contentTitle__Hb816 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.375 !important;
  margin-bottom: 0.75rem !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_contentTitle__Hb816 {
    font-size: 1.5rem !important;
  }
}

#HighlightBanner_root__Hb816 .HighlightBanner_contentDesc__Hb816 {
  color: #cbd5e1 !important;
  font-size: 0.75rem !important;
  line-height: 1.625 !important;
  margin-bottom: 1rem !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_contentDesc__Hb816 {
    font-size: 0.875rem !important;
  }
}

#HighlightBanner_root__Hb816 .HighlightBanner_goldStrong__Hb816 {
  color: #f9de97 !important;
  font-weight: 700 !important;
}

/* 4 Mini Specs Grid */
#HighlightBanner_root__Hb816 .HighlightBanner_miniSpecsGrid__Hb816 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  padding-top: 0.5rem !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_miniSpecsGrid__Hb816 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

#HighlightBanner_root__Hb816 .HighlightBanner_miniSpecCard__Hb816 {
  background-color: #0B1221 !important;
  border: 1px solid #1e293b !important;
  padding: 0.625rem !important;
  border-radius: 0.75rem !important;
  text-align: center !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_specValGold__Hb816 {
  color: #dac576 !important;
  font-size: 0.875rem !important;
  font-weight: 800 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_specValAmber__Hb816 {
  color: #fbbf24 !important;
  font-size: 0.875rem !important;
  font-weight: 800 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_specValEmerald__Hb816 {
  color: #34d399 !important;
  font-size: 0.875rem !important;
  font-weight: 800 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_specValBlue__Hb816 {
  color: #60a5fa !important;
  font-size: 0.875rem !important;
  font-weight: 800 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_specLabel__Hb816 {
  color: #64748b !important;
  font-size: 10px !important;
  margin-top: 0.125rem !important;
}

/* 4 Bottom Highlight Cards Grid */
#HighlightBanner_root__Hb816 .HighlightBanner_bottomCardsGrid__Hb816 {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 1rem !important;
}

@media (min-width: 640px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_bottomCardsGrid__Hb816 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  #HighlightBanner_root__Hb816 .HighlightBanner_bottomCardsGrid__Hb816 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

#HighlightBanner_root__Hb816 .HighlightBanner_bottomCard__Hb816 {
  background-color: #131C31 !important;
  border-radius: 1rem !important;
  padding: 1rem !important;
  border: 1px solid rgba(189, 161, 98, 0.2) !important;
  transition: border-color 0.3s ease, transform 0.3s ease !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_bottomCard__Hb816:hover {
  border-color: rgba(251, 191, 36, 0.5) !important;
  transform: translateY(-4px) !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_bottomCardHeader__Hb816 {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_goldText__Hb816 {
  color: #dac576 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_amberText__Hb816 {
  color: #fbbf24 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_emeraldText__Hb816 {
  color: #34d399 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_blueText__Hb816 {
  color: #60a5fa !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_bottomCardIcon__Hb816 {
  width: 1rem !important;
  height: 1rem !important;
  flex-shrink: 0 !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_bottomCardDesc__Hb816 {
  color: #cbd5e1 !important;
  font-size: 0.75rem !important;
  line-height: 1.625 !important;
}

/* Class-based Animations State Classes */
#HighlightBanner_root__Hb816 .HighlightBanner_animateIn__Hb816 {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#HighlightBanner_root__Hb816 .HighlightBanner_animateIn__Hb816.HighlightBanner_animated__Hb816 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: Review Article Module (Samsung 25W EP-T2510)
   Root ID: #ReviewArticle_root__RaE25
   ========================================================================== */

/* Scoped Reset */
#ReviewArticle_root__RaE25,
#ReviewArticle_root__RaE25 *,
#ReviewArticle_root__RaE25 *::before,
#ReviewArticle_root__RaE25 *::after {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#ReviewArticle_root__RaE25 {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, sans-serif !important;
  background-color: #ffffff !important;
  color: #0f172a !important;
  width: 100% !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  direction: rtl !important;
  text-align: right !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Container */
#ReviewArticle_root__RaE25 .RaT25_container__RaE25 {
  max-width: 75rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

/* --- Title Area --- */
#ReviewArticle_root__RaE25 .RaT25_titleWrapper__RaE25 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin-bottom: 3rem !important;
}

#ReviewArticle_root__RaE25 .RaT25_titleBadge__RaE25 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background-color: #0f172a !important;
  color: #c6a258 !important;
  border: 1px solid rgba(15, 23, 42, 0.8) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 9999px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
}

@media (min-width: 640px) {
  #ReviewArticle_root__RaE25 .RaT25_titleBadge__RaE25 {
    font-size: 0.875rem !important;
  }
}

#ReviewArticle_root__RaE25 .RaT25_mainTitle__RaE25 {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
  max-width: 56rem !important;
}

@media (min-width: 768px) {
  #ReviewArticle_root__RaE25 .RaT25_mainTitle__RaE25 {
    font-size: 2.25rem !important;
  }
}

#ReviewArticle_root__RaE25 .RaT25_subtitle__RaE25 {
  font-size: 0.875rem !important;
  color: #64748b !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  max-width: 48rem !important;
}

/* --- Mobile Accordion (Visible below 1024px) --- */
#ReviewArticle_root__RaE25 .RaT25_mobileAccordion__RaE25 {
  display: block !important;
  margin-bottom: 2rem !important;
}

@media (min-width: 1024px) {
  #ReviewArticle_root__RaE25 .RaT25_mobileAccordion__RaE25 {
    display: none !important;
  }
}

#ReviewArticle_root__RaE25 .RaT25_accordionHeader__RaE25 {
  background-color: #0f172a !important;
  color: #c6a258 !important;
  padding: 0.875rem !important;
  border-radius: 1rem !important;
  border: 1px solid #1e293b !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 1rem !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionItem__RaE25 {
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  margin-bottom: 0.75rem !important;
  transition: all 0.3s ease !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionItem__RaE25.RaT25_open__RaE25 {
  background-color: #ffffff !important;
  border-color: #c6a258 !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05) !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionBtn__RaE25 {
  width: 100% !important;
  padding: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  text-align: right !important;
  transition: all 0.3s ease !important;
  color: #0f172a !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionItem__RaE25.RaT25_open__RaE25 .RaT25_accordionBtn__RaE25 {
  background-color: #0f172a !important;
  color: #ffffff !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionBtnLeft__RaE25 {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  min-width: 0 !important;
}

#ReviewArticle_root__RaE25 .RaT25_numberBadge__RaE25 {
  width: 1.75rem !important;
  height: 1.75rem !important;
  border-radius: 9999px !important;
  font-weight: 900 !important;
  font-size: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  background-color: #1e293b !important;
  color: #c6a258 !important;
  border: 1px solid #334155 !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionItem__RaE25.RaT25_open__RaE25 .RaT25_numberBadge__RaE25 {
  background-color: #c6a258 !important;
  color: #ffffff !important;
  border-color: #c6a258 !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionTitle__RaE25 {
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
@media (min-width: 640px) {
  #ReviewArticle_root__RaE25 .RaT25_accordionTitle__RaE25 { font-size: 0.875rem !important; }
}

#ReviewArticle_root__RaE25 .RaT25_chevron__RaE25 {
  color: #94a3b8 !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionItem__RaE25.RaT25_open__RaE25 .RaT25_chevron__RaE25 {
  transform: rotate(180deg) !important;
  color: #c6a258 !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionContent__RaE25 {
  display: none !important;
  padding: 1rem !important;
  border-top: 1px solid #f1f5f9 !important;
}

#ReviewArticle_root__RaE25 .RaT25_accordionItem__RaE25.RaT25_open__RaE25 .RaT25_accordionContent__RaE25 {
  display: block !important;
  animation: RaT25_fadeIn 0.3s ease forwards !important;
}

@keyframes RaT25_fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#ReviewArticle_root__RaE25 .RaT25_accordionContent__RaE25 p {
  font-size: 0.75rem !important;
  color: #334155 !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
}

/* Mobile Highlight Box */
#ReviewArticle_root__RaE25 .RaT25_highlightBox__RaE25 {
  background-color: #fffdf0 !important;
  border-right: 4px solid #f59e0b !important;
  border-top: 1px solid #fde68a !important;
  border-bottom: 1px solid #fde68a !important;
  border-left: 1px solid #fde68a !important;
  padding: 1rem !important;
  border-radius: 1rem 0 0 1rem !important; /* LTR is left, RTL is right */
  margin-top: 1rem !important;
  margin-bottom: 0.5rem !important;
}
#ReviewArticle_root__RaE25[dir=&quot;rtl&quot;] .RaT25_highlightBox__RaE25 {
  border-radius: 1rem 0 0 1rem !important;
}

#ReviewArticle_root__RaE25 .RaT25_highlightTitle__RaE25 {
  font-weight: 800 !important;
  color: #0f172a !important;
  font-size: 0.75rem !important;
  margin-bottom: 0.5rem !important;
}

#ReviewArticle_root__RaE25 .RaT25_highlightGrid__RaE25 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.5rem !important;
  margin-top: 0.5rem !important;
}
@media (min-width: 480px) {
  #ReviewArticle_root__RaE25 .RaT25_highlightGrid__RaE25 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

#ReviewArticle_root__RaE25 .RaT25_highlightItem__RaE25 {
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  color: #1e293b !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
}
#ReviewArticle_root__RaE25 .RaT25_textOrange__RaE25 {
  color: #d97706 !important;
  flex-shrink: 0 !important;
}


/* --- Desktop View (Hidden below 1024px) --- */
#ReviewArticle_root__RaE25 .RaT25_desktopLayout__RaE25 {
  display: none !important;
}

@media (min-width: 1024px) {
  #ReviewArticle_root__RaE25 .RaT25_desktopLayout__RaE25 {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 2rem !important;
    align-items: start !important;
  }
  
  /* Right TOC Sidebar */
  #ReviewArticle_root__RaE25 .RaT25_tocWrapper__RaE25 {
    grid-column: span 4 !important;
    position: sticky !important;
    top: 7rem !important; /* Space for fixed headers */
  }

  #ReviewArticle_root__RaE25 .RaT25_tocBox__RaE25 {
    background-color: #0f172a !important;
    color: #ffffff !important;
    border-radius: 1.75rem !important;
    padding: 1.5rem !important;
    border: 1px solid #1e293b !important;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25) !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocHeader__RaE25 {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #c6a258 !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid rgba(30, 41, 59, 0.8) !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocList__RaE25 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocBtn__RaE25 {
    width: 100% !important;
    text-align: right !important;
    padding: 0.875rem !important;
    border-radius: 1rem !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    background: transparent !important;
    color: #cbd5e1 !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    transition: all 0.2s ease !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocBtn__RaE25:hover {
    color: #ffffff !important;
    background-color: rgba(255,255,255,0.05) !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocBtn__RaE25.active {
    background-color: #16233d !important;
    color: #ffffff !important;
    border-color: rgba(198, 162, 88, 0.6) !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocNumber__RaE25 {
    width: 1.5rem !important;
    height: 1.5rem !important;
    border-radius: 9999px !important;
    font-weight: 900 !important;
    font-size: 0.6875rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocBtn__RaE25.active .RaT25_tocNumber__RaE25 {
    background-color: #c6a258 !important;
    color: #0f172a !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_tocText__RaE25 {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Left Content Columns */
  #ReviewArticle_root__RaE25 .RaT25_mainContent__RaE25 {
    grid-column: span 8 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_contentSection__RaE25 {
    background-color: rgba(248, 250, 252, 0.8) !important;
    border-radius: 1.75rem !important;
    padding: 2rem !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    scroll-margin-top: 8rem !important; /* space for scrolling to it */
  }

  #ReviewArticle_root__RaE25 .RaT25_contentHeader__RaE25 {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
    padding-bottom: 1rem !important;
    margin-bottom: 1.25rem !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_contentNumber__RaE25 {
    width: 2rem !important;
    height: 2rem !important;
    border-radius: 9999px !important;
    background-color: #0f172a !important;
    color: #c6a258 !important;
    font-weight: 900 !important;
    font-size: 0.875rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_contentTitle__RaE25 {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
    color: #0f172a !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_contentBody__RaE25 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_contentBody__RaE25 p {
    font-size: 0.875rem !important;
    color: #334155 !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
  }

  /* Desktop Highlight Box */
  #ReviewArticle_root__RaE25 .RaT25_highlightBoxDesktop__RaE25 {
    background-color: #fffdf0 !important;
    border-right: 4px solid #f59e0b !important;
    padding: 1.25rem !important;
    border-radius: 1rem 0 0 1rem !important;
    margin-top: 1rem !important;
    border-top: 1px solid #fde68a !important;
    border-bottom: 1px solid #fde68a !important;
    border-left: 1px solid #fde68a !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_highlightTitleDesktop__RaE25 {
    font-weight: 800 !important;
    color: #0f172a !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.75rem !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_highlightGridDesktop__RaE25 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    margin-top: 0.25rem !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_highlightItemDesktop__RaE25 {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    color: #1e293b !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
  }

  #ReviewArticle_root__RaE25 .RaT25_iconWrapper__RaE25 {
    width: 1.25rem !important;
    height: 1.25rem !important;
    border-radius: 9999px !important;
    background-color: #fde68a !important;
    color: #b45309 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: ProsAndCons Module
   Root ID: #ProsAndCons_root__Pc816
   ========================================================================== */

/* Scoped Reset */
#ProsAndCons_root__Pc816,
#ProsAndCons_root__Pc816 *,
#ProsAndCons_root__Pc816 *::before,
#ProsAndCons_root__Pc816 *::after {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#ProsAndCons_root__Pc816 {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, &amp;amp;amp;quot;Segoe UI&amp;amp;amp;quot;, Roboto, sans-serif !important;
  background-color: #ffffff !important;
  color: #334155 !important;
  width: 100% !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  direction: rtl !important;
  text-align: right !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Container */
#ProsAndCons_root__Pc816 .ProsAndCons_container__Pc816 {
  max-width: 80rem !important; /* 1280px */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_container__Pc816 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_container__Pc816 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* Header Block */
#ProsAndCons_root__Pc816 .ProsAndCons_headerBlock__Pc816 {
  text-align: center !important;
  max-width: 42rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2.5rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_topBadge__Pc816 {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #b08a49 !important;
  background-color: rgba(249, 222, 151, 0.3) !important;
  padding: 0.25rem 0.875rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(218, 197, 118, 0.4) !important;
  display: inline-block !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_mainTitle__Pc816 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #0B1221 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.25 !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_mainTitle__Pc816 {
    font-size: 1.875rem !important;
  }
}

#ProsAndCons_root__Pc816 .ProsAndCons_subtitle__Pc816 {
  margin-top: 0.5rem !important;
  color: #475569 !important;
  font-size: 0.75rem !important;
  line-height: 1.625 !important;
  font-weight: 500 !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_subtitle__Pc816 {
    font-size: 0.875rem !important;
  }
}

/* Layout Grid: 2 Columns */
#ProsAndCons_root__Pc816 .ProsAndCons_cardsGrid__Pc816 {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 1.5rem !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_cardsGrid__Pc816 {
    gap: 2rem !important;
  }
}

@media (min-width: 1024px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_cardsGrid__Pc816 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Card Content Group Wrapper */
#ProsAndCons_root__Pc816 .ProsAndCons_cardContentGroup__Pc816 {
  display: flex !important;
  flex-direction: column !important;
}

/* GREEN CARD: Advantages (نقاط قوت) */
#ProsAndCons_root__Pc816 .ProsAndCons_cardPros__Pc816 {
  background-color: rgba(236, 253, 245, 0.6) !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  border: 2px solid rgba(167, 243, 208, 0.9) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_cardPros__Pc816 {
    padding: 2rem !important;
  }
}

#ProsAndCons_root__Pc816 .ProsAndCons_cardPros__Pc816:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08) !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_prosHeader__Pc816 {
  display: flex !important;
  align-items: center !important;
  gap: 0.875rem !important;
  border-bottom: 1px solid rgba(167, 243, 208, 0.8) !important;
  padding-bottom: 1rem !important;
  margin-bottom: 1.5rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_prosIconBox__Pc816 {
  width: 2.75rem !important;
  height: 2.75rem !important;
  border-radius: 1rem !important;
  background-color: #059669 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.3) !important;
  flex-shrink: 0 !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_iconThumbsUp__Pc816 {
  width: 1.375rem !important;
  height: 1.375rem !important;
  color: #ffffff !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_prosTitle__Pc816 {
  font-weight: 800 !important;
  color: #022c22 !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_prosTitle__Pc816 {
    font-size: 1.125rem !important;
  }
}

#ProsAndCons_root__Pc816 .ProsAndCons_prosTag__Pc816 {
  font-size: 10px !important;
  background-color: #d1fae5 !important;
  color: #065f46 !important;
  padding: 0.125rem 0.5rem !important;
  border-radius: 9999px !important;
  border: 1px solid #a7f3d0 !important;
  font-weight: 700 !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_prosSubText__Pc816 {
  font-size: 0.75rem !important;
  color: rgba(4, 120, 87, 0.8) !important;
  margin-top: 0.125rem !important;
}

/* Items List */
#ProsAndCons_root__Pc816 .ProsAndCons_itemsList__Pc816 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_proItem__Pc816 {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  font-size: 0.75rem !important;
  color: #022c22 !important;
  line-height: 1.625 !important;
  background-color: rgba(255, 255, 255, 0.8) !important;
  padding: 0.75rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid rgba(209, 250, 229, 0.9) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  font-weight: 700 !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_proItem__Pc816 {
    font-size: 0.875rem !important;
  }
}

#ProsAndCons_root__Pc816 .ProsAndCons_iconCheckCircle__Pc816 {
  width: 1.125rem !important;
  height: 1.125rem !important;
  color: #059669 !important;
  flex-shrink: 0 !important;
  margin-top: 0.125rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_prosFooterBadge__Pc816 {
  margin-top: 0.5rem !important;
  padding-top: 0.5rem !important;
  border-top: 1px solid rgba(167, 243, 208, 0.8) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.75rem !important;
  color: #065f46 !important;
  font-weight: 700 !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.875rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid rgba(167, 243, 208, 0.6) !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_iconShieldCheck__Pc816 {
  width: 1.125rem !important;
  height: 1.125rem !important;
  color: #059669 !important;
  flex-shrink: 0 !important;
}

/* RED/ORANGE CARD: Limitations (ملاحظات قبل از خرید) */
#ProsAndCons_root__Pc816 .ProsAndCons_cardCons__Pc816 {
  background-color: rgba(255, 241, 242, 0.6) !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  border: 2px solid rgba(254, 205, 211, 0.9) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  gap: 1.5rem !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_cardCons__Pc816 {
    padding: 2rem !important;
  }
}

#ProsAndCons_root__Pc816 .ProsAndCons_cardCons__Pc816:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08) !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_consHeader__Pc816 {
  display: flex !important;
  align-items: center !important;
  gap: 0.875rem !important;
  border-bottom: 1px solid rgba(254, 205, 211, 0.8) !important;
  padding-bottom: 1rem !important;
  margin-bottom: 1.5rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_consIconBox__Pc816 {
  width: 2.75rem !important;
  height: 2.75rem !important;
  border-radius: 1rem !important;
  background-color: #e11d48 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 6px -1px rgba(225, 29, 72, 0.3) !important;
  flex-shrink: 0 !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_iconAlertTriangle__Pc816 {
  width: 1.375rem !important;
  height: 1.375rem !important;
  color: #ffffff !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_consTitle__Pc816 {
  font-weight: 800 !important;
  color: #4c0519 !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_consTitle__Pc816 {
    font-size: 1.125rem !important;
  }
}

#ProsAndCons_root__Pc816 .ProsAndCons_consTag__Pc816 {
  font-size: 10px !important;
  background-color: #ffe4e6 !important;
  color: #9f1239 !important;
  padding: 0.125rem 0.5rem !important;
  border-radius: 9999px !important;
  border: 1px solid #fecdd3 !important;
  font-weight: 700 !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_consSubText__Pc816 {
  font-size: 0.75rem !important;
  color: rgba(190, 18, 60, 0.8) !important;
  margin-top: 0.125rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_conItem__Pc816 {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  font-size: 0.75rem !important;
  color: #4c0519 !important;
  line-height: 1.625 !important;
  background-color: rgba(255, 255, 255, 0.8) !important;
  padding: 0.875rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid rgba(254, 205, 211, 0.9) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  font-weight: 700 !important;
}

@media (min-width: 640px) {
  #ProsAndCons_root__Pc816 .ProsAndCons_conItem__Pc816 {
    font-size: 0.875rem !important;
  }
}

#ProsAndCons_root__Pc816 .ProsAndCons_iconAlertCircle__Pc816 {
  width: 1.125rem !important;
  height: 1.125rem !important;
  color: #e11d48 !important;
  flex-shrink: 0 !important;
  margin-top: 0.125rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_warningBox__Pc816 {
  padding: 1rem !important;
  background-color: rgba(245, 158, 11, 0.1) !important;
  border-radius: 1rem !important;
  border: 2px solid rgba(252, 211, 77, 0.8) !important;
  font-size: 0.75rem !important;
  color: #451a03 !important;
  line-height: 1.625 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.375rem !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_warningTitle__Pc816 {
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  color: #78350f !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_iconAlertTriangleAmber__Pc816 {
  width: 1rem !important;
  height: 1rem !important;
  color: #d97706 !important;
  flex-shrink: 0 !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_warningDesc__Pc816 {
  display: block !important;
  font-weight: 500 !important;
  color: #334155 !important;
  line-height: 1.625 !important;
}

/* Entry Animation Classes */
#ProsAndCons_root__Pc816 .ProsAndCons_animateIn__Pc816 {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#ProsAndCons_root__Pc816 .ProsAndCons_animateIn__Pc816.ProsAndCons_animated__Pc816 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: Performance Ratings
   ========================================================================== */
#PerformanceRatings_root__PrC25 {
  --pr-font: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --pr-bg: #ffffff;
  --pr-border: #e2e8f0;
  --pr-gold-dark: #a17c38;
  --pr-gold-mid: #c69f58;
  --pr-gold-light: #d9bd85;
  --pr-navy-bg: #0B1221;
  font-family: var(--pr-font);
  background-color: var(--pr-bg);
  border-bottom: 1px solid var(--pr-border);
  padding: 3rem 0;
  direction: rtl;
}

@media (min-width: 640px) {
  #PerformanceRatings_root__PrC25 {
    padding: 4rem 0;
  }
}

.PrT25_container__PrC25 {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .PrT25_container__PrC25 { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .PrT25_container__PrC25 { padding: 0 2rem; }
}

/* Header */
.PrT25_header__PrC25 {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 640px) {
  .PrT25_header__PrC25 { margin-bottom: 3rem; }
}

.PrT25_badge__PrC25 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #fef8eb;
  color: var(--pr-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid #f3e5c8;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.PrT25_title__PrC25 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 900;
  color: #0f172a; /* slate-900 */
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .PrT25_title__PrC25 { font-size: 1.875rem; }
}

.PrT25_subtitle__PrC25 {
  color: #64748b; /* slate-500 */
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 640px) {
  .PrT25_subtitle__PrC25 { font-size: 0.875rem; }
}

/* Grid Layout */
.PrT25_grid__PrC25 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .PrT25_grid__PrC25 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

/* Left Card: Overall Score */
.PrT25_overallCard__PrC25 {
  background-color: var(--pr-navy-bg);
  color: #ffffff;
  border-radius: 1.75rem; /* 28px */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid #1e293b;
}
@media (min-width: 640px) {
  .PrT25_overallCard__PrC25 { padding: 2.5rem; }
}
@media (min-width: 1024px) {
  .PrT25_overallCard__PrC25 { grid-column: span 5 / span 5; }
}

.PrT25_overallIconWrapper__PrC25 {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--pr-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.PrT25_overallLabel__PrC25 {
  font-size: 0.75rem;
  color: #cbd5e1; /* slate-300 */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.PrT25_scoreWrapper__PrC25 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
}

.PrT25_score__PrC25 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pr-gold-light);
  letter-spacing: -0.025em;
  line-height: 1;
}
@media (min-width: 640px) {
  .PrT25_score__PrC25 { font-size: 3.75rem; }
}

.PrT25_scoreTotal__PrC25 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #cbd5e1;
}

.PrT25_stars__PrC25 {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 1rem 0;
  color: var(--pr-gold-light);
}

.PrT25_overallNote__PrC25 {
  font-size: 0.75rem;
  color: #94a3b8; /* slate-400 */
  line-height: 1.625;
  max-width: 20rem;
  font-weight: 500;
  margin: 0.5rem 0 0 0;
}

/* Right Card: Metrics */
.PrT25_metricsCard__PrC25 {
  background-color: #ffffff;
  border-radius: 1.75rem; /* 28px */
  padding: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .PrT25_metricsCard__PrC25 { padding: 2rem; }
}
@media (min-width: 1024px) {
  .PrT25_metricsCard__PrC25 { grid-column: span 7 / span 7; }
}

.PrT25_metricsHeader__PrC25 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 1.5rem;
}

.PrT25_metricsBadge__PrC25 {
  background-color: #f1f5f9;
  color: #475569;
  font-size: 0.6875rem; /* 11px */
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
}

.PrT25_metricsTitleWrapper__PrC25 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  color: #0f172a;
  font-size: 1rem;
}
@media (min-width: 640px) {
  .PrT25_metricsTitleWrapper__PrC25 { font-size: 1.125rem; }
}

.PrT25_metricsIcon__PrC25 {
  color: #b08a49;
}

.PrT25_metricsList__PrC25 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.PrT25_metricItem__PrC25 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.PrT25_metricHeader__PrC25 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 800;
}
@media (min-width: 640px) {
  .PrT25_metricHeader__PrC25 { font-size: 0.875rem; }
}

.PrT25_metricScore__PrC25 {
  color: #b08a49;
  font-weight: 900;
}

.PrT25_metricName__PrC25 {
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.PrT25_metricTrack__PrC25 {
  height: 0.625rem;
  width: 100%;
  background-color: #f1f5f9;
  border-radius: 9999px;
  overflow: hidden;
  padding: 0.125rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.PrT25_metricFill__PrC25 {
  height: 100%;
  background: linear-gradient(to left, #b08a49, #c69f58, #d9bd85);
  border-radius: 9999px;
  width: 0%; /* Initial for animation */
  transition: width 1s ease-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: Core Pillars
   ========================================================================== */
#CorePillars_root__CpT25,
#CorePillars_root__CpT25 *,
#CorePillars_root__CpT25 *::before,
#CorePillars_root__CpT25 *::after {
  box-sizing: border-box;
}

#CorePillars_root__CpT25 {
  --cp-font: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --cp-bg: #f8fafc; /* slate-50 */
  --cp-border: #e2e8f0;
  --cp-gold-light: #fef8eb;
  --cp-gold-dark: #a17c38;
  --cp-gold-main: #d9bd85;
  --cp-navy-bg: #0f172a;
  
  font-family: var(--cp-font);
  background-color: var(--cp-bg);
  border-bottom: 1px solid var(--cp-border);
  padding: 3rem 0;
  direction: rtl;
}

@media (min-width: 640px) {
  #CorePillars_root__CpT25 { padding: 4rem 0; }
}

.CpT25_container__CpT25 {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .CpT25_container__CpT25 { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .CpT25_container__CpT25 { padding: 0 2rem; }
}

/* Header */
.CpT25_header__CpT25 {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.CpT25_badge__CpT25 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--cp-gold-light);
  color: var(--cp-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid #f3e5c8;
  margin-bottom: 0.75rem;
}

.CpT25_title__CpT25 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 900;
  color: var(--cp-navy-bg);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .CpT25_title__CpT25 { font-size: 1.875rem; }
}

.CpT25_titleHighlight__CpT25 {
  color: var(--cp-gold-dark);
}

.CpT25_subtitle__CpT25 {
  color: #475569; /* slate-600 */
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 640px) {
  .CpT25_subtitle__CpT25 { font-size: 0.875rem; }
}

/* Grid Layout */
.CpT25_grid__CpT25 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}
@media (min-width: 768px) {
  .CpT25_grid__CpT25 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px) {
  .CpT25_grid__CpT25 { grid-template-columns: repeat(4, 1fr) !important; }
}

/* Card */
.CpT25_card__CpT25 {
  background-color: #ffffff !important;
  border-radius: 1.5rem !important; /* 24px */
  padding: 1.5rem !important;
  border: 1px solid var(--cp-border) !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
}
.CpT25_card__CpT25:hover {
  border-color: #fbbf24 !important; /* gold-400 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.CpT25_cardTop__CpT25 {
  margin-bottom: 1.5rem;
}

.CpT25_cardHeader__CpT25 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.CpT25_cardIconWrapper__CpT25 {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background-color: var(--cp-gold-light);
  color: var(--cp-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 229, 200, 0.6);
  transition: all 0.3s ease;
}
.CpT25_card__CpT25:hover .CpT25_cardIconWrapper__CpT25 {
  background-color: #f59e0b; /* gold-500 */
  color: #ffffff;
}
.CpT25_cardIconWrapper__CpT25 svg {
  width: 1.5rem;
  height: 1.5rem;
}

.CpT25_cardNumber__CpT25 {
  font-size: 0.625rem; /* 10px */
  font-weight: 900;
  background-color: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
}

.CpT25_cardTitle__CpT25 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--cp-navy-bg);
  margin: 0 0 0.5rem 0;
  transition: color 0.3s ease;
}
.CpT25_card__CpT25:hover .CpT25_cardTitle__CpT25 {
  color: var(--cp-gold-dark);
}

.CpT25_cardDesc__CpT25 {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.625;
  margin: 0;
  font-weight: 400;
}

.CpT25_cardBottom__CpT25 {
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.CpT25_bottomLabel__CpT25 {
  font-size: 0.6875rem; /* 11px */
  font-weight: 700;
  color: var(--cp-gold-dark);
}

.CpT25_pulseDot__CpT25 {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #f59e0b;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* Bottom CTA Box */
.CpT25_ctaBox__CpT25 {
  margin-top: 2.5rem;
  background-color: var(--cp-navy-bg) !important;
  border-radius: 1.5rem !important; /* 24px */
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  text-align: center !important;
  border: 1px solid #1e293b !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
@media (min-width: 640px) {
  .CpT25_ctaBox__CpT25 {
    flex-direction: row !important;
    text-align: right !important;
  }
}

.CpT25_ctaText__CpT25 {
  /* text wrapper */
}

.CpT25_ctaTitle__CpT25 {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 640px) {
  .CpT25_ctaTitle__CpT25 { font-size: 1.125rem; }
}

.CpT25_ctaDesc__CpT25 {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin: 0.25rem 0 0 0;
}

.CpT25_ctaBtn__CpT25 {
  background: linear-gradient(to left, #d9bd85, #c69f58) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 0.75rem !important;
  padding: 0.875rem 1.5rem !important;
  border-radius: 0.75rem !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  font-family: inherit !important;
}
.CpT25_ctaBtn__CpT25:hover {
  background: linear-gradient(to left, #c69f58, #a17c38) !important;
  transform: translateY(-1px) !important;
}


/* --- ANIMATION CLASSES --- */
#CorePillars_root__CpT25 .CpT25_animate-in__CpT25 {
  opacity: 0 !important;
}

#CorePillars_root__CpT25 .CpT25_animate-in__CpT25.CpT25_animated__CpT25 {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

#CorePillars_root__CpT25 .CpT25_slide-up__CpT25 {
  transform: translateY(30px) !important;
}

#CorePillars_root__CpT25 .CpT25_card__CpT25,
#CorePillars_root__CpT25 .CpT25_ctaBox__CpT25 {
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), 
              transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: Video Showcase
   ========================================================================== */
#VideoShowcase_root__VsT25,
#VideoShowcase_root__VsT25 *,
#VideoShowcase_root__VsT25 *::before,
#VideoShowcase_root__VsT25 *::after {
  box-sizing: border-box;
}

#VideoShowcase_root__VsT25 {
  --vs-font: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --vs-bg: #060a12;
  --vs-card-bg: #0b1221;
  --vs-gold-light: #d9bd85;
  --vs-gold-dark: #b08a49;
  --vs-text-light: #ffffff;
  
  font-family: var(--vs-font);
  background-color: var(--vs-bg);
  color: var(--vs-text-light);
  padding: 3rem 0;
  direction: rtl;
}

@media (min-width: 640px) {
  #VideoShowcase_root__VsT25 { padding: 4rem 0; }
}

.VsT25_container__VsT25 {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .VsT25_container__VsT25 { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .VsT25_container__VsT25 { padding: 0 2rem; }
}

/* Header */
.VsT25_header__VsT25 {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.VsT25_badge__VsT25 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--vs-card-bg);
  color: var(--vs-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid #1e293b;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.VsT25_title__VsT25 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 900;
  color: var(--vs-text-light);
  margin: 0;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .VsT25_title__VsT25 { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .VsT25_title__VsT25 { font-size: 2.25rem; }
}

.VsT25_titleHighlight__VsT25 {
  color: var(--vs-gold-light);
}

.VsT25_subtitle__VsT25 {
  color: #94a3b8; /* slate-400 */
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 640px) {
  .VsT25_subtitle__VsT25 { font-size: 0.875rem; }
}

/* Video Player Card Container */
.VsT25_videoCard__VsT25 {
  position: relative !important;
  max-width: 64rem !important; /* 1024px */
  margin: 0 auto !important;
  border-radius: 1.75rem !important; /* 28px */
  overflow: hidden !important;
  border: 2px solid rgba(176, 138, 73, 0.4) !important;
  background-color: var(--vs-card-bg) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  aspect-ratio: 16 / 9 !important;
}
@media (min-width: 640px) {
  .VsT25_videoCard__VsT25 { aspect-ratio: 21 / 9 !important; }
}

/* Cover State */
.VsT25_videoCover__VsT25 {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 10 !important;
  opacity: 1 !important;
  transition: opacity 0.5s ease !important;
  display: block !important;
}
.VsT25_videoCover__VsT25.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

.VsT25_coverImg__VsT25 {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0.65 !important;
  transition: transform 0.7s ease !important;
}
.VsT25_videoCard__VsT25:hover .VsT25_coverImg__VsT25 {
  transform: scale(1.05) !important;
}

.VsT25_overlayGradient__VsT25 {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, #060a12, rgba(0,0,0,0.4), rgba(0,0,0,0.2)) !important;
  pointer-events: none !important;
}

/* Badges &amp;amp; Buttons */
.VsT25_topBadgeWrapper__VsT25 {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  z-index: 20 !important;
}
@media (min-width: 640px) {
  .VsT25_topBadgeWrapper__VsT25 { top: 1.5rem !important; right: 1.5rem !important; }
}

.VsT25_topBadge__VsT25 {
  background-color: rgba(11, 18, 33, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  color: var(--vs-gold-light) !important;
  border: 1px solid rgba(217, 189, 133, 0.5) !important;
  font-size: 0.6875rem !important; /* 11px */
  font-weight: 700 !important;
  padding: 0.375rem 1rem !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}
@media (min-width: 640px) {
  .VsT25_topBadge__VsT25 { font-size: 0.75rem !important; }
}

.VsT25_playBtnWrapper__VsT25 {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 20 !important;
}

.VsT25_playBtn__VsT25 {
  width: 4rem !important;
  height: 4rem !important;
  border-radius: 9999px !important;
  background-color: var(--vs-gold-light) !important;
  color: var(--vs-card-bg) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  border: 4px solid rgba(255, 255, 255, 0.3) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  padding: 0 !important;
}
@media (min-width: 640px) {
  .VsT25_playBtn__VsT25 { width: 5rem !important; height: 5rem !important; }
}
.VsT25_playBtn__VsT25:hover {
  transform: scale(1.1) !important;
}
.VsT25_playBtn__VsT25:active {
  transform: scale(0.95) !important;
}
.VsT25_playIcon__VsT25 {
  width: 1.75rem !important;
  height: 1.75rem !important;
  margin-right: 0.125rem !important; /* slightly offset to look centered */
}
@media (min-width: 640px) {
  .VsT25_playIcon__VsT25 { width: 2.25rem !important; height: 2.25rem !important; }
}

.VsT25_bottomControls__VsT25 {
  position: absolute !important;
  bottom: 1rem !important;
  right: 1rem !important;
  left: 1rem !important;
  z-index: 20 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}
@media (min-width: 640px) {
  .VsT25_bottomControls__VsT25 {
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    left: 1.5rem !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
  }
}

.VsT25_bottomInfo__VsT25 {
  text-align: right !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

.VsT25_videoTitle__VsT25 {
  font-size: 1rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin: 0 !important;
}
@media (min-width: 640px) {
  .VsT25_videoTitle__VsT25 { font-size: 1.125rem !important; }
}

.VsT25_videoDesc__VsT25 {
  font-size: 0.6875rem !important; /* 11px */
  color: #cbd5e1 !important; /* slate-300 */
  font-weight: 500 !important;
  margin: 0 !important;
}
@media (min-width: 640px) {
  .VsT25_videoDesc__VsT25 { font-size: 0.75rem !important; }
}

.VsT25_fhdBtn__VsT25 {
  background-color: rgba(11, 18, 33, 0.9) !important;
  color: #ffffff !important;
  border: 1px solid #334155 !important; /* slate-700 */
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  padding: 0.625rem 1rem !important;
  border-radius: 0.75rem !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  align-self: flex-start !important;
  font-family: inherit !important;
}
@media (min-width: 640px) {
  .VsT25_fhdBtn__VsT25 { align-self: auto !important; }
}
.VsT25_fhdBtn__VsT25:hover {
  background-color: #0b1221 !important;
  border-color: var(--vs-gold-light) !important;
}


/* Active State */
.VsT25_videoActive__VsT25 {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #000000 !important;
  z-index: 5 !important;
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}
.VsT25_videoActive__VsT25.is-active {
  opacity: 1 !important;
  z-index: 30 !important;
  pointer-events: auto !important;
}

.VsT25_activeContent__VsT25 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem !important;
  text-align: center !important;
  gap: 1rem !important;
}

.VsT25_activeIconWrapper__VsT25 {
  width: 4rem !important;
  height: 4rem !important;
  border-radius: 9999px !important;
  background-color: rgba(217, 189, 133, 0.2) !important;
  color: var(--vs-gold-light) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(217, 189, 133, 0.4) !important;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 189, 133, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(217, 189, 133, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 189, 133, 0); }
}

.VsT25_activeTitle__VsT25 {
  font-weight: 900 !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  margin: 0 !important;
}
@media (min-width: 640px) {
  .VsT25_activeTitle__VsT25 { font-size: 1.25rem !important; }
}

.VsT25_activeDesc__VsT25 {
  font-size: 0.75rem !important;
  color: var(--vs-gold-light) !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

.VsT25_closeBtn__VsT25 {
  background-color: #1e293b !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: 0.75rem !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  transition: background-color 0.2s ease !important;
  margin-top: 0.5rem !important;
  font-family: inherit !important;
}
.VsT25_closeBtn__VsT25:hover {
  background-color: #334155 !important;
}


/* --- ANIMATION CLASSES (ENTRY) --- */
#VideoShowcase_root__VsT25 .VsT25_animate-in__VsT25 {
  opacity: 0 !important;
}

#VideoShowcase_root__VsT25 .VsT25_animate-in__VsT25.VsT25_animated__VsT25 {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

#VideoShowcase_root__VsT25 .VsT25_slide-up__VsT25 {
  transform: translateY(40px) !important;
}

#VideoShowcase_root__VsT25 .VsT25_header__VsT25,
#VideoShowcase_root__VsT25 .VsT25_videoCard__VsT25 {
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), 
              transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: Customer Reviews Module
   Root ID: #CustomerReviewsBita_root__Cr999
   ========================================================================== */

/* Scoped Reset */
#CustomerReviewsBita_root__Cr999,
#CustomerReviewsBita_root__Cr999 *,
#CustomerReviewsBita_root__Cr999 *::before,
#CustomerReviewsBita_root__Cr999 *::after {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#CustomerReviewsBita_root__Cr999 {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, sans-serif !important;
  background-color: #ffffff !important;
  color: #0B1221 !important;
  width: 100% !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  direction: rtl !important;
  text-align: right !important;
  position: relative !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Outer Container */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_container__Cr999 {
  max-width: 80rem !important; /* 1280px */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 640px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_container__Cr999 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_container__Cr999 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* Header Section */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_headerBlock__Cr999 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin-bottom: 2rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding-bottom: 1.5rem !important;
}

@media (min-width: 768px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_headerBlock__Cr999 {
    flex-direction: row !important;
    align-items: flex-end !important;
  }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_topBadge__Cr999 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #f9de97 !important;
  background-color: #0B1221 !important;
  padding: 0.375rem 0.875rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 0.625rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_iconShield__Cr999 {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mainTitle__Cr999 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #0B1221 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.25 !important;
}

@media (min-width: 640px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mainTitle__Cr999 {
    font-size: 1.875rem !important;
  }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_subtitle__Cr999 {
  margin-top: 0.375rem !important;
  color: #475569 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

@media (min-width: 640px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_subtitle__Cr999 {
    font-size: 0.875rem !important;
  }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_openModalBtn__Cr999 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: linear-gradient(135deg, #dac576 0%, #bda162 50%, #b08a49 100%) !important;
  color: #0B1221 !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 1rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  border: 1px solid rgba(249, 222, 151, 0.5) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  align-self: flex-start !important;
}

@media (min-width: 768px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_openModalBtn__Cr999 {
    align-self: auto !important;
  }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_openModalBtn__Cr999:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_iconMessage__Cr999 {
  width: 1rem !important;
  height: 1rem !important;
  stroke-width: 2.5 !important;
  flex-shrink: 0 !important;
}

/* Slider Wrapper */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_sliderWrapper__Cr999 {
  position: relative !important;
}

/* Mobile Top Bar */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mobileTopBar__Cr999 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 0.75rem !important;
  padding: 0 0.25rem !important;
}

@media (min-width: 768px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mobileTopBar__Cr999 {
    display: none !important;
  }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mobileCounterBadge__Cr999 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  background-color: rgba(249, 222, 151, 0.3) !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 9999px !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  color: #0B1221 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_pulseDot__Cr999 {
  width: 0.5rem !important;
  height: 0.5rem !important;
  border-radius: 9999px !important;
  background-color: #b08a49 !important;
  animation: CustomerReviewsBita_pulse__Cr999 2s infinite !important;
}

@keyframes CustomerReviewsBita_pulse__Cr999 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mobileSwipeHint__Cr999 {
  font-size: 0.6875rem !important;
  color: #b08a49 !important;
  font-weight: 500 !important;
  background-color: #f8fafc !important;
  padding: 0.25rem 0.625rem !important;
  border-radius: 9999px !important;
  border: 1px solid #e2e8f0 !important;
}

/* Mobile Floating Side Arrows */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_sideArrow__Cr999 {
  display: flex !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 9999px !important;
  background-color: rgba(11, 18, 33, 0.9) !important;
  color: #f9de97 !important;
  border: 1px solid rgba(176, 138, 73, 0.6) !important;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.2) !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

@media (min-width: 768px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_sideArrow__Cr999 {
    display: none !important;
  }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_sideArrowRight__Cr999 {
  right: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_sideArrowLeft__Cr999 {
  left: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_sideArrow__Cr999:disabled {
  opacity: 0.2 !important;
  pointer-events: none !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_sideArrow__Cr999:active {
  transform: translateY(-50%) scale(0.95) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_arrowIcon__Cr999 {
  width: 1.25rem !important;
  height: 1.25rem !important;
  stroke-width: 2.5 !important;
}

/* Reviews Grid (Mobile Slider / Desktop Grid) */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_grid__Cr999 {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  gap: 1rem !important;
  padding-bottom: 0.75rem !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_grid__Cr999::-webkit-scrollbar {
  display: none !important;
}

/* Review Card */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_card__Cr999 {
  flex: 0 0 100% !important;
  width: 100% !important;
  scroll-snap-align: center !important;
  scroll-snap-stop: always !important;
  background-color: #ffffff !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  border: 2px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 1rem !important;
}

@media (min-width: 768px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_grid__Cr999 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    gap: 1.5rem !important;
    padding-bottom: 0 !important;
  }

  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_card__Cr999 {
    flex: initial !important;
    width: auto !important;
    scroll-snap-align: none !important;
  }
}

/* Mobile Nav Footer */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mobileNavFooter__Cr999 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 1rem !important;
  background-color: #f8fafc !important;
  padding: 0.625rem !important;
  border-radius: 1rem !important;
  border: 1px solid #e2e8f0 !important;
}

@media (min-width: 768px) {
  #CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_mobileNavFooter__Cr999 {
    display: none !important;
  }
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_navFooterPrevBtn__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.75rem !important;
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0B1221 !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_navFooterPrevBtn__Cr999:disabled,
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_navFooterNextBtn__Cr999:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_arrowIconGold__Cr999 {
  width: 1rem !important;
  height: 1rem !important;
  color: #b08a49 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_navFooterNextBtn__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.75rem !important;
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  border: 1px solid rgba(176, 138, 73, 0.5) !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_arrowIconYellow__Cr999 {
  width: 1rem !important;
  height: 1rem !important;
  color: #f9de97 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_dotsGroup__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  padding: 0 0.5rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_dot__Cr999 {
  height: 0.625rem !important;
  width: 0.625rem !important;
  border-radius: 9999px !important;
  background-color: #cbd5e1 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_dotActive__Cr999 {
  width: 1.75rem !important;
  background-color: #b08a49 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_card__Cr999:hover {
  border-color: rgba(176, 138, 73, 0.6) !important;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-3px) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_cardTop__Cr999 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_authorRow__Cr999 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_authorLeft__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_avatarCircle__Cr999 {
  width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: 9999px !important;
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_iconUser__Cr999 {
  width: 1rem !important;
  height: 1rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_authorName__Cr999 {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #0B1221 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_verifiedBadge__Cr999 {
  font-size: 0.625rem !important;
  color: #047857 !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_iconCheckCircle__Cr999 {
  width: 0.75rem !important;
  height: 0.75rem !important;
  stroke-width: 2.5 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_starsRow__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.125rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_iconStar__Cr999 {
  width: 0.875rem !important;
  height: 0.875rem !important;
  fill: #dac576 !important;
  stroke: #b08a49 !important;
  stroke-width: 1 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_selectedTag__Cr999 {
  display: inline-block !important;
  background-color: rgba(249, 222, 151, 0.3) !important;
  color: #0B1221 !important;
  border: 1px solid rgba(218, 197, 118, 0.5) !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  padding: 0.125rem 0.625rem !important;
  border-radius: 0.375rem !important;
  width: fit-content !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_commentText__Cr999 {
  color: #334155 !important;
  font-size: 0.75rem !important;
  line-height: 1.625 !important;
  font-weight: 400 !important;
}

/* Pros and Cons */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_prosBlock__Cr999 {
  padding-top: 0.5rem !important;
  border-top: 1px solid rgba(226, 232, 240, 0.7) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_proItem__Cr999 {
  font-size: 0.6875rem !important;
  color: #065f46 !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_proIcon__Cr999 {
  color: #059669 !important;
  font-weight: 900 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_consBlock__Cr999 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_conItem__Cr999 {
  font-size: 0.6875rem !important;
  color: #78350f !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_conIcon__Cr999 {
  color: #d97706 !important;
  font-weight: 900 !important;
}

/* Card Footer */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_cardFooter__Cr999 {
  padding-top: 0.75rem !important;
  border-top: 1px solid rgba(226, 232, 240, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 0.6875rem !important;
  color: #64748b !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_dateText__Cr999 {
  font-weight: 500 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_likeBtn__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.75rem !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  background-color: #f8fafc !important;
  color: #0B1221 !important;
  border: 1px solid #e2e8f0 !important;
  transition: background-color 0.2s ease, border-color 0.2s ease !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_likeBtn__Cr999:hover {
  background-color: rgba(249, 222, 151, 0.2) !important;
  border-color: #b08a49 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_likeBtn__Cr999.CustomerReviewsBita_liked__Cr999 {
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  border-color: #b08a49 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_iconThumb__Cr999 {
  width: 0.875rem !important;
  height: 0.875rem !important;
  stroke-width: 2 !important;
}

/* Modal Submission Popup */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalBackdrop__Cr999 {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 99999 !important;
  background-color: rgba(11, 18, 33, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  transition: opacity 0.3s ease !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalBackdrop__Cr999.CustomerReviewsBita_open__Cr999 {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalBox__Cr999 {
  background-color: #ffffff !important;
  border-radius: 1.5rem !important;
  max-width: 32rem !important; /* 512px */
  width: 100% !important;
  padding: 1.5rem !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  border: 2px solid rgba(176, 138, 73, 0.4) !important;
  transform: scale(0.95) !important;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalBackdrop__Cr999.CustomerReviewsBita_open__Cr999 .CustomerReviewsBita_modalBox__Cr999 {
  transform: scale(1) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalHeader__Cr999 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding-bottom: 0.75rem !important;
  margin-bottom: 1rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalTitle__Cr999 {
  font-weight: 800 !important;
  color: #0B1221 !important;
  font-size: 0.875rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalCloseBtn__Cr999 {
  color: #94a3b8 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0.25rem !important;
  border-radius: 0.5rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_modalCloseBtn__Cr999:hover {
  color: #0B1221 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_iconX__Cr999 {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

/* Modal Form Controls */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_form__Cr999 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.875rem !important;
  font-size: 0.75rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_formGroup__Cr999 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_label__Cr999 {
  color: #0B1221 !important;
  font-weight: 700 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_labelGreen__Cr999 {
  color: #065f46 !important;
  font-weight: 700 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_labelAmber__Cr999 {
  color: #78350f !important;
  font-weight: 700 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_input__Cr999,
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_textarea__Cr999 {
  width: 100% !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid #e2e8f0 !important;
  font-size: 0.75rem !important;
  color: #0B1221 !important;
  outline: none !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_input__Cr999:focus,
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_textarea__Cr999:focus {
  border-color: #b08a49 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_textareaGreen__Cr999 {
  width: 100% !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid #a7f3d0 !important;
  font-size: 0.75rem !important;
  color: #0B1221 !important;
  outline: none !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_textareaGreen__Cr999:focus {
  border-color: #059669 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_textareaAmber__Cr999 {
  width: 100% !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid #fde68a !important;
  font-size: 0.75rem !important;
  color: #0B1221 !important;
  outline: none !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_textareaAmber__Cr999:focus {
  border-color: #d97706 !important;
}

/* Star Rating Selector in Form */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_starSelectGroup__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_starBtn__Cr999 {
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0.25rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_starSelectIcon__Cr999 {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_filledStar__Cr999 {
  fill: #dac576 !important;
  stroke: #b08a49 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_emptyStar__Cr999 {
  fill: #cbd5e1 !important;
  stroke: #94a3b8 !important;
}

/* Form Action Buttons */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_formActions__Cr999 {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding-top: 0.5rem !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_submitBtn__Cr999 {
  flex: 1 !important;
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  font-weight: 700 !important;
  padding: 0.625rem !important;
  border-radius: 0.75rem !important;
  cursor: pointer !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_submitBtn__Cr999:hover {
  background-color: #131C31 !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_cancelBtn__Cr999 {
  padding: 0.625rem 1rem !important;
  background-color: #f1f5f9 !important;
  color: #334155 !important;
  font-weight: 700 !important;
  border-radius: 0.75rem !important;
  border: none !important;
  cursor: pointer !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_cancelBtn__Cr999:hover {
  background-color: #e2e8f0 !important;
}

/* Entry Animation Classes */
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_animateIn__Cr999 {
  opacity: 0 !important;
  transform: translateY(30px) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_animateIn__Cr999.CustomerReviewsBita_animated__Cr999 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_headerBlock__Cr999,
#CustomerReviewsBita_root__Cr999 .CustomerReviewsBita_card__Cr999 {
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
}
 
/* ==========================================================================
   RenderBox CMS Scoped CSS: Why Choose Us Module
   Root ID: #WhyChooseUs_root__Wc309
   ========================================================================== */

/* Scoped Reset */
#WhyChooseUs_root__Wc309,
#WhyChooseUs_root__Wc309 *,
#WhyChooseUs_root__Wc309 *::before,
#WhyChooseUs_root__Wc309 *::after {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#WhyChooseUs_root__Wc309 {
  font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, &amp;amp;quot;Segoe UI&amp;amp;quot;, Roboto, sans-serif !important;
  background-color: #ffffff !important;
  color: #0B1221 !important;
  width: 100% !important;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  direction: rtl !important;
  text-align: right !important;
  position: relative !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Container */
#WhyChooseUs_root__Wc309 .WhyChooseUs_container__Wc309 {
  max-width: 80rem !important; /* 1280px */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_container__Wc309 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_container__Wc309 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* Top Header Grid */
#WhyChooseUs_root__Wc309 .WhyChooseUs_topHeaderGrid__Wc309 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
  align-items: center !important;
  margin-bottom: 3rem !important;
}

@media (min-width: 1024px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_topHeaderGrid__Wc309 {
    grid-template-columns: repeat(12, 1fr) !important;
  }
  
  #WhyChooseUs_root__Wc309 .WhyChooseUs_topHeaderRight__Wc309 {
    grid-column: span 6 / span 6 !important;
  }
  
  #WhyChooseUs_root__Wc309 .WhyChooseUs_introBox__Wc309 {
    grid-column: span 6 / span 6 !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_topBadge__Wc309 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #f9de97 !important;
  background-color: #0B1221 !important;
  padding: 0.375rem 0.875rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 0.75rem !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_iconBag__Wc309 {
  width: 0.875rem !important;
  height: 0.875rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_mainTitle__Wc309 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #0B1221 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.25 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_mainTitle__Wc309 {
    font-size: 1.875rem !important;
  }
}

@media (min-width: 1024px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_mainTitle__Wc309 {
    font-size: 2.25rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_goldText__Wc309 {
  color: #b08a49 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_introBox__Wc309 {
  background-color: #f8fafc !important;
  border-right: 4px solid #b08a49 !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: 1rem !important;
  border-top: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-left: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03) !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_introText__Wc309 {
  color: #334155 !important;
  font-size: 0.75rem !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_introText__Wc309 {
    font-size: 0.875rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_boldDarkText__Wc309 {
  font-weight: 700 !important;
  color: #0B1221 !important;
}

/* Sub Header Divider Bar */
#WhyChooseUs_root__Wc309 .WhyChooseUs_subHeaderBar__Wc309 {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  margin-bottom: 2rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_subHeaderRight__Wc309 {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_iconSparkles__Wc309 {
  width: 1.25rem !important;
  height: 1.25rem !important;
  color: #b08a49 !important;
  flex-shrink: 0 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_subHeaderTitle__Wc309 {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #0B1221 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_subHeaderTitle__Wc309 {
    font-size: 1.125rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_reasonsBadge__Wc309 {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #0B1221 !important;
  background-color: rgba(249, 222, 151, 0.4) !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 9999px !important;
}

/* 7 Pillars Grid Layout */
#WhyChooseUs_root__Wc309 .WhyChooseUs_grid__Wc309 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
  margin-bottom: 3rem !important;
}

@media (min-width: 768px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_grid__Wc309 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_grid__Wc309 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_card__Wc309 {
  background-color: #ffffff !important;
  border-radius: 1rem !important;
  padding: 1.25rem !important;
  border: 2px solid rgba(226, 232, 240, 0.9) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_card__Wc309:hover {
  border-color: rgba(176, 138, 73, 0.6) !important;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px) !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_cardInner__Wc309 {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_cardHeader__Wc309 {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_pillarTag__Wc309 {
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  padding: 0.125rem 0.625rem !important;
  border-radius: 9999px !important;
  display: inline-block !important;
  margin-bottom: 0.375rem !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_pillarTitle__Wc309 {
  font-weight: 800 !important;
  color: #0B1221 !important;
  font-size: 0.75rem !important;
  line-height: 1.375 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_pillarTitle__Wc309 {
    font-size: 0.875rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_iconBox__Wc309 {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0.75rem !important;
  background-color: #0B1221 !important;
  color: #f9de97 !important;
  border: 1px solid rgba(176, 138, 73, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_pillarIcon__Wc309 {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_pillarDesc__Wc309 {
  color: #475569 !important;
  font-size: 0.75rem !important;
  line-height: 1.625 !important;
  font-weight: 400 !important;
}

/* Bottom Dark Banner */
#WhyChooseUs_root__Wc309 .WhyChooseUs_darkBanner__Wc309 {
  background-color: #0B1221 !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  color: #ffffff !important;
  border: 2px solid rgba(176, 138, 73, 0.4) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 3rem !important;
  position: relative !important;
  overflow: hidden !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_darkBanner__Wc309 {
    padding: 2rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_bannerGlow__Wc309 {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 16rem !important;
  height: 16rem !important;
  background-color: rgba(218, 197, 118, 0.1) !important;
  border-radius: 9999px !important;
  filter: blur(48px) !important;
  pointer-events: none !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_bannerContent__Wc309 {
  position: relative !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
}

@media (min-width: 1024px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_bannerContent__Wc309 {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_bannerTextGroup__Wc309 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  max-width: 48rem !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_bannerBadge__Wc309 {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: #f9de97 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  padding: 0.375rem 0.875rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: fit-content !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_iconCheckCircle__Wc309 {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
  flex-shrink: 0 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_bannerDesc__Wc309 {
  color: #e2e8f0 !important;
  font-size: 0.75rem !important;
  line-height: 1.75 !important;
  font-weight: 400 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_bannerDesc__Wc309 {
    font-size: 0.875rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_bannerActions__Wc309 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  width: 100% !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_bannerActions__Wc309 {
    flex-direction: row !important;
  }
}

@media (min-width: 1024px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_bannerActions__Wc309 {
    width: auto !important;
    flex-shrink: 0 !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_callBtn__Wc309 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  background: linear-gradient(135deg, #dac576 0%, #bda162 50%, #b08a49 100%) !important;
  color: #0B1221 !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 1rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  text-decoration: none !important;
  border: 1px solid rgba(249, 222, 151, 0.5) !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  flex: 1 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_callBtn__Wc309 {
    flex: initial !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_callBtn__Wc309:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15) !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_iconPhone__Wc309 {
  width: 1rem !important;
  height: 1rem !important;
  stroke-width: 2.5 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_supportBtn__Wc309 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  background-color: #131C31 !important;
  color: #f9de97 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(176, 138, 73, 0.5) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  flex: 1 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_supportBtn__Wc309 {
    flex: initial !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_supportBtn__Wc309:hover {
  background-color: #1c2947 !important;
  color: #ffffff !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_iconHeadphones__Wc309 {
  width: 1rem !important;
  height: 1rem !important;
  color: #dac576 !important;
}

/* FAQ Container */
#WhyChooseUs_root__Wc309 .WhyChooseUs_faqContainer__Wc309 {
  max-width: 56rem !important; /* 896px */
  margin-left: auto !important;
  margin-right: auto !important;
  background-color: #f8fafc !important;
  border-radius: 1.5rem !important;
  padding: 1.5rem !important;
  border: 2px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03) !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_faqContainer__Wc309 {
    padding: 2rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqHeader__Wc309 {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqTitle__Wc309 {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #0B1221 !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_faqTitle__Wc309 {
    font-size: 1.125rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqList__Wc309 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqItem__Wc309 {
  background-color: #ffffff !important;
  border-radius: 1rem !important;
  border: 1px solid #e2e8f0 !important;
  overflow: hidden !important;
  transition: border-color 0.2s ease !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqQuestionBtn__Wc309 {
  width: 100% !important;
  text-align: right !important;
  padding: 1rem !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  color: #0B1221 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  transition: color 0.2s ease !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_faqQuestionBtn__Wc309 {
    font-size: 0.875rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqQuestionBtn__Wc309:hover {
  color: #b08a49 !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_iconChevron__Wc309 {
  width: 1rem !important;
  height: 1rem !important;
  color: #b08a49 !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqItem__Wc309.WhyChooseUs_isOpen__Wc309 .WhyChooseUs_iconChevron__Wc309 {
  transform: rotate(180deg) !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqAnswer__Wc309 {
  display: none !important;
  padding: 0 1rem 1rem 1rem !important;
  font-size: 0.75rem !important;
  color: #475569 !important;
  line-height: 1.75 !important;
  border-top: 1px solid #f1f5f9 !important;
  padding-top: 0.75rem !important;
}

@media (min-width: 640px) {
  #WhyChooseUs_root__Wc309 .WhyChooseUs_faqAnswer__Wc309 {
    font-size: 0.875rem !important;
  }
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_faqItem__Wc309.WhyChooseUs_isOpen__Wc309 .WhyChooseUs_faqAnswer__Wc309 {
  display: block !important;
}

/* Entry Animation Classes */
#WhyChooseUs_root__Wc309 .WhyChooseUs_animateIn__Wc309 {
  opacity: 0 !important;
  transform: translateY(30px) !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_animateIn__Wc309.WhyChooseUs_animated__Wc309 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#WhyChooseUs_root__Wc309 .WhyChooseUs_topHeaderGrid__Wc309,
#WhyChooseUs_root__Wc309 .WhyChooseUs_card__Wc309,
#WhyChooseUs_root__Wc309 .WhyChooseUs_darkBanner__Wc309,
#WhyChooseUs_root__Wc309 .WhyChooseUs_faqContainer__Wc309 {
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
}
 
            body{
                position: relative;
            }
            .dno{
                display: none!important;
            }
            .public-header{
                position: relative;
                transition:5s;
            }
            .absolute-container{
                background-color: #ee273a;
                border-radius: 7px;
                position: fixed;
                top: 50%;
                left: 2%;
                transform: translateY(-50%);
                padding: 10px;
                z-index: 4900;
            }
            .social-absolute{
                position: relative;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0, 0, 0, .1);
                box-sizing: content-box;
                width: 24px;
                height: 24px;
            }
            .social-absolute:last-child {
                border-bottom: none !important;
            }
            .social-absolute img{
                width: 24px;
                height: 24px;
            }
            .absolute-tooltip{
                position: relative;
                transition: all 0.5s;
                border-radius: 0 7px 7px 0;
                font-size: 14px;
                overflow: hidden;
                white-space: nowrap;
            }
            .absolute-tooltip > span{
                padding: 10px 20px;
                display: block;
            }
            .tooltip-shake{
                display: block;
                width: 100%;
                height: 100%;
            }
            .tooltip-shake:before,
            .tooltip-shake:after {
                position: absolute;
                content: "";
                opacity: 0;
                transition: all 0.4s ease;
                color: #fff;
                font-weight: bold;
            }
            .tooltip-shake:before {
                content: attr(data-tooltip);
                background: #3c5059;
                width: 0;
                padding: 0;
                font-size: 0.9rem;
                top: 50%;
                left: calc(24px + 32px);
                border-radius: 5px;
                transform: translateY(-50%);
                overflow: hidden;
                white-space: nowrap;
            }
            .tooltip-shake:after {
                border-width: 8px 10px 8px 0;
                border-style: solid;
                border-color: transparent #3c5059 transparent transparent;
                top: 50%;
                left: calc(24px + 24px);
                transform: translateY(-50%);
            }
            .tooltip-shake:hover::before,
            .tooltip-shake:hover::after {
                opacity: 1;
                overflow: hidden;
                white-space: nowrap;
                transform: translate(0, -50%);
            }
            .tooltip-shake:hover::before {
                width: max-content;
                padding: 10px 25px;
            }
            @keyframes shake {
                0% {
                    transform: rotate(2deg);
                }
                50% {
                    transform: rotate(-3deg);
                }
                70% {
                    transform: rotate(3deg);
                }
                100% {
                    transform: rotate(0deg);
                }
            }
            .social-absolute:hover {
                animation: shake 500ms ease-in-out forwards;
            }
            
                .public-header{
                    width: 100%;
                    background: #fff;
                    background-size: auto;
                    background-repeat: no-repeat;
                }
            
            .adv-banner-container{
                width: 100%;
                height: 10px;
            }
            .adv-banner-container .adv-item{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .top-bar-container{
                width: 100%;
                min-height: 40px;
                height: 40px;
                background: #222 ;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-bar{
                width: 1200px;
                height: 100%;
                margin: auto;
                padding: 0 8px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .top-item{
                height: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container{
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container img{
                width: 16px;
                height: 16px;
            }
            .info-container > span{
                display: inline-flex;
            }
            .top-info,
            .top-social{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-social{
                padding: 5px 0;
            }
            .top-social li a img{
                width: 32px;
                height: 32px;
            }
            .top-social li a span{
                font-size: 0px;
                font-weight: 200;
                color: #777;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  0px;
            }
            .top-list:hover{
                color: ;
            }
            
                .top-list:first-child{
                    margin-right : 0;
                }
                .top-list:last-child{
                    margin-left : 0;
                }
            
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-list a span,
            .top-list span{
                color: #777;
                font-weight: bold;
                font-size: 14px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 24px;
                height: 24px;
                object-fit: contain;
            }
            .top-list:first-child a img,
            .top-list:first-child span img{
                margin-right: 0;
            }
            .top-navbar{
                height: 100%;
                background: transparent;
            }
            .top-nav-list{
                position: relative;
                height: 100%;
                padding: 0 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-nav-list a span,
            .top-nav-list span{
                color: #000;
                font-size: 0px;
                font-weight: 200;search
            }
            .top-nav-list:hover{
                background-color: #fff;
            }
            .top-nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .top-nav-list:hover a span,
            .top-nav-list:hover span,
            .top-nav-list:hover .arrow-menu-container svg{
                color: #fff;
                fill: #fff;
            }
            .top-nav-list .icon-title-part{
                padding-left: 5px;
            }
            .top-sub-nav > .top-sub-list a span,
            .top-sub-nav > .top-sub-list span{
                color: #000;
            }
            .top-sub-nav > .top-sub-list:hover a span,
            .top-sub-nav > .top-sub-list:hover span{
                color: #fff;
            }
            
            .top-sub-nav{
                flex-direction: column;
                justify-content: center;
                align-content: flex-start;
                position: absolute;
                z-index: 4999;
                min-width: 150px;
                width: max-content;
                background: #2c3e50;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translateY(-10px) scaleY(0.5);
                transform-origin: top;  
                border-radius: 0;
            }
            .top-nav-list:hover > .top-sub-nav{
                display: flex;
                top: 100%;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
        
                .top-nav-list:hover > .top-sub-nav{
                    right: 0;
                }
                .top-sub-list{
                    border-left: 5px solid  #f00;
                }
            
            .top-sub-list{
                width: 100%;
                padding: 8px 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-sub-list:hover{
                background: #fff;
            }
            .header-container{
                display: grid;
                width: 1200px;
                margin: auto;
                height: auto;
                grid-template-rows: 1fr 1fr;  
                grid-template-columns: 1fr 3fr 1fr;
                grid-template-areas: 
                    "top-1 top-2 top-3"
                    "bottom-1 bottom-2 bottom-3"; 
                padding-top: 8px;
                padding-bottom: 8px;
                padding-left: 8px;
                padding-right: 8px;
            }
            .top-section-1{
                grid-area: top-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-2{
                grid-area: top-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-3{
                grid-area: top-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
            }
            .logo-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 0px  0px;
            }
            .logo-container img{
                display: block;
                width: auto;
                height: auto;
                max-width: auto;
                max-height: auto;
                object-fit: contain;
            }
            .nav-container{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                box-sizing: border-box;
                margin: 0 10px;
            }
            .nav-container > .navbar{
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                background: #222 ;
                box-sizing: border-box;
                border: px  solid  ;
                border-radius: 3px;
            }
            
                .nav-container > .navbar{
                    margin-left: calc(0px + 10px);
                }
            
            .max-height{
                height: 700px;
                overflow-x:hidden;
                overflow-y: auto;
                display:flex!important;
                flex-direction: column!important;
                justify-content: flex-start!important;
            }
            .nav-container .navbar .nav-list{
                padding: 10px 18px;
                min-height: 45px;
                position: relative;
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-content: center;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list.active{
                background-color: ;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: ;
            }
            
            .nav-container .navbar .nav-list .icon-title-part{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .nav-container .navbar .nav-list .icon-title-part img{
                width: 24px;
                height: 24px;
                margin: 0 5px;
            }
            .nav-container .navbar .nav-list .overflow-menu{
                justify-content: center !important;
            }
            .nav-container .navbar .nav-list:hover{
                background-color: ;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list:hover a,
            .nav-container .navbar .nav-list:hover span{
                color:  ;
            }
            .nav-container .navbar .nav-list img{
                width: 32px;
                height: 32px;
            }
            .nav-container .navbar .nav-list a,
            .nav-container .navbar .nav-list span{
                text-decoration: none;
                font-size: 14px;
                color: #fff;
            }
            .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
            .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                display: flex;
                top: 45px;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                display: flex;
                right: calc(100%  +  5px);
                top: 0;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
                    .nav-container .navbar.navbar-sub{
                        position: absolute;
                        z-index: 4999;
                        background: #fff;
                        clip: rect(1px, 1px, 1px, 1px);
                        opacity: 0.1;
                        transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                                    opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                        transform: translateY(-10px) scaleY(0.5);
                        transform-origin: top;  
                        border-radius: 0;
                    }
                    .nav-container .navbar.navbar-sub{
                        flex-direction: column;
                        justify-content: center;
                        align-content: flex-start;
                        min-width: 150px;
                        width: max-content;
                    }
                    .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
                    .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                        right: 0;
                    }
                    .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                        right: calc(100%  +  5px);
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width:200px;
                        border-left: 5px solid red;
                    }
                
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-icon-menu.arrow-bottom{
                transform: rotate(90deg);
            }
            
                .arrow-menu-container{
                    margin-right: 5px;
                }
                .arrow-icon-menu.arrow-right,
                .overflow-list .arrow-icon-menu.arrow-bottom{
                    transform: rotate(180deg);
                }
                .nav-container .navbar .nav-list:first-child:hover{
                    border-radius: 0 3px 3px 0;
                }
                .nav-container .navbar .nav-list:last-child:hover{
                    border-radius: 3px 0 0 3px;
                }
            
            .nav-container .navbar .nav-list.base-level svg,
            .nav-container .navbar .nav-list .overflow-menu svg{
                fill: #fff;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: ;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                background-color: #fff;
                color: #fff;
                top: 32px;
                right: 0;
                z-index: 4999;
               /* display: none;*/
            } 
            /*.sub-navbar{
                width: 100%;
                height: 100%;
            }*/
            .nav-container .navbar.navbar-sub .nav-list img{
                width: 16px;
                height: 16px;
            }
            .nav-container .navbar.navbar-sub .nav-list a,
            .nav-container .navbar.navbar-sub .nav-list span{
                color: #000;
                font-size: 12px;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .active{
                background-color: ;
            }
            .active a{
                color: ;
            }     
            .icon-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
            }
            .icon-container .icon-item{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
                box-sizing: border-box;
                min-height: 45px;
                margin: 0 5px;
            }
            
                .icon-container .icon-item:first-child{
                    margin-right: 0 !important;
                }
                .icon-container .icon-item:last-child{
                    margin-left: 0 !important;
                }
                
            
            .icon-container .icon-item a{
                border: 0px  solid  ;
            }
            .icon-container .icon-item.basket-icon{
                position: relative;
                color: #e84118;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-decoration: none;
                margin: 0 10px;
            }
            .icon-container .icon-item .icon-shortcut{
                color: #e84118;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: .4s;
                cursor: pointer;
                text-decoration: none;
            }
            
            .basket-shop{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 45px;
                height: 45px;
                border-radius: 3px;
            }
            .icon-container .icon-item .icon-shortcut:hover svg,
            .icon-container .icon-item .icon-shortcut:hover .add-item-to-cart.open span
            {
                fill: #fff;
                color: #fff;
            }
            
                .icon-container .icon-item.basket-icon .add-item-to-cart{
                    color: #e84118;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .4s;
                    cursor: pointer;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                
                    .icon-container .icon-item.basket-icon .add-item-to-cart{
                        border-left: none !important;
                    }
                    .border-basket{
                        border-right: none !important;
                    }
                
                    .icon-container .icon-item:hover > span,
                    .icon-container .icon-item.login-icon:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover,
                    .icon-container .icon-item.login-icon .icon-shortcut:hover,
                    
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover .add-item-to-cart{
                       background: #3e5772;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open{
                        width: 45px;
                        border-radius: 0 3px 3px 0;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                    }
                    .icon-container .icon-item.basket-icon:hover .add-item-to-cart.open{
                        background: #3e5772;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open + .icon-shortcut{
                        border-radius: 3px 0 0 3px;
                    }
                    .icon-container .icon-item.lang-icon .icon-shortcut:hover{
                        background: #3e5772;
                    }
                    .icon-container .icon-item.search-icon .icon-shortcut .search-container .search-btn:hover{
                        background: #3e5772;
                    }
                 
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #e84118;
            
            }
            .icon-container .icon-item.login-icon{
                position: relative;
            }
            /*.icon-container .icon-item.login-icon .icon-shortcut{
                width: 100%;
                height: 100%;
            }*/
            .icon-container .icon-item.login-icon .icon-login{
                width: 25px;
                height: 25px;
            }
            #div_profile_picture, 
            #div_profile_picture_metro {
                display: block;
                width: 0 !important;
                height: 0 !important;
                line-height: unset !important;
            }
            #div_profile_picture .rShowLogin{
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 0;
                z-index: -1000;
            }
            #div_profile_picture .login-container{
                display: none !important;
            }
            #div_profile_picture #profile_picture,
            #div_profile_picture #profile_exit{
                display: none !important;
            }
        
                .icon-container .icon-item.login-icon{
                    color: #e84118;
                    /*width: 90px !important;*/
                    min-height: 45px;
                    outline: none;
                    border-radius: 3px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-decoration: none;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                .icon-container .icon-item.login-icon .status-user,
                .icon-container .icon-item.login-icon .icon-login{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 5px;
                    font-size:14px;
                }
            
            .public-header .bottom-section-1{
                grid-area: bottom-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-2{
                grid-area: bottom-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-3{
                grid-area: bottom-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            
                .icon-container .icon-item{
                    width: unset;
                    height: unset;
                }
                .search-icon{
                    position: relative;
                }
                .search-container {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-end;
                    align-items: center;
                    height: 100%;
                    position: relative;
                    border-radius: 3px;
                    min-width: 45px;
                }
                .search-container > .search-btn svg,
                .search-container > .close-search-btn svg{
                    fill: #e84118;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #fff;
                }
                .search-btn {
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .8s;
                    cursor: pointer;
                    text-decoration: none;
                    border: 0px  solid  transparent;
                }
                
                .icon-container .icon-item img{
                    width: 25px;
                    height: 25px;
                    object-fit:contain;
                }
                
                    .search-container.open-search-box .search-btn{
                        border-radius: 3px 0 0 3px !important;
                    }
                    .search-container.open-search-box .close-search-btn{
                        border-radius: 0 3px 3px 0 !important;
                    }
                 
                .search-btn,
                .search-command,
                .close-search-btn{
                    box-sizing: content-box;
                }
                .search-btn > svg {
                    fill: #fff;
                }
                .cls-pls::placeholder{
                    color: ;
                }
                .search-input {
                    padding: 0;
                    height: 100%;
                    background: #2c3e50;
                    color: #fff;
                    font-size: 14px;
                    font-weight: normal;
                    transition: all 1s ease-in-out;
                    width: 0;
                    position: absolute;
                    top: 0;
                    overflow: hidden;
                    white-space: nowrap;
                    border: 0px  solid  transparent;
                }
                
                .open-search-box > .search-input{
                    padding : 10px 48px;
                }
                
                    .search-input {
                        left: calc(0px + 45px);
                        border-right: none;
                        border-left: none;
                    }
                
                        .search-container.open-search-box .search-btn{
                            border-radius: 3px 0 0 3px !important;
                        }
                        .search-container.open-search-box .close-search-btn{
                            border-radius: 0 3px 3px 0 !important;
                        }
                        .search-container.open-search-box .search-input{
                            border-radius: 0 3px 3px 0 !important;
                        }
                    
                .close-search-btn{
                    position: absolute;
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    box-sizing: border-box;
                    box-sizing: border-box;
                }
                .close-search-btn svg{
                    fill: #e84118;
                }
            
            .sticky{
                width: 100vw;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 999;
                padding: 2vh 8vw;
                transition: .8s;
                background-color: #ddd !important;
            }
            .public_sticky{
                width: 100%;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 1001;
            }
            .d-none{
                display: none !important;
            }
            .border-left-n{
                border-left: none !important;
            }
            .border-right-n{
                border-right: none !important;
            }
            .w-1200px{
                width: 1200px !important;
                margin: auto;
            }
            .lang-icon{
                position: relative;
            }
            .language-container .lang-btn{
                width: 25px;
                height: 25px;
            }
            .lang-list-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .lang-list{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .lang-list::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
            .lang-nav{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .lang-nav .lang-li{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                list-style: none;
                width: max-content;
                margin: 5px 0;
                
            }
            .lang-nav .lang-li a{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .lang-nav .lang-li img{
                width: 25px;
                height: 25px;
                object-fit: cover;
                margin: 0 4px;
            }
            .lang-nav .lang-li span{
                text-transform: uppercase;
                line-height: 2.5;
                font-size: 14px;
                margin: 0 4px;
                color: #fff;
            }
            .lang-nav .lang-li a{
                color: #fff;
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
                color: #fff;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
                color: #e84118;
            }
            .icon-item.lang-icon:hover .lang-list-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            /*---------------------------------------------------------------------------------*/
            .link-profile-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .link-profile-container .link-wrapper{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px 25px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .link-profile-container .link-wrapper a{
                color: #fff;
            }
            .link-profile-container .link-wrapper a:hover{
                cursor: pointer;
                color: #fff;
            }
            .link-profile-container .link-wrapper::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
             .icon-item.login-icon:hover .link-profile-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: 600ms;
                right: 25px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: 50%;
                border: 1px  solid  #000;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #777 ;
            }
            #back_to_top svg{
                width: 24px;
                height: 24px;
                fill: #fff ;
            }
            #back_to_top img{
                width: 24px;
                height: 24px;
                fill: #fff ;
                object-fit:contain;
            }
            .search-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .basket-shop img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .lang-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .icon-login img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
        
                    .header-container{
                        grid-template-rows: 1fr;  
                        grid-template-columns: auto minmax(auto, 100%) 1fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"; 
                    }
                    .top-section-1{
                        justify-content: flex-start;
                    }
                    .top-section-2{
                        justify-content: flex-start;
                    }
                    .logo-container{
                        justify-content: flex-start;
                    }
                    .nav-container{
                        justify-content: flex-start;
                    }
                    .nav-container .navbar{
                        justify-content: flex-start;
                    }
                    .width-full{
                        width: 100% !important;
                    }
                #module_footer_section_6{
;
width:100%;
padding-top:4vw;
padding-right:4vw;
padding-bottom:4vw;
padding-left:4vw;
border-style:none;
}#module_footer_column_14{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_row_37{
;
margin-top:0px;
border-style:none;
}#module_footer_items_48{
;
cursor:default;
width:14vw;
height:5vw;
font-weight:400;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_48:hover{
;
}#module_footer_column_15{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_items_49{
;
cursor:default;
line-height:1.5vw;
color:#FFF;
font-weight:bold;
font-size:1.05vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_49:hover{
;
}#module_footer_row_39{
;
padding-top:1.5vw;
border-style:none;
}#module_footer_items_50{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_50:hover{
;
}#module_footer_row_41{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_52{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_52:hover{
;
}#module_footer_row_40{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_51{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_51:hover{
;
}#module_footer_column_16{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_items_53{
;
cursor:default;
line-height:1.5vw;
color:#FFF;
font-weight:bold;
font-size:1.05vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_53:hover{
;
}#module_footer_row_43{
;
padding-top:1.5vw;
border-style:none;
}#module_footer_items_54{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_54:hover{
;
}#module_footer_row_44{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_55{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_55:hover{
;
}#module_footer_row_45{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_56{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_56:hover{
;
}#module_footer_column_17{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_items_58{
;
cursor:default;
line-height:1.5vw;
color:#FFF;
font-weight:bold;
font-size:1.05vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_58:hover{
;
}#module_footer_row_48{
;
padding-top:1.5vw;
border-style:none;
}#module_footer_items_59{
;
cursor:default;
line-height:1.2vw;
color:#FFF;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_59:hover{
;
}#module_footer_row_49{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_60{
;
cursor:default;
line-height:1.2vw;
color:#fff;
font-weight:500;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_60:hover{
;
}#module_footer_row_71{
;
justify-content:center;
padding-top:1vw;
padding-bottom:1vw;
border-style:solid;
border-top-width:0.15vw;
border-color:#fff;
}#module_footer_items_86{
;
cursor:default;
text-align:center;
line-height:1.5vw;
color:#fff;
font-weight:400;
font-size:.9vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_86:hover{
;
}#public_footer_main_4{;background-color:#000000;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_4:hover{;}#public_footer_main_4{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_4 > div{
                    position:relative;
                    z-index:12;
                }
                #public_footer_main_4 
            
            #public_footer_main_4 .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #public_footer_main_4 .layer_first_child {
                width: 100%;
            }
        
            #public_footer_main_4:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #msg_footer.msg_footer,
            #msg_footer_complete.msg_footer{
                position: fixed;
                top: 50px;
                right: 10px;
                width: 400px;
                height: 50px;
                z-index: 10000;
                border-radius: 3px;
            }

            #msg_footer .d_flex,
            #msg_footer_complete .d_flex{
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                height: 100%;
                padding: 0 15px;
            }

            #msg_footer.green_msg_footer {
                background-color: #d4edda;
                border: 1px solid #c3e6cb;
                color: #155724;
            }

            #msg_footer.red_msg_footer,
            #msg_footer_complete.red_msg_footer{
                background-color: #f8d7da;
                border: 1px solid #f5c6cb;
                color: #721c24;
            }

            #msg_footer .close_msg,
            #msg_footer_complete .close_msg{
                cursor: pointer;
                font-size: 25px;
                padding-right: 15px;
            }

            #msg_footer .close_msg:hover,
            #msg_footer_complete .close_msg:hover{
                color: #000;
            }
            
            .border_red{
                border: 1px solid #e20000;
            }
            footer a{
                color: inherit;
            }
        
            #body_popup_1,#body_popup_2{
                position:fixed;
                display:flex;
                text-align:center;
                top:0;
                bottom:0;
                right:0;
                left:0;
                z-index:99999;
                visibility:hidden;
                opacity: 0;
                background:rgba(0,0,0,0.5);
            }
            #body_popup_1.open-popup,#body_popup_2.open-popup{
                visibility:visible;
                opacity: 1;
            }
            #body_popup_1 > div,#body_popup_2 > div{
                display:block;
                background:#fff;
                padding:10px;
                margin:auto;
                transform:translateY(-150px);
                -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                text-align:center;
                border-radius:10px;
                position:relative;
                z-index:999999;
            }
            #body_popup_1.open-popup > div,#body_popup_1.open-popup > div{
                transform:translateY(0);
            }
            #body_popup_1 .icon-close-popup{
                position:absolute;
                font-size:30px;
                height:30px;
                width:30px;
                border-radius:50%;
                color:red;
                top:-10px;
                right:-10px;
                background-color:transparent;
                z-index:9999;
            }
            #body_popup_1 .icon-close-popup i{
                position:absolute;
                top:0;
                right:0;
            }
            #body_popup_1 .container-html{
                height:100%;
                overflow:auto;
                max-height:90vh;
            }
            #body_popup_1 .container-html::-webkit-scrollbar{
                width:5px;
                height:100%;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-track{
                background-color:transparent;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-thumb{
                background-color:#777;
                border-radius:20%;
            }
            #body_popup_1 .icon-close-popup{
                color:#fff;
                top:0;
                right:0;
            }
            #module_waiting_box{
                position:fixed;
                background:rgba(256,256,256,0.8);
                width:100%;
                height:100%;
                -webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;transition:.3s;
                top:0;
                right:0;
                opacity:0;
                z-index:9999999999999;
                visibility:hidden;
            }
            #module_waiting_box.show-waiting{
                visibility:visible;
                opacity:1;
            }
            #module_waiting_box .spinner {
              margin: 100px auto 0;
              width: 70px;
              text-align: center;
            }
            
            #module_waiting_box .spinner > div {
              width: 18px;
              height: 18px;
              background-color: #333;
              border-radius: 100%;
              display: inline-block;
              -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
              animation: sk-bouncedelay 1.4s infinite ease-in-out both;
            }
            
            #module_waiting_box .spinner .bounce1 {
              -webkit-animation-delay: -0.35s;
              animation-delay: -0.35s;
            }
            
            #module_waiting_box .spinner .bounce2 {
              -webkit-animation-delay: -0.16s;
              animation-delay: -0.16s;
            }
            
            @-webkit-keyframes sk-bouncedelay {
              0%, 95%, 100% { -webkit-transform: scale(0) }
              50% { -webkit-transform: scale(1.0) }
            }
            
            @keyframes sk-bouncedelay {
              0%, 95%, 100% { 
                -webkit-transform: scale(0);
                transform: scale(0);
              } 50% { 
                -webkit-transform: scale(1.0);
                transform: scale(1.0);
              }
            }
        body{direction: rtl;text-align: right;}