@charset "utf-8";

.public-page-catalog {
	display: flex;
	flex-direction: column;
	max-width: 900px;
	margin: 0 auto;
}
.price-filter-container {
	margin-bottom: 20px;
	padding: 15px;
	border: 1px solid #eee;
	background-color: #f9f9f9;
}
.price-filter-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.price-filter-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.price-filter-option {
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	background-color: #fff;
}
.price-filter-option.active {
	background-color: #007bff;
	color: #fff;
	border-color: #007bff;
}
.catalog-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}
.catalog-table th {
	text-align: left;
	padding: 10px;
	border-bottom: 2px solid #ddd;
	background-color: #f5f5f5;
}

.catalog-table th.align-right {
	text-align: right;
}
.catalog-table td {
	padding: 10px;
	border-bottom: 1px solid #eee;
}
.catalog-displaysid {
	font-size: 12px;
	color: #9a9a9a;
}
.catalog-skuname {
	/* font-size: 16px;
	font-weight: bold; */
}
.catalog-vendoritemid {
	font-size: 12px;
	color: #666;
}
.align-right {
	text-align: right;
}
.catalog-list-price {
	font-size: 14px;
	text-decoration: line-through;
	color: #999;
	text-align: right;
}
.catalog-price {
	font-size: 16px;
	text-align: right;
	font-weight: bold;
	/* color: #d9534f; */
}
.catalog-cta {
	font-size: 14px;
	padding: 0 10px;
	text-align: right;
	cursor: pointer;
	border-radius: 4px;
	display: inline-block;
	font-weight: bold;
	color: #275793;
	text-decoration: underline;
	white-space: nowrap;
	min-width: fit-content;
}
.brand-catalog {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
}
.brand-catalog-item {
	width: 100%;
	margin-bottom: 10px;
	padding: 0;
	text-align: left;
	border: none;
}
.brand-catalog-item-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #f8f8f8;
	border-radius: 12px;
	text-decoration: none;
	color: #333;
	transition: all 0.2s ease;
	box-shadow: 0 2px 0px rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}
.brand-catalog-item-link:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 2px 0px rgba(0, 0, 0, 0.1);
}
.brand-name {
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
}
.brand-count {
	color: #666;
	font-size: 0.9em;
}
.category-title {
	margin-top: 20px;
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ddd;
	font-family: 'Montserrat', sans-serif;
}
.hidden {
	display: none;
}
/* Search input styles */
.catalog-search-container {
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
	width: 100%;
}
.catalog-search-input {
	width: 100%;
	padding: 10px 15px 10px 40px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}
.catalog-search-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: #666;
}
.catalog-search-input:focus {
	outline: none;
	border-color: #007bff;
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 0 3px rgb(102 175 233 / 100%);
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 0 3px rgb(102 175 233 / 100%);
}
.no-results-message {
	text-align: center;
	padding: 20px;
	font-size: 16px;
	color: #666;
	border: 1px solid #eee;
	margin-bottom: 20px;
}

.catalog-item:hover {
	background-color: #f4f5f5;
}

/* Highlight style for search results */
.highlight {
	background-color: yellow;
	padding: 0 2px;
	border-radius: 2px;
}

.catalog-back-link {
	margin-top:10px;
	margin-bottom:10px;
}

.catalog-back-link a {
	text-decoration: underline;
	color: grey;
}

