  /* تطبيق خط Inter على جميع العناصر لضمان مظهر احترافي موحد */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f7f7f7; /* خلفية بيضاء خفيفة */
        }
        /* تعريف الألوان الأساسية لـ Tailwind */
        :root {
            --primary: #000000;
            --secondary: #ffffff;
            --light-gray: #e5e7eb;
        }
        .text-custom-black { color: var(--primary); }
        .bg-custom-black { background-color: var(--primary); }
        .border-custom-black { border-color: var(--primary); }

        /* لضمان أن الصورة تكون أطول من قسم التفاصيل (متطلب التصميم) */
        .product-card-image-ratio {
            /* 75% من ارتفاع البطاقة الكلي تقريباً */
            height: 75%; 
        }

        .product-card-info-ratio {
            /* 25% من ارتفاع البطاقة الكلي تقريباً */
            height: 25%;
        }

        /* تأثير التمرير الاحترافي لزر الشراء */
        .buy-button-hover {
            transition: all 0.2s ease-in-out;
        }
        .buy-button-hover:hover {
            background-color: #e5e7eb; /* رمادي فاتح عند التمرير */
            color: #000000;
        }
        /* لإخفاء الشرائح غير النشطة في السلايدر */
        .slide {
            transition: opacity 0.7s ease-in-out;
            opacity: 0;
            z-index: 0;
        }
        .slide.active {
            opacity: 100;
            z-index: 10;
        }
        
        /* لإخفاء شريط التمرير (خاص بالتمرير الأفقي للأقسام) */
        .scrollbar-hide {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;  /* Chrome, Safari, and Opera */
        }


        /* أنماط لوحة التقييمات */
#reviews-panel {
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

/* أنماط النجوم */
.star.active {
    color: #fbbf24;
}

.star:hover {
    color: #fbbf24;
}

/* معاينة الصور */
.image-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-preview-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 2px;
    left: 2px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
}

/* تصميم بطاقات التقييمات */
.review-card {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
}

.review-card:last-child {
    border-bottom: none;
}

.review-stars {
    color: #fbbf24;
}

.review-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* زر التقييمات الثابت */
#reviews-toggle {
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

#reviews-toggle:hover {
    transform: translate(-5px, -50%);
}


/* أنماط لوحة عربة التسوق */
#cart-panel {
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
}

/* زر عربة التسوق الثابت */
#cart-toggle {
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

#cart-toggle:hover {
    transform: translate(5px, -50%);
}

/* عناصر العربة */
.cart-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.25rem;
}

.remove-item {
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.remove-item:hover {
    background: #fef2f2;
}

/* تحسين التمرير */
#cart-items::-webkit-scrollbar {
    width: 4px;
}

#cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#cart-items::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#cart-items::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* عداد العربة في الهيدر */
#cart-count {
    font-size: 0.7rem;
    font-weight: bold;
}

/* تحسين مظهر أزرار إضافة للسلة */
.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}


/* أنماط قسم التخفيضات */
.bg-gradient-to-br {
    background: linear-gradient(135deg, #fef2f2 0%, #ffedd5 100%);
}

/* تأثيرات خاصة للبطاقات المخفضة */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* شارات التخفيض */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* عداد التنازلي */
#countdown-timer > div {
    transition: all 0.3s ease;
}

#countdown-timer > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* شريط التقدم للمخزون */
.w-full.bg-gray-200 {
    background-color: #e5e7eb;
}

.w-full.bg-gray-200 > div {
    transition: width 0.5s ease;
}

/* تأثيرات الأزرار في قسم التخفيضات */
.bg-red-600, .bg-orange-600, .bg-purple-600, .bg-green-600 {
    transition: all 0.3s ease;
}

.bg-red-600:hover, .bg-orange-600:hover, .bg-purple-600:hover, .bg-green-600:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* أنيميشن للعداد التنازلي */
@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-animation {
    animation: countdownPulse 1s ease-in-out infinite;
}

/* تحسين كروت المنتجات في التخفيضات */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* تحسين الصور في الكروت */
.h-80 {
    height: 20rem;
}

