.sidebar {
    width: 250px;
    min-width: 250px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
	
}

.filter-container {
    padding: 0;
    margin: 0;
}

.filter-section {
    margin-bottom: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #eee;
}
.products-buttons-under {
	display: flex;
	gap: 10px;
	flex-direction: column;
	align-items: center;
}
.brochure-button {
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent);
	padding: 8px 12px;
	border-radius: 4px;
	color: var(--accent);
	width: 220px;

}
.brochure-button:hover {
	background: var(--accent);
	color: white;
}
.filter-section-header {
    padding: 10px 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.filter-section-header:hover {
    background: #f8f9fa;
    padding-left: 20px;
}

.filter-section-header:active {
    background: #e9ecef;
}

.filter-section-header {
    padding: 10px 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.filter-section h3 {
    font-size: 13px;
    margin: 0;
    color: #333;
    font-weight: 500;
}

.filter-options {
    max-height: 250px;
    overflow-y: auto;
    padding: 5px;
}

.filter-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 2px 0;
}

.filter-option:hover {
    background: #f0f7ff;
}

.filter-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-wrapper {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background: white;
    transition: all 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-wrapper.checked {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-wrapper.checked:after {
    content: '✓';
    position: absolute;
    top: -2.5px;
    left: 3px;
    color: white;
    font-size: 14px;
}

.filter-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    padding: 2px 0;
    width: 100%;
}

.filter-count {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    margin-left: 8px;
}

.filter-option:hover .filter-count {
    background: #e3f2fd;
    color: #2196F3;
}

.filter-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.filter-section.active .filter-arrow {
    transform: rotate(-135deg);
}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.product-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 1100px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-modal-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.product-modal-header img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8f9fa;
  
}

.product-modal-info {
    flex: 1;
}

.product-modal-info h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 28px;
    line-height: 1.3;
}

.product-modal-info p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    font-size: 16px;
}

.product-modal-details {
    display: grid;
   
    gap: 40px;
    margin-top: 30px;
}

.product-features h3,
.product-specifications h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
}

.product-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #eee;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-specifications table {
    width: 100%;
    border-collapse: collapse;
}

.product-specifications td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.product-specifications tr:last-child td {
    border-bottom: none;
}

.product-specifications td:first-child {
    font-weight: 500;
    width: 40%;
    color: #333;
}

.modal-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.modal-button {
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.add-to-cart {
    background-color: #007bff;
    color: white;
}

.add-to-cart:hover {
    background-color: #0056b3;
}

.buy-now {
    background-color: #28a745;
    color: white;
}

.buy-now:hover {
    background-color: #218838;
}

@media (max-width: 1200px) {
    .product-modal-content {
        max-width: 900px;
    }
    
    .product-modal-header img {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-modal-content {
        padding: 30px;
    }
    
    .product-modal-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-modal-header img {
        width: 100%;
        height: auto;
        max-height: 350px;
    }
    
    .product-modal-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-modal-info h2 {
        font-size: 24px;
    }
}

/* Modal and Form Styles */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.buy-form {
	background: white;
	padding: 30px;
	border-radius: 8px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.buy-form h3 {
	margin: 0 0 20px;
	color: #333;
	font-size: 24px;
}
.form-group {
	margin-bottom: 20px;
}
.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #555;
	font-weight: 500;
}
.form-group input,.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}
.form-group input.error {
	border-color: #ff4444;
	background: #fff8f8;
}
.form-group textarea {
	resize: vertical;
	min-height: 100px;
}
.form-actions {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}
.form-actions button {
	flex: 1;
	padding: 12px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.2s;
}
.cancel-btn {
	background: #f5f5f5;
	color: #666;
}
.cancel-btn:hover {
	background: #e8e8e8;
}
.submit-btn {
	background: #4CAF50;
	color: white;
}
.submit-btn:hover {
	background: #45a049;
}
/* Basket Sidebar Styles */
.basket-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: white;
	box-shadow: -2px 0 5px rgba(0,0,0,0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}
.basket-sidebar.active {
	right: 0;
}
.basket-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.basket-items {
	
	overflow-y: auto;
	padding: 20px;
}
.basket-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border-bottom: 1px solid #eee;
}
.basket-item img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	border-radius: 4px;
}
.basket-item-info {
	flex: 1;
}
.basket-item-quantity {
	display: flex;
	align-items: center;
	gap: 10px;
}
.basket-item-quantity button {
	width: 30px;
	height: 30px;
	border: none;
	background: #f5f5f5;
	border-radius: 4px;
	cursor: pointer;
}
.basket-footer {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	gap: 10px;
}
.basket-footer button {
	flex: 1;
	padding: 12px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
}
.content {
	display: flex;
	gap: 30px;
	width: 100%;
	padding: 20px;
	max-width: 100%;
	margin: 0;
}
@media (max-width: 1024px) {
	.content {
		padding: 5px;
		gap: 5px;
	}
	.filter-toggle-button {
		display: flex;
		margin-top: 0;
		padding: 8px 12px;
		border-radius: 4px;
	}
	.products-container {
		margin-top: 5px;
	}
	.sidebar {
		margin: 0;
	}
}
/* Sidebar Styles */
.main-container {
	max-width: 1400px;
	margin: 80px auto 0;
	padding: 20px;
}
.content {
	display: flex;
	gap: 30px;
	min-height: calc(100vh - 100px);
	padding: 20px;
	max-width: 100%;
	margin: 0;
}

