@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

* {
  box-sizing: border-box;
}

* a {
  text-decoration: none;
  color: #8693bb;
}

* img:not([src]) {
  visibility: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #222;
  margin: 0;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  background-color: white;
  max-width: 1200px;
  width: 100%;
  padding: 20px 0;
  margin: auto;
  overflow: hidden;
}

.header {
  padding: 0 20px;
  font-family: 'Circular Bold';
}

.page-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: auto;
}

.tab-list {
  width: 20%;
}

.tab-list-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: auto;
  list-style: none;
  background: white;
}

.tab-list {
  display: flex;
  flex-direction: column;
  margin-bottom: auto;
  align-items: flex-start;
  padding: 5px;
  text-align: start;
}

.tab-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 3px;
  width: 100%;
  font-size: 15px;
  min-height: 50px;
  padding: 0 20px;
  cursor: pointer;
  position: relative;
  transition: 0.3s all;
}

.tab-list-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  max-height: 0;
  transition: max-height 0.3s ease-in;
  background-color: rgb(42, 94, 241);
  width: 2px;
  border-radius: 15%;
}

.tab-list-item.active::before {
  max-height: 50px;
  height: 100%;
}

.tab-list-item.active {
  background-color: rgb(235, 244, 244);
  color: rgb(42, 94, 241);
  font-weight: bold;
  max-height: 50px;
}

.tab-slider {
  min-height: 350px;
}

.tabcontent-slider-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-list {
  display: flex;
  max-width: 80%;
  width: 100%;
  position: relative;
}

.product-list-slider {
  display: flex;
  justify-content: center;
  position: relative;
}

.product-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  padding: 10px 5px;
  position: relative;
  height: 100%;
  justify-content: center;
  border: 1px solid #ebebeb;
  border-radius: 6px;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: white;
  border-radius: 50%;
  font-size: 20px;
  height: 60px;
  width: 60px;
  border: 1px solid #c5c3c3;
  top: 20%;
}

.swiper-button-prev {
  left: -25px;
}

.swiper-button-next {
  right: -25px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
  color: #c5c3c3;
}

.swiper-button-prev::after {
  position: absolute;
  right: 18px;
}

.swiper-button-next::after {
  position: absolute;
  left: 18px;
}

.product-item-image {
  position: relative;
  height: 200px;
  width: 200px;
}

.product-item-tag {
  width: 100%;
  object-fit: cover;
}

.product-item-info {
  overflow: hidden;
  max-width: 85%;
  width: 100%;
}

.product-item-name {
  font-size: 14px;
  font-weight: bold;
  min-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-item-price {
  font-weight: bold;
  font-size: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 6px;
}

.product-item-shipping {
  display: flex;
  gap: 10px;
  justify-content: start;
  position: relative;
  color: #6c6b6b;
}

.shipping-span {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  bottom: 0;
  left: 0;
  top: -5px;
}

.product-item-icon {
  max-width: 25px;
  width: 100%;
}

.mobile-icon {
  display: none;
}

.product-item-buy-button {
  display: flex;
  max-width: 85%;
  width: 100%;
  margin: auto;
  min-height: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  margin-top: 10px;
  background-color: rgb(42, 94, 241);
  border-radius: 5px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.5s all;
  border: 1px solid white;
}

.product-item-buy-button:hover {
  background-color: white;
  color: rgb(42, 94, 241);
  border: 1px solid rgb(42, 94, 241);
  width: 100%;
}

.text-content {
  height: 130px;
  border: none;
  border-radius: 5%;
}

.pop-up-content {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0 20px;
}

.pop-up-wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  background-color: #1c232a;
  padding: 20px 25px;
  max-width: 550px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.pop-up-text-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-wrapper {
  width: 25px;
  height: 25px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.success-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: limegreen;
  color: rgb(238, 229, 229);
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  padding: 3px;
  width: 100%;
  height: 100%;
}

.pop-up-info {
  width: 100%;
  color: #e5e5e5;
  margin-bottom: 5px;
  padding: 7px 5px;
}

.pop-up-info-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pop-up-product {
  width: 100%;
}

.pop-up-header h4 {
  width: 100%;
}

.pop-up-info h4 {
  margin: 0 0 20px 0;
}

.cart-items {
  transition: 0.3s all;
}

.cart-items:hover {
  color: #f5f5f5;
}

.pop-up-closer:hover,
.pop-up-closer:focus {
  color: rgb(42, 94, 241);
  cursor: pointer;
}

.pop-up-close-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up-closer {
  font-size: 22px;
  font-weight: bold;
  color: #f5f5f5;
  transition: 0.3s all;
}

@media (max-width: 768px) {
  .page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-list {
    max-width: 100%;
  }

  .product-list-slider {
    margin-top: 0;
  }
  .mobile-icon {
    display: block;
  }
  .page-header {
    margin-left: 25px;
  }
  .header {
    padding: 0px 0;
  }
  .tab-list {
    width: 100%;
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    overflow-x: scroll;
  }
  .tab-list-wrapper {
    flex-direction: row;
    padding: 0;
    display: flex;
    width: 1400px;
    margin-bottom: 5px;
  }
  .tab-list-item {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  .tab-list-item.active {
    background-color: transparent;
    width: 100%;
  }

  .product-item-price {
    font-size: 17px;
  }

  .tab-list-item.active::before {
    bottom: 0;
    height: 2px;
    width: 100%;
    margin-top: auto;
    background-color: rgb(62, 62, 164);
    border-radius: 8px;
  }

  .product-item-icon {
    display: none;
  }
}

::-webkit-scrollbar {
  display: none;
}