/* تأثيرات الكروت */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* تحسين شارات التخفيض */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* تحسين شريط التقدم */
.w-full.bg-gray-200 {
    background-color: #f3f4f6;
}

.w-full.bg-gray-200 > div {
    transition: width 0.3s ease;
}

/* تحسين الأزرار */
button.bg-red-600,
button.bg-orange-600,
button.bg-purple-600,
button.bg-green-600 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button.bg-red-600:hover,
button.bg-orange-600:hover,
button.bg-purple-600:hover,
button.bg-green-600:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

/* تحسين أزرار إضافة للسلة */
button.border {
    transition: all 0.3s ease;
}

button.border:hover {
    transform: translateY(-1px);
}

/* تحسين العناوين */
.text-2xl.font-bold {
    font-family: 'Inter', sans-serif;
}

/* تحسين شارات التوفير */
.absolute.top-4.right-4 {
    backdrop-filter: blur(10px);
}

/* تحسين التدرج اللوني للخلفية */
.bg-gradient-to-br {
    background: linear-gradient(135deg, #fef2f2 0%, #ffedd5 50%, #fef3c7 100%);
}

/* تأثيرات خاصة للتخفيضات */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
    }
}

.border-red-200 {
    animation: pulse-glow 2s infinite;
}

.border-orange-200 {
    animation: pulse-glow 2s infinite 0.5s;
}

.border-purple-200 {
    animation: pulse-glow 2s infinite 1s;
}

.border-green-200 {
    animation: pulse-glow 2s infinite 1.5s;
}

/* تحسين responsive */
@media (max-width: 640px) {
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
    
    .h-80 {
        height: 16rem;
    }
    
    .flex.space-x-2 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flex.space-x-2 button {
        width: 100%;
    }
}

/* تحسين الخطوط للنص العربي */
.text-lg {
    line-height: 1.6;
}

.text-sm {
    line-height: 1.5;
}

/* تحسين كروت المنتجات الجديدة */
.h-80 {
    height: 20rem;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* تحسين responsive للمنتجات */
@media (max-width: 640px) {
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
    
    .h-80 {
        height: 16rem;
    }
    
    .flex.space-x-2 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flex.space-x-2 button {
        width: 100%;
    }
    
    .text-4xl {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .h-80 {
        height: 18rem;
    }
}

/* تحسين تأثيرات الكروت */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* تحسين الأزرار */
button.bg-custom-black {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button.bg-custom-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

button.border {
    transition: all 0.3s ease;
}

button.border:hover {
    transform: translateY(-1px);
}

/* تحسين العناوين */
.text-lg {
    line-height: 1.6;
}

.text-xl {
    line-height: 1.5;
}

/* تحسين الشارات */
.absolute.top-3.right-3 {
    backdrop-filter: blur(10px);
}

/* تحسين الظلال */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* تحسين التدرج في hover */
.group:hover .shadow-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* تحسين الحدود */
.border-gray-100 {
    border-color: #f3f4f6;
}

/* تحسين زر عرض المزيد */
.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

/* تحسين النص العربي */
.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}


/* منع التكرار في أزرار الإضافة للسلة */
.add-to-cart-btn.processing {
    opacity: 0.7;
    cursor: not-allowed;
}

.add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* تحسين مظهر عربة التسوق */
.quantity-input {
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f9fafb;
}

.quantity-btn {
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
    border-color: #1a1a1a;
}

#cart-panel {
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #f3f4f6;
}

#cart-panel::-webkit-scrollbar {
    width: 6px;
}

#cart-panel::-webkit-scrollbar-track {
    background: #f3f4f6;
}

#cart-panel::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
}

/* تحسينات للعربة */
.cart-item {
    transition: all 0.3s ease;
}

.quantity-btn {
    transition: all 0.2s ease;
}

.quantity-btn:active {
    transform: scale(0.9);
}

.remove-item {
    transition: all 0.3s ease;
}

.remove-item:hover {
    transform: scale(1.1);
}

