/* 공통 */
#productsArchive {
	font-family: Pretendard;
	letter-spacing: -0.03em;
}

#productsArchive *,
#productsArchive *::before,
#productsArchive *::after {
	font-family: Pretendard;
	letter-spacing: -0.03em;
	box-sizing: border-box;
}

#productsArchive .w-1400 {
	width: 100%;
	max-width: 1356px;
	margin: 0 auto;
}

#productsArchive .ellipsis-1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#productsArchive .ellipsis-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

#productsArchive .ellipsis-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

#productsArchive .mo-none {
  display: block;
}

#productsArchive .mo-block {
  display: none;
}



#productsArchive .product-archive-container {
	width: 100%;
	margin: 0 auto;
}

#productsArchive .wrap {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 40px;
	min-width: 0;
}
	
#productsArchive .left {
	width: 180px;
	flex-shrink: 0;
}

#productsArchive .left .category-title {
	color: #000;
	font-size: 28px;
	font-weight: 700;
	line-height: 160%;
	letter-spacing: normal;
	margin-bottom: 28px;
}

#productsArchive .left .categories {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 40px;
	border-bottom: 1px solid #eee;
}

#productsArchive .left .categories li {
	display: block;
	width: 100%;
	color: #A0A0A0;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: normal;
}

#productsArchive .left .categories .dep1-link {
	display: block;
	width: 100%;
	color: currentColor;
	font: inherit;
	line-height: inherit;
}

#productsArchive .left .categories .dep1-link.active {
	color: #000;
	font-weight: 600;
}


#productsArchive .left .categories li.open {
	color: #000;
	font-weight: 600;
}

#productsArchive .left .categories .sub-category {
  display: none;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	margin: 20px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

#productsArchive .left .categories>li.open .sub-category {
  display: flex;
}


#productsArchive .left .categories .dep2-link {
	display: block;
	width: 100%;
	color: #A0A0A0;
	font-size: 14px;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: normal;
	padding-right: 30px;
}

#productsArchive .left .categories li.open .dep2-link.active {
	color: #000;
	font-weight: 600;
	background: url('../images/renewal/product-list/icon-category-select-arrow.svg') no-repeat right 10px center;
	background-size: 12px;
}



#productsArchive .right {
	flex: 1;
	width: 100%;
	padding-bottom: 100px;
}

#productsArchive .category-info {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 0;
  margin-bottom: 53px;
}

#productsArchive .category-info.mo-block {
  display: none;
}

#productsArchive .category-info .img {
  width: 84px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
#productsArchive .category-info .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#productsArchive .category-info .text {
  flex: 1;
  min-width: 0;
}

#productsArchive .category-info .category-name {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 16px;
}

#productsArchive .category-info .category-desc {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.42px;
  max-width: 887px;
}


#productsArchive .filter-section {
	padding-top: 28px;
}

#productsArchive .filter-title-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}
#productsArchive .filter-section-title {
	color: #000;
	font-family: "Noto Sans KR";
	width: fit-content;
	font-size: 18px;
	font-weight: 700;
	line-height: 160%;
	letter-spacing: normal;
	position: relative;
}
#productsArchive .filter-section-title::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 7px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #F9883D;
	display: none;
}

#productsArchive .filter-section-title.active::after {
	display: block;
}

#productsArchive .btn-reset-filter {
	width: 18px;
	height: auto;
	aspect-ratio: 1 / 1;
}

#productsArchive .filter-box {
	margin-bottom: 30px;
}

#productsArchive .filter-box-title {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: normal;
	position: relative;
	cursor: pointer;
	margin-bottom: 20px;
}

#productsArchive .filter-box-title::after {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 6px;
	background: url('../images/renewal/product-list/icon-filter-arrow-up.svg') no-repeat;
	background-size: 10px;
}

#productsArchive .filter-box-title.active::after {
	background-image: url('../images/renewal/product-list/icon-filter-arrow.svg');
}

#productsArchive .filter-list-wrap {
	display: none;
	max-height: 120px;
	overflow: auto;
}

#productsArchive .filter-list-wrap.active {
	display: block;
}

#productsArchive .filter-list {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 9px;
}

