/**
 * WC Header Search & Filter Pro - Frontend Styles
 */

:root {
	--wc-hsfp-accent-color: #ffd300;
	--wc-hsfp-border-radius: 4px;
	--wc-hsfp-animation-duration: 300ms;
	--wc-hsfp-bg-light: #ffffff;
	--wc-hsfp-text-dark: #000000;
	--wc-hsfp-border-color: #e0e0e0;
}

/* Header Search Bar */
.wc-hsfp-header-search {
	position: relative;
	width: 100%;
	max-width: 100%;
}

.wc-hsfp-search-form {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	width: 100%;
}

.wc-hsfp-search-form-mobile {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	width: 100%;
}

/* Mobile Header (burger only) */
.wc-hsfp-mobile-header {
	display: none;
}

.wc-hsfp-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background: var(--wc-hsfp-accent-color);
	color: var(--wc-hsfp-bg-light);
	border: none;
	border-radius: var(--wc-hsfp-border-radius);
	cursor: pointer;
	transition: opacity 0.2s ease;
	min-width: auto;
	height: 48px;
}

.wc-hsfp-mobile-toggle:hover {
	opacity: 0.8;
}

.wc-hsfp-mobile-toggle svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.wc-hsfp-mobile-toggle-text {
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
}

/* Mobile Search inside Panel */
.wc-hsfp-mobile-search {
	display: none;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--wc-hsfp-border-color);
	position: relative;
}

.wc-hsfp-search-form-mobile {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.wc-hsfp-search-input-mobile {
	flex: 1;
	padding: 14px 20px;
	border: 2px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 16px;
	background: var(--wc-hsfp-bg-light);
	color: var(--wc-hsfp-text-dark);
	outline: none;
	transition: all 0.3s ease;
	font-family: inherit;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.wc-hsfp-search-input-mobile::placeholder {
	color: #999;
	opacity: 1;
}

.wc-hsfp-search-input-mobile:focus {
	border-color: var(--wc-hsfp-accent-color);
	box-shadow: 0 0 0 3px rgba(255, 211, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
	background: #fff;
}

.wc-hsfp-search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background: var(--wc-hsfp-accent-color);
	color: var(--wc-hsfp-bg-light);
	border: none;
	border-radius: var(--wc-hsfp-border-radius);
	cursor: pointer;
	transition: opacity 0.2s ease;
	min-width: 48px;
	height: 48px;
}

.wc-hsfp-search-submit:hover {
	opacity: 0.8;
}

.wc-hsfp-search-submit svg {
	width: 20px;
	height: 20px;
}

.wc-hsfp-search-suggestions-mobile {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: var(--wc-hsfp-bg-light);
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	max-height: 300px;
	overflow-y: auto;
	z-index: 10001;
	display: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wc-hsfp-search-suggestions-mobile.active {
	display: block;
}

.wc-hsfp-search-input {
	flex: 1;
	padding: 14px 20px;
	border: 2px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 16px;
	background: var(--wc-hsfp-bg-light);
	color: var(--wc-hsfp-text-dark);
	outline: none;
	transition: all 0.3s ease;
	font-family: inherit;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.wc-hsfp-search-input::placeholder {
	color: #999;
	opacity: 1;
}

.wc-hsfp-search-input:focus {
	border-color: var(--wc-hsfp-accent-color);
	box-shadow: 0 0 0 3px rgba(255, 211, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
	background: #fff;
}

.wc-hsfp-filter-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background: #ffd300;
	color: var(--wc-hsfp-bg-light);
	border: none;
	border-radius: var(--wc-hsfp-border-radius);
	cursor: pointer;
	transition: opacity 0.2s ease;
	min-width: 48px;
	height: 48px;
}

.wc-hsfp-filter-toggle:hover {
	opacity: 0.8;
}

.wc-hsfp-filter-toggle svg {
	width: 24px;
	height: 24px;
}

/* Search Suggestions */
.wc-hsfp-search-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--wc-hsfp-bg-light);
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	margin-top: 8px;
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wc-hsfp-search-suggestions.active {
	display: block;
}

.wc-hsfp-suggestion-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--wc-hsfp-border-color);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.wc-hsfp-suggestion-item:last-child {
	border-bottom: none;
}

.wc-hsfp-suggestion-item:hover {
	background-color: #f5f5f5;
}

.wc-hsfp-suggestion-image {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: var(--wc-hsfp-border-radius);
}

.wc-hsfp-suggestion-content {
	flex: 1;
}

.wc-hsfp-suggestion-title {
	font-weight: 500;
	color: var(--wc-hsfp-text-dark);
	margin-bottom: 4px;
}

.wc-hsfp-suggestion-price {
	color: var(--wc-hsfp-accent-color);
	font-size: 14px;
}

/* Slide-in Filter Panel */
.wc-hsfp-filter-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	display: none;
}

.wc-hsfp-filter-panel.active {
	display: block;
}

.wc-hsfp-filter-panel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity var(--wc-hsfp-animation-duration) ease;
}