/* تأثيرات التحديث */
@keyframes itemUpdate {
    0% { background-color: transparent; }
    50% { background-color: #f0f9ff; }
    100% { background-color: transparent; }
}

.cart-item-update {
    animation: itemUpdate 0.5s ease;
}

.cart-message {
    animation: slideIn 0.3s ease-out, slideOut 0.3s ease-in 2.7s;
}

@keyframes slideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-100%); opacity: 0; }
}

/* تأثيرات العدادات */
.countdown-animation {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* تحسين مظهر العدادات */
.countdown-bar {
    transition: width 1s linear;
}

/* تأثيرات للعدادات المنتهية */
.countdown-ended {
    opacity: 0.6;
    filter: grayscale(0.5);
}

  /* تحسينات للعرض على الموبايل */
    @media (max-width: 768px) {
        body {
            width: 100%;
        }
        
        .max-w-7xl {
            max-width: 100%;
        }
        
        nav {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        /* منع التمرير الأفقي للعناصر */
        .flex.items-center {
            flex-wrap: wrap;
        }
    }

     /* منع التمرير الأفقي على جميع الأجهزة */
    html, body {
        max-width: 100%;
        position: relative;
    }
    
    /* تأكد أن جميع العناصر لا تتجاوز عرض الشاشة */
    * {
        box-sizing: border-box;
    }
    
    /* تحسينات إضافية للعرض على الموبايل */
    @media (max-width: 768px) {
        .max-w-7xl {
            max-width: 100%;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .grid {
            margin-left: 0;
            margin-right: 0;
        }
        
        /* تأكد أن الصور لا تتجاوز العرض */
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* تحسين عرض معرض الصور */
        .product-gallery {
            padding: 0;
            margin: 0;
        }
        
        .thumbnail-grid {
            gap: 0.25rem;
            padding: 0 0.25rem;
        }
        
        /* تحسين التبويبات */
        .tab-buttons {
            padding: 0 0.5rem;
        }
        
        .tab-button {
            padding: 0.75rem 0.5rem;
            font-size: 0.8rem;
        }
        
        /* تحسين عرض المنتجات ذات الصلة */
        .related-products-grid {
            gap: 0.5rem;
            padding: 0 0.25rem;
        }
    }

    /* تحسينات للشاشات الصغيرة جداً */
    @media (max-width: 640px) {
        .px-4 {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }
        
        .grid-cols-2 {
            grid-template-columns: 1fr;
        }
        
        .product-info {
            padding: 0 0.5rem;
        }
        
        .action-buttons {
            gap: 0.5rem;
        }
        
        .action-buttons button,
        .action-buttons a {
            padding: 0.75rem 0.5rem;
            font-size: 0.9rem;
        }
    }

    /* إصلاح خاص للعرض على iOS */
    @supports (-webkit-touch-callout: none) {
        body {
            -webkit-overflow-scrolling: touch;
        }
    }

     @media (max-width: 768px) {
        footer .max-w-7xl {
            max-width: 100%;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        footer .grid {
            margin-left: 0;
            margin-right: 0;
        }
    }


    /* styles.css - إضافة أنماط للغات */
.rtl {
    direction: rtl;
    text-align: right;
}

.ltr {
    direction: ltr;
    text-align: left;
}

/* تحسينات للتمرير الأفقي */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* تحسينات للغة العربية */
.rtl .space-x-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1;
}

/* تحسينات للغة الإنجليزية */
.ltr .space-x-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
}


/* في قسم الـ CSS */
@media (max-width: 640px) {
    #products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* تعديلات إضافية لتحسين العرض على الموبايل */
    .group.bg-white.rounded-2xl {
        margin-bottom: 0.5rem;
    }
    
    /* تحسين حجم الصور على الموبايل */
    .relative.overflow-hidden.h-80 {
        height: 12rem;
    }
    
    /* تحسين النصوص على الموبايل */
    .text-lg {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    
    .text-xl {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    
    /* تحسين الأزرار على الموبايل */
    .flex.space-x-2.space-x-reverse {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flex.space-x-2.space-x-reverse > * {
        width: 100%;
    }
}

