@import url("../font/stylesheet.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "B Yekan";
}
:root {
  --bg-color: #fafafa;
  --text-color: #706e6c;
  --light-color: #373737;
  --border-color: #f0f0f0;
  /* --white: #fff; */
  /* --light-blue: #cfe4ff;
  --black: #000000;
  --olive: #889665;
  --white: #ffffff;
  --gray-purple: #9a99c1;
  --deep-blue: #071f5b;
  --dark-red: #ad0101;
  --bright-yellow: #fff000;
  --beige: #e3d2be;
  --pink-rose: #e7a6ae;
  --brown: #755848; */
  --red: #ad0101;
  --green: #889665;
  --blue: #071f5b;
  --yellow: #fff000;
  --orange: #e7a6ae;
  --purple: #9a99c1;
  --cyan: #cfe4ff;
  --black: #000000;
  --white: #ffffff;
  --whitesmoke:#f5f5f5;
  --gray: #e3d2be;
  --brown: #755848;
  --gold: #e3d2be;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #bfbfbf;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #434343;
}

::-webkit-scrollbar-thumb:hover {
  background: #434343a2;
  cursor: grabbing;
}
::-moz-selection {
  color: var(--white);
  background: var(--text-color);
}

::selection {
  color: var(--white);
  background: var(--light-color);
}
a {
  text-decoration: none;
  color: var(--text-color);
}
body {
  direction: rtl;
  background: var(--bg-color);
}

button {
  cursor: pointer;
  color: var(--text-color);
}
select {
  color: var(--text-color);
}
header {
  z-index: 30;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 5px 10px;
  gap: 25px;
  direction: rtl;
  left: 0;
  right: 0;

  background: var(--white);
  top: 0;
}
header .menu-items {
  display: flex;
  gap: 15px;
  flex: 1;
}
header .menu-items a,
header button,
header .menu-items button {
  background: none;
  border: none;
  color: #000;
  font-size: 1.4rem;
  position: relative;
}
header > #menu-page-routing-button {
  font-size: 1.6rem;
  transition: all 300ms ease-in-out;
}
header > #menu-page-routing-button i {
  animation: page-routing-button 400ms ease-in-out;
}
@keyframes page-routing-button {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header .title {
  flex: 1;
  text-align: center;

  font-size: 2rem;
}
header .menu-items a span:not(.isAcive),
header .menu-items button span {
  display: none;
  position: absolute;
  top: 100%;
  font-size: 0.9rem;
  width: 80px;
  background: var(--bg-color);
  right: 50%;
  height: 25px;
  border-radius: 10px 0 10px 10px;
  animation: menuToolTip 300ms ease-in-out;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
header .menu-items a:hover span:not(.isAcive),
header .menu-items button:hover span {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes menuToolTip {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header .logo {
  width: 200px;
  height: 60px;
}
header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header #search-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 31;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  display: none;
  animation: searchBox 300ms ease-in-out;
}
@keyframes searchBox {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header #search-box .box {
  width: 90%;
  max-width: 540px;
  border-bottom: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--light-color);
  height: 40px;
  animation: searchBoxInput 700ms ease-in-out;
  color: var(--white);
}
header #search-box .box form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
@keyframes searchBoxInput {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
header #search-box .box input {
  flex: 1;
  border: none;
  color: var(--white);
  outline: none;
  background: none;
  height: 100%;
}
header #search-box #close-search-box-button {
  position: absolute;
  color: var(--white);
  top: 20px;
  right: 20px;
  font-size: 2rem;
}
header #search-box .box button {
  border-bottom: 2px solid var(--text-color);
  font-size: 1rem;
  padding: 10px;
  height: calc(100% + 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}
header #search-box .box input::placeholder {
  color: var(--white);
  font-weight: 100;
  font-size: 0.9rem;
}
#menu-page-routing-box {
  animation: menu 400ms ease-in-out;
  position: absolute;
  top: 100%;
  display: none;
  flex-direction: column;
  width: 90%;
  max-width: 300px;
  background: #000;
  height: calc(100vh - 70px);
  right: 0;
  padding: 40px 20px;
  gap: 25px;
  background: var(--border-color);
  z-index: 0;
}
.close-authenticate-box,
.close-login-box {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
}

.authenticate-box,
.login {
  width: 100%;
  animation: loginBox 400ms ease-in-out;

  flex-direction: column;
  z-index: 30;
  justify-content: center;
  background: var(--border-color);

  gap: 20px;
  align-items: center;
  position: absolute;
  top: 0;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
}
.authenticate-box {
  display: none;
  align-items: center;
}
.authenticate-box .input-box input {
  border: 2px solid var(--text-color);
  background: var(--bg-color);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-right: 17px;
  justify-content: center;
}
.authenticate-box .input-box {
  display: flex;
  gap: 10px;
}

@keyframes loginBox {
  0% {
    top: -100vh;
  }
  100% {
    top: 0;
  }
}

.login input {
  width: 250px;
  height: 40px;
  border: 2px solid var(--light-color);
  background: var(--border-color);
  border-radius: 10px;

  padding: 0 10px;
}
.login input::placeholder {
  color: var(--text-color);
}
.login-button {
  width: 100px;
  font-size: 1rem;
  color: var(--white);
  border-radius: 10px;
  padding: 5px 0;
  background: var(--light-color);
}
.login span {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
}
#menu-page-routing-box a {
  color: var(--text-color);
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  transition: 200ms all ease-in-out;
}
#menu-page-routing-box a:hover {
  color: #000;
  opacity: 1;
}
.request-to-customize {
  width: 300px;
  height: 45px;
  border-radius: 10px;
  background: var(--border-color);
  border: 2px solid var(--text-color);
  color: var(--text-color);
}
.home-container {
  width: 100%;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  padding-top: 90px;
}

