@font-face {
  font-family: vazir;
  src: url(/fonts/Vazir-Medium.ttf);
}

.related-products {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 0px 10px;
  padding: 20px 0px;
}

.product-page {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 5%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 40px auto;
  max-width: 1200px;
  max-height: 600px;
}

.product-slider {
  margin: 20px 60px;
}

.product-gallery {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-details {
  flex: 1 1 400px;
}

.product-card {
  margin: 20px;
}

h1 {
  font-size: 1.8rem;
  margin: 8px 0;
  color: #222;
}

.description {
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.price-section {
  margin-bottom: 20px;
}

.price {
  color: #e53935;
  font-weight: bold;
}

.old-price {
  position: relative;
  bottom: 10px;
  text-decoration: line-through;
  color: #999;
}

.new-price {
  font-weight: bold;
  color: #e53935;
}

.discount-badge {
  background: #ff5252;
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-right: 8px;
}

.btn-add {
  background: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-add:hover {
  background: #0056b3;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px auto;
  width: 90%;
}

.product-related-img {
  width: 40px;
  height: 30px;
  margin: -13px -20px;
}

/*! !*/
.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  direction: rtl;
  animation: pop 0.5s ease forwards;
}
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* کل گالری */
.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

/* wrapper تصویر اصلی */
.main-image-wrapper {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  margin: 0px 0px 20px 0px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.main-image {
  width: 100%;
  height: 100%;
}

/* navigation دکمه‌ها */
.nav-btn {
  position: absolute;
  top: 89%;
  transform: translateY(-50%);
  background-color: white;
  color: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.2s ease-in;
  z-index: 2;
}

.nav-btn:hover {
  color: rgba(0, 0, 0, 1);
}

.prev-btn {
  right: 285px;
}

.next-btn {
  right: -5px;
}

/* gallery thumbnails */
.gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumb,
.gallery-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border 0.2s, transform 0.2s;
}

.thumb:hover,
.gallery-thumbs img:hover {
  transform: scale(1.05);
  border-color: #007bff;
}

.product-info {
  padding: 1rem;
  margin-top: -30px;
  text-align: center;
}

.product-title-fa {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  position: relative;
  bottom: 34px;
  text-align: center;
  background: #e60023;
  color: white;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 10px;
}

.product-title-en {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 1rem;
}

.product-description {
  margin-top: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: start;
}

.product-description span {
  font-size: 17px;
  font-weight: bold;
  position: relative;
  left: 20px;
}

.product-buybox {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fafafa;
  box-shadow: 0px 0px 6px #ff3b30;
  text-align: center;
  margin: 30px 0px 0px 0px;
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.product-benefits span {
  margin-left: 7px;
}

#circle-check {
  color: green;
}
#truck-fast {
  color: #e60023;
}
#warehouse-full {
  color: #007bff;
}

.product-pricing {
  position: relative;
  text-align: center;
  margin: 20px 0px 0px 0px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.new-price {
  color: #e60023;
  font-weight: bold;
}

.discount-badge-box {
  display: inline-block;
  background: #ff3b30;
  color: #fff;
  padding: 3px 7px;
  font-size: 0.85rem;
  position: absolute;
  top: -261px;
  left: 100px;
  border-radius: 10px 10px 0px 0px;
}

.add-to-cart-btn-buybox {
  background-color: #74c69d;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  margin-top: 10px;
  transition: 0.2s ease-in;
}

.add-to-cart-btn-buybox:hover {
  background-color: white;
  color: black;
  border: 1px solid black;
}

.product-visit {
  background-color: #74c69d;
  display: inline-block;
  position: relative;
  bottom: 20px;
  padding: 8px 20px;
  color: white;
  border-radius: 15px;
  margin: 0px 0px 5px 0px;
}

.product-visit-icon {
  color: red;
  margin: 0px 0px 0px 5px;
}

.product-visit-number {
  border-bottom: 1px solid red;
}

.product-sku {
  background-color: #8a8989;
  display: inline-block;
  position: relative;
  bottom: 20px;
  padding: 8px;
  color: white;
  border-radius: 20px;
}

/*! !*/
.product-description {
  background-color: #fafafa;
  text-align: center;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.product-slider-h2 {
  padding: 0px;
}

.product-description > span {
  display: block;
  text-align: start;
  font-weight: 600;
  color: #333;
  margin-right: 10px;
}

.product-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.product-description li {
  position: relative;
  display: block;
  text-align: start;
  padding: 8px 25px 8px 28px;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 250px;
  max-width: 100%;
}

.product-description li:last-child {
  border-bottom: none;
}

.product-description li::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 14px;
  width: 8px;
  height: 8px;
  background-color: #007bff;
  border-radius: 50%;
}

/*! Product Tabs !*/
.product-tabs {
  margin-top: 30px;
  background: var(--bubble);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 60px;
}

.tabs {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 5px;
}

.tab-btn {
  font-family: vazir;
  padding: 10px 18px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--light);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  animation: fade 0.3s ease;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-p {
  border: 1px solid red;
  border-radius: 10px;
  padding: 50px;
}

.tab-content h3 {
  margin: 10px 0px 20px 0px;
  cursor: default;
}
.tab-content h3 svg {
  color: blue;
  font-size: 15px;
}

/*! General Tab Container !*/
.tab-content {
  display: none;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Specs Box ---------- */
.T-tab-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin: 25px 0;
}

/* ---------- Section Titles ---------- */
.T-tab-box-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #222;
}

