@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'hh2';
    src:url("fonts/regu/DinNextRegular.eot");
    src:url("fonts/regu/DinNextRegular.woff");
    src:url("fonts/regu/DinNextRegular.woff2");
}

@font-face {
    font-family: 'hh1';
    src:url(fonts/bold/DinNextBold.ttf);
    src:url(fonts/bold/DinNextBold.eot);
    src:url(fonts/bold/DinNextBold.woff);
    src:url(fonts/bold/DinNextBold.woff2);
}

@font-face {
    font-family: 'hh3';
    src:url(fonts/medium/DinNextLight.ttf);
    src:url(fonts/medium/DinNextLight.eot);
    src:url(fonts/medium/DinNextLight.woff);
    src:url(fonts/medium/DinNextLight.woff2);
}
.btn {font-family: "hh2";}
input, .card-text{font-family: "hh2";}
span, p{
	font-family: "hh2";
}
h1, h2, h3, h5,h6, h4{
	font-family: "hh1";
	color:#f8a634;
	
}
.mb-4{color:#f8a634 !important}
@media (max-width: 768px) {
    .card img {
        max-height: 150px !important;
    }


	.logo img {
    width: 100px;
    height: auto;
}
	.card-body {
    padding: 10px !important;
}
}

p{
	text-align: right;
	direction: rtl;
}

/* تنسيق الأيقونات */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: #555; /* لون الأيقونات */
    font-size: 24px; /* حجم الأيقونات */
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #f8a634; /* لون عند التمرير */
}

h2 {
    color: #333;
    font-size: 17px;
}

h1 {
    color: #f8a634;
    text-align: center; /* يجعل العنوان في المنتصف */
    margin-bottom: 10px; /* مسافة أسفل العنوان */
    position: relative;
	font-size: 26px;
}

h1::after {
    content: '';
    display: block;
    width: 80%; /* عرض الخط */
    height: 1px; /* سماكة الخط */
    background-color: #f8a634; /* لون الخط */
    margin: 10px auto 0; /* يحافظ على الخط في المنتصف */
}


body {
	font-family: "hh2";
    background-color: #cbaf89 !important; 
	color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	direction: rtl;
    text-align: right;
}
.bg-light{background-color:#cbaf89 !important; }



.marquee{
	max-width: 75%;
	background-color:#f8a634;
    list-style: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
	border-radius: 22px;
	line-height: inherit;
	color: #272727;
	padding: 5px 0px;
	
}
@media (max-width: 768px) {
	.marquee{width: 95%; margin: 2px auto;
}}
.header {
    padding:7px 0px 7px 0px;
	max-width: 75%;
	margin: 0 auto;
}
@media (max-width: 768px) {
    .header {
        max-width: 100% !important;
	}} 


.container {
    max-width: 55%;
    margin:5px auto;
    padding: 20px 20px 20px 20px;
    text-align: center;
	background-color: #ffffff;
    color: #333;
	border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .container {
         max-width: 90% !important;
		padding: 8px 20px 20px 20px !important;
    }

    .card img {
        max-height: 100px !important;
    }

    .card-title {
        font-size: 12px !important;
    }

   .row-cols-2>* {
    padding: 1px !important;
}

}

/* الشعار */
.logo {
    display: block;
    margin: 20px auto;
    width: 170px; /* العرض */
    height: auto; /* الطول التلقائي */
    position: relative;
    overflow: hidden;
}

.logo {
    display: block;
    margin: 20px auto;
    width: 170px; /* العرض */
    height: auto; /* الطول التلقائي */
    position: relative;
    overflow: hidden;
}

.logo {
    display: block;
    margin: 10px auto;
    width: 170px; /* العرض */
    height: auto; /* الطول التلقائي */
    position: relative;
    overflow: hidden;
}

.logo img {
    display: block;
    width: 100%; /* يجعل الصورة تتناسب مع الحاوية */
    height: auto;
    position: relative;
}

/* تأثير اللمعان */
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%; /* بداية التأثير خارج العنصر */
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite ease-in-out;
    animation-delay: 4s; /* وقت التوقف */
    z-index: 1;
}

/* الرسوم المتحركة */
@keyframes shine {
    0% {
        left: -100%; /* البداية */
    }
    50% {
        left: 50%; /* منتصف العنصر */
    }
    100% {
        left: 100%; /* النهاية */
    }
}

@media (max-width: 768px) {
	.logo img {width: 90px; /* العرض */
    height: auto; /* الطول التلقائي */
	margin: 0px auto !important;
	}
}