#productsArchive .filter-item {
	display: inline-block;
	padding: 4px 16px;
	text-align: center;
	border-radius: 18px;
	border: 1px solid #EEE;
	background: #FFF;
	color: #666;
	font-size: 14px;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: normal;
	cursor: pointer;
}

#productsArchive .filter-item.active {
	border: 1px solid #000;
	color: #000;
	font-weight: 600;
}



#productsArchive .right .top-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

#productsArchive .right .order-block {
	display: flex;
	align-items: center;
	gap: 40px;
}

#productsArchive .check {
	position: relative;
}

#productsArchive .check::after {
	content: '';
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background-color: #eee;
}

#productsArchive .check .soldout-checkbox {
	visibility: hidden;
	display: none;
}

#productsArchive .check label {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
}

#productsArchive .check .toggle {
	display: block;
	width: 30px;
	height: 18px;
	background: url('../images/renewal/product-list/img-toggle-off.svg') no-repeat center center / contain;
	transition: background .3s;
}

#productsArchive .check label.active .toggle {
	background-image: url('../images/renewal/product-list/img-toggle-on.svg');
}

#productsArchive .check .text {
	color: #666;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
}



#productsArchive .right .order-block .orderby {
	display: flex;
	align-items: center;
	gap: 20px;
}

#productsArchive .right .order-block .orderby li {
	color: #A0A0A0;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
}

#productsArchive .right .order-block .orderby li.active {
	color: #000;
	font-weight: 500;
}

#productsArchive .right .order-block .orderby li a {
	color: currentColor;
	cursor: pointer;
}



#productsArchive .search {
	position: relative;
	width: 230px;
}

#productsArchive .search .search-input {
	display: block;
	width: 100%;
	height: 36px;
	padding: 10px 0;
	border: none;
	outline: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.23);
	color: #000;
	font-size: 14px;
	line-height: normal;
	letter-spacing: normal;
}

#productsArchive .search .placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.30);
}

#productsArchive .search .placeholder.hide {
  display: none;
}

#productsArchive .search .placeholder .color-black {
  color: #000;
  font-style: normal;
}

#productsArchive .search .search-input:focus+.placeholder {
  display: none;
}

#productsArchive .search-svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 8px;
	cursor: pointer;
}

#productsArchive .category-title-pc {
	color: #000;
	font-size: 28px;
	font-weight: 400;
	line-height: 160%;
	text-align: center;
	letter-spacing: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 56px;
}

#productsArchive .category-title-pc .bold {
	display: inline-block;
	font-weight: 600;
}

#productsArchive .category-title-pc .keyword {
	max-width: 10em;
}

#productsArchive .category-title-pc span {
	display: inline-block;
}

#productsArchive .category-title-mo {
	display: none;
}

#productsArchive .category-wrapper {
}
#productsArchive .category-section {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
#productsArchive .category-section > a {
	display: block;
	width: 20%;
}
#productsArchive .category-section > a > div {
	width: 100%;
}
#productsArchive .category-section > a label {
	position: relative;
	display: inline-block;
	min-width: 174px;
	width: 100%;
	height: 40px;
	line-height: 38px;
	border-radius: 100px;
	border: 1px solid #dfdfdf;
	cursor: pointer;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	padding: 0 15px;
	text-align: center;
	vertical-align: bottom;
	background: #fff;
	transition: all ease 0.3s;
	-webkit-tap-highlight-color: transparent;
	margin-bottom: 20px;
	cursor: pointer;
}
#productsArchive .category-section > a label:hover {
	opacity: 0.6;
	border: 1px solid #0b4499;
	color: #0b4499;
}
#productsArchive .category-section > a .cate {
	width: 100%;
	display: inline-block;
	padding: 0 10px;
}
#productsArchive .category-section > a input[type='radio'] {
	display: none;
}
#productsArchive .category-section > a input[type='checkbox'] {
	display: none;
}
#productsArchive .category-section a.active label {
	color: #0b4499;
	border: 1px solid #0b4499;
	transition: all ease 0.3s;
}
#productsArchive .select-box {
	text-align: right;
	margin: 35px 0 0 0;
}
#productsArchive .select-box select {
	font-size: 14px;
	font-weight: normal;
	line-height: normal;
	text-align: center;
	color: #000000;
	border: none;
}
#productsArchive .select-box label {
	position: relative;
}
#productsArchive .select-box label::after {
	position: absolute;
	content: '';
	width: 24px;
	height: 24px;
	top: 50%;
	left: -25px;
	transform: translateY(-50%);
	background-image: url('../images/select_01.png');
	background-size: cover;
	background-repeat: no-repeat;
}


