*,
*::before,
*::after {
  font-family: 'Vazir';
}

:root {
  --black: #222831;
}

a {
  text-decoration: none;
  color: unset;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

ul {
  list-style: none;
  padding: 0;
}

.text-black {
  color: #0e1935;
}

.body-not-white {
  background: #fcfcfc;
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 80vh;
  background: linear-gradient(
    180deg,
    rgba(41, 84, 169, 0.3) 0%,
    rgba(196, 196, 196, 0) 100%
  );
  z-index: -10;
}

.main-header {
  margin-top: 24px;
}

.main-header .main-nav {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.main-header .main-nav .search {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header .main-nav .search input {
  padding: 10px 5px;
  outline: none;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  width: 100%;
  padding-right: 40px;
}

.main-header .main-nav .search img {
  position: absolute;
  right: 11px;
  cursor: pointer;
}

.main-header .main-nav .search .search-list {
  position: absolute;
  right: 0;
  top: 55px;
  padding: 10px;
  background: #ffd219;
  flex-direction: column;
  width: 100%;
  z-index: 20;
  border-radius: 10px;
  display: none;
  row-gap: 16px;
}

.main-header .main-nav .search .search-list.active {
  display: flex;
}

.main-header .main-nav .search .search-list li {
  text-decoration: none;
  color: #a87e00;
  display: flex;
  align-items: center;
}

.main-header .main-nav .search .search-list li a {
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.main-header .main-nav .logo {
  gap: 12px;
}

.main-header .main-nav .logo p {
  font-weight: 600;
  color: #003399;
  font-size: 18px;
}

.main-header .main-nav .sign-in-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #003399;
  border-radius: 8px;
}

.main-header .main-nav .basket {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #003399;
  border-radius: 8px;
  outline: none;
  background: none;
  padding: 0;
  position: relative;
}

.main-header .main-nav .basket p {
  position: absolute;
  left: -9px;
  bottom: -9px;
  border: 1px solid #003399;
  margin-bottom: 0;
  line-height: 1;
  background: #fff;
  width: 20px;
  height: 20px;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003399;
}

.main-header .main-nav .bt-row {
  background: #f8fafc;
  border-radius: 20px;
  padding: 0 10px;
  margin-top: 12px;
}

.main-header .main-nav .product-categories {
  outline: none;
  background: none;
  border: none;
}

.main-header .main-nav .bt-row .bt-row-item {
  border-bottom: 2px solid transparent;
  padding: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.main-header .main-nav .bt-row .bt-row-item:hover {
  border-bottom-color: #08a7bb;
}

.main-header .main-nav .bt-row-item svg {
  transition: all 0.3s ease;
}

.main-header .main-nav .bt-row-item:hover svg {
  fill: #08a7bb;
}

.main-header .main-nav .bt-row-item p {
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 0;
  font-size: 15px;
}

.main-header .main-nav .bt-row-item:hover p {
  color: #08a7bb;
}

.homepage {
  margin-top: 26px;
}

.homepage .main-slider {
  width: 100%;
  position: relative;
}

.homepage .main-slider .main-slide {
  width: 100%;
  max-height: 400px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  object-fit: contain;
  object-fit: cover;
  top: 0;
  left: 0;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear 0.2s;
}

.homepage .main-slider .main-slide.active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear;
  position: relative;
}

.homepage .main-slider .controllers {
  position: absolute;
  content: '';
  bottom: 20px;
  right: 20px;
}

.homepage .main-slider .controllers button {
  background: none;
  outline: none;
  border: none;
}

.homepage .main-slider .slide-loading {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 30px;
  height: 30px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

.homepage .main-slider .slide-loading circle {
  stroke-dasharray: 56.52px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 3px;
  stroke: white;
  fill: none;
}

.homepage .main-slider .loading-animation {
  animation: countdown 4s linear forwards;
}

.homepage .specials-slider {
  margin-top: 30px;
  padding: 24px;
  border-radius: 16px;
}

.homepage .specials-slider .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
}

.homepage .specials-slider .bar h1 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}

.homepage .specials-slider .bar button {
  outline: none;
  border: none;
  background: #fff;
  padding: 0 14px;
  border-radius: 16px;
}

.homepage .specials-slider .bar button:disabled {
  opacity: 0.6;
}

.image-slider {
  display: flex;
  align-items: center;
}

.image-slider .swiper-slide img {
  border-radius: 8px;
}

.cards .card {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

.cards .card .head {
  width: 167px;
  height: 222px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards .card .head img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cards .card .body {
  margin-top: 16px;
  width: 95%;
}

.cards .card .body h2 {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  margin-bottom: 20px;
  height: 33.6px;
}

.cards .card .body .prices {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cards .card .body .prices .price {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.cards .card .body .prices .offer-price {
  font-size: 14px;
  margin: 2px 0 0 0;
}

.cards .card .body .prices .price-has-offer {
  font-weight: 700;
  color: #ababab;
  margin-bottom: 0;
  text-decoration: line-through;
  font-size: 14px;
}

.cards .card .body .prices .offer-percentage {
  font-size: 14px;
  margin-bottom: 0;
  padding: 1px 7px;
  background: red;
  color: #fff;
  border-radius: 10px;
  margin-left: 5px;
}

.homepage .publisher-introduction {
  margin-top: 20px;
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  position: relative;
}

.homepage .publisher-introduction .controller {
  background: none;
  outline: none;
  border: none;
}

.homepage .publisher-introduction .controller.next-publisher-introduction {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.homepage
  .publisher-introduction
  .controller.next-publisher-introduction:disabled {
  opacity: 0.6;
}

.homepage .publisher-introduction .controller.prev-publisher-introduction {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.homepage
  .publisher-introduction
  .controller.prev-publisher-introduction:disabled {
  opacity: 0.4;
}

.homepage .publisher-introduction .publisher {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.homepage .publisher-introduction .publisher::after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  height: 100%;
  box-shadow: -2px 3px 20px 0px rgb(0 0 0 / 18%);
  width: 5px;
}

.homepage .publisher-introduction .publisher img {
  max-width: 100%;
  height: 45px;
}

.homepage .publisher-introduction .publisher h6 {
  font-size: 14px;
}

.homepage .books {
  margin-top: 20px;
}

.homepage .books .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}

.homepage .books .bar h1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.homepage .books .bar button {
  outline: none;
  border: none;
  background: #fff;
  padding: 0 14px;
  border-radius: 16px;
}

.homepage .books .bar button:disabled {
  opacity: 0.6;
}

.signin-page {
  margin-top: 40px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signin-page .sign-in {
  max-width: 450px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 0 0 #000;
  padding: 24px;
}

.signin-page h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 0;
}

.signin-page .sign-in form {
  margin-top: 24px;
}

.signin-page .sign-in form .form-input {
  width: 100%;
  outline: none;
  border: 1px solid #c6c6c6;
  padding: 10px;
  border-radius: 5px;
  margin-top: 4px;
}

.signin-page .sign-in form .phoneNumber-error {
  font-size: 14px;
  color: #ff0000;
  border: 1px solid #f5c6cb;
  padding : 10px;
  background-color: #f8d7da;
  border-radius: 5px;
  display: none;
}

.signin-page .sign-in form .accept-privacy {
  position: relative;
  margin-top: 16px;
}

.signin-page .sign-in form .accept-privacy input {
  display: none;
}

.signin-page .sign-in form .accept-privacy .box {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: 24px;
  height: 24px;
  background: #eef1f4;
  border-radius: 8px;
  transition: all 0.3s ease;
  user-select: none;
  padding: 6px;
  cursor: pointer;
}

.signin-page .sign-in form .accept-privacy .box.accept {
  background: #08b7aa;
  content: url('../icons/check-bold.svg');
}

.signin-page .sign-in form .accept-privacy label {
  margin-right: 34px;
  line-height: 24px;
}

.signin-page .sign-in form .accept-privacy label a {
  color: #08b7aa;
}

.signin-page .sign-in form button {
  width: 100%;
  outline: none;
  border: none;
  background: #08b7aa;
  color: #fff;
  padding: 10px;
  margin-top: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.signin-page .sign-in form button:disabled {
  opacity: 0.6;
}

.otp-page {
  margin-top: 140px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-page .otp {
  max-width: 600px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 0 0 #000;
  padding: 24px;
}

.otp-page .otp .title h1 {
  font-size: 20px;
  margin-bottom: 5px;
}

.otp-page .otp .title p {
  color: #717171;
  font-size: 14px;
  margin-bottom: 10px;
}

.otp-page .otp form input {
  display: block;
}

.otp-page .otp form label {
  margin-top: 10px;
}

.otp-page .otp form input {
  width: 100%;
  outline: none;
  border: 1px solid #c6c6c6;
  padding: 10px;
  border-radius: 5px;
  margin-top: 4px;
}

.otp-page .otp .otp-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.otp-page .otp .otp-container input {
  text-align: center;
}

.otp-page .otp .otp-container .resend-otp {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #08b7aa;
  color: #fff;
  outline: none;
  border: none;
  border-radius: 5px;
  margin-top: 4px;
  white-space: nowrap;
}

.otp-page .otp form button[type='submit'] {
  width: 100%;
  outline: none;
  border: none;
  background: #08b7aa;
  color: #fff;
  padding: 10px;
  margin-top: 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.otp-page .otp form button:disabled {
  opacity: 0.6;
}

.otp-page .otp form .error {
  font-size: 14px;
  color: #ff0000;
  margin-top: 2px;
}

.shop-page {
  margin-top: 26px;
  margin-bottom: 100px;
}

.shop-page .gallery {
  box-shadow: 0px 0px 1px 1px #cfcfcf;
  border-radius: 24px;
}

.shop-page .gallery .main-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-page .gallery .main-image-wrapper .main-image {
  width: 100%;
  object-fit: contain;
  border-radius: 23px;
}

.shop-page .gallery .gallery-images {
  display: flex;
  justify-content: center;
  padding: 10px;
  gap: 10px;
}

.shop-page .gallery .gallery-images img {
  width: 100%;
}

.shop-page .gallery .gallery-images .gallery-image {
  position: relative;
  cursor: pointer;
}

.shop-page .gallery .gallery-images .gallery-image img {
  border-radius: 10px;
}

.shop-page .gallery .gallery-images .gallery-image:last-of-type::after {
  content: url('../icons/squares-four-bold.svg');
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 9px;
  border-radius: 10px;
}

.shop-page .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  flex: 1;
}

.shop-page .top {
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.shop-page .interactions button {
  border: none;
  background: none;
  outline: none;
}

.shop-page .publisher {
  font-size: 16px;
  margin-bottom: 6px;
}

.shop-page .publisher a {
  color: #08b7aa;
}

.shop-page .specification span a {
  color: #08b7aa;
}

.shop-page .sell-card {
  background: #f7f7f7;
  padding: 24px;
  width: 300px;
  border-radius: 10px;
}

.shop-page .sell-card .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-page .sell-card .top-bar h4 {
  font-size: 16px;
  margin-bottom: 0;
}

.shop-page .sell-card .top-bar a {
  font-size: 14px;
  color: #08b7aa;
}

.shop-page .sell-card .seller {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  margin: 28px 0;
}

.shop-page .sell-card .seller h5 {
  font-size: 16px;
  margin-bottom: 0;
}

.shop-page .sell-card .prices {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
}

.shop-page .sell-card .prices .offer-wrapper {
  display: flex;
  align-items: flex-end;
  margin-bottom: 6px;
  gap: 8px;
}

.shop-page .sell-card .prices .offer-wrapper span {
  background: #ff0000;
  color: #fff;
  padding: 3px 8px;
  border-radius: 16px;
  line-height: 1;
}

.shop-page .sell-card .prices .offer-wrapper p {
  margin-bottom: 0;
  font-size: 14px;
  text-decoration: line-through;
  color: #bbb;
}

.shop-page .sell-card .prices .price {
  font-size: 20px;
  font-weight: 700;
}

.shop-page .sell-card .add-to-basket {
  width: 100%;
  border: none;
  outline: none;
  background: #08b7aa;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-top: 18px;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.shop-page .sell-card .add-to-basket:disabled {
  opacity: 0.5;
}

.shop-page .sell-card .product-available {
  background: #4caf50;
  display: block;
  color: #fff;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 14px;
  width: 100%;
  margin-top: 18px;
  transition: all 0.2s ease-in-out;
  border: none;
  outline: none;
  text-align: center;
}

.shop-page .sellers {
  margin-top: 60px;
  background: linear-gradient(to bottom, #f0b816 0%, #ffd219 100%);
  padding: 24px;
  border-radius: 16px;
}

.shop-page .sellers .title {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  text-shadow: 0 0 10px black;
}

.shop-page .sellers-cards {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow: auto;
  margin-top: 44px;
  gap: 16px;
}

.shop-page .sellers-cards .seller-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.shop-page .sellers-cards .seller-card .prices {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-page .sellers-cards .seller-card .prices p {
  margin-bottom: 0;
  text-decoration: line-through;
  color: #bbb;
  font-size: 14px;
}

.shop-page .sellers-cards .seller-card .prices h6 {
  margin-bottom: 0;
  white-space: nowrap;
}

.shop-page .sellers-cards .seller-card .prices span {
  margin-bottom: 0;
  border-radius: 10px;
  background: #ff0000;
  color: #fff;
  padding: 3px 8px;
  line-height: 1;
}

.shop-page .sellers-cards .seller-card .add-to-basket {
  width: 100%;
  border: none;
  outline: none;
  background: #08b7aa;
  color: #fff;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.shop-page .sellers-cards .seller-card .product-available:disabled {
  opacity: 0.7;
}

.shop-page .sellers-cards .seller-card .product-available {
  background: #4caf50;
  color: #fff;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 14px;
  width: 100%;
  border: none;
  outline: none;
}

.shop-page .tabs {
  margin-top: 60px;
  position: relative;
  position: sticky;
  top: 0;
  z-index: 1;
}

.shop-page .tabs .tabs-item {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #bbb;
  background: #fff;
  z-index: 12;
  height: 60px;
  overflow-x: auto;
}

.shop-page .tabs .start-scroll {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 56px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent 80%);
  width: 20%;
  z-index: 12;
}

.shop-page .tabs .end-scroll {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 56px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent 80%);
  width: 20%;
  z-index: 12;
}

.shop-page .tabs .start-scroll,
.shop-page .tabs .end-scroll {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear 0.2s;
}

.shop-page .tabs .start-scroll.active,
.shop-page .tabs .end-scroll.active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear;
}

.shop-page .tabs .tabs-item .tab-item {
  border: none;
  background: none;
  outline: none;
  padding: 14px 0;
  position: relative;
  white-space: nowrap;
}

.shop-page .tabs .tabs-item .tab-item.active::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  background: #08b7aa;
  content: '';
  width: 100%;
  height: 5px;
  z-index: 7;
  border-radius: 10px;
}

.shop-page .tabs-content .about-tab-content {
  padding: 30px 0;
}

.shop-page .tabs-content .reviews-tab-content,
.shop-page .tabs-content .qa-tab-content {
  padding: 30px 0;
  border-bottom: 1px solid #ababab;
}

.shop-page .tabs-content .reviews-tab-content .desc h5,
.shop-page .tabs-content .qa-tab-content .desc h5 {
  margin-bottom: 24px;
  font-weight: 500;
}

.shop-page .tabs-content .reviews-tab-content .desc p,
.shop-page .tabs-content .qa-tab-content .desc p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.shop-page .tabs-content .reviews-tab-content .desc span,
.shop-page .tabs-content .qa-tab-content .desc span {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}

.shop-page .tabs-content .reviews-tab-content #review-form,
.shop-page .tabs-content .qa-tab-content #qa-form {
  display: flex;
  flex-direction: column;
}

.shop-page .tabs-content .reviews-tab-content #review-form .score {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-page .tabs-content .reviews-tab-content #review-form .score .stars {
  display: flex;
  align-items: center;
  gap: 5px;
}

.shop-page .tabs-content .reviews-tab-content #review-form .score .stars li {
  cursor: pointer;
}

.shop-page .tabs-content .reviews-tab-content #review-form label,
.shop-page .tabs-content .qa-tab-content #qa-form label {
  margin-bottom: 10px;
}

.shop-page .tabs-content .reviews-tab-content #review-form textarea,
.shop-page .tabs-content .reviews-tab-content #review-form input,
.shop-page .tabs-content .qa-tab-content #qa-form textarea,
.shop-page .tabs-content .qa-tab-content #qa-form input {
  outline: none;
  border: none;
  background-color: rgb(242, 248, 248);
  border-radius: 6px;
  resize: none;
  padding: 16px;
  margin-bottom: 14px;
}

.shop-page .tabs-content .reviews-tab-content #review-form button,
.shop-page .tabs-content .qa-tab-content #qa-form button {
  width: fit-content;
  outline: none;
  border: none;
  margin-right: auto;
  padding: 12px 24px;
  border-radius: 5px;
  color: #fff;
  background-color: #08b7aa;
  margin-top: 6px;
  transition: opacity 0.5s ease-in-out;
}

.shop-page .tabs-content .reviews-tab-content #review-form button:disabled,
.shop-page .tabs-content .qa-tab-content #qa-form button:disabled {
  opacity: 0.5;
}

.shop-page .tabs-content .reviews-tab-content .reviews,
.shop-page .tabs-content .qa-tab-content .questions {
  width: 100%;
}

.shop-page .tabs-content .reviews-tab-content .reviews h5,
.shop-page .tabs-content .qa-tab-content .questions h5 {
  margin-bottom: 26px;
  font-weight: 500;
}

.shop-page .tabs-content .reviews-tab-content .reviews .empty-msg,
.shop-page .tabs-content .qa-tab-content .questions .empty-qa {
  font-size: 14px;
}

.shop-page .tabs-content .reviews-tab-content .reviews .review,
.shop-page .tabs-content .qa-tab-content .questions .qa {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
}

.shop-page .tabs-content .qa-tab-content .questions .qa .answer-wrapper {
  padding: 0px 18px 18px;
}

.shop-page .tabs-content .qa-tab-content .questions .qa .answer {
  background: rgb(242, 248, 248);
  border: 1px solid #e3e3e3;
  border-radius: 8px;
}

.shop-page .tabs-content .reviews-tab-content .reviews .review .sender,
.shop-page .tabs-content .qa-tab-content .questions .qa .sender {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid #e3e3e3;
}

.shop-page .tabs-content .reviews-tab-content .reviews .review .sender p,
.shop-page .tabs-content .qa-tab-content .questions .qa .sender p {
  margin-bottom: 0;
  font-weight: 500;
}

.shop-page .tabs-content .reviews-tab-content .reviews .review .msg,
.shop-page .tabs-content .qa-tab-content .questions .qa .question {
  padding: 22px;
  margin-bottom: 0;
}

.shop-page .tabs-content .qa-tab-content .questions .qa .answer .sender .admin {
  border-bottom: 0;
  padding: 0;
  gap: 10px;
}

.shop-page
  .tabs-content
  .qa-tab-content
  .questions
  .qa
  .answer
  .sender
  .admin
  p {
  font-weight: 500;
}

.shop-page .tabs-content .qa-tab-content .questions .qa .answer .sender .admin {
  display: flex;
  align-items: center;
}

.shop-page .tabs-content .qa-tab-content .questions .qa .answer .answer-body {
  margin: 0;
  padding: 22px;
}

.shop-page .tabs-content .detail-tab-content {
  padding: 30px 0;
  border-top: 1px solid #ababab;
  border-bottom: 1px solid #ababab;
}

.shop-page .tabs-content .detail-tab-content table tbody tr td {
  width: 200px;
  padding: 0 0 20px 0;
}

.shop-page .tabs-content .detail-tab-content table tbody tr td span a {
  color: #08b7aa;
}

.shop-page .gallery-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: '';
  height: 100vh;
  width: 100%;
  z-index: 12;
  background: rgba(0, 0, 0, 0.545);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear 0.2s;
}