.T-box-title-bottom {
  font-size: 13px;
  color: #555;
  margin-bottom: 25px;
  font-weight: 500;
}

/* ---------- Subsection ---------- */
.T-tab-box-title-T {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin: 25px 0 10px;
  cursor: default;
  transition: color 0.3s;
}

.T-tab-box-title-T svg {
  color: #0088cc;
  margin-left: 8px;
  transition: transform 0.3s;
}

.T-tab-box-title-T:hover svg {
  transform: translateX(-3px);
}

/* ---------- Spec List ---------- */
.tab-box-text {
  display: grid;
  grid-template-columns: 25% 1fr;
  row-gap: 10px;
  column-gap: 10px;
  padding: 10px 20px;
  border: 2px solid rgba(0, 136, 204, 0.1);
  border-radius: 10px;
}

.tab-item {
  display: contents;
}

/* ---------- Key / Value Cells ---------- */
.tab-box-titleText {
  background: rgba(0, 136, 204, 0.05);
  color: #222;
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: 0px 6px 6px 0px;
  text-align: start;
}

.tab-box-TText {
  background: rgba(0, 136, 204, 0.03);
  color: #333;
  font-size: 14px;
  padding: 12px;
  border-radius: 6px 0 0 6px;
  text-align: start;
  word-break: break-word;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .tab-box-titleText,
  .tab-box-TText {
    width: 100%;
    border-radius: 6px;
  }
}

/*! Review Item !*/
.review-item {
  background: #fff;
  padding: 40px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff, #74c69d);
}

.review-replies {
  margin: 20px 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
}

.date-replies {
  display: block;
  position: absolute;
  left: -10px;
}

.reply-item {
  position: relative;
}
.reply-item strong {
  position: absolute;
  top: -15px;
  right: 0px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.review-header-text {
  padding: 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin: 20px 300px;
  border-radius: 10px;
  text-align: center;
  white-space: pre-line;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  line-height: 1.8;
}

.admin-reply {
  background: #f8f8f8;
  padding: 8px;
  border-right: 3px solid #e91e63;
  margin-top: 8px;
  border-radius: 5px;
}
.review-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 15px 15px 15px 0px;
  padding: 20px;
  width: 80%;
  min-height: 200px;
  max-height: 300px;
  resize: vertical;
  outline: none;
}

#submit-review {
  cursor: pointer;
  border: 1px solid black;
  border-radius: 10px;
  background-color: black;
  color: white;
  padding: 10px;
  margin: 20px 0px 0px 0px;
  font-size: 15px;
  transition: 0.3s ease-out;
}
#submit-review:hover {
  border: 1px solid green;
  background-color: white;
  color: green;
}

.submit-review {
  background: #ff3b47;
  color: #fff;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/** Review Stars **/
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
  margin: -30px 0px;
}

.review-stars .fa-star {
  font-size: 18px;
  color: #ccc;
}

.review-stars .fa-star.filled {
  color: gold;
}

.date {
  top: 10px;
  position: absolute;
  right: 45%;
}

/*! Review Form !*/
.review-form {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 0px auto;
  padding: 20px 0px;
  width: 70%;
  max-width: 700px;
}