#productsArchive .right {
	flex: 1;
	min-width: 0;
	width: 100%;
}


/* 상품영역 */
#productsArchive .products-section {

}

#productsArchive .products-section.no-result {
	display: flex;
	justify-content: center;
}

#productsArchive .product-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 48px 19px;
}

#productsArchive .product-item {
	display: block;
	width: 100%;
}

#productsArchive .product-item .img {
	width: 100%;
	aspect-ratio: 1 / 1;
	border: 1px solid #E9E9E9;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 16px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

#productsArchive .product-item .img .badge {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 1;
}

#productsArchive .product-item .img .badge.todaySale {
	width: 34px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url('../images/renewal/home/badge-today-sale.svg') no-repeat center center / contain;
}

#productsArchive .product-item .img .option-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.60);
  padding: 4px 6px;
  color: #FFF;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: normal;
}

#productsArchive .product-item .img img {
	display: block;
}

#productsArchive .product-item .category {
	color: rgba(136, 136, 136, 0.9);
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: normal;
	margin-bottom: 8px;
}

#productsArchive .product-item .product-name {
	color: #000;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: normal;
	margin-bottom: 8px;
}

#productsArchive .product-item .regular-price-block {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-bottom: 6px;
}

#productsArchive .product-item .regular-price-block .text {
	color: #F9463D;
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
}

#productsArchive .product-item .regular-price {
	color: #999;
	font-family: Inter;
	font-size: 13px;
	font-weight: 400;
	text-decoration-line: line-through;
}

#productsArchive .product-item .price-block {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-bottom: 8px;
}

#productsArchive .product-item .price-block .percent {
	color: #F9463D;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
}

#productsArchive .product-item .price {
	color: #000;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
}

#productsArchive .product-item .soldout {
	font-size: 13px;
	margin-bottom: 8px;
}

#productsArchive .product-item .point-block {
	display: flex;
	align-items: flex-start;
	gap: 3px;
	margin-bottom: 10px;
}

#productsArchive .product-item .point-block .text {
	color: #1351F6;
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
}

#productsArchive .product-item .point-block .point {
	color: #888;
	font-family: Inter;
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
}

#productsArchive .product-item .etc-block {
	display: flex;
	align-items: center;
	gap: 20px;
}

#productsArchive .product-item .brand-block {
	display: flex;
	align-items: center;
	gap: 6px;
	position: relative;
}

#productsArchive .product-item .brand-block::after {
	content: '';
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 12px;
	background-color: #e9e9e9;
}

#productsArchive .product-item .brand-img {
	flex-shrink: 0;
	width: 14px;
	height: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid #eee;
}

#productsArchive .product-item .brand-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#productsArchive .product-item .brand-name {
	color: #444;
	font-family: "Noto Sans KR";
	font-size: 12px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: normal;
}

#productsArchive .product-item .ranking-block {
	display: flex;
	align-items: center;
}

#productsArchive .product-item .star {
	width: 12px;
	margin-right: 4px;
}

#productsArchive .product-item .ranking {
	color: #444;
	font-family: Inter;
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
	margin-right: 2px;
}

#productsArchive .product-item .review-count {
	color: #888;
	font-family: Inter;
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
}

#productsArchive .pagination {
	margin-top: 80px;
}


#productsArchive .check.pc {
	display: flex;
}

#productsArchive .check.mo {
	display: none;
}

.mobile-cate {
	display: none;
}

.mobile-filter {
	display: none;
}

.mobox {
	display: none;
}

#productsArchive .overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	top: 0;
	left: 0;
}

#productsArchive .overlay.active {
	display: block;
}

#productsArchive .bottom-modal {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	width: 100%;
	height: 518px;
	border-radius: 10px 10px 0px 0px;
	background: #FFF;
	z-index: 100000;
	transition: 0.3s;
	padding: 32px 20px 20px;
}