.shop-page .gallery-modal-wrapper .gallery-modal {
  width: 100%;
  height: 85vh;
  background: #fff;
  border-radius: 8px;
}

.shop-page .gallery-modal-wrapper .gallery-modal .close-gallery-modal {
  outline: none;
  border: none;
  background: none;
}

.shop-page .gallery-modal-wrapper.show {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear;
}

.shop-page .gallery-modal-wrapper .gallery-modal .imgs {
  height: calc(100% - 60px);
}

.shop-page .gallery-modal-wrapper .gallery-modal .imgs .main-img {
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.shop-page .gallery-modal-wrapper .gallery-modal .imgs .main-img img {
  height: 100%;
}

.shop-page .gallery-modal-wrapper .gallery-modal .imgs .slide-img {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.shop-page .gallery-modal-wrapper .gallery-modal .imgs .slide-img img {
  width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 122px;
  object-fit: contain;
}

.author-page {
  margin-top: 50px;
  margin-bottom: 100px;
}

.publisher-page {
  margin-top: 50px;
  margin-bottom: 100px;
}

.translator-page {
  margin-top: 500px;
  margin-bottom: 100px;
}

.about-us-page {
  margin-top: 50px;
  margin-bottom: 100px;
}

.search-page {
  margin-top: 50px;
  margin-bottom: 100px;
}

.search-page .filters-container {
  white-space: nowrap;
  overflow-x: hidden;
}

.search-page .filters-container .filters {
  overflow: hidden;
}

.search-page .filters-container .filters .filters-list {
  overflow-x: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.search-page .filters-container svg {
  -moz-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.search-page .filters-container p {
  font-size: 14px;
}

.search-page .filters-container .filters .filters-list button {
  background: none;
  border: none;
  outline: none;
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
}

.search-page .filters-container .filters .filters-list button.active {
  color: #08b7aa;
  font-weight: bold;
}

.search-page .shadow-left,
.search-page .shadow-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.shadow-left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
}

.shadow-right {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
}

.dashboards {
  margin-top: 30px;
  margin-bottom: 100px;
}

.dashboards .dashboard-nav-menu {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  position: sticky;
  top: 0;
}

.dashboards .dashboard-nav-menu .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  background-image: radial-gradient(circle at 0%, #079087 0%, transparent 106%);
  border-radius: 50%;
}

.dashboards .dashboard-nav-menu .img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08b7aa;
  width: 64px;
  height: 64px;
  position: relative;
  border-radius: 50%;
  border: 4px solid #fff;
}

.dashboards .dashboard-nav-menu .user-details {
  padding: 16px 0 10px;
  position: relative;
}

.dashboards .dashboard-nav-menu .user-details .name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.dashboards .dashboard-nav-menu .user-details .phone {
  color: #08b7aa;
}

.dashboards .dashboard-nav-menu .list a,
.dashboards .dashboard-nav-menu .list button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
}

.dashboards .dashboard-nav-menu .list button {
  outline: none;
  border: none;
  background: none;
}

.dashboards .dashboard-nav-menu .list a p,
.dashboards .dashboard-nav-menu .list button p {
  margin-bottom: 0;
}

.dashboards .dashboard-nav-menu .list .divider {
  border-bottom: 1px solid #e3e3e3;
  margin: 14px 0;
}

.dashboards .counter-page {
  width: 100%;
  height: 100%;
}

.dashboards .counter-page .box {
  position: relative;
}

.dashboards .counter-page .box::before,
.dashboards .counter-page .box::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 25px;
  z-index: -1;
}