/** Rating Stars **/
.rating-box {
  margin: 10px auto;
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 23px;
  cursor: pointer;
}

.stars {
  display: flex;
  gap: 6px;
  cursor: pointer;
  margin-top: 5px;
}

.stars i {
  font-size: 26px;
  color: #ccc;
  transition: color 0.2s;
  cursor: pointer;
}

.stars i.hover,
.stars i.active {
  color: gold;
}

.login-review {
  color: red;
  transition: 0.2s ease-in;
}
.login-review:hover {
  color: #74c69d;
}

/*! !*/
.bottom-icons {
  margin: -20px 70px 0px 70px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  padding: 20px 10px;
  background: #fff;
}

.icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  gap: 10px;
}

.icon-item i {
  font-size: 40px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon-item p {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
  font-size: 14px;
}

#icon {
  font-size: 40px;
}

/* افکت hover زیبا */
.icon-item:hover i {
  transform: translateY(-5px);
  opacity: 0.9;
}

/* واکنش‌گرا برای موبایل */
@media (max-width: 768px) {
  .icon-item {
    width: 45%;
    margin-bottom: 15px;
  }
}

/*! Product View !*/
.top-viewed-products {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 10px;
}

.top-viewed-products h2 {
  margin: 20px;
  border-bottom: 2px solid #ea2027;
  display: inline-block;
}

.product-section-mobile {
  display: none;
}

/*! ============================= !*/
/*!           Responsive           !*/
/*! ============================= !*/

@media (max-width: 992px) {
  .slider-container {
    height: 350px;
    width: 95%;
  }

  .product-card {
    width: 220px;
    height: 330px;
  }

  .product-slider,
  .product-slider-top {
    padding: 15px;
    gap: 15px;
  }
}

/* تبلت */
@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }

  .prev,
  .next {
    padding: 8px;
    font-size: 14px;
  }

  .product-card {
    width: 200px;
    height: 310px;
  }

  .product-card img {
    height: 150px;
  }

  .product-slider,
  .product-slider-top {
    padding: 10px 20px;
    gap: 10px;
  }

  .btn-edit,
  .btn-delete {
    top: -130px;
  }
}

/* موبایل */
@media (max-width: 576px) {
  .slider-container {
    height: 220px;
    margin-top: 30px;
  }

  .wave-indicator svg {
    width: 130px;
    height: 45px;
  }

  .dot {
    width: 5px;
    height: 10px;
  }

  .product-card {
    width: 160px;
    height: 270px;
    margin: 5px;
  }

  .product-card img {
    height: 120px;
  }

  .product-card-title {
    font-size: 0.9rem;
  }

  .btn-edit,
  .btn-delete {
    top: -110px;
  }

  .prev-product,
  .next-product {
    padding: 7px;
    font-size: 16px;
    margin: 0 10px;
  }

  .product-slider,
  .product-slider-top {
    margin: 15px;
    padding: 20px 60px;
    display: block;
  }

  .product-slider-top {
    display: block;
    padding: 10px 50px;
    margin: 20px;
    text-align: center;
  }
}

/* موبایل خیلی کوچک */
@media (max-width: 400px) {
  .slider-container {
    height: 180px;
  }

  .product-card {
    width: 220px;
    height: 260px;
    margin: 20px 0px;
  }

  .product-card img {
    height: 110px;
  }

  .btn-edit,
  .btn-delete {
    display: none;
  }

  .product-slider .add-to-cart-btn,
  .product-slider-top .add-to-cart-btn {
    margin: 20px 0px 0px 0px;
  }
}

