:root {
	--primary-pink: #ff69b4;
	--secondary-pink: #ff91c7;
	--light-pink: #ffe4f0;
	--dark-gray: #333;
	--light-gray: #f8f9fa;
}

body {
	font-family: 'Teko', sans-serif;
	line-height: 1.6;
	color: var(--dark-gray);
}


/* parent */
.sec {
	margin-top: 70px;
	display: row !important;
	align-items: center;
	justify-content: center !important;
	text-align: center;
	margin-bottom: 50px;




}

.sec .title {
	text-align: center;
	margin: 0 auto 15px auto;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important;
	font-size: 2rem;
	color: black;
	display: inline-block;
}

.sec .title::after {
	content: "";
	display: block;
	margin: 6px auto 0 auto;
	width: 35%;
	/* عدل النسبة حسب ما تريد */
	border-bottom: 4px solid var(--primary-pink);
	border-radius: 20px;
}



/* icons category */
.menu__tab {
	margin-top: 20px;
	padding-left: 0;
	display: flex;
	align-items: center;
	max-width: 100%;
	overflow-x: none;
	list-style: none;
}

.menu__tab-item {
	margin-right: 50px;
	text-align: center;
	position: relative;
	cursor: pointer;
	opacity: 0.8;
	border-bottom: 3px solid transparent;
	transition: all 0.3s;
}

.menu__tab-item:hover {
	opacity: 1;
	border-bottom: 3px solid var(--primary-pink);
}

.menu__tab-item:last-child {
	margin-right: 0;
}


.menu__tab-item.menu__tab-item--active {
	border-bottom-color: var(--primary-color);
	opacity: 1;
}

.menu__tab-img {
	width: 60px;

}

.menu__tab-name {
	font-size: 16px;
	color: #555;
	margin-top: 8px;
}


/*  ================== list product ============ */
.listProduct {
	display: grid;
	flex-wrap: wrap;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	justify-items: start;
	align-items: start;
}

.product-row {
	display: contents;
	/* حتى لا يؤثر على توزيع الكروت */
	gap: 10px;
}

.product-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 10px 10px;
	width: 220px;
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: box-shadow 0.2s;
	cursor: pointer;
}

.product-card:hover {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.card-img-wrap {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.product-img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 12px;
}

.product-title {
	font-size: 15px;
	font-weight: bold;
	margin: 8px 0 4px 0;
	color: #d2691e;
}

.product-desc {
	font-size: 0.95rem;
	color: #555;
	text-align: center;
	margin-bottom: 8px;
}

.product-price {
	font-size: 1rem;
	color: #e67e22;
	font-weight: bold;
	margin-top: 2px;
}

.add-to-cart-btn {
	margin-top: 6px;
	padding: 6px 14px;
	background: linear-gradient(90deg, #ff69b4 0%, #ffb6c1 100%);
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.95rem;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
	display: flex;
	align-items: center;
	gap: 4px;
	transition: background 0.2s, transform 0.2s;
}

.add-to-cart-btn:hover {
	background: linear-gradient(90deg, #e75480 0%, #ff69b4 100%);
	transform: translateY(-2px) scale(1.04);
}

.cart-icon {
	font-size: 1.2em;
	margin-right: 2px;
}


/* ===================== Responsive Design ===================== */
/* هذه القواعد تجعل صفحة المنيو متجاوبة مع جميع الشاشات (موبايل/تابلت/ديسكتوب) */
@media (max-width: 1200px) {
	.listProduct {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 991px) {

	/* تصغير صفوف المنتجات والكروت في الشاشات الصغيرة */
	.product-row {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}

	.product-card {
		width: 90vw;
		min-width: 180px;
		max-width: 350px;
	}

	.listProduct {
		gap: 18px;
		grid-template-columns: repeat(4, 1fr);

	}
	.menu__tab {
        justify-content: space-evenly !important;
    }

    .menu__tab-item {
        margin-right: 0;
    }
}

@media (max-width: 600px) {

	/* تصغير عناصر البطاقة والأزرار في الموبايل */
	.product-card {
		width: 95vw;
		min-width: 120px;
		max-width: 180px;
		padding: 8px 2px;
	}

	.listProduct {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-title {
		font-size: 1rem;
	}

	.product-desc {
		font-size: 0.9rem;
	}

	.add-to-cart-btn {
		font-size: 0.95rem;
		padding: 7px 10px;
	}
}

/* نهاية responsive */