.dashboards .counter-page .box::before {
  bottom: 0;
  left: 0;
  box-shadow: -2px 2px 30px #edf0f5;
}

.dashboards .counter-page .box::after {
  bottom: 0;
  left: 0;
  box-shadow: -2px 2px 30px #edf0f5;
}

.dashboards .counter-page .top {
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.dashboards .counter-page .top .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 17px;
  border-bottom: 1px solid #e3e3e3;
}

.dashboards .counter-page .top .title a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #08b7aa;
}

.dashboards .counter-page .top .title p {
  margin-bottom: 0;
  font-weight: 700;
}

.dashboards .counter-page .top .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.dashboards .counter-page .top .details .label {
  margin-bottom: 8px;
  color: #848484;
  font-weight: 600;
  font-size: 16px;
}

.dashboards .counter-page .top .details .value {
  margin-bottom: 0px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  direction: ltr;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
  text-align: center;
}

.dashboards .counter-page .user {
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  margin-top: 24px;
  height: 100%;
  max-height: 396px;
}

.dashboards .counter-page .navigation {
  padding: 16px;
  background: #eff2f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboards .counter-page .navigation button {
  background: none;
  outline: none;
  border: none;
  padding: 2px 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 10px 12px;
}

.dashboards .counter-page .navigation button.active {
  background: #fff;
  font-weight: 500;
}