@media (max-width: 766px) {
  .product-page,
  .bottom-icons {
    display: none;
  }

  #hr {
    margin: 0px 20px;
  }

  .ticket-btn {
    display: block;
  }

  .product-section-mobile {
    display: block;
  }

  .menu-wrapper {
    display: block;
  }

  .menu-back {
    position: absolute;
    top: 0px;
    height: 50px;
    right: 0;
    left: 0;
    color: rgba(0, 0, 0, 0);
    background-color: #2ec4b6;
  }

  .mobile-header2 {
    margin: 20px;
    height: 70px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1000;
  }

  .menu-btn2,
  .profile-btn2 {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: #008376;
  }

  .profile-btn2 {
    position: relative;
    top: 20px;
    right: 20px;
  }

  .logo2 img {
    margin-top: 10px;
    width: 170px;
  }

  .profile-img {
    width: 50px;
    height: 50px;
    margin-top: -10px;
  }
  .profile-h2 {
    color: #008376;
    font-size: 10px;
    position: relative;
    bottom: 17px;
    left: 10px;
  }

  /** side menu **/
  .side-menu {
    position: fixed;
    overflow: hidden;
    display: block;
    top: 100px;
    right: -770px;
    width: 60%;
    height: 350px;
    background-color: white;
    border-radius: 15px;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .side-menu.active {
    right: 20px;
  }

  .side-menu ul {
    list-style: none;
    padding: 0;
  }

  .side-menu li {
    margin: 20px 10px;
    cursor: pointer;
  }

  .side-menu li i {
    margin: 0px 10px;
    color: blue;
  }

  .has-submenu ul.submenu2 {
    padding-right: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .has-submenu.open .submenu2 {
    max-height: 500px;
  }

  .has-submenu div i:last-child {
    transition: transform 0.4s ease-in-out;
  }

  .has-submenu.open div i:last-child {
    transform: rotate(180deg);
  }

  /** social icons **/
  .social-icons {
    position: fixed;
    display: block;
    overflow: hidden;
    box-shadow: 0px 0px 8px 0px black;
    background-color: white;
    border-radius: 10px;
    width: 50px;
    left: -80px;
    top: 180px;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .social-icons.active {
    left: 10px;
  }

  .social-icons a {
    padding: 10px 2px;
    display: block;
    width: 40px;
    height: 30px;
    overflow: hidden;
    display: table;
    margin-left: auto;
    margin-right: 10px;
  }
  .social-icons .fa-brands {
    font-size: 24px;
  }

  .social-icons2 {
    position: fixed;
    box-shadow: 0px 0px 8px 0px black;
    background-color: white;
    border-radius: 10px;
    width: 50px;
    left: -80px;
    top: 180px;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  .social-icons2.active {
    left: 10px;
  }

  /** bottom buttons**/
  .bottom-buttons2 {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 90%;
    height: 56px;
    padding: 10px 30px;
    margin: 0px 20px;
    margin-left: 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
  }
  .bottom-buttons2.active {
    transform: translateY(10px);
    opacity: 0;
  }

  .bottom-buttons2 span {
    position: absolute;
    color: rgba(0, 0, 0, 0.9);
    font-size: 10px;
    width: 60px;
    top: 30px;
    margin-right: -20px;
  }

  .bottom-buttons2 a {
    cursor: pointer;
    color: #008376;
  }

  /** background **/
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /** submenu page **/
  .submenu-page {
    position: fixed;
    top: 100px;
    right: -770%;
    width: 60%;
    height: 350px;
    background-color: white;
    border-radius: 15px;
    z-index: 1100;
    transition: right 0.3s ease;
    padding: 20px;
  }

  .submenu-page.active {
    right: 20px;
  }

  .submenu-page .submenu-li {
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  .submenu-page .submenu-li:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }

  .submenu-header {
    cursor: pointer;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .submenu-header i {
    color: rgba(0, 0, 0, 0.3);
    margin-left: 10px;
  }

  #nintendo img {
    margin-right: 10px;
  }

  #has-submenu-last-i {
    color: rgba(0, 0, 0, 0.5);
  }

  /** slider **/
  .slider-container2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 200px;
  }
  .slider2 {
    height: 200px;
    border-radius: 15px;
  }
  .slide2 img {
    display: block;
    overflow: hidden;
    width: 25%;
    border-radius: 15px;
    height: 200px;
  }

  .wave-indicator {
    position: absolute;
    top: -10px;
    right: -260px;
    width: 600px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .wave-indicator svg {
    position: relative;
    top: -60px;
    right: 20px;
    width: 200px;
    height: 70px;
    border: none;
    outline: none;
  }

  .wave-dots {
    position: relative;
    top: -100px;
    right: 20px;
    display: flex;
    gap: 5px;
  }

  .dot {
    cursor: pointer;
    width: 5px;
    height: 10px;
    background: lightgray;
    border-radius: 50px;
    transition: all 0.1s ease-in;
  }

  .dot.active {
    height: 17px;
    transform: translateY(-4px);
    width: 5px;
    background: linear-gradient(56deg, #f72585, #071a52);
  }

  /**  **/
  .product-gallery {
    padding: 5px;
  }

  .main-image-wrapper {
    max-height: 300px;
    margin: 20px;
    width: 350px;
  }

  #mobile-prevBtn {
    right: 330px;
    top: 510px;
  }
  #mobile-nextBtn {
    right: 25px;
    top: 510px;
  }

  .main-image {
    border-radius: 10px;
  }

  .nav-btn {
    padding: 4px 6px;
  }

  .thumb {
    width: 55px;
    height: 55px;
  }

  /*! Products slider !*/
  .product-sec-new {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 15px;
    border-radius: 15px;
    padding: 20px 10px;
    font-size: 15px;
  }

  .product-title {
    padding: 10px 30px;
    padding-bottom: 20px;
  }

  .product-title span {
    cursor: pointer;
    font-size: 20px;
    color: #2f3542;
    border-bottom: 2px solid #ea2027;
  }

  .shaping-card {
    text-align: center;
    box-shadow: 0px 2px 8px 0px #2f3542;
    margin: 10px 15px;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease-in;
  }
  .shaping-card:hover {
    transform: translateY(0);
    box-shadow: 0px 2px 10px 0px rgb(0, 0, 0);
  }
  .left-n {
    margin-top: 15px;
  }
  .left-n i {
    color: red;
  }
  .left-n span {
    color: rgba(0, 0, 0, 0.6);
  }

  .img-sec {
    position: relative;
  }

  .img-sec .img-gaming-box {
    box-shadow: 0px 2px 8px 0px #2f3542;
    padding: 10px;
    border-radius: 10px;
    width: 220px;
    height: 200px;
    margin: 10px 0 0 0;
  }

  .Specifications {
    background-color: #3742fa;
    color: #f8f9fa;
    padding: 7px 7px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -10px;
    top: 30px;
    font-size: 0.9em;
  }

  #DualSense-Specifications {
    background-color: #eb0027;
  }

  .title {
    color: #2f3542;
    font-weight: bold;
    margin: 15px;
  }

  .price {
    color: #2f3542;
    text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.87);
    font-weight: bold;
  }

  .extend-btn {
    display: flex;
    padding-top: 10px;
    align-items: center;
    justify-content: center;
    background-color: #3742fa;
    color: white;
    width: 33px;
    padding: 5px 8px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 22px;
    cursor: pointer;
    transition: width 0.35s ease-in-out, background-color 0.35s ease-in-out,
      color 0.7s ease-in-out, border 0.35s ease-in-out;
  }

  .extend-btn:hover {
    width: 70px;
    color: #ecf0f1;
    background-color: white;
    border: 1.5px solid black;
    margin-bottom: 0;
  }

  .extend-btn a {
    transition: color 0.7s ease-in-out;
  }

  .extend-btn:hover a {
    color: black;
  }

  .bottom-left {
    display: flex;
    width: 75px;
    margin-left: auto;

    margin-right: auto;
  }
  .left {
    display: flex;
  }

  .extend-btn {
    padding: 5px;
    padding-top: 10px;
  }

  .b-text {
    display: none;
  }

  .extend-btn:hover .b-text {
    display: block;
    color: black;
  }

  .b-icon {
    display: inline;
    color: #ecf0f1;
  }

  #positive-icon-p {
    display: inline;
    color: black;
    font-size: 13px;
  }

  .Information-img1 {
    display: flex;
    justify-content: center;
    height: 170px;
  }
  #Information-img1 {
    display: flex;
    justify-content: center;
    height: 300px;
  }

  .Information-img2 {
    display: flex;
    justify-content: center;
    height: 150px;
  }
  #Information-img2 {
    display: flex;
    justify-content: center;
    height: 200px;
  }

  .Information-img3 {
    display: flex;
    justify-content: center;
    height: 170px;
  }
  #Information-img3 {
    display: flex;
    justify-content: center;
    height: 300px;
  }

  .Information-img4 {
    display: flex;
    justify-content: center;
    height: 170px;
  }
  .Information-img5 {
    display: flex;
    justify-content: center;
    height: 110px;
  }
  #Information-img-margin {
    display: flex;
    justify-content: center;
    height: 170px;
    margin-bottom: 20px;
  }

  /*! T tab box !*/
  .T-tab-box-title,
  .T-box-title-bottom {
    display: table;
    margin: 10px auto;
  }

  .T-tab-box {
    padding: 10px;
    border: none;
    box-shadow: none;
  }

  .T-tab-box-title-T {
    margin: 10px 10px 20px 10px;
  }

  .review-header-text {
    margin: 30px 0px;
  }

  .date {
    top: 0px;
    position: relative;
    right: 0px;
  }

  .reply-item strong {
    position: relative;
    top: 0px;
    right: 0px;
  }

  .tab-content.active {
    padding: 15px;
  }

  .tab-box-titleText {
    padding: 12px;
    width: 110%;
  }

  .product-tabs {
    margin: 20px 20px;
  }

  .tabs {
    gap: 100px;
  }

  .tab-link {
    margin-top: 0px;
  }

  #review-form {
    margin: 0px;
  }

  .rating-container textarea {
    display: table;
    margin: auto;
  }

  #submit-review {
    display: table;
    margin: 10px auto;
  }

  /** product img **/
  .mySlides-mobile {
    padding: 60px;
    display: block;
    width: 90%;
    max-width: 250px;
    height: 90%;
    max-height: 371px;
    margin: auto;
  }

  .w3-content {
    max-height: 100px;
  }
  #w3-content {
    position: relative;
    top: -80px;
    left: 150px;
  }

  .image-container img {
    border-radius: 15px;
    width: 100%;
    max-width: 250px;
    max-height: 250px;
    margin: 20px auto;
  }

  .mySlides-mobile {
    padding: 0;
    margin: auto;
  }

  .product-box-img {
    height: 300px;
  }

  /** product information **/
  .information-box {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    margin: 10px;
    margin-bottom: 20px;
    padding: 20px;
  }

  .information-box-title {
    margin: auto;
  }
  .information-box-title p {
    display: table;
    margin: auto;
  }
  .product-id {
    margin: 10px auto 0px auto !important;
  }
  .product-visit {
    font-size: 12px;
    top: 20px;
  }
  .persian {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
  }

  .information-box-hr {
    color: rgba(0, 0, 0, 0.2);
  }
  .product-id {
    display: table;
    margin: 10px auto auto auto;
    font-size: 12px;
  }
  #product-id {
    color: rgba(0, 0, 0, 0.7);
    font-size: 11px;
    border-bottom: 1px solid red;
  }

  .information-box-description-text {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  }

  .information-box-description-text ul {
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    margin: 10px 50px;
  }

  .information-box-shopping {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    font-size: 15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    margin: 20px 0px;
  }

  .product-slider .add-to-cart-btn,
  .product-slider-top .add-to-cart-btn {
    margin: 10px auto;
  }
  .add-to-cart-btn {
    display: table;
    margin: 10px auto;
  }

  .shopping-box {
    display: table;
    margin: auto;
  }

  .shopping-box i {
    font-size: 16px;
    width: 25px;
  }
  #warehouse,
  #left {
    font-size: 14px;
  }
  .shopping-box span {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 100;
  }

  .shopping-box-warehouse {
    margin: 20px auto 20px auto;
  }

  .fa-shield-check {
    color: green;
  }
  .fa-warehouse-full {
    color: blue;
  }
  .fa-truck-fast {
    color: red;
  }

  .shopping-box-price {
    display: table;
    margin: auto;
  }
  .shopping-box-price p {
    font-size: 17px;
  }
  .price-non-existent {
    display: table;
    margin: auto;
    font-size: 20px;
  }
  .price-non-existent i {
    color: red;
  }
  .price-non-existent span {
    color: rgba(0, 0, 0, 1);
  }
  #price-date {
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    margin-bottom: 10px;
  }
  .price-bottom .price-bottom-button {
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 5px;
    padding: 7px;
    background: linear-gradient(#007bff, #2ec4b6);
    display: table;
    margin: auto;
    overflow: hidden;
    color: white;
  }
  .price-bottom .price-bottom-button:active {
    background: linear-gradient(#2ec4b6, #007bff);
  }

  .shadow-hr {
    display: none;
  }

  .top {
    bottom: 130px;
  }

  /*! reviews !*/
  .review-form {
  width: 90%;
  padding: 15px;
}
}