/* Mobile Styles */
@media (max-width: 1024px) {
	.content {
		flex-direction: column;
		padding: 10px;
		gap: 20px;
	}
	.sidebar {
		width: 100%;
		min-width: 100%;
		position: relative;
		top: 0;
		margin-bottom: 20px;
	}
	.filter-toggle {
		display: block;
		width: 100%;
		padding: 15px;
		background: #fff;
		border: none;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0,0,0,0.05);
		font-size: 16px;
		color: #333;
		text-align: left;
		cursor: pointer;
	}
	.filter-toggle i {
		float: right;
		transition: transform 0.3s ease;
	}
	.filter-toggle.active i {
		transform: rotate(180deg);
	}
	.filter-container {
		display: none;
	}
	.filter-container.active {
		display: block;
	}
}
/* Product Card Styles */
.products-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 20px;
	width: 100%;
}
.product-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 420px;
	/* Fixed height */
}
.product-card img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	background: #f5f5f5;
	
}
.product-card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.product-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	color: #333;
	height: 44px;
	/* Fixed height for 2 lines */
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.product-type {
	color: #666;
	font-size: 14px;
	margin-bottom: 10px;
}
.product-card p {
	color: #555;
	font-size: 14px;
	margin: 0;
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.add-to-basket {
	padding: 12px;
	background: var(--accent);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Mobile Responsive */
@media (max-width: 1024px) {
	.content {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
		min-width: 100%;
		position: relative;
		top: 0;
	}
}
@media (max-width: 768px) {
	.products-container {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}
.main-container {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 20px;
	box-sizing: border-box;
}
.content {
	display: flex;
	gap: 20px;
	width: 100%;
}

.main-content {
	flex: 1;
	min-width: 0;
}
.products-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	width: 100%;
}
.product-card {
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.product-card img {
	width: 100%;
	height: 200px;
	object-fit: contain;
}
.product-card-content {
	flex: 1;
	padding: 15px;
	display: flex;
	flex-direction: column;
}
.product-card h3 {
	margin: 15px;
	font-size: 1em;
	color: #333;
}
.product-card .product-type {
	font-size: 0.9em;
	color: #666;
	margin-bottom: 10px;
}
.product-card p {
	margin: 10px 15px 15px;
	color: #555;
	font-size: 0.9em;
}
/* Product Details Styles */
.product-details {
	padding: 2rem;
	background: white;
	min-height: calc(100vh - 5rem);
	display: none;
}
.product-details.active {
	display: block;
}
.back-button {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 1.5rem;
	background: var(--gray-100);
	border: none;
	border-radius: 25px;
	color: var(--primary-dark);
	cursor: pointer;
	margin-bottom: 2rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	gap: 0.5rem;
}
.back-button:hover {
	background: var(--gray-200);
	transform: translateX(-5px);
}
.product-details-content {
	max-width: 1200px;
	margin: 0 auto;
}
.product-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
	align-items: start;
}
.product-details-image {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	background: var(--gray-100);
	border-radius: 12px;

	border: 1px solid var(--gray-200);
}
.product-details-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.product-details-title {
	font-size: 2.2rem;
	color: var(--primary-dark);
	line-height: 1.2;
}
.product-details-price {
	font-size: 1.5rem;
	color: var(--accent);
	font-weight: bold;
}
.product-details-description {
	color: var(--gray-700);
	line-height: 1.8;
	font-size: 1.1rem;
}
.product-info-section {
	margin-top: 3rem;
}
.info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
.info-section {
	background: var(--gray-50);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid var(--gray-200);
}
.info-section h3 {
	color: var(--primary-dark);
	font-size: 1.3rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--accent);
}
.features-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}
.features-list li {
	background: white;
	padding: 1.2rem;
	border-radius: 8px;
	list-style: none;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
	position: relative;
	padding-left: 2.5rem;
}
.features-list li::before {
	content: '•';
	position: absolute;
	left: 1rem;
	color: var(--accent);
	font-size: 1.5rem;
	line-height: 1;
}
.features-list li:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(12, 20, 43, 0.1);
	border-color: var(--accent);
}
/* Purchase Button Styles */
.purchase-button {
	border: 1px solid var(--accent);
	color: var(--accent);
	padding: 1rem 2rem;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 500;
	transition: all 0.2s ease;
}
.purchase-button:hover {
	color: white;
	background: var(--accent-dark);
}
/* Purchase Modal Styles */
.purchase-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(12, 20, 43, 0.8);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.purchase-modal.active {
	display: flex;
	opacity: 1;
}
.purchase-form {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	width: 90%;
	max-width: 500px;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s ease;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.purchase-modal.active .purchase-form {
	transform: translateY(0);
}
.purchase-form h2 {
	margin-bottom: 2rem;
	color: var(--primary-dark);
	font-size: 1.8rem;
	text-align: center;
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--gray-700);
	font-weight: 500;
}
.form-group input,.form-group select {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--gray-300);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}
.form-group input:focus,.form-group select:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(242, 100, 49, 0.1);
}
.close-purchase-modal {
	position: absolute;
	right: 1rem;
	top: 1rem;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--gray-600);
	background: none;
	border: none;
	padding: 0.5rem;
	transition: all 0.3s ease;
}
.close-purchase-modal:hover {
	color: var(--accent);
	transform: rotate(90deg);
}
/* Batch Request Styles */
.tab-content {
	display: none;
	width: 100%;
}
.tab-content.active {
	display: block;
}
.batch-container {
	max-width: 800px;
	margin: 2rem auto;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.batch-container h2 {
	color: var(--primary-dark);
	margin-bottom: 2rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
}
.batch-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.form-group {
	display: flex;
	flex-direction: column;
}
.form-group.full-width {
	grid-column: span 2;
}
.form-group label {
	color: var(--gray-700);
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.form-group input,.form-group textarea {
	padding: 0.75rem 1rem;
	border: 1px solid var(--gray-300);
	border-radius: 6px;
	font-size: 1rem;
	transition: all 0.2s ease;
}
.form-group input:focus,.form-group textarea:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(242, 100, 49, 0.1);
}
.form-group textarea {
	resize: vertical;
	min-height: 100px;
	
}
.submit-batch {
	grid-column: span 2;
	background: var(--accent);
	color: white;
	border: none;
	padding: 1rem;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 1rem;
}
.submit-batch:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(242, 100, 49, 0.2);
}
/* Nav Tabs Styles */
.nav-tabs {
	display: flex;
	gap: 1rem;
}
.nav-tab {
	padding: 0.5rem 1.5rem;
	color: var(--gray-600);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.2s ease;
	position: relative;
}
.nav-tab::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transition: transform 0.2s ease;
}
.nav-tab:hover {
	color: var(--accent);
}
.nav-tab.active {
	color: var(--accent);
}
.nav-tab.active::after {
	transform: scaleX(1);
}
/* Responsive Design */
@media (max-width: 768px) {
	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}
	.sidebar.active {
		transform: translateX(0);
	}
	.content-area {
		margin-left: 0;
	}
	.product-header {
		grid-template-columns: 1fr;
	}
	.features-list {
		grid-template-columns: 1fr;
	}
}
.product-details-specs {
	margin: 2rem 0;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	padding: 1.5rem;
	background: var(--gray-50);
}
.product-details-specs h3 {
	color: var(--primary-dark);
	margin-bottom: 1rem;
}
.specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
}
.spec-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.spec-label {
	font-weight: 500;
	color: var(--gray-700);
}
.spec-value {
	color: var(--gray-600);
}
.product-applications {
	margin: 2rem 0;
}
.product-applications h3 {
	color: var(--primary-dark);
	margin-bottom: 1rem;
}
.applications-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}
.application-item {
	background: var(--gray-50);
	padding: 1rem;
	border-radius: 6px;
	color: var(--gray-700);
	text-align: center;
	border: 1px solid var(--gray-200);
}