.dashboards .counter-page .orders-body .order .order-sm,
.dashboards .user-orders-page .orders-body .order-sm {
  display: none;
}

.dashboards .counter-page .orders-body .order .order-sm .order-detail,
.dashboards .user-orders-page .orders-body .order-sm .order-detail {
  font-size: 14px;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
}

.dashboards .counter-page .orders-head .order-md .orders-status {
  width: 16%;
}

.dashboards .counter-page .orders-body .order-md .order-status {
  width: 14%;
}

.dashboards
  .counter-page
  .orders-body
  .order-md
  .order-status
  .unsuccessful-payment,
.dashboards
  .counter-page
  .orders-body
  .order-md
  .order-status
  .successful-payment {
  display: block;
  text-align: center;
  padding: 8px 0px;
  border-radius: 8px;
}

.dashboards
  .counter-page
  .orders-body
  .order-md
  .order-status
  .unsuccessful-payment {
  background: rgb(255, 224, 165);
}

.dashboards
  .counter-page
  .orders-body
  .order-md
  .order-status
  .successful-payment {
  background: rgb(0 128 0 / 25%);
}

.dashboards .counter-page .orders-body .order-sm,
.dashboards .user-orders-page .orders-body .order-sm {
  padding: 18px 24px;
  border: 1px solid #e3e3e3;
  margin-bottom: 14px;
  border-radius: 8px;
}

.dashboards .counter-page .orders-body .order-sm table tr td,
.dashboards .user-orders-page .orders-body .order-sm table tr th {
  width: 200px;
  font-weight: 400;
  font-size: 14px;
}

.dashboards .counter-page .last-saved-products {
  padding: 10px;
  height: 290px;
  overflow-y: auto;
  overflow-x: hidden;
}

.dashboards .counter-page .last-saved-products .product .image-wrapper {
  position: relative;
}

.dashboards .counter-page .last-saved-products .product .image-wrapper .offer {
  position: absolute;
  left: 15px;
  top: 0;
  background: red;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 2px 6px;
  border-end-start-radius: 10px;
}

.dashboards .counter-page .last-saved-products .product .name {
  font-weight: 600;
  font-size: 14px;
}

.dashboards .counter-page .last-saved-products .product a {
  color: #08a7bb;
  border: 1px solid #08a7bb;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
}

.dashboards .counter-page .last-saved-products .product a img {
  margin-right: 8px;
}

.dashboards .counter-page .last-saved-products .product .remove-product {
  border: 1px solid #e3e3e3;
  background: none;
  padding: 2px 5px;
  border-radius: 4px;
}

.dashboards .account-information-page {
  background: #fff;
  width: 100%;
  /*height: 100%;*/
  padding: 14px 32px;
  border-radius: 14px;
}

.dashboards .account-information-page .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #e3e3e3;
}

.dashboards .account-information-page .header p {
  margin-bottom: 0;
  font-weight: 600;
}

.dashboards .account-information-page .header a {
  color: #08a7bb;
}

.dashboards .account-information-page form .body {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dashboards .account-information-page .body label {
  color: #a7a7a7;
  font-weight: 600;
}
.dashboards .account-information-page .body label {
  color: #777777;
  font-weight: 600;
}

.dashboards .account-information-page .body input,
.dashboards .account-information-page .body select {
  margin-top: 4px;
  border: 1px solid #e3e3e3;
  outline: none;
  padding: 10px;
  border-radius: 8px;
}

.dashboards .account-information-page input[type='checkbox'] {
  accent-color: #04998e;
}

.dashboards .account-information-page .body input:focus,
.dashboards .account-information-page .body select:focus {
  border-color: #000;
}

.dashboards .account-information-page form button {
  outline: none;
  background: #08b7aa;
  color: #fff;
  border-radius: 8px;
  border: none;
  padding: 8px 24px;
}

.dashboards .account-information-page form button:disabled {
  opacity: 0.8;
}

.dashboards .account-information-page form .body .address-wrapper {
  grid-column: span 2;
}

.dashboards .user-orders-page {
  background: #fff;
  width: 100%;
  padding: 0px 20px 20px;
  border-radius: 14px;
}

.dashboards .user-orders-page .title {
  font-size: 18px;
  font-weight: 500;
  padding: 25px 5px;
  border-bottom: 1px solid #e3e3e3;
}

.dashboards .user-orders-page .order-tabs {
  margin-top: 14px;
  padding: 16px;
  background: #eff2f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  white-space: nowrap;
  overflow-x: auto;
}

.dashboards .user-orders-page .order-tabs .tab {
  background: none;
  outline: none;
  border: none;
  padding: 2px 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  padding: 10px 12px;
}

.dashboards .user-orders-page .order-tabs .tab.active {
  background: #fff;
  font-weight: 500;
}

.dashboards .user-orders-page .order-tabs .tab span {
  background: #b6b6b6;
  padding: 1px 6px;
  border-radius: 4px;
  color: #fff;
  background: #89d7d2;
}

.dashboards .user-orders-page .order-tabs .tab.active span {
  background: #09c7ba;
}

.dashboards .user-orders-page .order-tabs .unsuccessful-tab span {
  background: rgb(229, 194, 107);
}

.dashboards .user-orders-page .order-tabs .canceled-tab span {
  background: #e98994;
}

.dashboards .user-orders-page .order-tabs .canceled-tab.active span {
  background: #c70923;
}

.dashboards .user-orders-page .order-tabs .sended-tab span {
  background: #8ddc96;
}

.dashboards .user-orders-page .order-tabs .sended-tab.active span {
  background: #28a745;
}

.dashboards .user-orders-page .order-tabs .unsuccessful-tab.active span {
  background: rgb(222, 159, 2);
}

.dashboards .user-orders-page .orders-head,
.dashboards .counter-page .orders-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 10px 22px;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 8px;
}

.dashboards .user-orders-page .orders-head p,
.dashboards .counter-page .orders-head p {
  font-size: 14px;
  color: #8a929c;
}

.dashboards .counter-page .orders-head .orders-no,
.dashboards .user-orders-page .orders-head .orders-no {
  width: 10%;
}

.dashboards .counter-page .orders-head .orders-products,
.dashboards .user-orders-page .orders-head .orders-products {
  width: 25%;
}

.dashboards .counter-page .orders-head .orders-date,
.dashboards .user-orders-page .orders-head .orders-date {
  width: 18%;
}

.dashboards .counter-page .orders-head .orders-total-price,
.dashboards .user-orders-page .orders-head .orders-total-price {
  width: 15%;
}

.dashboards .user-orders-page .orders-head .orders-button,
.dashboards .counter-page .orders-head .orders-button {
  width: 70px;
}

.dashboards .user-orders-page .orders-body {
  height: 300px;
  overflow-y: auto;
}

.dashboards .counter-page .orders-body {
  height: 200px;
  overflow-y: auto;
}

.dashboards .user-orders-page .orders-body .order-md,
.dashboards .counter-page .orders-body .order-md {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  padding: 10px 22px;
  background: rgb(8 167 187 / 10%);
  border-radius: 12px;
}

.dashboards .counter-page .orders-body .order .order-md,
.dashboards .user-orders-page .orders-body .order-md {
  background: none;
}

