/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #2c3e50;
	--primary-light: #34495e;
	--secondary: #e74c3c;
	--accent: #f39c12;
	--text-dark: #2c3e50;
	--text-light: #7f8c8d;
	--background: #ffffff;
	--background-light: #f8f9fa;
	--border: #e0e0e0;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
	--border-radius: 8px;
	--transition: all 0.3s ease;
}

body {
	font-family: var(--font-family, 'Montserrat', sans-serif);
	line-height: 1.6;
	color: var(--font-color, var(--text-dark));
	background-color: var(--website-bg, var(--background));
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: var(--text-light);
}

/* Header Styles */
header {
	background: var(--header-background, var(--background));
	box-shadow: var(--shadow);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-icon {
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--header-font-color, white);
	font-size: 1.5rem;
}

.logo h1 {
	margin: 0;
	font-size: 1.8rem;
	color: var(--header-font-color, var(--primary));
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: var(--header-font-color, var(--text-dark));
	font-weight: 500;
	transition: var(--transition);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
}

.nav-menu a:hover,
.nav-menu a.active {
	background: var(--primary);
	color: var(--header-font-color, white);
}

/* Hero Slider Styles */
.hero {
	margin-top: 80px;
	position: relative;
}

.slider {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}

.slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.slide:first-child {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	background: rgba(0, 0, 0, 0.6);
	padding: 2rem;
	border-radius: var(--border-radius);
	max-width: 600px;
	width: 90%;
}

.slide-content h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: white;
}

.slide-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.slide-content .btn {
	background: var(--accent);
	color: var(--text-dark);
	font-weight: 600;
}

.slide-content .btn:hover {
	background: var(--secondary);
	color: white;
}

.slider-nav {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.slider-dot {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
}

.slider-dot:hover,
.slider-dot.active {
	background: white;
	transform: scale(1.2);
}

/* Section Styles */
.section-padding {
	padding: 100px 0 50px;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	color: var(--primary);
	margin-bottom: 1rem;
}

/* Categories Section */
.categories {
	background: var(--background-light);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* Category Card Styles - Same Overlay Design */
.category-card {
	position: relative;
	background: var(--website-bg);
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid var(--border);
	height: 250px;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
	transform: scale(1.05);
}

/* Overlay that appears on hover */
.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,
	rgba(0,0,0,0.7) 0%,
	rgba(0,0,0,0.8) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	padding: 20px;
	text-align: center;
	color: white;
}

.category-card:hover .category-overlay {
	opacity: 1;
	visibility: visible;
}

/* Overlay Content */
.category-overlay-content {
	transform: translateY(20px);
	transition: transform 0.3s ease 0.1s;
	width: 100%;
}

.category-card:hover .category-overlay-content {
	transform: translateY(0);
}

.category-overlay-content h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: white;
}

.category-overlay-content p {
	color: rgba(255,255,255,0.9);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 25px;
	max-height: 80px;
	overflow: hidden;
}

/* Category Icon in Overlay */
.category-icon {
	margin-bottom: 15px;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease 0.1s;
}

.category-card:hover .category-icon {
	opacity: 1;
	transform: translateY(0);
}

.category-icon i {
	font-size: 2.5rem;
	color: var(--primary);
	background: white;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Category Button */
.category-btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: var(--button-radius);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	text-decoration: none;
	display: inline-block;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease 0.2s;
}

.category-card:hover .category-btn {
	opacity: 1;
	transform: translateY(0);
}

.category-btn:hover {
	background: var(--primary-light);
	transform: translateY(-2px);
	color: white;
}

/* INDEX.PHP Category Styles - Different overlay style */
.index-page .category-card {
	height: 220px;
	background: linear-gradient(135deg, var(--background-light) 0%, var(--website-bg) 100%);
}

.index-page .category-overlay {
	background: linear-gradient(135deg,
	rgba(var(--primary-rgb), 0.85) 0%,
	rgba(var(--accent-rgb), 0.85) 100%);
}

.index-page .category-btn {
	background: rgba(255,255,255,0.2);
	border: 2px solid white;
	backdrop-filter: blur(10px);
}

.index-page .category-btn:hover {
	background: white;
	color: var(--primary);
}

.index-page .category-icon i {
	background: rgba(255,255,255,0.2);
	color: white;
	border: 2px solid white;
}

/* Products Section */
.products {
	background: var(--website-bg);
}

/* Product Filters Styles */
.product-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
	justify-content: center;
}