/* البنر */
.banner img {
    width: 75%;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
	
	.banner img {
    width: 95% !important;
    height: auto !important;
    margin: 4px auto !important;
}
	nav {
		padding: 7px 0px 12px 0px;}
}
/* القائمة الرئيسية */
nav {
    background-color: #f8a634 !important;
    padding: 7px 0;
    margin: 2px auto;
    width: 75%;
    direction: rtl;
    border-radius: 22px;
}
@media (max-width: 768px) {
	nav{width: 95%; margin: 2px auto; padding: 0px 0px 8px 0px;border-radius: 11px;
}}
nav ul {
    list-style: none;
    padding: 0px 0px 5px 0px;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
li a i {
     margin-left: 11px; /* مسافة بين الأيقونة والنص */
    color: #fff; /* لون الأيقونة */
	font-size: 14px;
        }
@media (max-width: 768px) {
	nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px !important;
    padding: 7px 3px !important;
    transition: 0.3s ease;
}
	li a i {
     margin-left: 5px; /* مسافة بين الأيقونة والنص */
    color: #fff; /* لون الأيقونة */
	font-size: 11px;
        }
	nav ul {
    gap: 5px;
}
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #7f1a23;
}

/* المنتجات */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.card:hover {
    border: none;
    box-shadow: 0 8px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
	transition: 0.5s;
}

.card img {
    max-height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
	text-align: center;
}
.price{color:green;}
@media (max-width: 768px) {
.card-text {
    font-size: 12px !important;
    margin-bottom: 10px !important;
    line-height: normal !important;
	}}
.btn {
    width: 95%; /* جعل زر الإضافة بعرض كامل */
    font-size: 16px;
    padding: 10px 15px;
	background: #f9ad37 !important;
	color: #000;
	border: 1px #ccc solid;
    border-radius: 0px;
	margin: 0 auto;
	transition: background 0.3s ease;
	position: relative;
    overflow: hidden;
	cursor: pointer;
	display: inline-block;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    transform: skewX(-45deg);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}


.btn:hover::before {
    left: 100%;
}

.accordion-button .collapsed {
    position: static !important; /* إلغاء تأثير position */
    overflow: visible !important; /* إلغاء خاصية overflow */
    background: #f8f9fa; /* استعادة اللون الافتراضي */
    color: #212529;
    transition: none !important; /* إلغاء الانتقالات */
}

.accordion-button .collapsed:hover::after {
    content: none !important; /* منع تأثير اللمعة */
}



.prod-title {
	color:#fff;
	padding-bottom: 7px;
	font-size: 22px;
}
@media (max-width: 768px) {
	.prod-title {
	color:#fff;
	padding-bottom: 7px;
	font-size: 18px;
}
}
/* التصفح بين الصفحات */
.pagination{margin-bottom: 15px; margin-top: 15px; direction:ltr;}
.pagination .page-link {
    color: #f8a634;
	direction: ltr !important;
} .page-item {direction: ltr;}

.pagination .page-item.active .page-link {
    background-color: #f8a634;
    border-color: #f8a634;
	color:#fff;
}
.nav2{
	margin-bottom: 75px;
}
/* سلة المشتريات الثابتة */
.fixed-bottom {
    background-color: #dc3545;
    color: white;
	padding: 0px;
}
.py-3 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.fixed-bottom a {
	display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
	padding: 10px 0;
}
.fixed-bottom a:hover {
    background-color: #b02a37; /* لون عند التحويم لتحسين التجربة */
    color: #fff; /* لون النص عند التحويم */
}
@media (max-width: 768px) {
	.fixed-bottom a {font-size: 15px;
	font-weight: bold;
		padding: 7px !important;
	}
	.py-3{padding: 0px !important;}

}
.dashboard {
    max-width: 800px;
    margin: 20px auto;
    background:#ebecff ;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	color:#333;
}
.material-icons {
  color:#f8a634;
}
@media (max-width: 768px) {
	.dashboard {
		max-width: 80% !important;}
}

.total {
    font-size: 24px; /* حجم النص */
    font-weight: bold; /* الخط غامق */
    color: #10b80c; /* لون النص (لون أخضر) */
    background-color: #f9f9f9; /* خلفية فاتحة */
    padding: 10px 15px; /* حواف داخلية */
    margin-top: 20px; /* مسافة من الأعلى */
    text-align: center; /* توسيط النص */
    border: 2px solid #10b80c; /* إطار بنفس لون النص */
    border-radius: 8px; /* زوايا دائرية */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ظل خفيف */
}
@media (max-width: 768px) {
	.total {
		font-size: 17px; }
		form label {margin-top: 6px;}
	
}