.dashboards .user-orders-page .orders-body .order .order-md p,
.dashboards .counter-page .orders-body .order .order-md p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
}

.dashboards .counter-page .orders-body .order .order-md .order-no,
.dashboards .user-orders-page .orders-body .order .order-md .order-no {
  width: 10%;
}

.dashboards .counter-page .orders-body .order .order-md .order-products,
.dashboards .user-orders-page .orders-body .order .order-md .order-products {
  width: 25%;
}

.dashboards .user-orders-page .orders-body .order .order-products img,
.dashboards .counter-page .orders-body .order .order-md .order-products img {
  width: 45px;
  border-radius: 5px;
}

.dashboards .counter-page .orders-body .order-md .order-date,
.dashboards .user-orders-page .orders-body .order-md .order-date {
  width: 18%;
}

.dashboards .counter-page .orders-body .order-md .order-total-price,
.dashboards .user-orders-page .orders-body .order-md .order-total-price {
  width: 14%;
}

.dashboards .user-orders-page .orders-body .order-buttons,
.dashboards .counter-page .orders-body .order-md .order-buttons {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.dashboards .user-orders-page .orders-body .order-buttons a,
.dashboards .counter-page .orders-body .order-md .order-buttons a {
  background: rgb(8 167 187 / 20%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.dashboards .address-page {
  background: #fff;
  border-radius: 14px;
  padding: 20px 17px;
}

.dashboards .address-page .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
}

.dashboards .address-page .head .title {
  margin-bottom: 0;
  font-weight: 500;
}

.dashboards .address-page .head .add-address-opener {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  background: none;
  gap: 8px;
  color: #079087;
}

.dashboards .address-page .head .add-address-opener p {
  margin-bottom: 0;
}

.dashboards .address-page .body {
  padding-top: 20px;
}

.dashboards .address-page .body .empty-address {
  font-size: 14px;
}

.dashboards .address-page .body .address {
  position: relative;
}

.dashboards .address-page .body .address:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 24px;
}

.dashboards .address-page .body .address b,
.dashboards .address-page .body .address p {
  font-size: 14px;
}

.dashboards .address-page .body .address:not(:last-child) .address-op {
  bottom: 16px;
}

.dashboards .address-page .body .address .address-op {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 16px;
  bottom: 0;
  gap: 16px;
}

.dashboards .address-page .body .address .address-op button {
  outline: none;
  background: #fff;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.41);
}

.dashboards .bookmarks-page {
  background: #fff;
  border-radius: 14px;
  padding: 20px 17px;
}

.dashboards .bookmarks-page .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
}

.dashboards .bookmarks-page .head .title {
  margin-bottom: 0;
  font-weight: 500;
}

.dashboards .bookmarks-page .body .empty-bookmarks {
  font-size: 14px;
}

.dashboards .bookmarks-page .body .products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.dashboards .bookmarks-page .body .product {
  padding: 20px;
  border-bottom: 1px solid #e3e3e3;
}

.dashboards .bookmarks-page .body .product:nth-of-type(even) {
  border-right: 1px solid #e3e3e3;
}

.dashboards .bookmarks-page .body .product .product-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.dashboards .bookmarks-page .body .product .product-image-wrapper img {
  width: 144px;
  height: 100%;
  object-fit: contain;
}

.dashboards .bookmarks-page .body .product .name {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  font-size: 16px;
  margin-top: 24px;
  max-width: 300px;
  width: 100%;
  height: 57.5px;
}

