.products-list .controls {
  margin: 2rem 0 1rem;
  text-align: center;
}

body.dark .categories-items {
  padding: 2rem;
  border: 1px solid #3F3F3F;
  border-radius: 5px;
}

.category-item,
.product-item {
  transition: var(--transition);
}

body.dark .category-item {
  padding: 0 1rem;
}

.product-item {
  position: relative;
}
.category-item:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.product-item {
	box-shadow: 0 4px 4px rgba(0,0,0,.12);
	border-radius: 4px;
}
.product-item:hover {
	box-shadow: 0 6px 8px rgba(0,0,0,.12);
}
.category-item .image,
.product-item .image {
  width: 350px;
  max-width: 100%;
  height: 315px;
  margin: 0 auto;
  background: var(--color-catalog-image-background);
}

body.dark .category-item .image {
  height: 250px;
}

.category-item .image.noImage,
.product-item .image.noImage {
  padding: 2rem;
}
.category-item .image img,
.product-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.category-item .image.noImage img,
.product-item .image.noImage img {
  object-fit: contain;
}
.category-item .info, .product-item .info {
	padding: .5rem .75rem .75rem;
}
.category-item .name {
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  text-transform: uppercase;
  text-align: center;
  color: var(--font-main);
  text-decoration: none;
}

body.dark .category-item .name {
  line-height: 1.25rem;
}

/*.product-item .info {
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  overflow: hidden;
  transition: .4s ease-in-out;
}*/
body.dark .product-item .info {
  background: transparent;
  position: initial;
  height: initial;
  border: 0;
  border-left: 1px solid #6D6D6D;
  padding: 1rem 1rem 0;
}
.product-item .name {
	margin: 0 0 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 24px;
	line-height: 24px;
}
.score-bar {
  text-decoration: none;
  color: #000;
}
.score-bar .stars svg {
  margin-right: 2px;
}
.product-item .name {
	white-space: wrap;
	height: 40px;
	line-height: 20px;
}
.product-item .info {
	height: 144px;
	display: flex;
	flex-direction: column;
}
.product-item .info .name {
  flex-grow: 1;
}
.color-grey {
  color: #aaa;
}
body.dark .product-item .name {
  margin: 0 0 .5rem;
  font-family: var(--font-dark-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #AAAAAA;
}
.product-item .name a {
  font-size: 1rem;
  line-height: 1rem;
  color: var(--font-main);
  text-decoration: none;
}
body.dark .product-item .name a {
  color: #AAAAAA;
}
.product-item .price {
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 500;
	text-align: center;
}
body.dark .product-item .price {
  margin: 0 0 1.5rem;
  font-family: var(--font-dark-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #E1E1E1;
}
.product-item .buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
}

body.dark .product-item .buttons {
  justify-content: flex-end;
  padding: 0 0 .25rem;
}
.product-item .buttons .btn {
	display: block;
	padding: .5rem 4rem;
	font-size: .75rem;
	line-height: 1rem;
	font-weight: 500;
	text-transform: none;
	text-decoration: none;
	color: var(--color-productitem-button-primary);
	background: transparent;
	transition: var(--transition);
	border: 1px solid var(--color-productitem-button-primary);
	border-radius: 4px;
	outline: 0;
	width: 100%;
}
body.dark .product-item .buttons .btn {
	color: #FFF;
	border-color: #fff;
}
.product-item .buttons .btn:hover {
	color: #fff;
	background: var(--color-productitem-button-secondary);
}
body.dark .product-item .buttons .btn:hover {
	color: #000;
	background: #fff;
}

.productfull-page {
/*  overflow-x: hidden;*/
}
.productfull {
  background: #FAFAFA;
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
  color: var(--bs-body-color);
}
.productfull:before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FAFAFA;
  width: 200vw;
  transform: translate(-100vw,0);
  z-index: -1;
}
.productfull .images {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.productfull .images .thumbs-items {
  flex: 0 0 80px;
  margin: 0 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.productfull .images .thumbs-item {
  width: 80px;
  height: 80px;
  margin: 0 0 .5rem 0;
  transition: var(--transition);
  border: 1px solid transparent;
}
.productfull .images .thumbs-item:hover,
.productfull .images .thumbs-item.active {
  border: 1px solid rgba(6,6,6,.1);
}
.productfull .images .thumbs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.productfull .images .main-image {
  width: 500px;
  height: 500px;
  max-width: 100%;
  flex: 1;
  position: relative;
}
.productfull .images .main-image img,
.productfull .images .main-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.productfull .info {}
.productfull .info h1 {
  display: block;
  margin: 1rem 0;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.productfull .info .code {
  margin: 1rem 0;
}
.productfull .info .code span {
  text-transform: uppercase;
}
.productfull .info .price {
  margin: 2rem 0 1rem;
  font-size: 24px;
  font-weight: 500;
}
.productfull .info .attributes-item {
  margin: 0 0 1rem;
}
.productfull .info .attributes-item:last-of-type {
  margin: 0 0 2rem;
}
.productfull .info .controls {
  margin: 1rem 0;
}
.productfull .info .params-items {
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-left: 1px solid rgba(6,6,6,.1);
}
.productfull .info .params-item {
  font-size: 1rem;
  line-height: 1.75rem;
}
.productfull .controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.productfull .controls .btn.buy {
  margin-right: 2rem;
}

.productfull .wishlist button {
  color: rgba(6,6,6,.4);
  padding: 0;
  margin: 0;
  background: transparent;
  outline: none;
  cursor: pointer;
  border: 0;
}
.productfull .wishlist button svg {}
.productfull .wishlist button path {
  transition: var(--transition);
  color: rgba(6,6,6,.4);
}
.productfull .wishlist button:hover path {
  fill-opacity: 100%;
  stroke: transparent;
}
.productfull .wishlist.added button path {
  fill: #E73D3D;
  fill-opacity: 100%;
  stroke: transparent;
}

.productfull #details {
  margin: 2.5rem 0;
}
.productfull #details {
  outline: none !important;
}
.productfull #details .accordion-item,
.productfull #details .accordion-button {
  border: 0;
  border-radius: 0;
  background: transparent;
  outline: none !important;
  box-shadow: none;
}
.productfull #details button {
  outline: none !important;
  box-shadow: none;
}
.productfull #details h4 {
  border: 0 !important;
}
.productfull #details .accordion-button {
  padding: 1rem 1.5rem;
  border: 0;
  border-left: 1px solid rgba(6,6,6,.1);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: var(--color-text-primary);
}