.wc-hsfp-filter-panel.active .wc-hsfp-filter-panel-overlay {
	opacity: 1;
}

.wc-hsfp-filter-panel-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 80%;
	max-width: 400px;
	background: var(--wc-hsfp-bg-light);
	box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform var(--wc-hsfp-animation-duration) ease;
	display: flex;
	flex-direction: column;
}

/* Mobile: Make sidebar 100% width */
@media (max-width: 768px) {
	.wc-hsfp-filter-panel-content {
		width: 100%;
		max-width: 100%;
	}
}

.wc-hsfp-filter-panel.active .wc-hsfp-filter-panel-content {
	transform: translateX(0);
}

.wc-hsfp-filter-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	border-bottom: 1px solid var(--wc-hsfp-border-color);
}

.wc-hsfp-filter-panel-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--wc-hsfp-text-dark);
}

.wc-hsfp-filter-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: #ffd300;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
	min-width: 40px;
	height: 40px;
	border-radius: var(--wc-hsfp-border-radius);
}

.wc-hsfp-filter-close:hover {
	opacity: 0.7;
	background-color: rgba(0, 0, 0, 0.05);
}

.wc-hsfp-filter-close svg {
	width: 24px;
	height: 24px;
}

/* Mobile: Make close button more prominent */
@media (max-width: 768px) {
	.wc-hsfp-filter-close {
		padding: 10px;
		min-width: 44px;
		height: 44px;
	}
	
	.wc-hsfp-filter-close svg {
		width: 28px;
		height: 28px;
	}
}

.wc-hsfp-filter-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
}

.wc-hsfp-filter-panel-footer {
	padding: 16px;
	border-top: 1px solid var(--wc-hsfp-border-color);
}

/* Filters */
.wc-hsfp-filter-section {
	margin-bottom: 24px;
}

.wc-hsfp-filter-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--wc-hsfp-text-dark);
}

.wc-hsfp-categories {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wc-hsfp-category-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	cursor: pointer;
	transition: all 0.2s ease;
	background: var(--wc-hsfp-bg-light);
}

.wc-hsfp-category-item:hover {
	border-color: var(--wc-hsfp-accent-color);
}

.wc-hsfp-category-item.selected {
	border-color: var(--wc-hsfp-accent-color);
	background-color: #f9f9f9;
}

.wc-hsfp-category-item input[type="radio"] {
	margin: 0;
}

.wc-hsfp-category-icon {
	width: 32px;
	height: 32px;
	object-fit: cover;
	border-radius: var(--wc-hsfp-border-radius);
}

/* Category Dropdown */
.wc-hsfp-category-select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 16px;
	background: var(--wc-hsfp-bg-light);
	color: var(--wc-hsfp-text-dark);
	outline: none;
	transition: border-color 0.2s ease;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.wc-hsfp-category-select:focus {
	border-color: var(--wc-hsfp-accent-color);
}

.wc-hsfp-category-select option {
	padding: 8px;
}

/* Price Filter */
.wc-hsfp-price-filter {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wc-hsfp-price-inputs {
	display: flex;
	align-items: center;
	gap: 8px;
}

.wc-hsfp-price-inputs input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 14px;
}

.wc-hsfp-price-slider {
	margin-top: 8px;
}

