/* Product Center Styles */

.product-center-section {
	padding: 60px 0;
	background: #f7f9fb;
	min-height: calc(100vh - 200px);
}

.product-center-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	align-items: start;
}

/* Product List Container */
.product-list-container {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(15, 31, 47, 0.08);
}

.product-list-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(15, 31, 47, 0.1);
}

.product-count {
	font-size: 0.95rem;
	color: #3a5972;
	margin: 0;
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.product-card {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid rgba(15, 31, 47, 0.08);
	position: relative;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(15, 31, 47, 0.12);
	border-color: rgba(11, 110, 253, 0.2);
}

.product-card__image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
	background: #f7f9fb;
}

.product-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.product-card__image--hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card:hover .product-card__image {
	opacity: 0;
}

.product-card:hover .product-card__image--hover {
	opacity: 1;
}
.proimg{
	width: 80px;
	height: 20px;
}
.product-card__brand {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: rgba(255, 255, 255, 0.95);
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #0b6efd;
	display: flex;
	align-items: center;
	gap: 6px;
}

.product-card__content {
	padding: 20px;
}

.product-card__features {
	margin-bottom: 12px;
}

.product-card__feature {
	font-size: 0.85rem;
	color: #3a5972;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.product-card__feature::before {
	content: "▷";
	color: #0b6efd;
	font-weight: bold;
}

.product-card__tagline {
	font-size: 0.8rem;
	color: #6b8499;
	margin-bottom: 12px;
	font-style: italic;
}

.product-card__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #0f1f2f;
	margin: 0;
	line-height: 1.4;
}

/* Sidebar */
.product-sidebar {
	position: sticky;
	top: 120px;
}

.sidebar-section {
	background: #ffffff;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 2px 8px rgba(15, 31, 47, 0.08);
}

.sidebar-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #0f1f2f;
	margin: 0 0 20px 0;
	padding-bottom: 12px;
	border-bottom: 2px solid #0b6efd;
}

/* Search Box */
.search-box {
	display: flex;
	gap: 8px;
}

.search-input {
	width: 80%;
	flex: 1;
	padding: 12px 16px;
	border: 1px solid rgba(15, 31, 47, 0.15);
	border-radius: 8px;
	font-size: 0.95rem;
	color: #0f1f2f;
	transition: all 0.3s ease;
	outline: none;
}

.search-input:focus {
	border-color: #0b6efd;
	box-shadow: 0 0 0 3px rgba(11, 110, 253, 0.1);
}

.search-input::placeholder {
	color: #9ba8b5;
}

.search-btn {
	padding: 12px 16px;
	background: #0b6efd;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	min-width: 48px;
	flex-shrink: 0;
	box-sizing: border-box;
}

.search-btn .icon-search {
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-btn .icon-search::before {
	width: 20px;
	height: 20px;
}

.search-btn:hover {
	background: #0a5ed9;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(11, 110, 253, 0.3);
}

.search-btn:active {
	transform: translateY(0);
}

/* Category List */
.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-item {
	margin-bottom: 8px;
}

.category-parent {
	display: block;
	font-weight: 600;
	color: #0f1f2f;
	padding: 10px 0;
	font-size: 0.95rem;
	cursor: default;
}

.category-submenu {
	list-style: none;
	padding: 0;
	margin: 8px 0 8px 16px;
}

.category-submenu li {
	margin-bottom: 6px;
}

.category-link {
	display: block;
	padding: 8px 12px;
	color: #3a5972;
	text-decoration: none;
	border-radius: 6px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 24px;
}

.category-link::before {
	content: "•";
	position: absolute;
	left: 8px;
	color: #9ba8b5;
	font-size: 1.2rem;
	line-height: 1;
}

.category-link:hover {
	background: rgba(11, 110, 253, 0.08);
	color: #0b6efd;
	padding-left: 28px;
}

.category-link.active {
	background: rgba(11, 110, 253, 0.12);
	color: #0b6efd;
	font-weight: 600;
}

.category-link.active::before {
	color: #0b6efd;
}

/* Empty State */
.product-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: #6b8499;
}

.product-empty__icon {
	font-size: 3rem;
	margin-bottom: 16px;
	opacity: 0.5;
}

.product-empty__message {
	font-size: 1.1rem;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.product-center-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.product-sidebar {
		position: static;
		order: -1;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.product-center-section {
		padding: 40px 0;
	}

	.product-list-container {
		padding: 20px;
	}

	.product-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.sidebar-section {
		padding: 20px;
	}

	.search-box {
		flex-direction: column;
	}
	.search-input{
		width: 100%;
	}

	.search-btn {
		width: 100%;
	}
}