.productfull #details .accordion-button:after {
  content: "+";
  width: 24px;
  height: 24px;
  font-family: "Font Awesome 6 Free";
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  background: transparent;
  background-image: none;
  box-sizing: border-box;
  font-weight: 900;
  transform: rotate(45deg);
}
.productfull #details .accordion-button.collapsed:after {
  transform: initial;
}

.productfull #details .accordion-button.collapsed {
  border-left: 1px solid transparent;
}
.productfull #details .accordion-item {
  margin-bottom: .75rem;
}
.productfull #details .accordion-body {
  padding: 1.5rem;
  border: 0;
  border-left: 1px solid rgba(6,6,6,.1);
}
.productfull #details .accordion-body p:last-of-type {
  margin: 0;
}

.productfull .details-items {
  margin: 2.5rem 0;
}
.productfull .details-item {}
.productfull .details-item .details-item-header {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.productfull .details-item .details-item-header span {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25rem;
}
.productfull .details-item .details-item-header button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  transition: var(--transition);
}
.productfull .details-item [data-toggle-details] {
  cursor: pointer;
}
.productfull .details-item .details-item-inner {
  display: none;
  padding: 1.5rem;
}
.productfull .details-item .details-item-inner,
.productfull .details-item .details-item-inner p {
  font-size: 1rem;
  line-height: 1.15rem;
}
.productfull .details-item .details-item-inner p:last-of-type {
  margin: 0;
}
.productfull .details-item.active {
  border-left: 1px solid rgba(6,6,6,.1);
}
.productfull .details-item.active .details-item-header button {
  transform: rotate(45deg);
}
.productfull .details-item.active .details-item-inner {
  display: block;
}
.productfull .video {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  color: #aaa;
}
.productfull .video svg {
  width: 32px;
  height: auto;
  margin-left: 7px;
}
#details b,
#details strong {
  font-weight: 600;
}
.modal-body .productfull {
  background: transparent;
  padding: 0;
}
.modal-body .productfull:before {
  content: none;
}

.selectize-control.single .selectize-input {
  border: 1px solid #e5e5e5;
  background: #fff !important;
  padding: 6px 12px;
  border-radius: 4px;
  max-width: 130px;
  box-shadow: none !important;
}
.selectize-control .item {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  color: #060606;
}
.selectize-dropdown.single {
  border-color: #e5e5e5;
  font-size: 16px;
  line-height: 19px;
}
.selectize-dropdown-content {
  max-height: 250px !important;
}
.selectize-input input {
  caret-color: transparent;
  cursor: pointer;
}
.selectize-control.single .selectize-input:after {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: 2px solid rgba(0,0,0,.2);
  border-width: 0 2px 2px 0;
  margin-top: -8px;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  border: 2px solid rgba(0,0,0,.2);
  border-width: 2px 0 0 2px;
  margin-top: -2px;
}
.selectize-input {
  white-space: nowrap;
}
.selectize-dropdown .selected {
  background-color: #e6e6e6;
  color: var(--bs-body-color);
}

.productfull .quantity {
  width: 100%;
  max-width: 150px;
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.productfull .quantity button {
  margin: 0;
  padding: 0;
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  font-size: .875rem;
  line-height: 1rem;
  text-align: center;
  border-radius: 50%;
  background: transparent;
}
.productfull .quantity button:hover {
  color: white;
  background: #5C636A;
}

.productfull .quantity input {
  height: 34px;
  line-height: 32px;
  padding: 4px 8px;
  margin: 0 5px;
}

.old_price {
  text-decoration: line-through;
  opacity: .5;
}
.full-review-score .score-value {
  font-size: 20px;
}
.full-review-score .stars svg {
  width: 24px;
}
@media screen and ( max-width: 991px ) {
  .product-item {
    padding: initial;
  }
  .product-item .info {
    position: initial;
    height: 144px;
  }
  .productfull .images {
    flex-direction: column;
  }
  .productfull .images .main-image {
    order: 1;
    width: 250px;
    height: 250px;
    max-width: 100%;
    margin: 0 auto;
    flex: 1;
  }
  .productfull .images .thumbs-items {
    width: 100%;
    order: 2;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
  }
}

@media screen and ( max-width: 767px ) {
	.product-item .image img {
	  object-fit: contain;
	}
	body.dark .categories-items {
	  padding: 0;
	  border: 0;
	}
	body.dark .category-item {
	  padding: 0;
	}
	body.dark .category-item .image {
		height: 225px;
	}
	.category-item .image img {
		object-fit: cover;
	}
	.product-item .name {
		height: auto;
	}
}

@media screen and ( max-width: 575px ) {
  .product-item,
  .product-item .image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
	.category-item .image,
	.product-item .image {
		width: 100%;
		height: 205px;
	}
	.product-item {
	  text-align: center;
	}
  .productfull .info .controls {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .productfull .controls .btn.buy {
    margin: 0 0 1rem;
  }
	.product-item .buttons .btn {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
}