/**
 * Product Search Plugin Styles
 */
.psp-search-header {
	margin-bottom: 20px;
}

.psp-search-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter';
}

.psp-search-form {
	width: 100%;
}

.psp-search-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
}

.psp-brand-field-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 0 0 auto;
	min-width: 200px;
}

.psp-brand-field-wrapper .psp-filter-label {
	color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Inter';
}

.psp-brand-select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	background-color: #ffffff;
	cursor: pointer;
	transition: border-color 0.2s ease;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	padding-right: 35px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.psp-brand-select:hover {
	border-color: #999;
}

.psp-brand-select:focus {
	outline: none;
	border-color: #17a2b8;
	box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.1);
}

.psp-search-field-wrapper {
	flex: 1;
	min-width: 300px;
	position: relative;
}

.psp-search-main {
	flex: 2;
	min-width: 80%;
}

.psp-search-input-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: transparent;
    border-radius: 4px;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-height: 48px;
	width: 97.4%;
}

.psp-search-icon {
	font-size: 18px;
	color: #666;
	margin-right: 10px;
	flex-shrink: 0;
}

.psp-selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-right: 0;
    flex: 1;
    min-width: 100%;
    background: #E3EFF0;
    border-radius: 5px;
	border-radius: 0px 0px 10px 10px;
    margin-top: -2px;
}

.psp-selected-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #EDFDFF;
    color: #33AFBE;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    gap: 6px;
    white-space: nowrap;
    font-family: 'Inter';
	border: 1px solid #33AFBE;
	margin: 9px 7px;
}

.psp-tag-icon {
	font-size: 14px;
}

.psp-tag-label {
	flex: 1;
}

.psp-tag-remove {
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    margin-left: 4px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.psp-tag-remove:hover {
	opacity: 1;
}

.psp-search-input {
	flex: 1;
	min-width: 100%;
	padding: 8px 0;
	border: none !important;
	outline: none;
	font-size: 16px;
	background: #fff;
	color: #333;
	padding-bottom: 14px !important;
}

.psp-search-input::placeholder {
	color: #999;
}

/* Autocomplete Dropdown */
.psp-autocomplete-dropdown {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	right: 0;
	background-color: #ffffff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	max-height: 300px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
}

.psp-autocomplete-item {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.2s ease;
}

.psp-autocomplete-item:last-child {
	border-bottom: none;
}

.psp-autocomplete-no-results {
	padding: 12px 15px;
	color: #d32f2f;
	font-size: 14px;
	text-align: center;
	background-color: #ffebee;
	border-radius: 4px;
	margin: 5px;
}

.psp-autocomplete-item:hover,
.psp-autocomplete-item.active {
	background-color: #f5f5f5;
}

.psp-autocomplete-icon {
	font-size: 18px;
	margin-right: 10px;
	width: 24px;
	text-align: center;
}

.psp-autocomplete-label {
	flex: 1;
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.psp-autocomplete-type {
	font-size: 12px;
	color: #999;
	text-transform: capitalize;
	padding: 2px 8px;
	background-color: #f0f0f0;
	border-radius: 3px;
	margin-left: 10px;
}

.psp-autocomplete-item:hover .psp-autocomplete-type,
.psp-autocomplete-item.active .psp-autocomplete-type {
	background-color: #33AFBE;
	color: #ffffff;
}

.psp-filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
	flex: 1;
	flex-direction: row !important;
}

.psp-filter-field {
	display: flex;
	flex-direction: column;
	min-width: 33.33%;
}

.psp-filter-label {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-bottom: 15px !important;
    font-family: 'Inter' !important;
}
.psp-filter-select {
	width: 100%;
	padding: 12px 15px !important;
	border: none;
	border-radius: 4px;
	background-color: #ffffff;
	color: #333;
	font-size: 14px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	padding-right: 35px;
}
.page-id-386 div#sticky-header {
    margin-bottom: 0 !important;
}
.psp-results-title {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Inter';
}
.psp-results-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: flex-end;
	margin-bottom: 20px;
	padding: 15px;
}
.psp-filter-select:focus {
	outline: 2px solid #00d4aa;
	outline-offset: 2px;
}

.psp-msrp-field {
	min-width: 200px;
}

.psp-msrp-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.psp-msrp-range-display {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #00d4aa;
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	min-height: 36px;
}

.psp-msrp-min,
.psp-msrp-max {
	flex: 1;
	text-align: center;
}

.psp-msrp-icon {
	font-size: 16px;
	margin: 0 8px;
}

.psp-msrp-input {
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-radius: 4px;
	background-color: #ffffff;
	color: #333;
	font-size: 14px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.psp-msrp-input::placeholder {
	color: #999;
}

.psp-msrp-input:focus {
	outline: 2px solid #00d4aa;
	outline-offset: 2px;
}

.psp-msrp-select {
	margin-top: 0;
}

.psp-search-button-wrapper {
	display: flex;
	align-items: flex-end;
}

.psp-search-button {
	background-color: #00d4aa;
	color: #ffffff;
	border: none;
	padding: 12px 30px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.psp-search-button:hover {
	background-color: #00b894;
}

.psp-search-button:active {
	transform: translateY(1px);
}

.psp-screen-reader-text {
	color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Inter';
}

/* Loading state */
.psp-loading {
	opacity: 0.6;
	pointer-events: none;
}

.psp-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #00d4aa;
	border-top-color: transparent;
	border-radius: 50%;
	animation: psp-spin 0.6s linear infinite;
}


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

/* Responsive design */
@media (max-width: 768px) {
	.psp-search-row {
		flex-direction: column;
	}
	
	.psp-search-main,
	.psp-filter-group {
		width: 100%;
		min-width: 100%;
	}
	
	.psp-filter-group {
		flex-direction: column;
	}
	
	.psp-filter-field {
		width: 100%;
		min-width: 100%;
	}
	
	.psp-search-button-wrapper {
		width: 100%;
	}
	
	.psp-search-button {
		width: 100%;
	}
}

button.psp-search-button {
    background: #33AFBE;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter';
    padding: 8px 15px;
}

/* Contact Details View */
.psp-contact-details {
	padding: 20px;
}

.psp-contact-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1a1a1a;
	line-height: 1.3;
}

.psp-contact-subtitle {
	font-size: 14px;
	color: #666;
	margin-bottom: 30px;
	line-height: 1.5;
}

.psp-contact-info {
	margin-bottom: 30px;
}

.psp-contact-item {
	display: flex;
	align-items: center;
	padding: 20px;
	margin-bottom: 15px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s, box-shadow 0.2s;
}

.psp-contact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.psp-contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-right: 20px;
	flex-shrink: 0;
}

.psp-contact-icon-phone {
	background-color: #e3f2fd;
}

.psp-contact-icon-email {
	background-color: #e8f5e9;
}

.psp-contact-icon-location {
	background-color: #fce4ec;
}

.psp-contact-text {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	word-break: break-word;
}

.psp-contact-avatars {
	display: flex;
	justify-content: center;
	gap: -10px;
	margin-bottom: 20px;
	position: relative;
}

.psp-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	border: 3px solid #ffffff;
	position: relative;
}

.psp-avatar-purple {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	z-index: 2;
}

.psp-avatar-yellow {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	margin-left: -15px;
	z-index: 1;
}

.psp-email-confirmation {
	background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
	color: #ffffff;
	padding: 20px 25px;
	border-radius: 12px;
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.psp-email-icon {
	font-size: 20px;
}

.psp-modal-interested-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}