body {
	--scrollW: 0px;

	font-family: var(--ff-normal);
	font-weight: var(--fw-regular);
	color: var(--color-text);
}

/* SOF Header */
.top-menu.third-menu {
	margin-left: auto;
}

.header .desktop-main-menu-wrapper {
	max-width: 100%;
}

#main-menu > .j-menu > .menu-item {
	> a {
		position: relative;
		font-weight: 600;

		&::before {
			content: '';
			width: 0%;
			height: 2px;
			background-color: var(--color-accent);
			/* background-color: var(--color-text); */
			position: absolute;
			left: 0;
			bottom: 0;
			transition: 0.35s ease-out width;
			font-size: 0px;
		}
	}

	&:hover > a::before {
		width: 100%;
	}
}

.mobile-cart-content-wrapper {
	.td-image img {
		max-width: 100px;
	}
	.td-name a {
		font-weight: var(--fw-semibold);
	}

	.cart-totals {
		tr td:last-child {
			font-weight: var(--fw-semibold);
		}
	}
}

.mobile-header-active {
	.header-classic {
		z-index: 9999;
	}

	.mobile-container {
		top: var(--mobile-bar, 65px);
	}

	.mobile-main-menu-container .x {
		margin-right: 8px;
	}

	.mobile-filter-wrapper .module-filter {
		padding: 1rem !important;
	}
}

/* EOF Header */

/* SOF Home */
.c--collection {
	.slide-content-image {
		&::before {
			content: '';
			position: absolute;
			background: linear-gradient(to bottom, rgba(12, 13, 13, 0) 0%, rgba(13, 13, 13, 0.7) 100%);
			top: 70%;
			transition: all 0.4s ease;
		}

		&:hover::before {
			top: 0;
		}
	}

	.slide-layers {
		.slide-text:last-child {
			margin-bottom: 2rem;
		}

		.slide-text:not(:only-child) {
			font-weight: var(--fw-semibold);
		}
	}
}

.post-grid {
	.p-date {
		display: none !important;
	}
}

.module-slider {
	.swiper-pagination-bullet {
		border: 2px solid #fff;
	}
}

/* EOF Home */

/* SOF Product Card */
.product-thumb {
	.name {
		font-weight: var(--fw-semibold);
		margin-top: auto;
	}
	.price {
		font-weight: var(--fw-semibold);

		.price-new,
		.price-old,
		.price-normal {
			line-height: 1rem;
		}
	}
}

/* EOF Product Card */

/* SOF Footer */
.post-grid,
footer .links-menu,
.module-catalog {
	.subitem a,
	.links-menu-item a,
	.name a {
		position: relative;
		padding-block: 4px;

		&::before {
			content: '';
			width: 0%;
			height: 2px;
			background-color: var(--color-accent);
			/* background-color: var(--color-text); */
			position: absolute;
			left: 0;
			bottom: 0;
			transition: 0.35s ease-out width;
			font-size: 0px;
		}

		&:hover::before {
			width: 100%;
		}
	}
}
/* EOF Footer */

/* SOF Category Page */
.desktop-filter-wrapper {
	.panel-title {
		font-weight: 600 !important;
	}
}

.selected-filters {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;

	&:not(:empty) {
		margin-top: 1rem;
	}

	.selected-filter-reset-btn {
		background-color: transparent;
		font-size: 13px;
		text-decoration: underline;
		color: var(--color-link);

		&:hover {
			color: var(--color-link-hover);
		}
	}

	.selected-filter-item:not(.selected-filter-reset) {
		position: relative;
		border: 1px solid var(--color-border);
		padding: 6px 10px;
		font-size: 13px;

		.selected-filter-remove {
			position: absolute;
			background: var(--color-error);
			top: -8px;
			height: 16px;
			display: flex;
			width: 16px;
			justify-content: center;
			align-items: center;
			right: -8px;
			font-size: 14px;
			color: #fff;
			border-radius: 999px;
		}
	}
}

/* Product Count Display */
.products-count-display {
	display: flex;
	align-items: center;

	.showing-products-text {
		font-size: 14px;
		font-weight: 500;
		color: var(--color-text);
	}
}

/* EOF Category Page */

@media only screen and (max-width: 1380px) {
}

@media only screen and (max-width: 500px) {
	.selected-filters {
		gap: 1rem;
	}
	.products-filter {
		.products-count-display {
			width: 100%;
			margin-bottom: 1rem;
		}
		.select-group {
			width: 100%;

			.input-group {
				flex: 1;
				margin-left: 0px;

				select {
					max-width: 100% !important;
				}
			}
		}
	}
}