.wc-hsfp-price-slider input[type="range"] {
	width: 100%;
	height: 4px;
	border-radius: 2px;
	background: var(--wc-hsfp-border-color);
	outline: none;
	-webkit-appearance: none;
}

.wc-hsfp-price-slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--wc-hsfp-accent-color);
	cursor: pointer;
}

.wc-hsfp-price-slider input[type="range"]::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--wc-hsfp-accent-color);
	cursor: pointer;
	border: none;
}

.wc-hsfp-price-display {
	margin-top: 8px;
	text-align: center;
	font-size: 14px;
	color: var(--wc-hsfp-text-dark);
	font-weight: 500;
}

/* Attributes */
.wc-hsfp-attribute-group {
	margin-bottom: 0;
	border-bottom: 1px solid var(--wc-hsfp-border-color);
	overflow: hidden;
}

.wc-hsfp-attribute-group:last-child {
	border-bottom: none;
}

.wc-hsfp-attribute-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
	text-align: left;
}

.wc-hsfp-attribute-header:hover {
	opacity: 0.7;
}

.wc-hsfp-attribute-title {
	font-size: 14px;
	font-weight: 500;
	color: var(--wc-hsfp-text-dark);
	flex: 1;
}

.wc-hsfp-attribute-icon {
	width: 14px;
	height: 14px;
	color: var(--wc-hsfp-text-dark);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	opacity: 0.6;
}

.wc-hsfp-attribute-header[aria-expanded="true"] .wc-hsfp-attribute-icon {
	transform: rotate(180deg);
}

.wc-hsfp-attribute-content {
	padding: 0 0 16px 0;
	background: transparent;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

/* Legacy support for h5 if still used */
.wc-hsfp-attribute-group h5 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
	color: var(--wc-hsfp-text-dark);
}

.wc-hsfp-attribute-terms {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wc-hsfp-attribute-term {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	cursor: pointer;
	border-bottom: 1px solid var(--wc-hsfp-border-color);
	transition: opacity 0.2s ease;
}

.wc-hsfp-attribute-term:last-child {
	border-bottom: none;
}

.wc-hsfp-attribute-term:hover {
	opacity: 0.7;
}

.wc-hsfp-attribute-term input[type="checkbox"] {
	margin: 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.wc-hsfp-attribute-term span {
	font-size: 14px;
	color: var(--wc-hsfp-text-dark);
	flex: 1;
}

/* Buttons */
.wc-hsfp-apply-filters {
	width: 100%;
	padding: 12px 24px;
	background: var(--wc-hsfp-accent-color);
	color: var(--wc-hsfp-bg-light);
	border: none;
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.wc-hsfp-apply-filters:hover {
	opacity: 0.8;
}

.wc-hsfp-clear-filters {
	width: 100%;
	padding: 12px 24px;
	background: transparent;
	color: var(--wc-hsfp-text-dark);
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 16px;
	cursor: pointer;
	margin-top: 8px;
	transition: all 0.2s ease;
}

.wc-hsfp-clear-filters:hover {
	border-color: var(--wc-hsfp-accent-color);
	color: var(--wc-hsfp-accent-color);
}

/* Results Page */
.wc-hsfp-results-page {
	padding: 24px 0;
}

.wc-hsfp-results-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 16px;
}

.wc-hsfp-mobile-filter-toggle {
	display: none;
	margin-bottom: 16px;
}

.wc-hsfp-filter-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: var(--wc-hsfp-accent-color);
	color: var(--wc-hsfp-bg-light);
	border: none;
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 16px;
	cursor: pointer;
}

.wc-hsfp-results-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 24px;
}

.wc-hsfp-results-sidebar {
	background: var(--wc-hsfp-bg-light);
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	padding: 16px;
	height: fit-content;
	position: sticky;
	top: 24px;
}

.wc-hsfp-sidebar-header h3 {
	margin: 0 0 16px 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--wc-hsfp-text-dark);
}

.wc-hsfp-filter-actions {
	margin-top: 24px;
}

.wc-hsfp-results-main {
	min-height: 400px;
}

.wc-hsfp-results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.wc-hsfp-results-header h1 {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
	color: var(--wc-hsfp-text-dark);
}

.wc-hsfp-results-count {
	font-size: 14px;
	color: #666;
}