.dashboards .bookmarks-page .body .product .prices {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.dashboards .bookmarks-page .body .product .prices .real-price {
  font-weight: 600;
}

.dashboards .bookmarks-page .body .product .prices .real-price.with-offer {
  text-decoration: line-through;
  color: #848484;
  font-size: 12px;
  line-height: 1;
}

.dashboards .bookmarks-page .body .product .prices .offer-percent {
  color: rgb(184, 31, 31);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

.dashboards .bookmarks-page .body .product .prices .offer-price {
  font-weight: 600;
  font-size: 18px;
}

.dashboards .bookmarks-page .body .product .btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboards .bookmarks-page .body .product .btns button {
  height: 38px;
  outline: none;
  border: none;
  background: none;
}

.dashboards .bookmarks-page .body .product .btns .add-basket-product {
  flex: 1;
  border-radius: 6px;
  border: 1px solid #0055ff;
  color: #0055ff;
}

.dashboards .bookmarks-page .body .product .btns .remove-product {
  border-radius: 6px;
  border: 1px solid #0d0d0d;
  padding: 0 24px;
}

.dashboards .user-order-information .order-progress {
  width: 100%;
}

.dashboards .user-order-information .order-progress .current-step,
.dashboards .user-order-information .order-progress .next-step {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .order-progress .order-progress-line {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
}

.dashboards
  .user-order-information
  .order-progress
  .order-progress-line::-webkit-progress-bar {
  background-color: #e3e3e3;
  border-radius: 5px;
}

.dashboards
  .user-order-information
  .order-progress
  .order-progress-line::-webkit-progress-value {
  background-color: #08b7aa;
  border-radius: 5px;
}

.dashboards .user-order-information .order-progress .next-step span {
  color: #707070;
}

.dashboards .user-order-information .orders {
  background: #fff;
  width: 100%;
  padding: 0px 20px 20px;
  border-radius: 14px;
}

.dashboards .user-order-information .head .title {
  font-weight: 500;
}

.dashboards .user-order-information .head #go-back {
  outline: none;
  background: none;
  border: none;
}

.dashboards .user-order-information .head .title span {
  font-size: 12px;
}

.dashboards .user-order-information .head .product-number {
  font-size: 14px;
  color: #08b7aa;
  font-weight: 500;
}

.dashboards .user-order-information .head .product-date {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .body .address {
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to left, #10958c 0%, #0bafa4 100%);
  border-radius: 8px;
  transition: all ease-in-out 0.2s;
}

.dashboards .user-order-information .body .table-head {
  padding: 10px;
}

.dashboards .user-order-information .body .table-head .table-head_item p {
  font-weight: 300;
  font-size: 14px;
}

.dashboards .user-order-information .body .table-head .products-image {
  width: 100px;
}

.dashboards .user-order-information .body .table-head .products-name {
  width: 300px;
}

.dashboards .user-order-information .body .table-head .products-quantity {
  width: 50px;
}

.dashboards .user-order-information .body .table-head .products-price {
  width: 130px;
}

.dashboards .user-order-information .body .table-head .products-offer {
  width: 150px;
}

.dashboards .user-order-information .body .table-body .product-image {
  width: 90px;
}

.dashboards .user-order-information .body .table-body .product-name {
  width: 290px;
  position: relative;
}

.dashboards .user-order-information .body .table-body .product-name .name {
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
}

.dashboards
  .user-order-information
  .body
  .table-body
  .product-name
  .product-seller
  p {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .body .table-body .product-quantity {
  width: 40px;
  position: relative;
}

.dashboards .user-order-information .body .table-body .product-quantity p {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .body .table-body .product-price {
  width: 110px;
  position: relative;
}

.dashboards .user-order-information .body .table-body .product-price p {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .body .table-body .product-offer {
  width: 130px;
  position: relative;
}

.dashboards .user-order-information .body .table-body .product-offer p {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .body .table-body .product-final-price {
  position: relative;
}

.dashboards .user-order-information .body .table-body .product-final-price p {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .price-informations {
  padding: 36px;
}

.dashboards .user-order-information .price-informations .title {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .price-informations .prices label {
  font-size: 14px;
  font-weight: 500;
}

.dashboards .user-order-information .price-informations .prices p {
  font-size: 16px;
  font-weight: 700;
}

.dashboards .user-order-information .price-informations .prices p span {
  font-size: 12px;
}

.dashboards .user-order-information .price-informations .explainer {
  border-left: 1px dashed #adb5bd;
}

.basket-page {
  margin-top: 26px;
  margin-bottom: 100px;
}

.basket-page .clear-basket {
  outline: none;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #dc3545;
  border: 1px solid #dc3545;
  padding: 6px 16px;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.basket-page .clear-basket:hover {
  background: #dc3545;
  color: #fff;
}

.basket-page .product {
  margin-bottom: 16px;
  display: flex;
  gap: 14px;
  border: 1px solid #e5e5e5;
  padding: 18px;
  border-radius: 14px;
}

.basket-page .product:last-child {
  margin-bottom: 0;
}

.basket-page .product .img {
  background: #eeeeee;
  padding: 14px 10px;
  border-radius: 8px;
  height: fit-content;
}

.basket-page .product .img img {
  width: 65px;
  height: auto;
}

.basket-page .product .seller-name {
  font-size: 12px;
  font-weight: 500;
  color: #6d6d6d;
}

.basket-page .product .remove-from-basket {
  outline: none;
  background: none;
  border: none;
  font-size: 14px;
  transition: all ease-in-out 0.2s;
}

.basket-page .product .remove-from-basket:disabled {
  opacity: 0.5;
}

.basket-page .product .name {
  font-size: 14px;
  font-weight: bold;
}

.basket-page .product .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  padding: 4px 6px;
  border-radius: 6px;
  position: relative;
}

.basket-page .product .quantity button {
  outline: none;
  border: none;
  background: none;
  padding: 5px 10px;
}

.basket-page .product .quantity button:disabled {
  opacity: 0.3;
}

.basket-page .product .quantity .value {
  font-size: 16px;
  font-weight: bold;
  width: 42px;
  display: block;
  text-align: center;
  user-select: none;
  outline: none;
  border: none;
  background: #fff;
}

.basket-page .product .quantity .value:disabled {
  background: #fff;
}

.basket-page .product .quantity .loading {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear 0.2s;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 215, 215, 0.6);
}

.basket-page .product .quantity .loading img {
  animation: spin 1s infinite linear;
}

.basket-page .product .quantity .loading.active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear;
}

.basket-page .product .price {
  font-size: 16px;
  font-weight: bold;
  color: #079087;
}

.basket-page .collaterals .label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.basket-page .collaterals .value {
  font-size: 12px;
  margin-bottom: 0;
}

.basket-page .collaterals .value span {
  font-size: 18px;
  font-weight: 700;
}

.basket-page .collaterals .value.payable-price {
  color: #4caf50;
}

.basket-page .collaterals .value.offer-price {
  color: #08a7bb;
}

.basket-page .collaterals > *:not(:last-child) {
  margin-bottom: 20px;
}

.basket-page .collaterals .go-checkout {
  background: #4caf50;
  text-align: center;
  outline: none;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  display: block;
  color: #fff;
}

.basket-page .empty-basket h1 {
  font-size: 28px;
  margin-top: 24px;
  font-weight: 500;
}

.checkout {
  background: #fcfcfc;
}

.checkout header {
  box-shadow: 0px 0px 20px 0px rgba(0 0 0 / 30%);
}

.checkout header nav {
  max-width: 1280px;
  width: 100%;
  overflow: hidden;
}

.checkout header nav ul {
  overflow-x: hidden;
  white-space: nowrap;
  gap: 60px;
  padding: 0 16px;
  cursor: grab;
}

.checkout header nav ul li {
  opacity: 0.5;
  width: 100%;
  max-width: 426px;
  user-select: none;
  cursor: pointer;
}

.checkout header nav ul li.active-step,
.checkout header nav ul li.completed-step {
  opacity: 1;
}

.checkout header nav ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  width: 50px;
  height: 22px;
  position: relative;
  font-weight: bold;
  font-size: 14px;
  z-index: 1;
}

.checkout header nav ul li.completed-step a span {
  color: #fff;
}

.checkout header nav ul li.completed-step a span::before {
  background: #08b7aa;
  box-shadow: none;
  z-index: -1;
}

.checkout header nav ul li.active-step a span::before {
  border: 1px solid #08b7aa;
  box-shadow: none;
}

.checkout header nav ul li a span::before {
  content: '';
  position: absolute;
  right: 0%;
  top: -1px;
  width: 50px;
  height: 22px;
  border-radius: 16px;
  box-shadow: 0 0 6px 1px rgb(0 0 0 / 30%);
}

.checkout header nav ul li.completed-step a p {
  color: #079087;
}

.checkout main {
  width: 100%;
  margin: 0 auto;
}

.checkout main .box {
  padding: 0 24px 14px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%);
}

.checkout main .box .head h3 {
  font-size: 16px;
}

.checkout main .box .head button {
  display: flex;
  align-items: center;
  outline: none;
  background: none;
  border: none;
  color: #079087;
  font-weight: 500;
  gap: 8px;
}

.checkout.shipping-address-page main .addresses .body .empty {
  color: #717171;
  margin: 0;
  padding: 24px 0 14px;
}

.checkout.shipping-address-page main .addresses .body .address {
  padding: 24px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  transition: all ease-in-out 0.2s;
}

.checkout.shipping-address-page main .addresses .body .address.active {
  background: rgba(7, 144, 135, 0.1);
  border: 1px solid rgba(7, 144, 135, 0.6);
}

.checkout.shipping-address-page
  main
  .addresses
  .body
  .address:nth-last-of-type(1) {
  margin-top: 12px;
}

.checkout.shipping-address-page main .addresses .body .address .divider {
  height: 60px;
  width: 2px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  margin: 0 30px;
  transition: all ease-in-out 0.2s;
}

.checkout.shipping-address-page main .addresses .body .address.active .divider {
  background: rgba(0, 144, 135, 0.6);
}

.checkout.shipping-address-page main .addresses .body .address .detail span p {
  font-size: 14px;
}

.checkout.shipping-address-page main .shipping-method .method {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  background: #fff;
  border: 1px solid #e3e3e3;
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  transition: all ease-in-out 0.2s;
}

.checkout.shipping-address-page main .shipping-method .method.active {
  background: rgba(7, 144, 135, 0.1);
  border: 1px solid rgba(7, 144, 135, 0.6);
}

.checkout.basket-review-page main .shipping-method .method {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  background: #fff;
  border: 1px solid #e3e3e3;
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  transition: all ease-in-out 0.2s;
}

.checkout.basket-review-page .shipping-method .method.active {
  background: rgba(7, 144, 135, 0.1);
  border: 1px solid rgba(7, 144, 135, 0.6);
}

.checkout aside .box {
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%);
}

.checkout aside .prices .price:not(:last-of-type) {
  margin-bottom: 24px;
}

.checkout aside .prices .total-items-price-label,
.checkout aside .prices .shippment-price-label,
.checkout aside .prices .discount-label,
.checkout aside .pay-price-label {
  font-size: 14px;
  font-weight: 400;
}

.checkout aside .prices .price .total-items-price,
.checkout aside .prices .price .shippment-price,
.checkout aside .prices .price .discount-price,
.checkout aside .pay-price {
  font-size: 24px;
  font-weight: 700;
}

.checkout aside .curreny-type {
  font-size: 12px;
  font-weight: 500;
}

.checkout aside .divider {
  width: 100%;
  height: 2px;
  margin: 30px 0;
  border-bottom: 2px dashed #000;
}

.checkout .submit-form {
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(to left, #0bbd32 0%, #07df36 100%);
  border: none;
  outline: none;
  color: #fff;
  padding: 10px 0;
  border-radius: 6px;
  transition: all ease-in-out 0.2s;
}

.checkout .submit-form:disabled {
  opacity: 0.6;
}

.checkout.shipping-address-page .custom-input {
  appearance: none;
  background-color: #ffffff;
  min-width: 16px;
  height: 16px;
  border: 1px solid #cccfdb;
  margin: 0;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checkout.shipping-address-page .custom-input::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.3s transform ease-in-out;
  box-shadow: inset 6px 6px #ffffff;
}

.checkout.shipping-address-page .custom-input:checked {
  background: #08a7bb;
  border-color: #08a7bb;
}

.checkout.shipping-address-page .custom-input:checked::before {
  transform: scale(1);
}

.checkout.basket-review-page main .pay-methods .pay-method {
  border: none;
  background: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  background: #fff;
  transition: all ease-in-out 0.2s;
}

.checkout.basket-review-page main .pay-methods .pay-method.active {
  background: rgba(7, 144, 135, 0.1);
  border: 1px solid rgba(7, 144, 135, 0.6);
}

.checkout.basket-review-page main .discount .body #discount-code {
  flex: 1;
  border: 1px solid #e3e3e3;
  padding: 10px 24px;
  border-radius: 10px;
  outline: none;
}

.checkout.basket-review-page main .discount .body .submit-discount {
  border: none;
  outline: none;
  background: none;
  transition: all ease-in-out 0.2s;
  color: #fff;
  background: #09c7ba;
  border-radius: 10px;
  padding: 0 36px;
}
.checkout.basket-review-page main .discount .body .ketabiq-discount {
  border: none;
  outline: none;
  background: none;
  transition: all ease-in-out 0.2s;
  color: #fff;
  background: #09c7ba;
  border-radius: 10px;
  padding: 0 36px;
}

.checkout.basket-review-page
  main
  .discount
  .body
  .submit-discount.with-discount {
  background: red;
}

.checkout.basket-review-page
  main
  .discount
  .body
  .ketabiq-discount.with-discount {
  background: red;
}

.checkout.basket-review-page main .discount .body .submit-discount:disabled {
  opacity: 0.7;
}

.checkout.basket-review-page main .discount .body .ketabiq-discount:disabled {
  opacity: 0.7;
}

.checkout.basket-review-page main .order-details .body .address {
  font-size: 14px;
}

.checkout.basket-review-page main .order-details .body .order-item {
  display: flex;
  border: 1px solid #e3e3e3;
  padding: 12px;
  border-radius: 10px;
  gap: 16px;
}

.checkout.basket-review-page
  main
  .order-details
  .body
  .order-item
  .order-item_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  height: 48px;
}

.checkout.basket-review-page
  main
  .order-details
  .body
  .order-item
  .price
  .discounted {
  text-decoration: line-through;
  color: #a7a7a7;
  font-weight: 600;
  font-size: 15px;
}

.checkout.basket-review-page main .order-details .body .order-item .price {
  height: 46.5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.checkout.basket-review-page
  main
  .order-details
  .body
  .order-item
  .price
  .discount-price,
.checkout.basket-review-page
  main
  .order-details
  .body
  .order-item
  .price
  .real-price {
  font-weight: 600;
}

.checkout.basket-review-page
  main
  .order-details
  .body
  .order-item
  .price
  .currency-type {
  font-size: 15px;
  font-weight: 400;
}

.checkout.order-completed .box {
  padding: 36px;
  max-width: 768px;
  width: 100%;
}

.checkout.order-completed .box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  background-image: radial-gradient(
    circle at 23%,
    #079087 0%,
    transparent 100%
  );
  border-radius: 50%;
}

.checkout.order-completed .box .icon.error {
  background-image: radial-gradient(
    circle at 23%,
    #ffc700 0%,
    transparent 100%
  );
}

.checkout.order-completed .box .icon svg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08b7aa;
  width: 58px;
  height: 58px;
  position: relative;
  border-radius: 50%;
  border: 4px solid #fff;
  padding: 10px;
}

.checkout.order-completed .box .icon.error svg {
  background: #ffc700;
}

.checkout.order-completed .box .title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 36px;
  color: var(--black);
}

.checkout.order-completed .box .navigation a {
  width: 100%;
  text-align: center;
  border: 1px solid #e3e3e3;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--black);
}

.checkout.order-completed .box .navigation a.main {
  background: #079087;
  color: #fff;
  text-shadow: 0 0 4px rgb(0 0 0 / 67%);
}

.checkout.order-completed .box .navigation.error a.main {
  background: #ffc700;
}

.add-address {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear 0.2s;
}

.add-address.show {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear;
}

.add-address .backdrop {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.504);
}