form label {
    display: block;
    margin-bottom: 8px;
	text-align: right;
	color: #000;
	font-weight: normal;
	margin-right: 9px;
	margin-top: 12px;
}

form input[type="text"],
form input[type="number"],
form input[type="file"],
input[type="password"],
form input[type="email"],
form textarea,
form button {
    width: 95%;
    padding: 10px;
    margin-right:5px;
    border: 1px solid #666666;
    border-radius: 4px;
	font-family: "hh2";
	background: #f4f7ff;
	margin-bottom: 4px;
}
@media (max-width: 768px) {
form input[type="text"],
form input[type="number"],
form input[type="file"],
form input[type="email"],	
input[type="password"],
form textarea,
form button {
    width: 95%;
    padding: 2px;
    margin-bottom: 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
	font-size: 12px;
	height: 35px;
}
	
}
form textarea {
    height: 70px;
}

form button {
    background-color: #28a745;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #218838;
}

.btn btn-primary add-to-cart{
	background: #f9ad37 !important;
}


a.btn {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    background-color: #f8a634;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 3px;
	text-align: center;
	font-family: "hh2";
}
a.btn:hover {
    background-color: #7f1a23;
}

.btn-success {
    background-color: #10b80c !important;
    color: #fff;
}
@media (max-width: 480px) {
	
	.btn-success {width: 95% !important;}
}

.btn-secondary {
    background-color: #6B6B6B !important;
    color: #fff;
	margin: 0 auto;
}

.btn-danger {
	background-color:rgba(194,0,3,1.00) !important;
     display: inline-block;
	margin: 0 auto;
}
.btn-danger2 {
     display: inline-block;
    margin-top: 5px;
    background-color: rgba(209,0,3,1.00) !important;
    width: auto;
    padding: 3px !important;
    font-size: 12px !important;
	color: #fff !important;
}
.btn-danger:hover {
    background-color:rgba(217,0,3,1.00) !important;
    color: #fff;
}
a.btn.danger {
    background-color: #dc3545 !important;
	color: #fff;
}

a.btn.danger:hover {
    background-color: #c82333;
}

/* تنسيق خاص لشاشات الجوال */
@media (max-width: 768px) {
    .btn {
        font-size: 13px !important; /* تقليل حجم النص */
        padding: 4px 7px !important; /* تقليل المسافة الداخلية */
        width: 95% !important; /* تقليل العرض قليلاً */
    }

    a.btn {
        font-size: 14px !important;/* تصغير النص */
        padding: 8px 10px !important; /* تصغير المسافة */
		width: 95% !important;
    }

    .btn-success, .btn-secondary, a.btn.danger {
    font-size: 12px !important;
    padding: 6px 8px !important;

    }
    
}

/* تحسين إضافي للشاشات الصغيرة جدًا */

/* تنسيق الجدول */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
table th, table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
	font-family: "hh2";
	font-weight: normal;
}

table th {
    background-color: #f8a634;
    color: #fff;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* تنسيق خاص لشاشات الجوال */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    table th, table td {
        font-size: 12px; /* تقليل حجم النص */
        padding: 8px;    /* تقليل المسافة بين النصوص */
		width: auto;
    }

    table th {
        text-align: right; /* ضبط النص ليظهر على اليمين */
    }

    table td {
        text-align: right;
    }
}

/* تحسين عرض شاشات صغيرة جدًا */
@media (max-width: 480px) {
    table th, table td {
        font-size: 11px; /* تقليل حجم النص بشكل أكبر */
        padding: 3px !important;
    }

    table {
        border: none; /* إزالة الإطار إذا كانت المساحة محدودة */
    }
}

/* أزرار العودة */
a.return {
    display: block;
    margin-top: 20px;
    text-align: center;
}

.alert {
	color: #155724 !important;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
}