.filter-btn {
	padding: 0.8rem 1.5rem;
	border: 2px solid var(--primary);
	background: transparent;
	color: var(--primary);
	border-radius: var(--button-radius);
	cursor: pointer;
	transition: var(--transition);
	font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--primary);
	color: white;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.product-card {
	background: var(--website-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.product-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.zoom-indicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
	opacity: 0;
	transition: var(--transition);
}

.product-card:hover .zoom-indicator {
	opacity: 1;
}

.product-info {
	padding: 1.5rem;
}

.product-info h3 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.product-info p {
	margin-bottom: 1rem;
}

.product-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* About Section */
.about {
	background: var(--background-light);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.stat {
	text-align: center;
}

.stat h3 {
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.stat p {
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

/* Button Styles */
.btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: var(--button-radius);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn:hover {
	background: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.btn-secondary {
	background: var(--secondary);
}

.btn-secondary:hover {
	background: var(--primary-light);
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 2px solid var(--border);
	border-radius: var(--border-radius);
	font-size: 1rem;
	transition: var(--transition);
	background: var(--website-bg);
	color: var(--font-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.required {
	color: var(--secondary);
}

/* Footer Styles */
footer {
	background: var(--primary);
	color: var(--header-font-color, white);
	padding: 50px 0 0;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: var(--header-font-color, white);
	margin-bottom: 1rem;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

/* Image Zoom Modal */
.zoom-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 2000;
	overflow: hidden;
}

.zoom-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
}

.zoom-content img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
}

.close-zoom {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 2001;
}

.close-zoom:hover {
	color: var(--accent);
}

/* Utility Classes */
.text-center {
	text-align: center;
}
.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.header-top {
		flex-direction: column;
		gap: 1rem;
	}

	.nav-menu {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.section-padding {
		padding: 80px 0 30px;
	}

	.hero {
		margin-top: 120px;
	}

	.slider {
		height: 400px;
	}

	.slide-content h2 {
		font-size: 2rem;
	}

	.slide-content p {
		font-size: 1rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.category-grid,
	.product-grid {
		grid-template-columns: 1fr;
	}

	.product-filters {
		flex-direction: column;
		align-items: center;
	}

	.filter-btn {
		width: 200px;
		text-align: center;
	}

	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.logo {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}

	.nav-menu {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.slider {
		height: 300px;
	}

	.slide-content {
		padding: 1rem;
	}

	.slide-content h2 {
		font-size: 1.5rem;
	}

	.about-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat h3 {
		font-size: 2rem;
	}
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
	z-index: 1001;
	background: none;
	border: none;
	padding: 0;
}

.mobile-menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background: var(--primary);
	border-radius: 3px;
	transition: var(--transition);
	transform-origin: center;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	background: var(--website-bg);
	z-index: 1000;
	transition: var(--transition);
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid var(--border);
	background: var(--primary);
	color: var(--header-font-color, white);
}

.mobile-menu-header .logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.mobile-menu-header .logo h2 {
	color: var(--header-font-color, white);
	font-size: 1.2rem;
	margin: 0;
}

.mobile-menu-header .logo img {
	max-height: 40px;
}

.mobile-menu-close {
	color: var(--header-font-color, white);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
}

.mobile-nav-menu {
	list-style: none;
	padding: 1rem;
	margin: 0;
}

.mobile-nav-menu li {
	margin-bottom: 0.5rem;
}

.mobile-nav-menu a {
	display: block;
	padding: 1rem;
	color: var(--font-color);
	text-decoration: none;
	border-radius: var(--border-radius);
	transition: var(--transition);
	font-weight: 500;
	border: 1px solid var(--border);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
	background: var(--primary);
	color: var(--header-font-color, white);
	border-color: var(--primary);
}

body.mobile-menu-open {
	overflow: hidden;
}

/* Update existing responsive styles */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	/* Hide desktop navigation on mobile */
	.nav-menu {
		display: none !important;
	}

	.header-top {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.logo h1 {
		font-size: 1.5rem;
	}

	/* Ensure slider works on mobile */
	.slider {
		height: 400px;
	}

	.slide-content h2 {
		font-size: 2rem;
	}

	.slide-content p {
		font-size: 1rem;
	}

	.hero {
		margin-top: 100px;
	}
}

@media (max-width: 480px) {
	.mobile-menu {
		width: 280px;
	}

	.logo h1 {
		font-size: 1.3rem;
	}

	/* Mobile slider adjustments */
	.slider {
		height: 300px;
	}

	.slide-content {
		padding: 1rem;
	}

	.slide-content h2 {
		font-size: 1.5rem;
	}

	.slide-content p {
		font-size: 0.9rem;
	}
}

/* Desktop styles - show desktop menu, hide mobile toggle */
@media (min-width: 769px) {
	.mobile-menu-toggle {
		display: none !important;
	}

	.nav-menu {
		display: flex !important;
	}

	.mobile-menu {
		display: none !important;
	}

	.mobile-menu-overlay {
		display: none !important;
	}
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
}

.mobile-menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: var(--header-font-color, #ffffff);
	border-radius: 3px;
	transition: all 0.3s ease;
	transform-origin: center;
}

/* Mobile menu toggle states */
.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Ensure toggle is visible on mobile */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	/* Hide desktop navigation on mobile */
	.nav-menu {
		display: none !important;
	}

	.header-top {
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
		width: 100%;
	}

	.logo {
		display: flex;
		align-items: center;
	}
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	background: var(--website-bg, #ffffff);
	z-index: 1000;
	transition: right 0.3s ease;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid var(--border, #e0e0e0);
	background: var(--primary, #2c3e50);
	color: var(--header-font-color, #ffffff);
}

.mobile-menu-header .logo h2 {
	color: var(--header-font-color, #ffffff);
	font-size: 1.2rem;
	margin: 0;
}

.mobile-menu-close {
	background: none;
	border: none;
	color: var(--header-font-color, #ffffff);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-nav-menu {
	list-style: none;
	padding: 1rem;
	margin: 0;
}

.mobile-nav-menu li {
	margin-bottom: 0.5rem;
}

.mobile-nav-menu a {
	display: block;
	padding: 1rem;
	color: var(--font-color, #333333);
	text-decoration: none;
	border-radius: var(--border-radius, 8px);
	transition: all 0.3s ease;
	font-weight: 500;
	border: 1px solid var(--border, #e0e0e0);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
	background: var(--primary, #2c3e50);
	color: var(--header-font-color, #ffffff);
	border-color: var(--primary, #2c3e50);
}

body.mobile-menu-open {
	overflow: hidden;
}
/* Touch Device Support */
@media (hover: none) and (pointer: coarse) {
	/* Disable hover effects and replace with touch interactions */
	.product-card:hover,
	.category-card:hover {
		transform: none;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

	/* Always show overlay on mobile for better UX */
	.product-overlay,
	.category-overlay {
		opacity: 1 !important;
		visibility: visible !important;
		background: linear-gradient(to bottom,
		rgba(0,0,0,0.7) 0%,
		rgba(0,0,0,0.85) 100%) !important;
	}

	.overlay-content,
	.category-overlay-content {
		transform: translateY(0) !important;
	}

	/* Show quantity selector always on mobile */
	.quantity-selector {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	/* Make overlay content more visible */
	.overlay-content h3,
	.category-overlay-content h3 {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}

	.overlay-content p,
	.category-overlay-content p {
		font-size: 0.9rem;
		margin-bottom: 15px;
	}

	/* Make buttons more touch-friendly */
	.view-details-btn,
	.category-btn,
	.quick-enquiry-btn {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1rem;
		padding: 12px 20px;
	}

	/* Improve product selection on touch */
	.product-select-checkbox {
		opacity: 1 !important;
		width: 30px;
		height: 30px;
	}

	.selected-indicator {
		width: 26px;
		height: 26px;
		opacity: 1;
	}

	/* Disable image zoom on hover for mobile */
	.product-card:hover .product-image img,
	.category-card:hover .category-image img {
		transform: none;
	}
}

/* Active state for touch devices */
.touch-device .product-card:active,
.touch-device .category-card:active {
	transform: scale(0.98);
	transition: transform 0.1s ease;
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 768px) {
	/* Ensure overlays are always visible on mobile */
	.product-overlay,
	.category-overlay {
		opacity: 1 !important;
		visibility: visible !important;
		background: linear-gradient(to bottom,
		rgba(0,0,0,0.6) 0%,
		rgba(0,0,0,0.8) 100%) !important;
	}

	.overlay-content,
	.category-overlay-content {
		transform: translateY(0) !important;
	}

	/* Show all interactive elements */
	.quantity-selector {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	.product-select-checkbox {
		opacity: 1 !important;
	}

	/* Improve touch targets */
	.view-details-btn,
	.category-btn,
	.quick-enquiry-btn,
	.filter-btn {
		min-height: 44px;
		cursor: pointer;
	}

	/* Make checkboxes easier to tap */
	.product-select-checkbox {
		width: 30px;
		height: 30px;
		z-index: 20;
	}

	.selected-indicator {
		width: 26px;
		height: 26px;
	}
}
/* Touch feedback styles */
.touch-device .product-card.touch-active,
.touch-device .category-card.touch-active {
	transform: scale(0.95);
	transition: transform 0.1s ease;
}

.touch-device .view-details-btn:active,
.touch-device .category-btn:active,
.touch-device .quick-enquiry-btn:active {
	transform: scale(0.95);
	opacity: 0.8;
}

/* Selected state for better visibility */
.product-card.selected {
	border: 2px solid var(--accent) !important;
	box-shadow: 0 0 0 2px var(--accent) !important;
}

.touch-device .product-card.selected .selected-indicator {
	background: var(--accent) !important;
	opacity: 1 !important;
}