#productsArchive .bottom-modal.active {
	transform: translateX(-50%) translateY(0);
}

#productsArchive .bottom-modal strong {
	display: block;
	color: #000;
	font-family: "Noto Sans KR";
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 20px;
}

#productsArchive .bottom-modal .btn-wrapper {
	position: absolute;
	display: flex;
	gap: 6px;
	width: calc(100% - 40px);
	left: 20px;
	bottom: 20px;
	min-width: 0;
}

#productsArchive .bottom-modal .btn-wrapper div {
	height: 52px;
	line-height: 52px;
	border-radius: 4px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: normal;
	border: 1px solid #000;
  cursor: pointer;
}

#productsArchive .bottom-modal .btn-wrapper .sub {
	background: #FFF;
	width: 116px;
	color: #000;
}

#productsArchive .bottom-modal .btn-wrapper .main {
	background: #000;
	color: #fff;
	flex: 1;
	min-width: 0;
}

#productsArchive .bottom-modal.category {
	max-height: 650px;
	display: flex;
	align-items: flex-start;
	padding: 32px 24px 20px;
	min-width: 0;
}

#productsArchive .bottom-modal.category .m-categories {
	width: 140px;
	height: 100%;
	flex-shrink: 0;
	overflow-y: auto;
	border-right: 1px solid #eee;
}

#productsArchive .bottom-modal.category .m-sub-categories {
	height: 100%;
	flex: 1;
	min-width: 0;
	overflow-y: auto;
	padding-left: 25px;
}

#productsArchive .bottom-modal.category ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
}

#productsArchive .bottom-modal.category .m-sub-categories ul {
	gap: 24px;
}

#productsArchive .bottom-modal.category li {
	width: 100%;
	color: #A0A0A0;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: normal;
}

#productsArchive .bottom-modal.category li.active {
	color: #000;
	font-weight: 600;
}

#productsArchive .bottom-modal.category .m-sub-categories li {
	font-size: 15px;
}

#productsArchive .bottom-modal.category li a {
	color: currentColor;
	display: block;
	width: 100%;
}
#productsArchive .bottom-modal.category li.open a {
  color: #000;
  font-weight: 600;
}

#productsArchive .bottom-modal.category .m-sub-categories .dep2-link.active {
	color: #000;
	font-weight: 600;
	background: url('../images/renewal/product-list/icon-category-select-arrow.svg') no-repeat right 10px center;
	background-size: 12px;
}

#productsArchive .bottom-modal.orderby {
	max-height: 250px;
	padding: 32px 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
}

#productsArchive .bottom-modal.orderby .item {
	display: block;
	width: 100%;
	cursor: pointer;
	color: #A0A0A0;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: normal;
}

#productsArchive .bottom-modal.orderby .item.active {
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

#productsArchive .bottom-modal.orderby .item.active span {
	display: inline-block;
	background: url('../images/renewal/product-list/icon-category-select-arrow.svg') no-repeat right center;
	background-size: 12px;
	padding-right: 20px;
}






/* 반응형 */
@media screen and (max-width: 1400px) {
	#productsArchive .w-1400 {
		max-width: 100%;
		padding: 0 20px;
	}
}