@keyframes menu {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
.home-container .category-box {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: hidden;
  height: 70px;
  width: 100%;
}

#whatsaapicon {
  position: fixed;
  background: var(--light-color);
  color: var(--border-color);

  z-index: 20;
  width: 50px;
  height: 50px;
  border-radius: 10px 10px 0 10px;
  bottom: 70px;
  right: 10px;
  border: none;
  outline: none;
  cursor: grab;
}
#whatsaapicon:active {
  cursor: grabbing;
  border-radius: 50%;
}
#whatsaapicon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
}
.added-to-cart {
  position: fixed;
  z-index: 2222;
  top: 30px;
  right: 10px;
  flex-direction: column;
  align-items: center;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 10px 0;
  display: none;
  animation: alertBox 600ms ease-in-out;
}
.added-to-cart i {
  font-size: 1.5rem;
}
.added-to-cart .line {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 10px;
  border-radius: 0 0 10px 10px;
  background: #00aa00;
  animation: alertLine 900ms ease-in-out;
}
@keyframes alertBox {
  0% {
    opacity: 0;
    right: -110%;
    display: flex;
  }

  100% {
    opacity: 1;
    right: 10px;
    display: flex;
  }
}
@keyframes alertLine {
  0% {
    width: 0;
  }
  70% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.faild-transaction,
.Successful-transaction {
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 70px);
  padding-top: 70px;
}
.faild-transaction > .box,
.Successful-transaction > .box {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: calc(50% + 70px);
  transform: translateY(50%);
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid green;
  padding: 10px 20px;
  border-radius: 10px;
}
.faild-transaction > .box {
  border-color: red;
  gap: 10px;
  padding: 10px 40px;
}
.faild-transaction > .box .box,
.Successful-transaction > .box .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  gap: 10px;
  width: 100%;
}
.faild-transaction .box .icon {
  font-size: 2rem;
  color: red;
}
.Successful-transaction .box .icon {
  font-size: 2rem;
  color: green;
}
.Successful-transaction .box .caption {
  color: var(--text-color);
}

