/* فئات الخط المخصصة */
.font-playfair { font-family: 'Playfair Display', serif; }
.font-inter { font-family: 'Inter', sans-serif; }
/* تدرج قسم البطل (Hero) */
.spice-gradient {
    background: linear-gradient(135deg, #D97706 0%, #DC2626 50%, #7C2D12 100%);
}
/* صورة الخلفية لقسم البطل (Hero) - تم استخدام صورة افتراضية */
.bg-hero {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/* تأثير التحويم على البطاقات */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* حاوية الصور الدائرية */
.image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* زر العودة إلى الأعلى */
#scrollTopBtn {
    display: none;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
.animate-fade-in-up {
    animation: fadeIn 1s ease-out forwards;
}
/* Product Card specific styles */
.product-card img {
    max-height: 100%;
    max-width: 100%;
}
