.apex-shop-container-b31d39d5 {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	font-family: 'Montserrat', 'Roboto', sans-serif;
}

.apex-shop-controls-b31d39d5 {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.apex-search-wrapper-b31d39d5 {
	position: relative;
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}

#apex-search-bar-b31d39d5 {
	width: 100%;
	padding: 14px 45px 14px 20px;
	border: 1px solid #ddd;
	border-radius: 30px;
	font-size: 16px;
	outline: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

#apex-search-bar-b31d39d5:focus {
	border-color: #000F56;
	box-shadow: 0 4px 15px rgba(0, 15, 86, 0.15);
}

.search-icon-b31d39d5 {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #7A7A7A;
	pointer-events: none;
}

.apex-categories-b31d39d5 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.cat-btn-b31d39d5 {
	padding: 10px 20px;
	background-color: #F9F9F9;
	border: 1px solid #EAEAEA;
	border-radius: 20px;
	color: #54595F;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cat-btn-b31d39d5:hover,
.cat-btn-b31d39d5.active {
	background-color: #000F56;
	color: #FFFFFF;
	border-color: #000F56;
}

.apex-products-grid-b31d39d5 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.product-card-b31d39d5 {
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #EAEAEA;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.product-card-b31d39d5:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-image-wrapper-b31d39d5 {
	position: relative;
	width: 100%;
	padding-top: 100%; /* 1:1 Aspect Ratio */
	background-color: #F9F9F9;
	overflow: hidden;
}

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

.product-card-b31d39d5:hover .product-img-b31d39d5 {
	transform: scale(1.08);
}

.product-badge-b31d39d5 {
	position: absolute;
	top: 12px;
	left: 12px;
	background-color: #FFC327;
	color: #000F56;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	text-transform: uppercase;
}

.product-info-b31d39d5 {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-category-b31d39d5 {
	font-size: 11px;
	text-transform: uppercase;
	color: #7A7A7A;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.product-title-b31d39d5 {
	font-size: 18px;
	font-weight: 700;
	color: #000F56;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.product-desc-b31d39d5 {
	font-size: 13px;
	color: #7A7A7A;
	line-height: 1.5;
	margin-bottom: 15px;
	flex-grow: 1;
}

.product-meta-b31d39d5 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #F1F1F1;
}

.product-price-b31d39d5 {
	font-size: 18px;
	font-weight: 800;
	color: #61CE70;
}

.product-price-b31d39d5.quote-b31d39d5 {
	color: #FFC327;
	font-size: 14px;
	font-weight: 700;
}

.product-btn-b31d39d5 {
	background-color: #000F56;
	color: #FFFFFF;
	border: none;
	border-radius: 4px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.product-btn-b31d39d5:hover {
	background-color: #61CE70;
	color: #FFFFFF;
}

@media (max-width: 768px) {
	.apex-shop-controls-b31d39d5 {
		gap: 15px;
	}
	.cat-btn-b31d39d5 {
		font-size: 12px;
		padding: 8px 16px;
	}
}