.wc-hsfp-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

.wc-hsfp-products-grid .product,
.wc-hsfp-products-grid li {
	list-style: none;
	margin: 0;
}

/* Custom Product Card Style */
.wc-hsfp-product-card {
	background: var(--wc-hsfp-bg-light);
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.wc-hsfp-product-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.wc-hsfp-product-image {
	position: relative;
	width: 100%;
	padding-top: 100%; /* 1:1 Aspect Ratio */
	overflow: hidden;
	background: #f5f5f5;
}

.wc-hsfp-product-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.wc-hsfp-product-card:hover .wc-hsfp-product-image img {
	transform: scale(1.05);
}

.wc-hsfp-product-info {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.wc-hsfp-product-title {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--wc-hsfp-text-dark);
}

.wc-hsfp-product-title a {
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wc-hsfp-product-title a:hover {
	color: var(--wc-hsfp-accent-color);
}

.wc-hsfp-product-price {
	margin: 0 0 12px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--wc-hsfp-accent-color);
}

.wc-hsfp-product-price .price {
	display: block;
}

.wc-hsfp-product-price del {
	color: #999;
	font-weight: 400;
	margin-right: 8px;
}

.wc-hsfp-product-price ins {
	text-decoration: none;
}

.wc-hsfp-product-button {
	display: inline-block;
	width: 100%;
	padding: 10px 16px;
	background: var(--wc-hsfp-accent-color);
	color: var(--wc-hsfp-bg-light);
	text-align: center;
	text-decoration: none;
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	margin-top: auto;
	position: relative;
}

.wc-hsfp-product-button:hover {
	background: #e6c000;
	color: var(--wc-hsfp-bg-light);
	opacity: 0.9;
}

.wc-hsfp-product-button.loading {
	opacity: 0.6;
	cursor: wait;
	color: transparent;
}

.wc-hsfp-product-button.loading::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: wc-hsfp-spin 0.6s linear infinite;
}

.wc-hsfp-product-button.loading {
	opacity: 0.6;
	cursor: wait;
	position: relative;
}

.wc-hsfp-product-button.loading::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: wc-hsfp-spin 0.6s linear infinite;
}

.wc-hsfp-sort-select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--wc-hsfp-border-color);
	border-radius: var(--wc-hsfp-border-radius);
	font-size: 14px;
	background: var(--wc-hsfp-bg-light);
	color: var(--wc-hsfp-text-dark);
}

/* Responsive */
@media (max-width: 1200px) {
	.wc-hsfp-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.wc-hsfp-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	/* Hide desktop search form on mobile */
	.wc-hsfp-search-form-desktop {
		display: none;
	}
	
	/* Show mobile header (search button with text) */
	.wc-hsfp-mobile-header {
		display: block;
	}
	
	/* Show mobile search inside panel */
	.wc-hsfp-mobile-search {
		display: block;
	}
	
	/* Hide mobile filter toggle button on results page (mobile only) */
	.wc-hsfp-results-page .wc-hsfp-mobile-filter-toggle {
		display: none;
	}
	
	.wc-hsfp-results-layout {
		grid-template-columns: 1fr;
	}
	
	.wc-hsfp-results-sidebar {
		display: none;
	}
	
	.wc-hsfp-filter-panel {
		display: block;
		visibility: hidden;
		opacity: 0;
	}
	
	.wc-hsfp-filter-panel.active {
		visibility: visible;
		opacity: 1;
	}
	
	.wc-hsfp-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	
	.wc-hsfp-results-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.wc-hsfp-products-grid {
		grid-template-columns: 1fr;
	}
}

/* Loading State */
.wc-hsfp-loading {
	opacity: 0.6;
	pointer-events: none;
}

.wc-hsfp-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	border: 3px solid var(--wc-hsfp-border-color);
	border-top-color: var(--wc-hsfp-accent-color);
	border-radius: 50%;
	animation: wc-hsfp-spin 0.6s linear infinite;
}

@keyframes wc-hsfp-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Infinite Scroll Loading */
.wc-hsfp-load-more {
	text-align: center;
	padding: 20px;
	color: #666;
	font-size: 14px;
}