.add-address .add-address-modal {
  background: #fff;
  width: 100%;
  max-width: 624px;
  padding: 10px 20px;
  border-radius: 12px;
}

.add-address .add-address-modal .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e3e3e3;
}

.add-address .add-address-modal .head p {
  margin-bottom: 0;
}

.add-address .add-address-modal .head button {
  outline: none;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-self: center;
}

.add-address .add-address-modal form {
  padding: 20px 0;
}

.add-address .add-address-modal form input,
.add-address .add-address-modal form select {
  width: 100%;
  border: 1px solid #e3e3e3;
  outline: none;
  padding: 10px;
  border-radius: 6px;
}

.add-address .add-address-modal form input::placeholder {
  font-size: 14px;
}

.add-address .add-address-modal form #submit-form {
  outline: none;
  border: none;
  background: #1654d0;
  color: #fff;
  padding: 10px 30px;
  border-radius: 6px;
  transition: opacity 0.4s ease-in-out;
}

.add-address .add-address-modal form #submit-form:disabled {
  opacity: 0.6;
}

.books .cards .card {
  box-shadow: 0px 7px 20px 0px rgb(0 0 0 / 7%);
}

.books .books-card-swiper {
  padding: 18px 0;
}

.search-page .cards .card {
  box-shadow: 0px 7px 20px 0px rgb(0 0 0 / 7%);
}

.banners {
  margin-top: 40px;
}

.banners .banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 156px;
  background: #ababab;
  border-radius: 24px;
  direction: ltr;
  font-weight: 900;
  font-size: 30px;
  color: #5a5a5a;
  object-fit: cover;
}

footer {
  margin-top: 66px;
}

footer .services {
  background: #eef1f4;
  padding: 24px 0;
}

footer .services .desc {
  font-size: 14px;
  color: #ababab;
}

footer .footer {
  background: #f6f8fb;
  padding: 48px;
  padding-bottom: 0;
}

footer .footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer ul li:not(:first-of-type) {
  margin-top: 20px;
}

footer .footer ul li.title {
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 300;
}

footer .footer ul li.title span {
  font-weight: 700;
}

.navigation-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 11;
}

.navigation-bar nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  background: #fff;
  padding: 16px 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 20px 0px rgb(0 0 0 / 50%);
}

.navigation-bar nav a svg {
  transition: fill 0.3s ease;
}

.navigation-bar nav a:hover svg {
  fill: #08b7aa;
}

.navigation-bar nav a h5 {
  font-size: 12px;
  color: #000;
  margin-top: 4px;
  margin-bottom: 0;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100vh;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear 0.2s;
}

.nav-menu .backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 12;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-menu.show {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear;
}

.nav-menu .menu {
  width: 340px;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  right: -100%;
  content: '';
  z-index: 12;
  transition: all 0.5s ease-in-out;
  padding: 36px 32px;
}

.nav-menu.show .menu {
  right: 0;
}

.nav-menu .menu .controller {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
}

.nav-menu .menu .controller button {
  background: rgb(8, 167, 187, 0.1);
  outline: none;
  border: none;
  position: absolute;
  right: 0;
  border-radius: 4px;
  padding: 5px;
}

.nav-menu .menu .controller button:active {
  outline: none;
}

.nav-menu .menu .controller button:focus {
  outline: none;
}

.nav-menu .menu .controller button:focus-within {
  outline: none;
}

.nav-menu .menu .controller p {
  margin-bottom: 0;
  font-weight: 600;
}

.nav-menu .menu .main-menu {
  margin-top: 25px;
  overflow-y: auto;
  position: relative;
  z-index: 10;
  height: calc(100vh - 120px);
}

.nav-menu .menu .main-menu li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 0;
  margin-bottom: 14px;
}

.nav-menu .menu .main-menu li ul {
  position: absolute;
  content: '';
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  background: #fff;
  transition: all 0.1s ease-in-out;
  cursor: default;
}

.nav-menu .menu .main-menu li ul.active-menu {
  right: 0;
}

.nav-menu .menu .main-menu li p {
  margin-bottom: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.pagination a {
  border: 1px solid #08a7bb;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.pagination a.active {
  background: #08a7bb;
  color: #fff;
}

.pagination .dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination .dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #08a7bb;
}

.confirm-remove-product {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear 0.2s;
}

