@font-face {
    font-family: 'El Messiri';
    src: url('https://www.sult4n.com/shop/assets/css/fonts/ElMessiri-Medium.woff2') format('woff2'),
        url('https://www.sult4n.com/shop/assets/css/fonts/ElMessiri-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
	font-family: 'El Messiri', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f8f9fa;
	color: #333;
}
h1 {
	font-size: 24px;
	color: #222;
	margin-bottom: 20px;
	text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}
form .wrap {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.search {
	display: flex;
	align-items: center;
	border: 2px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	max-width: 400px;
	width: 90%;
	background-color: #fff;
}
.search input[type=text] {
	font-family: 'El Messiri';
	padding: 10px;
	border: none;
	flex: 1;
	outline: none;
	font-size: 16px;
}
.search .searchButton {
	padding: 10px 15px;
	background-color: #007bff;
	border: none;
	color: white;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: 80px;
	font-size: 16px;
}
.search .searchButton:hover {
	background-color: #0056b3;
}
.button {
    font-family: 'El Messiri';
	padding: 10px 20px;
	background-color: #28a745;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 16px;
	margin-top: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.button:hover {
	background-color: #218838;
}
.maint {
	padding: 20px;
	max-width: 100%;
	margin: auto;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	text-align: center;
}
.new {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 15px;
}
.new2 {
	flex: 1 1 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 200px;
}
.new2 p {
	margin: 0 0 5px 0;
	font-weight: bold;
}
.new2 select {
    font-family: 'El Messiri';
	padding: 8px 10px;
	font-size: 16px;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 6px;
}
#total, #total2, #total3 {
	font-weight: bold;
	color: #444;
	font-size: 18px;
}
/* ✅ استجابة للشاشات الصغيرة */
@media 
{
.search {
	flex-direction: column;
	align-items: stretch;
}
.search input[type=text], .search .searchButton {
	width: 100%;
	box-sizing: border-box;
}
.new {
	flex-direction: column;
	align-items: stretch;
}
.new2 {
	width: 100%;
}
}
.share-whatsapp {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 12px;
    text-align: center;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'El Messiri';
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .15);
    transition: .2s;
}