.alert-success {
    color: #155724 !important;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
/* تحسين تصميم الطلبات */
table td {
    vertical-align: top;
    word-wrap: break-word;
		color: #000;

}

table td a.btn {
    display: inline-block;
    margin-top: 5px;
	background-color:rgba(209,0,3,1.00);
	width: auto;
	padding: 3px !important;
	font-size: 12px !important;
	
}

.accordion-button::after {
    margin-right: auto !important;
	margin-left: 0 !important;
}
.accordion-body {
    text-align: right;
	 background-color:rgba(240,240,240,1.00);
}

@media (max-width: 480px) {
.accordion-button {
    padding: 9px;
	font-size: 13px;
	font-weight: bold;
	text-align: right;
 
	}
	.accordion-body {
    text-align: right;
    font-size: 14px;
}
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 95%;
    margin: 0 auto;
}

.input-group .btn {
    width: 30px;
    border-radius: 0px;
    padding: 4px;
    margin: 0 auto !important;
}
@media (max-width: 780px) {
    .input-group .btn {
    font-size: 10px !important;
    width: 20px !important;
	max-height: 20px;
    border-radius: 0px;
    padding: 4px;
	}

.input-group {
    width: 90%;
}}

     /* تصميم حاوية الصورة */
        .image-container {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
.form-control .quantity-input{
	max-width: 69%;
	border: solid rgba(210,210,210,1.00) 1px;
	border-radius: 5px
	
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback), .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating)  {
    
    margin: 0 auto!important;
}
@media (max-width: 780px) {
	.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback), .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating)  {
    
    margin: 0 auto!important;
   padding: 0px;
		height: 20px;
		text-align: center;
}
}
.input-group .btn {
    width: 30px;
    border-radius: 0px;
    padding: 4px;
    margin: 0 auto !important;
	background-color:rgba(223,223,223,1.00) !important;
}

        .product-image {
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .image-container:hover .product-image {
            transform: scale(1.05);
        }

        .zoom-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 30px;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .image-container:hover .zoom-indicator {
            display: flex;
        }

        /* تصميم النافذة المنبثقة */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .popup-content {
            position: relative;
            max-width: 60%;
            max-height: 80%;
        }

        .popup-content img {
            width: 80%;
            height: auto;
            border-radius: 5px;
        }
@media (max-width: 780px) {
    .popup-content img {
            width: 100%;
         
        }}

        .popup-close {
            position: absolute;
            top: -20px;
            right: 66px;
            font-size: 30px;
            color: white;
            background: red;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }


 #notification {
    display: none;
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


.dashboard-buttons{ padding: 0 !important; width: auto; margin-right: 10%;}
.dashboard-buttons ul {
    list-style: none;
    padding: 0 !important;
    margin: 0 auto;
}

.dashboard-buttons li {
    display: inline-block;
    width: calc(23.33% - 10px); /* 3 أزرار في الصف مع مسافة بينهما */
    margin: 10px;
    padding: 15px;
    background-color: #fff; /* خلفية رمادية فاتحة */
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.dashboard-buttons a {
    text-decoration: none;
    color: #333;
    display: block;
}

.dashboard-buttons li i { /* افترض أنك تستخدم فئة i للأيقونات */
    font-size: 24px;
    margin-bottom: 5px;
}

.dashboard-buttons li:hover {
    background-color:#fff; /* لون أفتح عند التمرير */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .dashboard-buttons li {
        width: 75%;
        margin: 10px 0;
    }
}

footer {
    font-size: 12px; /* حجم خط صغير */
    text-align: center; /* توسيط النصوص */
    color: #666; /* لون النص */
}

.footer-menu {
	position: inherit;
    margin-bottom: 0px; /* مسافة بين الروابط والحقوق */
}

.footer-menu a {
    color: #666; /* لون الروابط */
    text-decoration: none; /* إزالة الخط السفلي */
    margin: 0 5px; /* مسافة بين العناصر */
}

.footer-menu a:hover {
    color:rgba(193,0,3,1.00); /* لون الروابط */
    text-decoration:underline; /* إزالة الخط السفلي */
}


.footer-rights {
    font-size: 11px; /* حجم خط أصغر للحقوق */
    color: #999; /* لون أخف قليلاً */
}
.social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            text-decoration: none;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .social-icons a:hover {
            transform: scale(1.1);
        }
        .social-icons a i {
            font-size: 24px;
        }
        /* ألوان الأيقونات حسب نوعها */
        .social-icons a.phone { background-color: #f8a634; }
        .social-icons a.whatsapp { background-color: #f8a634; }
        .social-icons a.facebook { background-color: #f8a634; }
        .social-icons a.instagram { background-color: #f8a634; }
        .social-icons a.x { background-color: #f8a634; }
        .social-icons a.youtube { background-color: #f8a634; }
		
		.social-icons a.phone:hover { color: #c67f03; }
        .social-icons a.whatsapp:hover { color: #c67f03; }
        .social-icons a.facebook:hover { color: #c67f03; }
        .social-icons a.instagram:hover { color: #c67f03; }
        .social-icons a.x:hover { color: #c67f03; }
        .social-icons a.youtube:hover {color: #c67f03; }
		
		.fa.fa-twitter{
	font-family:sans-serif;
}
.fa.fa-twitter::before{
	content:"𝕏";
		}
@media (max-width: 768px) {
	.social-icons {
    gap: 7px;

}
	.social-icons a i {
    font-size: 15px;
}
	.social-icons a {
    width: 30px;
    height: 30px;
}
}

.button-container {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
       
.footer-container {
    text-align: center;
}

button, input, optgroup, select, textarea {
    font-family: "hh2";
  
}

.note{
	font-size:14px;
	color:#555555;
	text-align: right;
	float: inline-start;
}

@media (min-width: 1400px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 55% !important;
	}}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
	font-family: "hh2";
}

.cart-icon {
        position: fixed;
        bottom: 40px;
        left: 20px;
        width: 66px;
        height: 66px;
        background-color: white;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 1000;
	 animation: pulse 1.8s infinite;
    }
    /* تأثير التموج */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 197, 34, 0.6);
        }
        70% {
            box-shadow: 0 0 0 20px rgba(0, 197, 34, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(0, 197, 34, 0);
        }
    }

.cart-icon:hover {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	transition: 0.8s;
    }
    .cart-icon i {
        font-size: 20px;
        color: #f8a634;
    }
    .cart-text {
        position: fixed;
		padding: 5px;
		border-radius: 12px;
        bottom: 15px;
        left: 10px;
        font-size: 11px;
        color: #333;
        font-weight: normal;
        text-align: center;
        z-index: 1000;
		font-family: "hh2";
		background: rgba(255,255,255,0.59);
    }

.custom-close-btn {
    margin: 10px !important;
    padding: 5px !important;
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 1050 !important; /* تأكد من ظهوره فوق المحتوى */
}
.text-center .mt-3 {
    text-align: center!important;
    color: #333;
}

.is-invalid {
  border-color: #dc3545 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.d-none {
  display: none !important;
}

.spinner-border {
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* تحسينات نظام التسجيل وتسجيل الدخول */

/* تخصيص نموذج التسجيل وتسجيل الدخول */
.auth-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    max-width: 550px;
    margin: 50px auto;
}

.auth-container h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #f8a634;
    font-size: 24px;
}

.auth-container .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-container .form-control:focus {
    border-color: #f8a634;
    box-shadow: 0 0 10px rgba(248,166,52,0.3);
}

.auth-container .btn-primary, 
.auth-container .btn-success {
    background-color: #f8a634 !important;
    border-color: #f8a634 !important;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-container .btn-primary:hover, 
.auth-container .btn-success:hover {
    background-color: #d48f2d !important;
    border-color: #d48f2d !important;
}

.auth-container a {
    color: #f8a634;
    text-decoration: none;
}

.auth-container a:hover {
    text-decoration: underline;
}

/* رسائل SweetAlert */
.swal2-popup {
    border-radius: 10px !important;
    font-family: 'hh2', sans-serif !important;
}

.swal2-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.swal2-html-container {
    font-size: 16px !important;
    color: #555 !important;
}

/* تنسيق خاص لزر إعادة إرسال الكود */
.btn-link {
    color: #f8a634 !important;
}

.btn-link:hover {
    text-decoration: underline;
}

/* تحسينات خاصة للجوال */
@media (max-width: 768px) {
    .auth-container {
        margin: 20px auto;
        padding: 15px;
    }

    .auth-container h3 {
        font-size: 20px;
    }

    .auth-container .form-control {
        font-size: 13px;
        padding: 10px;
    }

    .auth-container .btn-primary, 
    .auth-container .btn-success {
        font-size: 14px !important;
        padding: 8px 10px !important;
    }
}
 /* ✅ الأساسيات */
.sections {
    font-family: "hh2", sans-serif;
    border-radius: 13px;
    padding: 8px 40px 8px 15px; /* مساحة للسهم */
    border: 2px solid #f8a634;
    background-color: antiquewhite;
    appearance: none; /* إخفاء السهم الافتراضي */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23f8a634' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

/* ✅ عند التركيز */
.sections:focus {
    outline: none;
    border-color: #f38e00;
    box-shadow: 0 0 0 4px rgba(248, 166, 52, 0.2);
    background-color: #fff9ef;
}

/* ✅ تحسين شكل عناصر القائمة المنسدلة (بعض المتصفحات) */
.sections option {
    background-color: #fffaf0;
    color: #333;
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-family: "hh2", sans-serif;
}

/* ✅ تحسين مظهر السهم باستخدام وضع النسخ الحديثة فقط */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .sections {
        position: relative;
    }
}