.confirm-remove-product.isActive {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0s linear;
}

.confirm-remove-product .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.564);
  z-index: 11;
}

.confirm-remove-product .content {
  max-width: 500px;
  width: 100%;
  background: #fff;
  z-index: 12;
  border-radius: 10px;
  padding: 36px;
}

.jpayform form input,
.jpayform form select {
  width: 100%;
  border: 1px solid #e3e3e3;
  outline: none;
  padding: 10px;
  border-radius: 6px;
}

.jpayform form input::placeholder {
  font-size: 14px;
}

.jpayform form #submit-form {
  outline: none;
  border: none;
  background: #1654d0;
  color: #fff;
  padding: 10px 30px;
  border-radius: 6px;
  transition: opacity 0.4s ease-in-out;
}

.jpayform form #submit-form:disabled {
  opacity: 0.6;
}

.jpayform form .method {
  display: flex;
  flex-direction: row-reverse; /* چیدن عناصر از راست به چپ */
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e3e3e3;
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  transition: all ease-in-out 0.2s;
  direction: ltr;
}

.jpayform form .method p {
  margin: 0;
}

.jpayform form .method input[type="radio"] {
  margin: 0;
  width: auto !important;
  flex: 0 0 auto;
}

.jpayform form .method.active {
  background: rgba(7, 144, 135, 0.1);
  border: 1px solid rgba(7, 144, 135, 0.6);
}
@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 56.52px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1280px) {
  .header .menu .menu-item {
    font-size: 14px;
  }

  .navigation-bar nav .house-link::after {
    top: -52.5px;
  }

  .navigation-bar nav .house-link::before {
    top: -52.5px;
  }

  .dashboards .user-order-information .body .table-head .products-image {
    width: 80px;
  }

  .dashboards .user-order-information .body .table-body .product-image {
    width: 70px;
    position: relative;
  }

  .dashboards .user-order-information .body .table-head .products-name {
    width: 230px;
  }

  .dashboards .user-order-information .body .table-body .product-name {
    width: 220px;
  }

  .dashboards .user-order-information .body .table-body .product-name .name {
    height: 42px;
  }
}

@media screen and (max-width: 992px) {
  .shop-page .sellers-cards .seller-card {
    flex-direction: column;
  }
  .shop-page .tabs .content .specifications-tab-content table tbody tr td {
    width: 400px;
  }
  .dashboards .counter-page .orders-body,
  .dashboards .counter-page .last-saved-products {
    height: 200px;
  }
  .shop-page .gallery-modal-wrapper .gallery-modal {
    transform: translateY(-38px);
  }
}

@media screen and (max-width: 768px) {
  body {
    margin-bottom: 80px;
  }
  .shop-page .sell-card {
    width: 100%;
    margin-top: 24px;
  }
  .shop-page .tabs .content .specifications-tab-content table tbody tr td {
    font-size: 14px;
  }
  .shop-page .tabs .tabs-item .tab-item {
    font-size: 14px;
  }
  .dashboards .counter-page .orders-head,
  .dashboards .user-orders-page .orders-head {
    display: none;
  }
  .dashboards .counter-page .orders-body,
  .dashboards .counter-page .last-saved-products {
    margin-top: 20px;
    height: 280px;
  }
  .dashboards .counter-page .orders-body .order .order-md,
  .dashboards .user-orders-page .orders-body .order .order-md {
    display: none;
  }
  .dashboards .counter-page .orders-body .order .order-sm,
  .dashboards .user-orders-page .orders-body .order .order-sm {
    display: block;
  }
  .dashboards .bookmarks-page .body .products {
    grid-template-columns: repeat(1, 1fr);
  }
  .dashboards .bookmarks-page .body .products .product {
    border-right: none;
  }
  .navigation-bar {
    display: block;
  }
  .shop-page .tabs .tabs-item {
    height: 57px;
  }
  .dashboards .user-order-information .body .table-body .product-image {
    width: 100%;
    padding-right: 80px;
  }
  .dashboards .user-order-information .body .table-body .product-image::before {
    content: 'عکس محصول';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
  }
  .dashboards .user-order-information .body .table-body .product-name {
    width: 100%;
    padding-right: 80px;
  }
  .dashboards .user-order-information .body .table-body .product-name::before {
    content: 'نام محصول';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
  }
  .dashboards .user-order-information .body .table-body .product-quantity {
    padding-right: 50px;
    width: 100%;
  }
  .dashboards
    .user-order-information
    .body
    .table-body
    .product-quantity::before {
    content: 'تعداد';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
  }
  .dashboards .user-order-information .body .table-body .product-price {
    padding-right: 50px;
    width: 100%;
  }
  .dashboards .user-order-information .body .table-body .product-price::before {
    content: 'قیمت';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
  }
  .dashboards .user-order-information .body .table-body .product-offer {
    padding-right: 100px;
    width: 100%;
  }
  .dashboards .user-order-information .body .table-body .product-offer::before {
    content: 'تخفیف هر واحد';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
  }
  .dashboards .user-order-information .body .table-body .product-final-price {
    padding-right: 80px;
    width: 100%;
  }
  .dashboards
    .user-order-information
    .body
    .table-body
    .product-final-price::before {
    content: 'قیمت نهایی';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
  }
  .dashboards .user-order-information .price-informations .explainer {
    border-left: none;
    border-bottom: 1px dashed #adb5bd;
  }
  .dashboards .account-information-page form .body {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .checkout.basket-review-page main .discount .body .submit-discount {
    width: 100%;
    padding: 12px 36px;
  }
  .shop-page .tabs .tabs-item {
    height: 74px;
  }
  .shop-page .tabs .start-scroll,
  .shop-page .tabs .end-scroll {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .checkout.basket-review-page main .discount .body .ketabiq-discount {
    width: 100%;
    padding: 12px 36px;
  }
  .shop-page .tabs .tabs-item {
    height: 74px;
  }
  .shop-page .tabs .start-scroll,
  .shop-page .tabs .end-scroll {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .shop-page .tabs .tabs-item .tab-item {
    font-size: 14px;
  }
  .shop-page .sellers-cards .seller-card .add-to-basket {
    padding-right: 16px;
    padding-left: 16px;
  }
}


/* استایل برای آیکن های شبکه اجتماعی */
.social-icons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    transition: transform 0.5s ease;
}

.social-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 3px solid white;
}

.social-icon:hover {
    transform: translateX(-12px) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
    /*filter: brightness(0) invert(1); /* آیکن سفید */
}

.social-icon:hover .icon-img {
    transform: scale(1.3) rotate(5deg);
}

/* رنگ‌های پس‌زمینه برای آیکن‌های ایرانی */
.bale {
    /*background: linear-gradient(135deg, #00BCD4, #0097A7);*/
    background: linear-gradient(135deg, #E9EFF0, #DAF0F2);
    
}

.eitaa {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.rubika {
    background: linear-gradient(135deg, #E91E63, #C2185B);
}
/*
.soroush {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.igap {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.gap {
    background: linear-gradient(135deg, #FF5722, #D84315);
}
*/
.socialtooltip {
    position: absolute;
    right: 75px;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    transform: translateX(-10px);
    font-weight: 500;
}

.socialtooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
}

.social-icon:hover .socialtooltip {
    opacity: 1;
    transform: translateX(0);
}

/* استایل برای ریسپانسیو */
 @media (max-width: 768px) {
    .social-icons {
        right: 15px;
        bottom: 90px;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
    }
    
    .icon-img {
        width: 28px;
        height: 28px;
    }
    
  
    .socialtooltip {
        right: 65px;
        font-size: 13px;
        padding: 6px 12px;
    }
}

 @media (max-width: 480px) {
  .social-icons {
      right: 10px;
      bottom: 85px;
  }
  
  .social-icon {
      width: 50px;
      height: 50px;
      margin: 8px 0;
  }
  
  .icon-img {
      width: 24px;
      height: 24px;
  }
  
  .socialtooltip {
      display: none;
  }
  
  .social-icon:hover {
      transform: translateY(-8px) scale(1.1);
  }
}