/* ==========================================================================
   Yourwatch WC Search Filter — front-end styles
   --------------------------------------------------------------------------
   Baseline using the site's design tokens. Edit freely.
     Font:    'Open Sans', Arial, sans-serif
     Text:    #666
     Headings:#333
     Accent (teal): #7EBEC5
     WC blue: #2ea3f2
   ========================================================================== */

/* ----------------------------- Category filter ---------------------------- */
.yourwatch-filter {
	margin: 0 0 2rem;
	font-family: 'Open Sans', Arial, sans-serif;
	color: #666;
}

.yourwatch-filter-label {
	margin: 0 0 .75rem;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #333;
}

.yourwatch-filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: 0;
	padding: 0 !important;
	list-style: none;
	list-style-type: none !important;
}

.yourwatch-filter-list li {
	width: 100%;
}

.yourwatch-filter-list li a {
	width: 100%;
}

.yourwatch-filter-back {
	display: inline-block;
	margin-top: .75rem;
	color: #2ea3f2;
	font-size: .85rem;
	text-decoration: none;
}

.yourwatch-filter-back:hover {
	text-decoration: underline;
}

/* ------------------------------- Product loop ---------------------------- */
.yourwatch-loop {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1.5rem;
	margin: 0 0 2rem;
}

.loopitem-link {
	display: block;
	text-decoration: none;
	color: #333;
}

.loopitem-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.loopitem-title {
	margin: .75rem 0 0;
	font-size: 1rem;
	font-weight: 600;
	color: #333;
}

.loopitem-link:hover .loopitem-title {
	color: #2ea3f2;
}

.yourwatch-loop-empty {
	margin: 0 0 2rem;
	color: #666;
	font-family: 'Open Sans', Arial, sans-serif;
}

/* ------------------------------- Pagination ------------------------------ */
.yourwatch-pagination {
	margin: 2rem 0 0;
	font-family: 'Open Sans', Arial, sans-serif;
}

.yourwatch-pagination-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .35rem;
	margin: 0;
	padding: 0 !important;
	list-style: none;
	list-style-type: none !important;
}

.yourwatch-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 .5rem;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
	background: #fff;
	color: #666;
	font-size: .9rem;
	text-decoration: none;
	transition: border-color .15s ease, color .15s ease;
}

.yourwatch-page:hover {
	border-color: #7EBEC5;
	color: #333;
}

.yourwatch-page.current {
	border-color: #7EBEC5;
	background: #7EBEC5;
	color: #fff;
	font-weight: 600;
}

.yourwatch-page.disabled {
	color: #bbb;
	border-color: #eee;
	cursor: default;
}

.yourwatch-page.dots {
	border: none;
	background: none;
	min-width: 1rem;
}
