/* شبكة الصفحة الرئيسية - الحاوية */
.custom-grid-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px !important;
    padding: 18px !important;
    background: #ffffff !important;
    margin: 25px auto !important;
    max-width: 600px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

/* الأيقونات باللون الأزرق الجديد */
.grid-item-link {
    background-color: #2a88b7 !important; 
    color: #ffffff !important; 
    text-align: center !important;
    padding: 12px 5px !important;
    border-radius: 8px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important; 
    text-decoration: none !important;
    min-height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease-in-out !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* تأثير عند تمرير الماوس */
.grid-item-link:hover {
    background-color: #1e668a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(42, 136, 183, 0.3) !important;
}

/* أزرار الواتساب تحت المنتجات */
.whatsapp-order-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #054d44 !important; 
    color: #ffffff !important;
    padding: 12px !important;
    border-radius: 8px !important;
    margin: 12px 0 !important;
    cursor: pointer !important;
    font-weight: bold !important;
    font-size: 14px !important;
    width: 100% !important;
    transition: 0.3s !important;
}

.whatsapp-order-btn:hover {
    background-color: #076d61 !important;
    opacity: 0.9;
}

/* النافذة المنبثقة للواتساب */
.ws-menu { 
    background: #ffffff !important; 
    padding: 25px !important; 
    border-radius: 20px !important; 
    width: 88% !important; 
    max-width: 340px !important; 
    text-align: center !important; 
    border-top: 5px solid #2a88b7 !important; 
}

.ws-opt-btn { 
    display: block !important; 
    width: 100% !important; 
    padding: 14px !important; 
    margin-bottom: 10px !important; 
    border: 1px solid #f0f0f0 !important; 
    border-radius: 12px !important; 
    font-weight: bold !important; 
    background: #f8f9fa !important; 
    color: #333 !important;
    cursor: pointer !important;
}

/* --- إضافة الأيقونة العائمة فقط دون تعديل الباقي --- */
.ws-floating-btn {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    cursor: pointer !important;
}
.ws-floating-btn img { width: 35px !important; }

.ws-overlay {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    background: rgba(0,0,0,0.8) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1000000 !important;
    direction: rtl !important;
}
.ws-close-btn { border: none !important; background: none !important; color: red !important; margin-top: 10px !important; cursor: pointer !important; font-weight: bold !important; }

/* الجوال */
@media (max-width: 480px) {
    .custom-grid-container { grid-template-columns: repeat(3, 1fr) !important; gap: 6px !important; }
    .grid-item-link { font-size: 10.5px !important; }
}