@media screen and (max-width: 1300px) {
	#productsArchive .product-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}


@media screen and (max-width: 1100px) {
	#productsArchive .product-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


@media screen and (max-width: 950px) {
	#productsArchive .right .top-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}


@media screen and (max-width: 768px) {
  #productsArchive {
    padding-top: 10px;
  }

  #productsArchive .mo-none {
    display: none;
  }

  #productsArchive .mo-block {
    display: block;
  }

	#productsArchive .wrap {
		display: block;
	}

	#productsArchive .filter-box.brand .filter-list-wrap {
		height: 77px;
	}

	#productsArchive .left {
		display: none;
	}

	#productsArchive .category-title-pc {
		display: none;
	}

	#productsArchive .category-title-mo {
		display: flex;
		justify-content: center;
		align-items: center;
		color: #000;
		font-size: 20px;
		letter-spacing: normal;
		font-weight: 400;
		margin-bottom: 30px;
	}

	#productsArchive .category-title-mo .bold {
		display: inline-block;
		font-weight: 600;
	}

	#productsArchive .category-title-mo .keyword {
		max-width: 8em;
		font-size: inherit;
	}

	#productsArchive .category-title-mo span {
		display: inline-block;
	}

	#productsArchive .category-title-mo.btn {
		display: block;
		text-align: left;
		margin: 0 0 24px;
		width: fit-content;
		position: relative;
		padding-right: 20px;
		color: #000;
		font-size: 20px;
		font-weight: 600;
		line-height: 160%;
		cursor: pointer;
	}

	#productsArchive .category-title-mo.btn::after {
		content: '';
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 14px;
		height: 8px;
		background: url('../images/renewal/product-list/icon-mo-title-arrow.svg') no-repeat center center / contain;
	}

	#productsArchive .right .top-block {
    display: none;
		margin-bottom: 24px;
	}

	#productsArchive .right .order-block {
		display: none;
	}

	#productsArchive .right .search {
		width: 100%;
    display: none;
	}

	#productsArchive .search .search-input {
		height: 42px;
		border-radius: 50px;
		background: #F7FAFC;
		padding: 13px 48px 13px 18px;
		border: none;
	}

  #productsArchive .search .placeholder {
    left: 18px;
  }

	#productsArchive .product-item .img {
		padding: 13px;
	}

  #productsArchive .product-item .img .option-badge {
    right: 10px;
    top: 10px;
  }

	#productsArchive .search-svg {
		right: 18px;
	}

	#productsArchive .mobile-cate {
		width: calc(100% + 40px);
		transform: translateX(-20px);
		display: flex;
		white-space: nowrap;
		overflow: auto;
		gap: 30px;
		padding-right: 20px;
		padding-left: 20px;
		padding-bottom: 10px;
    position: relative;
	}

  #productsArchive .mobile-cate::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100vw;
    height: 1px;
    background-color: #eee;
  }

	#productsArchive .mobile-cate::-webkit-scrollbar {
	    display: none;
	}

	#productsArchive .mobile-cate a {
		color: #A0A0A0;
		font-size: 14px;
		font-weight: 500;
		line-height: 160%;
		position: relative;
	}

	#productsArchive .mobile-cate a::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: -10px;
		width: 100%;
		height: 2px;
    background-color: #000;
		display: none;
	}

	#productsArchive .mobile-cate a.active {
		color: #000;
		font-weight: 600;
	}

	#productsArchive .mobile-cate a.active::after {
		display: block;
	}


  #productsArchive .category-info.mo-block {
    display: block;
    padding-top: 30px;
    margin-bottom: 30px;
  }

  #productsArchive .category-info .img-name-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  #productsArchive .category-info .img {
    width: 64px;
  }

  #productsArchive .category-info .category-name {
    font-size: 16px;
    margin-bottom: 0;
  }

  #productsArchive .category-info .category-desc {
    font-size: 13px;
  }

	#productsArchive .mobox {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 24px 0 20px;
    position: relative;
	}

  #productsArchive .mobox::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100vw;
    height: 1px;
    background-color: #eee;
  }

	#productsArchive .check.mo {
		display: block;
	}

  #productsArchive .check::after {
    display: none;
  }

	#productsArchive .mobile-filter {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	#productsArchive .mobile-filter p {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		color: #666;
		font-size: 14px;
		font-weight: 400;
		line-height: 160%;
		border-radius: 16px;
		border: 1px solid #EEE;
		background: #FFF;
		height: 32px;
		padding: 4px 14px;
		cursor: pointer;
	}

	#productsArchive .mobile-filter svg {
		margin-left: 5px;
	}

	#productsArchive .mobile-filter p i {
		display: inline-block;
		width: 2px;
		height: 2px;
		background: rgba(0, 0, 0, 0.2);
		border-radius: 50%;
		margin: 0 4px;
		transform: translateY(1px);
	}

	#productsArchive .mobile-filter p.active {
		border: 1px solid #000;
		color: #000;
	}

	#productsArchive .mobile-filter p.active i {
		background: #000;
		opacity: 0.2;
	}
}

@media screen and (max-width: 600px) {
	#productsArchive .product-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}