/* Product Modal Styles */
.product-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
.product-modal-content {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	max-width: 1000px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.close-modal {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
}
.product-modal-header {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.product-modal-info {
	flex: 1;
}
.product-modal-info h2 {
	margin-bottom: 10px;
}
.product-modal-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.product-features ul {
	list-style-type: none;
	padding: 0;
}
.product-features li {
	padding: 5px 0;
	border-bottom: 1px solid #eee;
}
.product-specifications table {
	width: 100%;
	border-collapse: collapse;
}
.product-specifications td {
	padding: 8px;
	border-bottom: 1px solid #eee;
}
.product-specifications td:first-child {
	font-weight: bold;
	width: 40%;
}
.add-to-cart {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	margin-top: 10px;
}
.add-to-cart:hover {
	background-color: #0056b3;
}
@media (max-width: 768px) {
	.product-modal-header {
		flex-direction: column;
	}
	.product-modal-header img {
		width: 100%;
		height: auto;
	}
	.product-modal-details {
		grid-template-columns: 1fr;
	}
}
/* Basket Button Styles */
.basket-button {
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}
.basket-icon {
	font-size: 24px;
}
.basket-count {
	position: absolute;
	top: 0;
	right: 0;
	background: #ff4444;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}
/* Basket Sidebar Styles */
.basket-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: white;
	box-shadow: -2px 0 10px rgba(0,0,0,0.1);
	z-index: 1000;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
}
.basket-sidebar.active {
	right: 0;
}
.basket-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.close-basket {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}
.basket-items {

	overflow-y: auto;
	padding: 20px;
}
.basket-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border-bottom: 1px solid #eee;
}
.basket-item img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 4px;
}
.basket-item-info {
	flex: 1;
}
.basket-item-info h4 {
	margin: 0 0 5px;
	color: #333;
}
.basket-item-info p {
	margin: 0;
	color: #666;
	font-size: 0.9em;
}
.basket-item-quantity {
	display: flex;
	align-items: center;
	gap: 10px;
}
.basket-item-quantity button {
	background: #f5f5f5;
	border: none;
	width: 25px;
	height: 25px;
	border-radius: 4px;
	cursor: pointer;
}
.remove-item {
	background: none;
	border: none;
	color: #ff4444;
	font-size: 20px;
	cursor: pointer;
}
.basket-footer {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	gap: 10px;
}
.basket-footer button {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.clear-basket {
	background: #f5f5f5;
	color: #666;
}
.submit-basket {
	background: #4CAF50;
	color: white;
}
/* Basket Modal Styles */
.basket-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1100;
}
.basket-modal.active {
	display: flex;
}
.basket-modal-content {
	background: white;
	padding: 30px;
	border-radius: 8px;
	width: 90%;
	max-width: 500px;
	position: relative;
}
.basket-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.form-group label {
	color: #333;
	font-weight: 500;
}
.form-group input,.form-group textarea {
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}
.submit-request {
	background: #4CAF50;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin-top: 10px;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.basket-sidebar {
		width: 100%;
		right: -100%;
	}
	.basket-modal-content {
		width: 95%;
		padding: 20px;
	}
}
/* Product Card Button Styles */
.product-buttons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 15px;
}
/* Mobile Filter Toggle Button */
.filter-toggle-button {
	display: none;
	align-items: center;
	gap: 8px;
	background: var(--accent);
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
}
.filter-toggle-button:hover {
	background: var(--accent-dark);
}
.filter-toggle-button i {
	font-size: 16px;
}
/* Mobile Sidebar Overlay */
@media (max-width: 1024px) {
	.filter-toggle-button {
		display: flex;
		margin-top: 50px;
	}
	.sidebar {
		position: fixed;
		top: 0;
		left: -100%;
		height: 100vh;
		width: 85%;
		max-width: 350px;
		background: white;
		z-index: 1000;
		transition: left 0.3s ease;
		overflow-y: auto;
		box-shadow: 2px 0 8px rgba(0,0,0,0.1);
	}
	
	body.filters-open::after {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,0.5);
		z-index: 999;
	}
	.filter-container {
		padding: 20px;
	}
	.filter-category {
		margin-bottom: 15px;
	}
	.filter-header {
		padding: 12px 15px;
		background: #f8f8f8;
		border-radius: 6px;
	}
	.filter-content {
		padding: 10px 15px 10px 35px;
	}
	/* Close button for sidebar */
	
}
/* Product Card Button Styles */
.product-buttons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 15px;
}
.details-button {
	background: #f0f0f0;
	color: #333;
}
.details-button:hover {
	background: #e0e0e0;
}
.buy-button {
	background: none;
	border: 1px solid var(--accent);
	color: var(--accent);
}
.buy-button:hover {
	background: var(--accent);
	color: white;
}
/* Buy Modal Styles */
.buy-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1100;
}
.buy-modal-content {
	background: white;
	padding: 30px;
	border-radius: 8px;
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.product-summary {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.product-summary img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 4px;
}
.product-summary .product-info {
	flex: 1;
}
.product-summary h3 {
	margin: 0 0 5px;
	color: #333;
}
.product-summary p {
	margin: 0;
	color: #666;
}
#buyForm {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.submit-buy {
	background: #2196F3;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.2s;
}
.submit-buy:hover {
	background: #1976D2;
}
@media (max-width: 768px) {
	.product-buttons {
		grid-template-columns: 1fr;
	}
	.buy-modal-content {
		padding: 20px;
		width: 95%;
	}
	.product-summary {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
/* Notification Styles */
.notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #4CAF50;
	color: white;
	padding: 15px 25px;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 2000;
}
.notification.show {
	transform: translateY(0);
	opacity: 1;
}
/* Modal Button Styles */
.modal-buttons {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.modal-buttons button {
	width: 220px;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.2s;
}
/* WhatsApp Button Styles */
.whatsapp-button {
	width: 220px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #25D366;
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	margin-top: 10px;
	transition: background-color 0.2s;
	width: 100%;
}
.whatsapp-button:hover {
	background-color: #128C7E;
}
.whatsapp-button i {
	font-size: 20px;
}
/* Mobile Sidebar Styles */
@media (max-width: 1024px) {
	.content {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
		min-width: 100%;
		top: 0;
		margin-bottom: 20px;
		box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	}
	.filter-container {
		padding: 15px;
	}
	.filter-category {
		margin-bottom: 8px;
	}
	.filter-header {
		padding: 12px 15px;
		background: #f8f8f8;
	}
	.filter-header:hover {
		background: #f0f0f0;
	}
	.filter-content {
		padding: 10px 15px 10px 35px;
		background: #fff;
	}
	.filter-type {
		padding: 8px 0;
	}
	.filter-type label {
		font-size: 14px;
	}
	/* Improve touch targets */
	.filter-header,.filter-type label {
		min-height: 44px;
		display: flex;
		align-items: center;
	}
	/* Make checkboxes larger on mobile */
	input[type="checkbox"] {
		width: 20px;
		height: 20px;
	}
}

/* Filter Modal Styles */


.filter-modal .filter-container {
    box-shadow: none;
    padding: 0;
    margin: 0;
    position: static;
    width: 100%;
    height: auto;
    background: white;
}

.filter-modal .filter-section {
    margin-bottom: 20px;
    padding: 0 20px;
}

.filter-modal .section-header {
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.filter-modal .section-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.filter-modal .filter-options {
    padding-left: 10px;
}

.filter-modal .filter-option {
    padding: 8px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-modal .filter-option:hover {
    background: #f5f5f5;
}

.filter-modal .filter-label {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    cursor: pointer;
}

.filter-modal .filter-count {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 12px;
}

.filter-modal .product-modal-content {
    max-width: 90%;
    width: 400px;
    max-height: 90vh;
    overflow-y: auto;
}

.filter-modal .filter-modal-content {
    padding: 20px;
}

.filter-modal .filter-container {
    box-shadow: none;
    padding: 0;
    margin: 0;
    position: static;
    width: 100%;
    height: auto;
    background: white;
}

.filter-modal .filter-section {
    margin-bottom: 20px;
}

.filter-modal .section-header {
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.filter-modal .section-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.filter-modal .filter-options {
    padding-left: 10px;
}

.filter-modal .filter-option {
    padding: 8px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-modal .filter-option:hover {
    background: #f5f5f5;
}

.filter-modal .filter-label {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    cursor: pointer;
}

.filter-modal .filter-count {
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 8px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .filter-container {
        padding: 0;
        margin: 0;
        width: 100%;
        height: auto;
    }
    
    .filter-section {
        margin-bottom: 20px;
    }
    
    .filter-option {
        padding: 8px 0;
    }
    
    .filter-label {
        font-size: 14px;
    }
}

.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-modal .product-modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow-y: auto;
}

.filter-modal .filter-container {
    padding: 0;
    margin: 0;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.filter-toggle-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    cursor: pointer;
}

.filter-toggle-button i {
    margin-right: 8px;
}

@media (max-width: 1060px) {
    .sidebar {
        display: none;
    }
    
    .filter-toggle-button {
        display: flex;
        align-items: center;
    }
    
    .main-content {
        width: 100%;
    }

    /* Show filters in modal only on mobile */
    .filter-modal .filter-container {
        display: block;
        padding: 0;
        margin: 0;
        max-height: calc(90vh - 100px);
        overflow-y: auto;
    }
}

@media (min-width: 1060px) {
    .filter-toggle-button {
        display: none;
    }

    /* Hide modal on desktop */
    .filter-modal {
        display: none !important;
    }

    .sidebar {
        display: block;
    }
}