.account {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 60px;
}
.account .list-of-status {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}
.account .list-of-status > div {
  width: calc(100% / 3);
  background: var(--text-color);
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}
.account .box {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.account-box {
  width: 100%;
  border: 2px solid var(--text-color);
  border-radius: 10px;
  padding: 10px;
  height: 520px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-box .header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 10px;
}
.account-box .header .line {
  flex: 1;
  height: 1px;
  border-top: 3px dotted var(--text-color);
}
.account-box form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.account-box form .input-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.account-box form .input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#city_select_profile,
.account-box form .input select {
  background: var(--bg-color);
  height: 40px;
  min-height: 40px;
}
.account-box form .input-box .input {
  width: 50%;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.account .list-of-order {
  width: 30%;
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 20px;
}
.purchased-order-display-box {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: var(--border-color);
  position: fixed;
  padding-top: 90px;
  top: 0;
  left: 0;
  bottom: 0;
  max-height: 100vh;
  right: 0;
  display: none;
  gap: 20px;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  z-index: 22;
  animation: order-box 400ms ease-in-out;
}
.transaction.failed .purchased-order-display-box .order::before,
.transaction.warn .purchased-order-display-box .order::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 0, 0.1);
  border-radius: 10px;
}
.transaction.failed .purchased-order-display-box .order::before {
  background: rgba(255, 0, 0, 0.1);
}
.purchased-order-display-box .order {
  position: relative;
  width: 90%;
  display: flex;
  height: 130px;
  background: var(--white);
  border-radius: 10px;
  align-items: center;
  padding: 5px;
  gap: 10px;
}
.purchased-order-display-box .order .color-box {
  display: flex;
}
.purchased-order-display-box .order .color-box .color {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.product-detail .product-height span {
  font-size: 1.1rem;
}

.product-detail .product-height .height {
  /* font-size: 0.9rem; */
}
.product-detail .product-height .box {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail .product-height {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.purchased-order-display-box .order .total {
  background: var(--border-color);

  padding: 10px;
  border-radius: 10px;
}
.purchased-order-display-box .order img {
  width: 120px;
  border-radius: 15px;
  height: 120px;
}
.purchased-order-display-box .order .text-box {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
@keyframes order-box {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.account .list-of-order .order-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  height: 190px;
  gap: 10px;
  justify-content: space-between;
  padding: 10px;
  border-radius: 10px;
}
.account .list-of-order .order-item.successful {
  border: 2px solid green;
}
.account .list-of-order .order-item.failed {
  min-height: 160px;
  height: 160px;
  border: 2px solid red;
}

.account .list-of-order .order-item div {
  display: flex;
  justify-content: space-between;
}
.account .list-of-order .order-item .isPay .paid {
  color: green;
}
.account .list-of-order .order-item .isPay .cansell {
  color: red;
}
.profile-title {
  padding: 10px;
  padding-top: 90px;
  font-size: 2rem;
  text-align: center;
}
.account .list-of-order .order-item > button {
  width: 100%;
  padding: 5px;
  border: none;
  background: var(--text-color);
  color: var(--bg-color);
  cursor: pointer;
  border-radius: 10px;
}
.purchased-order-close-button {
  position: fixed;
  border-radius: 0px;
  bottom: 0;
  height: 50px;
  right: 0;
  left: 0;
  /* background: var(--text-color); */
  background: red;
  font-size: 1.3rem;
  color: var(--bg-color);
  border: none;
  display: flex;
  flex-direction: column;
  z-index: 2;
  opacity: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  z-index: 33;
}
.account-box form .input select,
.account-box form .input textarea,
.account-box form .input-box .input input {
  flex: 1;
  color: var(--light-color);
  height: 40px;
  border: 1px solid var(--text-color);
  border-radius: 10px;
  padding: 5px 10px;
  width: 100%;
  resize: none;
}
.account-box form .input textarea {
  outline: none;
  height: 80px;
}
.account-box form .input input {
  flex: 1;
  min-height: 40px;
  border: 1px solid var(--text-color);
  border-radius: 10px;
  padding: 5px 10px;

  width: 100%;
}
.account-box form .input span {
  color: red;
}
.account-box form button {
  height: 40px;
  border: none;
  outline: none;
  background: var(--light-color);
  color: var(--bg-color);
  border-radius: 10px;
}
.home-container .category-box .category-item {
  width: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 0.7rem;
  padding: 4px 0;
  align-items: center;
  gap: 10px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background: var(--border-color);
  border-radius: 10px;
  user-select: none;
  padding: 7.5px;
}
.home-container .home-product-items {
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 15px;
}
.home-container .home-product-items .home-product-item {
  width: calc(50% - 7.5px);
  padding: 10px;
  border-radius: 10px;
  gap: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 0;
  align-items: center;
  background: var(--white);
}
.home-container .home-product-items .home-product-item-horizontal .title {
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-container .home-product-items .home-product-item-horizontal {
  display: flex;
  flex-direction: row;
  height: 200px;
  width: 320px;
  position: relative;
  z-index: 0;
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  gap: 15px;
}
.home-container .home-product-items .home-product-item-horizontal img {
  max-width: 140px;
  height: 100%;
  border-radius: 5px;
}
.home-container .home-product-items .home-product-item-horizontal .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-container
  .home-product-items
  .home-product-item-horizontal
  .text
  .caption {
  color: #cecece;

  display: flex;
  gap: 10px;
}

.home-container
  .home-product-items
  .home-product-item-horizontal
  .text
  .caption
  .line {
  width: 2px;
  height: 100%;
  background: #cecece;
}
.home-container .home-product-items .home-product-item .text {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
.home-container .home-product-items .home-product-item-horizontal .sticker,
.home-container .home-product-items .home-product-item .sticker {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  width: 35px;
  font-size: 1.2rem;
  height: 35px;
  background: var(--white);
  cursor: pointer;
  border-radius: 2.5px;
}
.home-container .home-product-items .home-product-item-horizontal {
  animation: changeLayout 300ms ease-in-out;
}
.home-container .home-product-items .home-product-item {
  animation: changeLayout2 300ms ease-in-out;
}

@keyframes changeLayout {
  0% {
    scale: 0.9;
    opacity: 0;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
@keyframes changeLayout2 {
  0% {
    scale: 0.9;
    opacity: 0;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
.home-container .home-product-items .home-product-item-horizontal .sticker i,
.home-container .home-product-items .home-product-item .sticker i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-container .home-product-items .home-product-item .text .title {
  font-size: 1.4rem;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  /* text-overflow: ellipsis; */
  width: 180px;
}
.home-container .home-product-items .home-product-item .text .caption {
  display: flex;
  justify-content: center;
  color: #cecece;
  gap: 20px;
}
.home-container .home-product-items .home-product-item-horizontal .text .colors,
.home-container .home-product-items .home-product-item .text .colors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center;
  gap: 5px;
}
.home-container .home-product-items .home-product-item-horizontal .text .price,
.home-container .home-product-items .home-product-item .text .price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #434343;
}
.home-container
  .home-product-items
  .home-product-item-horizontal
  .text
  .price
  > span,
.home-container .home-product-items .home-product-item .text .price > span {
  text-decoration: line-through;
  opacity: 0.5;
}
.home-container .home-product-items .home-product-item-horizontal .text .color,
.home-container .home-product-items .home-product-item .text .color {
  width: 20px;
  height: 20px;
  background: var(--border-color);
  border-radius: 50%;
}
.home-container .home-product-items .home-product-item .text .caption .line {
  height: 100%;
  width: 2px;
  background: #cecece;
}
.home-container .home-product-items .home-product-item img {
  width: 100%;
  /* height: 200px; */
  min-height: 304px;
  border-radius: 5px;
  /* display: none; */
  object-fit: cover;
}
.home-container .category-box .category-item.active {
  background: var(--light-color);
  color: var(--white);
}
.home-container .category-box .category-item img {
  object-fit: cover;
  width: 40px;
  height: 40px;
}

.home-container .shop-toolbar-wrapper {
  width: 100%;
  height: 50px;
  background: var(--white);
  display: flex;
  align-items: center;
  border-radius: 10px;
  gap: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.01);
}
.home-container .shop-toolbar-wrapper #shop-toolbar-fillter {
  margin-left: 15px;
}
.home-container .shop-toolbar-wrapper > button {
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
}
.home-container .shop-toolbar-wrapper .text {
  padding-right: 15px;
  border-right: 2px solid var(--border-color);
  height: 50%;
  display: flex;
  align-items: center;
  flex: 1;
}
.home-container .shop-toolbar-wrapper > button i {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-color);
}
.home-container .shop-toolbar-wrapper #shop-toolbar-vertical-button {
  rotate: 90deg;
}
.pagination-container {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.pagination-container #pagination-numbers {
  display: flex;
  gap: 7.5px;
  align-items: center;
}
.pagination-container #pagination-numbers button {
  width: 30px;
  height: 30px;
  border: none;
  outline: none;
  background: #e0e0e0;

  border-radius: 10px;
}
.pagination-container #pagination-numbers button.active {
  opacity: 0.5;
  scale: 0.9;
}
.pagination-container .pagination-button {
  width: 35px;
  border: none;
  outline: none;
  background: var(--light-color);
  color: var(--border-color);
  height: 35px;
  border-radius: 6px;
  font-size: 1.1rem;
}
.pagination-container .pagination-button.disabled {
  opacity: 0.4;
  font-size: 0.9rem;
  cursor: not-allowed;
}
.pagination-container .pagination-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.customize-box {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--border-color);
  animation: custom 400ms ease-in-out;
}
@keyframes custom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.customize-box .box {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  text-align: center;
  gap: 10px;
}
.customize-box .box span {
  margin-bottom: 50px;
}
.customize-box .box .social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  font-size: 1.5rem;
}
.customize-box .box .social-media a {
  color: var(--light-color);
}
.customize-box .box button {
  border: none;
  min-height: 35px;
  outline: none;
  background: var(--text-color);
  color: var(--bg-color);
  border-radius: 10px;
  padding: 5px;
}
.product-detail-page {
  width: 100%;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.fillter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  width: 100%;
  padding: 10px;
  z-index: 1;
  transition: all 400ms ease-in-out;
}
.fillter-box {
  gap: 10px;
  animation: fillter 500ms ease-in-out;
  z-index: -1;
  display: none;
}
.fillter-box form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.shopping-cart-link {
  position: relative;
}
.shopping-cart-link .isAcive {
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-color);
  color: var(--bg-color);
  position: absolute;
  top: -5px;
  left: -7.5px;
}
@keyframes fillter {
  0% {
    transform: translateY(-60px);
    z-index: -1;
  }
  100% {
    transform: translateY(0);
  }
}
.fillter-box select {
  height: 30px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: #f0f0f0;
  padding: 0 5px;
  width: 40%;
}
.fillter-box form button {
  width: calc(20% - 20px);
  border: none;
  outline: none;
  border-radius: 10px;
  height: 100%;
}
.product-detail-page .product-detail {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 20px;
}
.product-detail-page .product-detail .image-box {
  width: calc(40% - 10px);
  user-select: no;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.product-detail-page .product-detail .image-box .larg-image img {
  width: 100%;
  max-height: 700px;
  border-radius: 10px;
  object-fit: cover;
}
.product-detail-page .product-detail .image-box .small-image {
  display: flex;
  gap: 10px;
  max-width: 100%;
  overflow-x: hidden;
}
.product-detail-page .product-detail .image-box .small-image img {
  max-width: 170px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  max-height: 300px;
}
.product-detail-page .product-detail .detail-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(60% - 10px);
}
.product-detail-page .product-detail .detail-box .routing {
  display: flex;
  gap: 10px;
}
.product-detail-page .product-detail .detail-box .routing a {
  color: #000;
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-detail-page .product-detail .detail-box .specifications-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-detail-page .product-detail .detail-box .specifications-box > .title {
  font-size: 1.7rem;
  color: var(--light-color);
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .price-box {
  display: flex;
  gap: 10px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .price-box
  div {
  display: flex;
  gap: 20px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .price-box
  span {
  opacity: 0.5;
  text-decoration: line-through;
}

.product-detail-page .product-detail .detail-box .specifications-box .size-box {
  display: flex;
  gap: 20px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .price-box
  div.title,
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .description-box
  .title,
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .color-box
  .title,
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .size-box
  .title {
  font-size: 1.1rem;
  color: var(--light-color);
}

.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .color-box
  .box,
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .size-box
  .box {
  display: flex;
  gap: 10px;
}

.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .color-box
  .box
  .color,
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .size-box
  .size {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px solid #cecece;
  color: #cecece;
  opacity: 0.8;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .size-box
  .size.no-available {
  text-decoration: line-through;
  color: rgb(255, 143, 143);
  border-color: rgb(255, 143, 143);
}

.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .color-box
  .box
  .color {
  border-radius: 50%;
  padding: 2px;
  border: none;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .color-box
  .box
  .color
  span {
  width: 100%;
  height: 100%;
  background: #cecece;
  border-radius: 50%;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .color-box
  .box
  .color.active {
  border: 2px solid #cecece;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .size-box
  .size.active {
  border: 2px solid var(--light-color);
  color: var(--light-color);
  opacity: 1;
}

.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .color-box {
  display: flex;
  gap: 20px;
}

.product-detail-page .product-detail .detail-box .specifications-box .whashing {
  display: flex;
  gap: 50px;
  align-items: center;
  border-radius: 10px;
  font-size: 1rem;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .add-product-to-cart-box {
  display: flex;
  gap: 30px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .add-product-to-cart-box
  > button {
  width: 170px;
  height: 40px;
  border-radius: 20px;
  border: none;
  background: var(--text-color);
  color: var(--border-color);
  outline: none;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .add-product-to-cart-box
  .counter-box {
  display: flex;
  gap: 7.5px;
  align-items: center;
  background: var(--border-color);
  border-radius: 20px;
  width: 120px;
  justify-content: space-between;
  padding: 5px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .add-product-to-cart-box
  .counter-box
  button {
  width: 30px;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
  height: 30px;
  background: var(--bg-color);
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .add-product-to-cart-box
  .counter-box
  button
  i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .share-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .share-box
  .title::after {
  content: ":";
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .share-box
  .box {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .share-box
  .box
  a {
  font-size: 1.3rem;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .description-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .description-box
  .description {
  display: grid;
  list-style: none;
  gap: 10px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .description-box
  .description
  li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-detail-page
  .product-detail
  .detail-box
  .specifications-box
  .description-box
  .description
  li::before {
  content: attr(data-icon);
  font-size: 1.25em;
}
.welcome-container {
  width: 100%;
  min-height: 100vh;
  top: 0;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
  background: var(--bg-color);
  padding-bottom: 50px;
}

.welcome-container .welcome {
  margin: 0;
  padding: 0;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  flex-direction: column;
  z-index: 2;
  text-align: center;
  display: flex;

  animation: welcomeLayer 3s ease forwards;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
  height: 100vh;
  background: #fff;
  width: 100%;
}
.welcome-container .welcome .title {
  font-size: 1.4rem;
  text-transform: capitalize;
  font-family: sans-serif;
}

.welcome .mobile-image {
  object-fit: cover;
  /* height: 50%; */
  width: 200px;
  display: none;
}
.welcome .desktop-image {
  margin-bottom: 30px;
}
.welcome-container .welcome span {
  margin-top: 30px;
}
.welcome .mobile-image,
.welcome-container .welcome span,
.welcome-container .welcome .title,
.welcome .desktop-image {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
  }
}

.welcome-container .box .logo img {
  width: 230px;
}
.welcome-container .box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  width: calc(100% - 40px);
  min-height: 100%;
  max-width: 300px;
  z-index: 4;
  padding: 10px;
  justify-content: start;
}
.welcome-container .box a {
  background: var(--white);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  height: 50px;
  border-radius: 10px;
  /* z-index: 3; */
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.welcome-container .box a:nth-child(2) {
  background: #f8f8f8;
}

.welcome-container .box a img {
  width: 35px;
  height: 35px;
}
.shopping-cart {
  width: 100%;
  padding: 20px;
  padding-top: 90px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  /* height: 100vh; */
}
.shopping-cart .box {
  width: 70%;
  display: flex;
  background: var(--bg-color);
  height: 100%;
}
.shopping-cart .box .child-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.shopping-cart .box .child-box .product-header {
  display: flex;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0 10px;
  height: 50px;
  border-bottom: 1px solid var(--light-color);
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.shopping-cart .box .child-box .product-header .item {
  border-left: 1px solid var(--light-color);
  width: 25%;
  text-align: center;
  /* height: 100%; */
}
.shopping-cart .box .child-box .product-header .item:last-child {
  border: none;
}
.shopping-cart .box .child-box .product-list {
  width: 100%;
  height: calc(100% - 50px);
  max-height: calc(100% - 50px);
  overflow-y: auto;
  gap: 20px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.shopping-cart .box .child-box .product-list .product-item {
  display: flex;
  width: 100%;
  padding: 10px;
  background: var(--white);
  border-radius: 10px;
  justify-content: space-between;
  position: relative;
  gap: 50px;
  min-height: 150px;
  align-items: center;
  height: 150px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}
.shopping-cart
  .box
  .child-box
  .product-list
  .product-item
  .delete-shopping-product-item {
  position: absolute;
  top: -15px;

  left: -15px;
  width: 30px;

  border-radius: 10px;
  background: var(--light-color);
  border: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  height: 30px;
  color: var(--bg-color);
}
.shopping-cart .box .child-box .product-list .product-item .info {
  display: flex;
  justify-content: start;
  max-height: 100%;
  flex-direction: column;
  gap: 10px;
}
.shopping-cart .box .child-box .product-list .product-item .info * {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shopping-cart .box .child-box .product-list .product-item .text-box {
  flex: 1;
  display: flex;
  align-items: center;

  justify-content: space-between;
  padding: 0 20px;
}
.shopping-cart .box .child-box .product-list .product-item .text-box > * {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.shopping-cart .box .child-box .product-list .product-item .counter {
  display: flex;
  width: 100px;
  height: 40px;
  background: var(--border-color);
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 0 5px;
}

.shopping-cart .box .child-box .product-list .product-item .counter button {
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-color);
}
.shopping-cart .box .child-box .product-list .product-item img {
  height: 100%;
  height: 150px;
  max-height: 130px;
  border-radius: 10px;
}
.shopping-cart .form-chekout .title {
  font-size: 2rem;
}
.shopping-cart .form-chekout {
  width: calc(30% - 10px);
  border-radius: 5px;
  border: 3px solid rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  /* height: 320px; */
  align-items: center;
}
.shopping-cart .form-chekout .box,
.shopping-cart .form-chekout .child-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 10px;
}
.shopping-cart .form-chekout button {
  width: 100%;
  border: none;
  outline: none;
  background: var(--light-color);
  color: var(--white);
  border-radius: 10px;
  height: 50px;
}
.shopping-cart form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.shopping-cart form .input-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.shopping-cart form .input-box .input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shopping-cart form .input-box select,
.shopping-cart form .input-box textarea,
.shopping-cart form .input-box input {
  outline: none;
  background: var(--bg-color);

  border: 2px solid rgba(0, 0, 0, 0.3);
  resize: none;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  color: var(--light-color);
  height: 35px;
}
.shopping-cart form .input-box textarea {
  height: 50px;
}
@keyframes welcomeText {
  0% {
    background-position: 500%;
  }
  100% {
    background-position: -500%;
  }
}
@keyframes welcomeLayer {
  0% {
    display: flex;
    opacity: 1;
    z-index: 10;
  }
  90% {
    display: flex;
    opacity: 1;
    z-index: 10;
  }
  100% {
    opacity: 0;
    z-index: 1;
    display: none;
  }
}
.category-page {
  width: 100%;
  min-height: 100vh;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.category-page > .title {
  font-size: 1.5rem;
  color: #000;
  margin: 10px;
}
.category-page .category-filter {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--white);
  padding: 10px;
}
.category-page .category-filter #select-category {
  flex: 0.7;
}
.category-page .category-filter #select-category-size {
  flex: 0.2;
}
.category-page .category-filter #select-category-color {
  flex: 0.2;
}
.category-page .category-filter select {
  background: var(--bg-color);
  padding: 10px 5px;
  border: none;
  border-radius: 10px;
  outline: none;
  color: var(--text-color);
  cursor: pointer;
}
.category-page .category-filter button {
  background: var(--bg-color);
  border: none;
  outline: none;
  color: var(--text-color);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.category-page .category-list {
  display: flex;
  width: calc(100% - 40px);
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 10px;
  justify-content: center;
}

.category-page .category-list .item {
  width: calc(25% - 10px);
  background: var(--white);
  display: flex;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  border-radius: 10px;
  gap: 10px;
}
.category-page .category-list .item .image-box {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  background: var(--light-color);
}
.category-page .category-list .item .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.category-page .category-list .item button {
  color: var(--light-color);
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}

.category-page .category-list .item span {
  font-size: 1.1rem;
}

.category-page .best-selling-products {
  width: calc(100% - 10px);
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dragging {
  cursor: grabbing;
  user-select: none;
}
.category-page .best-selling-products .box {
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px;
}
.category-page .best-selling-products .title {
  padding: 0 20px;

  color: var(--text-color);
}
.category-page .best-selling-products .title span:first-child {
  font-size: 1.5rem;
}
.category-page .best-selling-products .title .line {
  height: 1.5px;
  border-radius: 10px;
  background: var(--light-color);
  flex: 1;
}
.category-page .best-selling-products .box .product {
  background: var(--white);
  width: 240px;
  height: 330px;
  user-select: none;
  min-width: 240px;
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  flex-direction: column;
}
.category-page .best-selling-products .box .product .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.category-page .best-selling-products .box .product .text-box .gender {
  color: #aaa7a5;
}
.category-page .best-selling-products .box .product .text-box .name {
  color: #000;
}
.category-page .best-selling-products .box .product .text-box .price {
}
.category-page .best-selling-products .box .product .text-box .price span.del {
  opacity: 0.6;
  text-decoration: line-through;
}
.category-page .best-selling-products .box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
.category-page .best-selling-products .box .image-box {
  width: 200px;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
}
.category-page .types-of-coats {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;

  flex-direction: column;
  gap: 10px;
}
.category-page .types-of-coats .title {
  font-size: 1.5rem;
  padding: 10px 0;
}
.category-page .types-of-coats .box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
.category-page .types-of-coats .box .item {
  width: 300px;
  height: auto;
  /* height: 260p x; */
  max-width: 300px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.category-page .types-of-coats .box .item .text-box {
  display: flex;
  gap: 10px;

  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 10px;
}
.category-page .types-of-coats .box .item .colors {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.category-page .types-of-coats .box .item .colors .color {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.category-page .types-of-coats .box .item .image-box {
  background: var(--text-color);
  width: 100%;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
  height: 380px;
}
.category-page .types-of-coats .box .item .image-box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
.category-page .types-of-coats .box .item .image-box:hover {
  scale: 0.94;
}

.last-posts {
  display: flex;
  width: calc(100% - 40px);
  flex-direction: column;
  margin: 20px auto;
  gap: 10px;
}
.last-posts > .title {
  font-size: 1.5rem;
  color: #000;
  padding: 10px 0;
}
.last-posts .box {
  display: flex;
  width: 100%;
  overflow: auto;
  padding: 10px 0;
  gap: 20px;
}
.last-posts .box .item {
  width: 250px;
  height: 375px;
  border-radius: 10px;
  display: flex;
  min-width: 250px;
  align-items: end;
  justify-content: center;
  transition: 200ms ease-in-out all;
  color: var(--white);
  position: relative;
}
.last-posts .box .item .text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
  align-items: center;
}
.last-posts .box .item .text .title {
  font-size: 1.1rem;
}
.last-posts .box .item .text .caption {
  font-size: 0.9rem;
  color: rgb(189, 189, 189);
}
.last-posts .box .label {
  position: absolute;

  z-index: 1;
  top: 0px;
  height: 30px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0px;
  border-radius: 10px 0 10px 0;
  background: var(--light-color);
}
.last-posts .box .item::before {
  width: 100%;
  transition: 500ms ease-in-out all;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;

  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  content: "";
}
.last-posts .box .item img {
  width: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
.last-posts .box .item:hover {
  scale: 1.03;
}
.gallery {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: calc(100% - 60px);
  gap: 10px;
  width: 100%;
}
.gallery-box {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  justify-content: center;
  height: 100vh;
  margin: 10px auto;
}
.gallery-box .title {
  font-size: 1.5rem;
  color: #000;
  padding: 10px 0;
}
.gallery .image {
  width: calc(33% - 10px);
  height: calc(50% - 10px);
}
.gallery .image:nth-child(3) {
  height: calc(100% - 10px);
}
.gallery .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.description-container {
  width: calc(100% - 40px);
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.description-container .title {
  font-size: 1.5rem;
  padding: 10px 0;
  color: #000;
}

.other-products {
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-direction: column;
  position: relative;
}

.other-products .title {
  font-size: 1.5rem;
  color: #000;
}
.other-products .similar-products-slider {
  width: 100%;
  display: flex;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
  overflow-x: hidden;
}
.other-products .similar-products-slider .similar-product img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  object-fit: cover;
  border-radius: 10px;
  z-index: 0;
}
.next-similar-product-button,
.prev-similar-product-button {
  width: 40px;
  height: 40px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 268.5px;
  z-index: 4;
  border: none;
  background: var(--light-color);
  color: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}
.prev-similar-product-button {
  right: 5px;
}
.next-similar-product-button {
  left: 5px;
}
.other-products .similar-products-slider .similar-product {
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  position: relative;
  border-radius: 10px;
  background: var(--text-color);
  height: 340px;
  color: var(--white);
  align-items: center;
  padding: 10px;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 10px;
  justify-content: end;
}
.other-products .similar-products-slider .similar-product > * {
  z-index: 2;
}
.other-products .similar-products-slider .similar-product::before {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  border-radius: 10px;
}
.other-products .similar-products-slider .similar-product .name {
  font-size: 1.2rem;
}
.other-products .similar-products-slider .similar-product .price {
  color: rgb(226, 226, 226);
  font-size: 0.9rem;
}
.other-products .similar-products-slider .similar-product .colors {
  display: flex;
  gap: 7.5px;
  justify-content: center;
}
.other-products .similar-products-slider .similar-product .colors .color {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.decrease-product:disabled {
  opacity: 0.5;
}
.total-product-price {
  border-radius: 10px;
  padding: 10px 5px;
}
.about-page {
  width: 100%;
  background: var(--bg-color);
}
.about-page .container {
  background: url(../images/bg-about.jpg);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .container .text-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  justify-content: center;

  z-index: 2;
  color: var(--border-color);
}
.about-page .container .text-box .title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-size: 2rem;
}
.about-page .container .text-box .title .line {
  width: 70%;
  height: 2px;
  background: var(--white);
}
.about-page .container .text-box .box {
  display: flex;

  gap: 20px;
}
.about-page .container .text-box .box .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  width: 180px;
  font-size: 1.1rem;
}
.about-page .container .text-box .box .item .icon {
  font-size: 1.7rem;
}
.about-page .container::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.about-page .description-box {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: var(--light-color);
  gap: 20px;
}
.about-page .description-box .title {
  font-size: 1.6rem;
  color: #000;
}
.about-page .description-box .text {
  max-width: 80%;
}
.about-page .contact-information,
.about-page .address-box {
  display: flex;
  flex-direction: column;
  padding: 10px 30px;
  gap: 10px;
}
.about-page .address-box .title,
.about-page .contact-information .title {
  font-size: 1.6rem;
}
.about-page .contact-information .child-box {
  display: flex;
  gap: 10px;
}
.about-page .address-box .child-box {
  display: flex;
  max-width: 80%;
  flex-direction: column;
  gap: 10px;
}
footer {
  width: 100%;
  margin-top: 30px;
  background: #000;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px;
  color: var(--white);
  gap: 20px;
  align-items: center;
}
footer iframe {
  width: 400px;
  border-radius: 10px;
}
footer .line {
  width: 100%;
  height: 2px;
  background: var(--border-color);
  opacity: 0.5;
}
footer .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(50% - 22px);
  width: 100%;
}
footer .box .info {
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
footer .box .info a {
  color: var(--bg-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .box .info .address {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 1.6rem;
}
footer .brand img {
  width: 200px;
  /* height: 100px; */
  /* object-fit: cover; */
  border-radius: 10px;
}
footer .page-link,
footer .links {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}
footer .page-link a,
footer .links a {
  color: var(--white);
  display: flex;
  gap: 25px;
  justify-content: space-between;
  /* justify-content: center; */
}
footer .page-link button {
  background: none;
  height: 30px;
  border: none;
  border-radius: 8px;
  width: 100%;
  color: var(--white);
  display: flex;
  align-items: center;

  justify-content: space-between;
}
footer .box:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
footer .box .social-media {
  display: flex;
  gap: 20px;
  justify-content: center;
}
footer .box .social-media a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
}
footer .box .social-media a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sizing-table-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 80px;
  gap: 10px;
}
.sizing-table-page .title {
  font-size: 2rem;
}
.sizing-table-page .caption {
  font-size: 1.4rem;
  color: var(--text-color);
}
.sizing-table-page .sizing-tbale {
  display: flex;
  margin: 30px 0;
  flex-direction: column;
  width: 100%;
}
.sizing-table-page .sizing-tbale .row:first-child {
  border-top: 2px solid var(--text-color);
}
.sizing-table-page .sizing-tbale .row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--text-color);
}
.sizing-table-page .sizing-tbale .row:nth-child(2n) {
  background: #d4d4d4;
}
.sizing-table-page .sizing-tbale .row.head .culom {
  font-size: 1.4rem;
  color: #000;
}
.sizing-table-page .sizing-tbale .row .culom {
  border-right: 2px solid var(--text-color);
  height: 50px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
}
.sizing-table-page .sizing-tbale .row .culom:last-child {
  border-left: 2px solid var(--text-color);
}

.cooperation {
  width: 100%;
  display: flex;
  min-height: calc(100vh - 466px);
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  padding-top: 80px;
}
.cooperation .title {
  font-size: 2rem;
  color: #000;
  border-bottom: 2px solid var(--light-color);
  width: 200px;
  text-align: center;
  padding: 10px;
}
.cooperation form {
  background: var(--border-color);
  padding: 10px;
  color: var(--text-color);
  border-radius: 10px;
  border: 2px solid var(--light-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}
.cooperation form .name-input {
  width: 100%;
  justify-content: center;
  gap: 20px;
  display: flex;
}
.cooperation form > *:not(.name-input) {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.cooperation form > * textarea,
.cooperation form > * select,
.cooperation form > * input,
.cooperation form .name-input .input input {
  width: 100%;
  resize: none;
  outline: 1px solid #373737;
  border-radius: 10px;
  padding: 0 20px;
  border: none;
  height: 40px;
}
.cooperation form > * textarea {
  height: 80px;
}
.cooperation form button {
  height: 40px;

  border-radius: 10px;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  outline: none;
}
.cooperation form .name-input .input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}

.cooperation .caption {
  color: var(--text-color);
  font-size: 1.4rem;
}
.frequently-asked-questions {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  direction: rtl;
  flex-direction: column;
  gap: 20px;
  padding-top: 80px;
}
.frequently-asked-questions .title {
  font-size: 2rem;
}
.frequently-asked-questions .questions-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.frequently-asked-questions .questions-box .questions-item {
  width: calc(50% - 10px);
  min-width: calc(50% - 10px);
  display: flex;
  cursor: pointer;
  height: auto;
  flex-direction: column;
}
.frequently-asked-questions .questions-box .questions-item .text-box {
  border-radius: 4px 4px 0 0;
  padding: 10px;
  display: flex;
  background: var(--border-color);

  justify-content: space-between;
}
.frequently-asked-questions .questions-box .questions-item .answer {
  animation: answer 300ms ease-in-out;
  display: none;
  border-radius: 0 0 4px 4px;
  padding: 10px;
  background: var(--border-color);
}
.link-to-sizing-table {
  color: var(--text-color);
}
.detail-layer span {
  font-size: 2rem;
}
.detail-layer button {
  width: 120px;
  height: 30px;

  border: none;
  border-radius: 4px;
  background: var(--light-color);
  color: var(--border-color);
}
.detail-layer {
  padding: 20px;
  text-align: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--border-color);
  color: var(--light-color);
  gap: 10px;
}
.link-to-sizing-table a {
  border-bottom: 1px solid var(--light-color);
  font-weight: 700;
  color: var(--light-color);
}
@keyframes answer {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.account-info {
  padding: 20px;
  gap: 10px;
  padding-top: 90px;
}
.account-info > .title {
  font-size: 1.5rem;
  text-align: center;
  padding: 20px;
}
.account-info > .box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.account-info .parrent-box {
  display: flex;
  width: 100%;
}
.account-info .parrent-box > .box.f {
  width: 70%;
}
.account-info .box .status {
  display: flex;

  flex-direction: column;
  gap: 20px;

  padding: 20px;
  max-width: 100%;
}
.account-info .status .title {
  font-size: 1.4rem;
  text-align: center;
}
.account-info .status .box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.account-info .status .box .rep {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  justify-content: space-between;
}
.account-info .status .box .rep span.successful {
  color: green;
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-info .box.l {
  width: 30%;
  padding: 10px;
  gap: 20px;
  padding-left: 0;
}
.account-info .box.l .title {
  font-size: 1.5rem;
  text-align: center;
  padding: 10px;
}
.account-info .box.l .list-box {
  padding: 0 10px;
  padding-left: 0;
  gap: 10px;

  display: flex;
  flex-direction: column;
}
.account-info .box.l .list-box .transaction {
  border: 2px solid green;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
.account-info .box.l .list-box .transaction.warn {
  border-color: black;
  background: rgba(255, 255, 0, 0.1);
}
.account-info .box.l .list-box .transaction.failed {
  border-color: var(--text-color);
  background: rgba(255, 0, 0, 0.1);
  /* color: ; */
}
.account-info .box.l .list-box .transaction.failed .error,
.account-info .box.l .list-box .transaction.warn .warn {
  position: absolute;
  bottom: 0;
  border-radius: 10px 0 10px 0;
  height: 30px;

  right: 0;
  width: 100px;
  background: yellow;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-info .box.l .list-box .transaction.failed .error {
  background: red;
  color: white;
}
.account-info
  .box.l
  .list-box
  .transaction
  > div:not(.purchased-order-display-box) {
  display: flex;
  justify-content: space-between;
}
.account-info .box.l .list-box .transaction > button {
  border: none;
  border-radius: 10px;
  height: 45px;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px;
  color: #000000;
}
#province_select_profile,
#city_select_profile {
  min-height: 40px;
  padding: 10px;
  background: var(--white);
  height: 40px;
}
@media screen and (min-width: 1600px) {
  .category-page .category-list .item {
    max-width: 300px;
  }
  .home-container .home-product-items .home-product-item {
    max-width: 300px;
  }
  .home-container .home-product-items .home-product-item-horizontal {
    width: calc(20% - 20px);
    max-width: 320px;
  }
}
@media screen and (max-width: 1600px) {
  footer {
    padding: 60px 40px;
  }
  .home-container .home-product-items .home-product-item {
    width: calc(20% - 16px);
  }
  .top-products .top-product-list .top-product {
    min-width: calc(25% - 15px);
    width: calc(25% - 15px);
  }
  .home-container .home-product-items .home-product-item-horizontal {
    width: calc(25% - 15px);
  }
}
@media screen and (max-width: 1400px) {
  .product-detail-page .product-detail .detail-box,
  .product-detail-page .product-detail .image-box {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1024px) {
  .account-info .parrent-box {
    flex-direction: column;
  }
  .account-info .parrent-box .box.f,
  .account-info .parrent-box .box {
    width: 100%;
  }
  .shopping-cart {
    flex-direction: column;
  }
  .shopping-cart .form-chekout,
  .shopping-cart .box {
    width: 100%;
  }
  footer {
    padding: 40px 20px;
  }
  .home-container .home-product-items .home-product-item-horizontal {
    width: calc((100% / 3) - 15px);
  }

  .home-container .home-product-items .home-product-item {
    width: calc(25% - 15px);
  }
  .top-products .top-product-list .top-product {
    min-width: calc(33.3333% - 7.5px);
    width: calc(33.3333% - 7.5px);
  }
}
@media screen and (max-width: 900px) {
  .purchased-order-display-box {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    align-items: start;
  }

  .purchased-order-display-box .order {
    height: auto;
    flex-direction: column;
    gap: 20px;
    width: calc(50% - 10px);
    align-items: start;
  }
  .purchased-order-display-box .order .text-box {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .purchased-order-display-box .order img {
    width: 150px;
    width: 100%;
    /* height: 150px; */
    height: auto;
  }
  .account .box {
    flex-direction: column;
  }
  .account-box,
  .account .box > div {
    width: 100%;
  }
  .product-detail-page .product-detail .detail-box,
  .product-detail-page .product-detail .image-box {
    width: calc(100% - 10px);
    height: auto;
  }
  .product-detail-page .product-detail .image-box .larg-image img {
    max-height: none;
  }
  .product-detail-page .product-detail {
    flex-direction: column;
  }
  footer .box:last-child {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer .box:first-child {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .box > * {
    width: calc(50% - 20px);
  }
  .category-page .category-list .item {
    width: calc(33.3333% - 10px);
  }
  .top-products .top-product-list .top-product {
    min-width: calc(50% - 5px);
    width: calc(50% - 5px);
  }
  .home-container .home-product-items .home-product-item {
    width: calc((100% / 3) - 15px);
  }

  .home-container .home-product-items .home-product-item-horizontal {
    width: calc(50% - 7.5px);
  }
  .account .list-of-status {
    flex-wrap: wrap;
  }
  .account .list-of-status > div {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .account .list-of-status > div:last-child {
    width: 100%;
    min-width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .welcome .desktop-image {
    display: none;
  }
  .welcome .mobile-image {
    display: block;
    width: 150px;

    max-height: 200px;
    height: auto;
    max-width: 150px;
  }
  .request-to-customize {
    width: 100%;
  }
  .purchased-order-display-box {
    padding-bottom: 130px;
  }
  .purchased-order-close-button {
    bottom: 60px;
  }
  .account-info {
    padding-bottom: 90px;
  }

  .account .list-of-status {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .account .list-of-status > div {
    width: 100%;
    min-width: 100%;
  }
  .account-box {
    height: auto;
  }
  .account-box form .input-box {
    flex-direction: column;
  }
  .account-box form .input-box .input {
    width: 100%;
  }
  .Successful-transaction > .box .box {
    flex-direction: column;
  }
  .sizing-table-page .sizing-tbale .row.head .culom {
    font-size: 1rem;
  }
  .cooperation form .name-input {
    flex-direction: column;
  }
  .cooperation form .name-input .input {
    width: 100%;
  }
  .cooperation .title {
    text-align: center;
    width: 100%;
  }
  .cooperation .caption {
    font-size: 1rem;
  }
  .frequently-asked-questions .questions-box {
    flex-direction: column;
  }
  .frequently-asked-questions .questions-box .questions-item {
    width: 100%;
  }
  .about-page .container {
    height: 100vh;
  }
  .about-page .address-box .child-box,
  .about-page .description-box .text {
    width: 100%;
    max-width: 100%;
  }
  .about-page .container .text-box .box {
    flex-direction: column;
    gap: 10px;
  }
  .total-product-price {
    background: var(--white);
  }
  .shopping-cart .box .child-box .product-list {
    width: 100%;
    height: auto;
  }
  .shopping-cart .box .child-box .product-header {
    display: none;
  }
  .shopping-cart .box .child-box .product-list .product-item {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 10px;
    gap: 10px;
  }
  .shopping-cart .box .child-box .product-list .product-item .text-box {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .shopping-cart .box .child-box .product-list .product-item .text-box > * {
    width: 100%;
  }
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .price-box,
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .color-box,
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .size-box {
    flex-direction: column;
    gap: 10px;
  }
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .price-box
    div.title {
    background: none;
  }
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .whashing {
    justify-content: space-between;
  }
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .whashing,
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .price-box
    div,
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .color-box
    .box,
  .product-detail-page
    .product-detail
    .detail-box
    .specifications-box
    .size-box
    .box {
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background: var(--white);
  }
  footer .page-link a,
  footer .links a {
    padding: 0 30px;
  }
  footer .page-link button {
    padding: 0 30px;
  }
  footer iframe {
    width: 100%;
  }
  footer {
    padding-bottom: 80px;
    height: auto;
  }
  footer .brand img {
    width: 100%;
  }
  footer .brand {
    height: auto;
  }
  footer .box {
    flex-direction: column;
  }
  footer .box > * {
    width: 100%;
  }
  header .logo img {
    width: 200px;
    height: 60px;
  }
  header {
    top: 0;
    padding-left: 39px;
    gap: 0;
  }
  header .logo {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  header .menu-items {
    position: fixed;
    bottom: 0;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-around;
    height: 60px;
    align-items: center;
    padding: 0 30px;
    background: var(--white);
    right: 0;
    left: 0;
  }
  header #menu-page-routing-box a {
    color: #000;
  }

  .home-container .home-product-items .home-product-item {
    width: calc(50% - 7.5px);
  }

  .category-page .category-list .item {
    width: calc(50% - 10px);
  }
  .products-list .product {
    min-width: calc(50% - 10px);
    width: calc(50% - 10px);
  }

  .top-products,
  .home-container .search-box,
  .category-box,
  .home-slider-container,
  .product-list-section,
  .category-page .category-filter,
  .category-page .category-list {
    width: calc(100% - 20px);
  }
  .home-slider-container {
    height: 250px;
  }
  .products-list .product {
    max-width: 50%;
  }
  .top-products {
    flex-direction: column;
  }
  .top-products .top-product-list .top-product {
    width: 100%;
    max-width: 100%;
  }
  .welcome-container .welcome .text {
    font-size: 2rem;
  }
  .category-page .types-of-coats .box .item {
    width: calc(50% - 20px);
  }
  .gallery-box {
    height: auto;
    width: 100%;
    padding: 0 20px;
  }
  .gallery {
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100%;
  }
  .gallery > .image {
    height: 300px;
    width: 100%;
  }

  .home-container .home-product-items .home-product-item-horizontal {
    width: 100%;
  }
  .shopping-cart .box {
    height: auto;
  }
  .shopping-cart .box .child-box {
    height: auto;
  }
  .shopping-cart .box .child-box .product-list {
    overflow: visible;
    height: auto;
    max-height: none;
    min-height: none;
  }
  .shopping-cart {
    padding-bottom: 60px;
    height: auto;
  }
  .product-detail .product-height .box {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 10px;
  }
  .product-detail .product-height .box .height {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
  }
  .product-detail .product-height .box .height:last-child {
    border: none;
  }
  .product-detail .product-height .box .height span {
    color: var(--light-color);
  }
}
@media screen and (max-width: 400px) {
  .shopping-cart .box .child-box .product-list .product-item {
    flex-direction: column;
  }
  .shopping-cart .box .child-box .product-list .product-item img {
    height: auto;
    min-height: none;
    max-height: none;
    width: 100%;
  }
  .category-page .types-of-coats .box .item {
    width: 100%;
  }
  .category-page .types-of-coats .box .item .image-box {
    height: 300px;
  }
}
.hidden {
  display: none;
}
.alert {
  padding: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
  font-family: "B Yekan";
}
.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
  font-family: "B Yekan";
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
  font-family: "B Yekan";
}
.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
  font-family: "B Yekan";
}
.pagination-number.active {
  background-color: #373737;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  padding: 5px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.pagination-number.active:hover {
  background-color: #878787;
  color: #fff;
}
.alert_e {
  display: none;
}
.alert_s {
  display: none;
}

.btn-success {
  background-color: #28a745;
  color: #fff;
  border: 1px solid #28a745;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  border: 1px solid #6c757d;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.w-100 {
  width: 100% !important;
}
.mt-2 {
  margin-top: 8px !important;
}
.error_section {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #f9f9f9;
  text-align: center;
  padding: 20px;
}

.error_section .error_form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ececec;
}

.error_section .error_form h1 {
  font-size: 120px;
  font-weight: 900;
  color: #ff4a4a;
  margin: 0;
  line-height: 1;
}

.error_section .error_form h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 20px 0;
}

.error_section .error_form p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.error_section .error_form a {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  color: #fff;
  background: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.error_section .error_form a:hover {
  background: #0056b3;
}

.exit-from-product-datile-page {
  width: 80px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #000;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  color: white;
}
#ShppingCartNumberInputChekout2 {
  font-family: Arial, sans-serif;
}
