/* إضافة ظل خفيف للمنتج عند التمرير */
.product-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px; /* زوايا منحنية أكثر نعومة */
}

.product-item:hover {
    transform: translateY(-5px); /* رفع البطاقة قليلاً */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* ظل ناعم */
}/* تعديل زر الإضافة للسلة */
.btn-add-to-cart {
    background-color: #b58d4c !important; /* لون ذهبي/بني يناسب هوية القهوة */
    border: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: #8e6d3a !important; /* درجة أغمق عند التمرير */
    transform: scale(1.05);
}
/* تحسين شكل قسم آراء العملاء */
.testimonial-item {
    background: #fdfaf5; /* خلفية كريمية فاتحة */
    border-right: 4px solid #b58d4c; /* خط جانبي بلون القهوة */
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
}
/* تأثير عند التمرير فوق روابط القائمة العلوية */
.main-menu-list > li > a {
    position: relative;
    font-weight: 600;
}

.main-menu-list > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: #b58d4c;
    transition: width 0.3s ease;
}

.main-menu-list > li > a:hover::after {
    width: 100%;
}
/* تحسين انسيابية الخطوط */
body, h1, h2, h3, p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* أو أي خط عربي مخصص */
    line-height: 1.8;
}

.product-title a {
    color: #333;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .fixed-banner {
        display: none; /* إخفاء البنرات الثابتة المزعجة في الشاشات الصغيرة */
    }
    
    .product-item {
        margin-bottom: 15px;
    }
}
/* تنعيم حركة التمرير في الموقع */
html {
  scroll-behavior: smooth;
}

/* تحسين شكل الأزرار */
button, .btn {
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* تنعيم الصور */
img {
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.03);
}

/* تنعيم الكروت الخاصة بالمنتجات */
.product-card,
.product-item {
  transition: all 0.3s ease;
}

.product-card:hover,
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
/* خلفية التذييل - تم تغييرها للأبيض */
footer {
    background: #ffffff !important; /* خلفية بيضاء صافية */
    color: #333333; /* نص داكن للقراءة */
    padding: 70px 0 30px;
    border-top: 1px solid #ffffff; /* حدود خفيفة جداً من الأعلى */
}

/* العناوين - بقيت باللون الذهبي المميز للمحمصة */
footer h2,
footer h3,
footer h4 {
    color: #957D51;
    font-weight: 700;
    margin-bottom: 18px;
}

/* النص */
footer p {
    color: #957D51; /* رمادي غامق ليكون مريحاً للعين على الخلفية البيضاء */
    line-height: 1.8;
    font-size: 14px;
}

/* الروابط */
footer a {
    color: #444444; /* لون الروابط الافتراضي داكن */
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: .3s;
}

footer a:hover {
    color: #957D51; /* يتغير للذهبي عند التمرير */
    transform: translateX(-5px);
}

/* أيقونات التواصل */
footer .social-icons a {
    background: #f5f5f5; /* خلفية رمادية فاتحة جداً للأيقونات */
    color: #957D51 !important;
    padding: 10px;
    border-radius: 50%;
    margin-left: 8px;
    transition: .3s;
    display: inline-block;
}

footer .social-icons a:hover {
    background: #957D51;
    color: #ffffff !important; /* أيقونة بيضاء عند التمرير */
    transform: scale(1.1);
}

/* الحقوق */
footer .copyright {
    border-top: 1px solid #ffffff; /* خط فاصل رمادي فاتح */
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
}